From 9fd5db63359895b830096c371ab1efa09d1964a3 Mon Sep 17 00:00:00 2001 From: MARCOP001 Date: Mon, 1 Jun 2026 19:31:31 +0200 Subject: [PATCH] Esecuzione log step-by-step --- app.py | 114 +- data/raw/openalex_20260601_190230.json | 111089 ++++++++++++++++++++++ data/raw/openalex_20260601_190825.json | 111089 ++++++++++++++++++++++ data/raw/openalex_20260601_191453.json | 111089 ++++++++++++++++++++++ data/raw/pubmed_20260601_190321.xml | 22274 +++++ log_esecuzione.txt | Bin 0 -> 17472 bytes www/services/api_retriever.py | 43 +- www/services/file_extractor.py | 18 +- www/services/parsers.py | 9 + www/services/standardizer.py | 33 + www/services/validation.py | 5 + 11 files changed, 355751 insertions(+), 12 deletions(-) create mode 100644 data/raw/openalex_20260601_190230.json create mode 100644 data/raw/openalex_20260601_190825.json create mode 100644 data/raw/openalex_20260601_191453.json create mode 100644 data/raw/pubmed_20260601_190321.xml create mode 100644 log_esecuzione.txt diff --git a/app.py b/app.py index 97d8c879f..6cbd95361 100644 --- a/app.py +++ b/app.py @@ -49,8 +49,10 @@ # Import necessary libraries for better performance - avoid importing everything import tempfile import os +import logging import requests import functools +import sys from datetime import datetime import pandas as pd import io @@ -71,6 +73,25 @@ from www.services.standardizer import convert2df from www.services.api_retriever import extract_data + +if hasattr(sys.stdout, "reconfigure"): + sys.stdout.reconfigure(encoding="utf-8", errors="replace") +if hasattr(sys.stderr, "reconfigure"): + sys.stderr.reconfigure(encoding="utf-8", errors="replace") + +LOG_FORMAT = "%(asctime)s | %(levelname)-8s | %(name)s | %(message)s" +LOG_DATE_FORMAT = "%Y-%m-%d %H:%M:%S" + +logging.basicConfig( + level=logging.INFO, + format=LOG_FORMAT, + datefmt=LOG_DATE_FORMAT, + stream=sys.stdout, + force=True, +) +logger = logging.getLogger("bibliometrix.app") +logger.info("Avvio applicazione Bibliometrix Shiny") + # MODIFICA rispetto alla versione fornita: le tabelle itables ricevono stringhe # CSS nel parametro `style`. Usare `width:100%;`, non `width=100%;`, evita # errori di parsing nel tab Table. @@ -767,6 +788,11 @@ def select_db(): def mostra(): selected_action = input.select() database_raw = input.database() if selected_action == "1A" else "Sample" + logger.info( + "Avvio caricamento dati da interfaccia: azione=%s, database=%s", + selected_action, + database_raw, + ) # Nasconde la sidebar ui.update_sidebar("sidebar_load_data", show=False) @@ -788,9 +814,15 @@ def mostra(): # file grezzi e file gia' standardizzati. I sample sono gia' # pronti per la dashboard, quindi non passano dalla pipeline ETL. if selected_action == "1C": # Dati Sample di Test + logger.info("Caricamento dataset sample: sources/samples/sample.xlsx") sample_data = pd.read_excel("sources/samples/sample.xlsx") df.set(sample_data) reset_all_analyses() + logger.info( + "Dataset sample caricato: righe=%s, colonne=%s", + len(sample_data), + len(sample_data.columns), + ) # MODIFICA rispetto alla versione fornita: per i file grezzi # usiamo la catena ETL esplicita richiesta: @@ -798,6 +830,7 @@ def mostra(): elif selected_action == "1A": # Dati Locali (Base Level) files = input.Dataset() if files: + logger.info("Import raw data: %s file ricevuti", len(files)) all_standardized_dfs = [] # --- FASE 1, 2, 3: EXTRACT & TRANSFORM PER FILE --- @@ -806,17 +839,37 @@ def mostra(): file_name = file_info["name"] # Extract the extension to pass to standardizer file_ext = os.path.splitext(file_name)[1].lower() + logger.info( + "Elaborazione file: nome=%s, estensione=%s, sorgente=%s", + file_name, + file_ext, + source_upper, + ) try: # Extract raw records from the specific file raw_records = extract_from_file(file_path, source=source_upper) + logger.info( + "Estrazione completata per %s: record_grezzi=%s", + file_name, + len(raw_records), + ) if raw_records: # Transform to DF immediately using the specific file_type df_part = convert2df(raw_records, source=source_upper, file_type=file_ext, validate=True) all_standardized_dfs.append(df_part) + logger.info( + "Standardizzazione completata per %s: righe=%s, colonne=%s", + file_name, + len(df_part), + len(df_part.columns), + ) + else: + logger.warning("Nessun record grezzo estratto da %s", file_name) except Exception as e: + logger.exception("Errore durante l'elaborazione del file %s", file_name) ui.notification_show(f"Errore di elaborazione per ({file_name}): {e}", type="error", duration=8) # --- FASE 4: MERGE E LOAD --- @@ -824,18 +877,31 @@ def mostra(): try: # Combine all standard dataframes into one standardized_df = pd.concat(all_standardized_dfs, ignore_index=True) + logger.info( + "Merge DataFrame standardizzati completato: righe=%s, colonne=%s", + len(standardized_df), + len(standardized_df.columns), + ) standardized_df = prepare_dataframe_for_app(standardized_df) + logger.info( + "Preparazione per dashboard completata: righe_valide=%s", + len(standardized_df), + ) # --- FASE LOAD: Salvataggio nel reattivo Shiny --- df.set(standardized_df) reset_all_analyses() + logger.info("Dataset caricato nello stato reattivo Shiny") ui.notification_show(f"✅ ETL completato con successo! Elaborati {len(standardized_df)} record.", duration=5) except Exception as e: ui.notification_show(f"❌ Errore durante l'aggregazione dei dati: {e}", type="error", duration=10) else: + logger.warning("Import raw data terminato senza DataFrame standardizzati validi") ui.notification_show("Nessun record valido trovato nei file caricati.", type="warning", duration=8) + else: + logger.warning("Import raw data richiesto senza file caricati") elif selected_action == "1B": # File gia' standardizzati # Anche i file gia' esportati vengono fatti passare da @@ -843,23 +909,45 @@ def mostra(): # mantiene lo stesso contratto usato dalle funzioni. files = input.Dataset() if files: + logger.info("Load Bibliometrix file: %s file ricevuti", len(files)) loaded_dfs = [] for file_info in files: try: + logger.info("Lettura file standardizzato: %s", file_info["name"]) loaded = pd.read_excel(file_info["datapath"]) - loaded_dfs.append(convert2df(loaded.to_dict(orient="records"), source="WEB_OF_SCIENCE", validate=True)) + logger.info( + "File standardizzato letto: %s righe, %s colonne", + len(loaded), + len(loaded.columns), + ) + df_part = convert2df(loaded.to_dict(orient="records"), source="WEB_OF_SCIENCE", validate=True) + loaded_dfs.append(df_part) + logger.info( + "Validazione file standardizzato completata: %s righe", + len(df_part), + ) except Exception as e: + logger.exception("Errore nel caricamento del file standardizzato %s", file_info["name"]) ui.notification_show(f"Errore nel caricamento di ({file_info['name']}): {e}", type="error", duration=8) if loaded_dfs: try: standardized_df = pd.concat(loaded_dfs, ignore_index=True) + logger.info( + "Merge file standardizzati completato: righe=%s, colonne=%s", + len(standardized_df), + len(standardized_df.columns), + ) standardized_df = prepare_dataframe_for_app(standardized_df) df.set(standardized_df) reset_all_analyses() + logger.info("File Bibliometrix caricato nello stato reattivo Shiny") ui.notification_show(f"File Bibliometrix caricato: {len(standardized_df)} record.", duration=5) except Exception as e: + logger.exception("Errore durante il caricamento dei file standardizzati") ui.notification_show(f"Errore durante il caricamento: {e}", type="error", duration=10) + else: + logger.warning("Load Bibliometrix richiesto senza file caricati") # -------- ADVICE BUTTON -------- @render.ui @reactive.event(input.advice_modal_completeness) @@ -1013,8 +1101,10 @@ def show_data_table(): def esegui_pipeline_api(): query = input.api_query() source = input.api_source() + logger.info("Avvio pipeline API da interfaccia: source=%s, query=%s", source, query) if not query: + logger.warning("Pipeline API interrotta: query vuota") ui.notification_show("Inserisci una query valida prima di eseguire.", type="warning") return @@ -1023,8 +1113,14 @@ def esegui_pipeline_api(): try: # --- FASE 1: EXTRACT (via API) --- raw_records = extract_data(query=query, source=source) + logger.info( + "Estrazione API completata: source=%s, record_grezzi=%s", + source, + len(raw_records), + ) if not raw_records: + logger.warning("Pipeline API senza risultati compatibili: source=%s, query=%s", source, query) ui.notification_show("Nessun risultato compatibile trovato con la query.", type="warning") return @@ -1037,12 +1133,20 @@ def esegui_pipeline_api(): # `file_type="api"` evita di fingere che i record live siano # CSV/TXT: la standardizzazione sa che arrivano da API. standardized_df = convert2df(raw_records, source=source_mapped, file_type="api", validate=True) + logger.info( + "Standardizzazione API completata: source=%s, righe=%s, colonne=%s", + source_mapped, + len(standardized_df), + len(standardized_df.columns), + ) standardized_df = prepare_dataframe_for_app(standardized_df) + logger.info("Preparazione dashboard per dati API completata: righe_valide=%s", len(standardized_df)) # Assegna i dati al DataFrame reattivo df.set(standardized_df) reset_all_analyses() + logger.info("Dataset API caricato nello stato reattivo Shiny") ui.update_navs("hidden_tabs", selected="import") @@ -1050,6 +1154,7 @@ def esegui_pipeline_api(): ui.notification_show(f"✅ Download API completato! Creati e testati {len(standardized_df)} record uniformati.", duration=5) except Exception as e: + logger.exception("Fallimento del processo API") ui.notification_show(f"❌ Fallimento del processo API: {e}", type="error", duration=15) with ui.nav_panel("None", value="collections"): ui.h3("🚧 Warning: Merge Collection is under construction 🚧") @@ -2858,7 +2963,12 @@ async def handle_user_input(user_input: str): ) for i, table in enumerate(context['table']): prompt += f"\nTable {i}: {table.to_json(orient='records')}" - print(f"Prompt for Gemini: {prompt}") + logger.info( + "Richiesta Gemini preparata: pannello=%s, tabelle=%s, caratteri_prompt=%s", + context["panel"], + len(context["table"]), + len(prompt), + ) if client is not None: try: response = client.models.generate_content( diff --git a/data/raw/openalex_20260601_190230.json b/data/raw/openalex_20260601_190230.json new file mode 100644 index 000000000..0291a5324 --- /dev/null +++ b/data/raw/openalex_20260601_190230.json @@ -0,0 +1,111089 @@ +[ + { + "id": "https://openalex.org/W2101234009", + "doi": "https://doi.org/10.48550/arxiv.1201.0490", + "title": "Scikit-learn: Machine Learning in Python", + "display_name": "Scikit-learn: Machine Learning in Python", + "relevance_score": 17397.934, + "publication_year": 2012, + "publication_date": "2012-01-02", + "ids": { + "openalex": "https://openalex.org/W2101234009", + "doi": "https://doi.org/10.48550/arxiv.1201.0490", + "mag": "2101234009" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1201.0490", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5105141183", + "display_name": "Fabián Pedregosa", + "orcid": "https://orcid.org/0000-0003-4025-3953" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": true, + "raw_author_name": "Pedregosa, Fabian", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074733625", + "display_name": "Gaël Varoquaux", + "orcid": "https://orcid.org/0000-0003-1076-5122" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Varoquaux, Gaël", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018256474", + "display_name": "Alexandre Gramfort", + "orcid": "https://orcid.org/0000-0001-9791-4404" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Gramfort, Alexandre", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027430303", + "display_name": "Vincent Michel", + "orcid": "https://orcid.org/0000-0002-7025-4343" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Michel, Vincent", + "raw_affiliation_strings": [ + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026762833", + "display_name": "Bertrand Thirion", + "orcid": "https://orcid.org/0000-0001-5018-7895" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Thirion, Bertrand", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5112700874", + "display_name": "Olivier Grisel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131947", + "display_name": "Nuxe (France)", + "ror": "https://ror.org/02m7qby09", + "country_code": "FR", + "type": "company", + "lineage": [ + "https://openalex.org/I4210131947" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Grisel, Olivier", + "raw_affiliation_strings": [ + "Nuxeo (18-20 rue Soleillet 75020 Paris - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Nuxeo (18-20 rue Soleillet 75020 Paris - France)", + "institution_ids": [ + "https://openalex.org/I4210131947" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5049123454", + "display_name": "Mathieu Blondel", + "orcid": "https://orcid.org/0000-0002-2366-2993" + }, + "institutions": [ + { + "id": "https://openalex.org/I65837984", + "display_name": "Kobe University", + "ror": "https://ror.org/03tgsfw79", + "country_code": "JP", + "type": "education", + "lineage": [ + "https://openalex.org/I65837984" + ] + } + ], + "countries": [ + "JP" + ], + "is_corresponding": false, + "raw_author_name": "Blondel, Mathieu", + "raw_affiliation_strings": [ + "Kobe University (Japan)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Kobe University (Japan)", + "institution_ids": [ + "https://openalex.org/I65837984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Müller, Andreas", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I51441396", + "display_name": "Bauhaus-Universität Weimar", + "ror": "https://ror.org/033bb5z47", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I51441396" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Müller, Andreas", + "raw_affiliation_strings": [ + "Bauhaus-Universität Weimar (Geschwister-Scholl-Straße 8 99423 Weimar - Germany)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Bauhaus-Universität Weimar (Geschwister-Scholl-Straße 8 99423 Weimar - Germany)", + "institution_ids": [ + "https://openalex.org/I51441396" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Nothman, Joel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210148186", + "display_name": "Google (Canada)", + "ror": "https://ror.org/04d06q394", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969", + "https://openalex.org/I4210148186" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Nothman, Joel", + "raw_affiliation_strings": [ + "Google Inc (Toronto - Canada)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc (Toronto - Canada)", + "institution_ids": [ + "https://openalex.org/I4210148186" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Louppe, Gilles", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Louppe, Gilles", + "raw_affiliation_strings": [ + "LAMI - Laboratoire de Mécanique et Ingénieries (IFMA. Campus des Cézeaux BP 265 63175 Aubière Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LAMI - Laboratoire de Mécanique et Ingénieries (IFMA. Campus des Cézeaux BP 265 63175 Aubière Cedex - France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088660184", + "display_name": "Peter Prettenhofer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Prettenhofer, Peter", + "raw_affiliation_strings": [ + "University of Washington [Seattle] (Seattle, Washington 98105 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Washington [Seattle] (Seattle, Washington 98105 - United States)", + "institution_ids": [ + "https://openalex.org/I201448701" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5103273436", + "display_name": "Ron J. Weiss", + "orcid": "https://orcid.org/0000-0003-2010-4053" + }, + "institutions": [ + { + "id": "https://openalex.org/I177605424", + "display_name": "Amherst College", + "ror": "https://ror.org/028vqfs63", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I177605424" + ] + }, + { + "id": "https://openalex.org/I24603500", + "display_name": "University of Massachusetts Amherst", + "ror": "https://ror.org/0072zz521", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I24603500" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Weiss, Ron", + "raw_affiliation_strings": [ + "Department of Mechanical and Industrial Engineering [UMass] (UMass Amherst College of Engineering Department of Mechanical and Industrial Engineering, 220 ELAB, University of Massachusetts Amherst, MA 01003-2210 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Mechanical and Industrial Engineering [UMass] (UMass Amherst College of Engineering Department of Mechanical and Industrial Engineering, 220 ELAB, University of Massachusetts Amherst, MA 01003-2210 - United States)", + "institution_ids": [ + "https://openalex.org/I177605424", + "https://openalex.org/I24603500" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031324436", + "display_name": "Vincent Dubourg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210121859", + "display_name": "Enthought (United States)", + "ror": "https://ror.org/02xfc1977", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210121859" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dubourg, Vincent", + "raw_affiliation_strings": [ + "Enthought Inc (515 Congress Avenue Suite 2100 Austin, TX 78701 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Enthought Inc (515 Congress Avenue Suite 2100 Austin, TX 78701 - United States)", + "institution_ids": [ + "https://openalex.org/I4210121859" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5038304150", + "display_name": "Jake Vanderplas", + "orcid": "https://orcid.org/0000-0002-9623-3401" + }, + "institutions": [ + { + "id": "https://openalex.org/I103084370", + "display_name": "Total (France)", + "ror": "https://ror.org/04sk34n56", + "country_code": "FR", + "type": "company", + "lineage": [ + "https://openalex.org/I103084370" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Vanderplas, Jake", + "raw_affiliation_strings": [ + "TOTAL S.A. (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "TOTAL S.A. (France)", + "institution_ids": [ + "https://openalex.org/I103084370" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5034029772", + "display_name": "Alexandre Passos", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Passos, Alexandre", + "raw_affiliation_strings": [ + "LNAO (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5023051838", + "display_name": "David Cournapeau", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Cournapeau, David", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050910015", + "display_name": "Matthieu Brucher", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Brucher, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107933380", + "display_name": "Matthieu Perrot", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Perrot, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5007095962", + "display_name": "Édouard Duchesnay", + "orcid": "https://orcid.org/0000-0002-4073-3490" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Duchesnay, Édouard", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 5, + "institutions_distinct_count": 19, + "corresponding_author_ids": [ + "https://openalex.org/A5105141183" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 63665, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8748029470443726 + }, + { + "id": "https://openalex.org/keywords/documentation", + "display_name": "Documentation", + "score": 0.834846019744873 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7323822975158691 + }, + { + "id": "https://openalex.org/keywords/mit-license", + "display_name": "MIT License", + "score": 0.5501254796981812 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.511991560459137 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.43965548276901245 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.397538423538208 + }, + { + "id": "https://openalex.org/keywords/license", + "display_name": "License", + "score": 0.35676372051239014 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.34812211990356445 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.18154305219650269 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8748029470443726 + }, + { + "id": "https://openalex.org/C56666940", + "wikidata": "https://www.wikidata.org/wiki/Q788790", + "display_name": "Documentation", + "level": 2, + "score": 0.834846019744873 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7323822975158691 + }, + { + "id": "https://openalex.org/C174183944", + "wikidata": "https://www.wikidata.org/wiki/Q334661", + "display_name": "MIT License", + "level": 3, + "score": 0.5501254796981812 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.511991560459137 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.43965548276901245 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.397538423538208 + }, + { + "id": "https://openalex.org/C2780560020", + "wikidata": "https://www.wikidata.org/wiki/Q79719", + "display_name": "License", + "level": 2, + "score": 0.35676372051239014 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.34812211990356445 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.18154305219650269 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:orbi.ulg.ac.be:2268/225787", + "is_oa": true, + "landing_page_url": "https://orbi.uliege.be/handle/2268/225787", + "pdf_url": "https://orbi.uliege.be/handle/2268/225787", + "source": { + "id": "https://openalex.org/S4306400651", + "display_name": "Open Repository and Bibliography (University of Liège)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157674565", + "host_organization_name": "University of Liège", + "host_organization_lineage": [ + "https://openalex.org/I157674565" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research, 1201 (2012-01-02)", + "raw_type": "peer reviewed" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.763.4227", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.763.4227", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://arxiv.org/pdf/1201.0490.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-00650905v2", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-00650905", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research, 2011", + "raw_type": "Journal articles" + }, + { + "id": "doi:10.48550/arxiv.1201.0490", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1201.0490", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article-journal" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.4399999976158142 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 13, + "referenced_works": [ + "https://openalex.org/W1496508106", + "https://openalex.org/W1571024744", + "https://openalex.org/W2024933578", + "https://openalex.org/W2035776949", + "https://openalex.org/W2040387238", + "https://openalex.org/W2047804403", + "https://openalex.org/W2063978378", + "https://openalex.org/W2097360283", + "https://openalex.org/W2097850441", + "https://openalex.org/W2118585731", + "https://openalex.org/W2146292423", + "https://openalex.org/W2152799677", + "https://openalex.org/W2153635508" + ], + "related_works": [ + "https://openalex.org/W2036021480", + "https://openalex.org/W2207495067", + "https://openalex.org/W1906486629", + "https://openalex.org/W2132241624", + "https://openalex.org/W4392173297", + "https://openalex.org/W4311683883", + "https://openalex.org/W4212902261", + "https://openalex.org/W2546377002", + "https://openalex.org/W4221030787", + "https://openalex.org/W2790811106" + ], + "abstract_inverted_index": { + "Scikit-learn": [ + 0 + ], + "is": [ + 1, + 35, + 51 + ], + "a": [ + 2, + 6, + 30 + ], + "Python": [ + 3 + ], + "module": [ + 4 + ], + "integrating": [ + 5 + ], + "wide": [ + 7 + ], + "range": [ + 8 + ], + "of": [ + 9, + 39 + ], + "state-of-the-art": [ + 10 + ], + "machine": [ + 11, + 25 + ], + "learning": [ + 12, + 26 + ], + "algorithms": [ + 13 + ], + "for": [ + 14 + ], + "medium-scale": [ + 15 + ], + "supervised": [ + 16 + ], + "and": [ + 17, + 43, + 50, + 64, + 70 + ], + "unsupervised": [ + 18 + ], + "problems.": [ + 19 + ], + "This": [ + 20 + ], + "package": [ + 21 + ], + "focuses": [ + 22 + ], + "on": [ + 23, + 37 + ], + "bringing": [ + 24 + ], + "to": [ + 27 + ], + "non-specialists": [ + 28 + ], + "using": [ + 29 + ], + "general-purpose": [ + 31 + ], + "high-level": [ + 32 + ], + "language.": [ + 33 + ], + "Emphasis": [ + 34 + ], + "put": [ + 36 + ], + "ease": [ + 38 + ], + "use,": [ + 40 + ], + "performance,": [ + 41 + ], + "documentation,": [ + 42 + ], + "API": [ + 44 + ], + "consistency.": [ + 45 + ], + "It": [ + 46 + ], + "has": [ + 47 + ], + "minimal": [ + 48 + ], + "dependencies": [ + 49 + ], + "distributed": [ + 52 + ], + "under": [ + 53 + ], + "the": [ + 54 + ], + "simplified": [ + 55 + ], + "BSD": [ + 56 + ], + "license,": [ + 57 + ], + "encouraging": [ + 58 + ], + "its": [ + 59 + ], + "use": [ + 60 + ], + "in": [ + 61 + ], + "both": [ + 62 + ], + "academic": [ + 63 + ], + "commercial": [ + 65 + ], + "settings.": [ + 66 + ], + "Source": [ + 67 + ], + "code,": [ + 68 + ], + "binaries,": [ + 69 + ], + "documentation": [ + 71 + ], + "can": [ + 72 + ], + "be": [ + 73 + ], + "downloaded": [ + 74 + ], + "from": [ + 75 + ], + "http://scikit-learn.org.": [ + 76 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 232 + }, + { + "year": 2025, + "cited_by_count": 3190 + }, + { + "year": 2024, + "cited_by_count": 7800 + }, + { + "year": 2023, + "cited_by_count": 8518 + }, + { + "year": 2022, + "cited_by_count": 7941 + }, + { + "year": 2021, + "cited_by_count": 10725 + }, + { + "year": 2020, + "cited_by_count": 8605 + }, + { + "year": 2019, + "cited_by_count": 6020 + }, + { + "year": 2018, + "cited_by_count": 4131 + }, + { + "year": 2017, + "cited_by_count": 2623 + }, + { + "year": 2016, + "cited_by_count": 1692 + }, + { + "year": 2015, + "cited_by_count": 1075 + }, + { + "year": 2014, + "cited_by_count": 632 + }, + { + "year": 2013, + "cited_by_count": 267 + }, + { + "year": 2012, + "cited_by_count": 80 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3023540311", + "doi": "https://doi.org/10.5860/choice.27-0936", + "title": "Genetic algorithms in search, optimization, and machine learning", + "display_name": "Genetic algorithms in search, optimization, and machine learning", + "relevance_score": 12391.868, + "publication_year": 1989, + "publication_date": "1989-10-01", + "ids": { + "openalex": "https://openalex.org/W3023540311", + "doi": "https://doi.org/10.5860/choice.27-0936", + "mag": "3023540311" + }, + "language": "en", + "primary_location": { + "id": "doi:10.5860/choice.27-0936", + "is_oa": false, + "landing_page_url": "https://doi.org/10.5860/choice.27-0936", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764375719", + "display_name": "Choice Reviews Online", + "issn_l": "0009-4978", + "issn": [ + "0009-4978", + "1523-8253", + "1943-5975" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310316146", + "host_organization_name": "Association of College and Research Libraries", + "host_organization_lineage": [ + "https://openalex.org/P4310316146", + "https://openalex.org/P4310315903" + ], + "host_organization_lineage_names": [ + "Association of College and Research Libraries", + "American Library Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Choice Reviews Online", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 216.8325, + "has_fulltext": false, + "cited_by_count": 49332, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "27", + "issue": "02", + "first_page": "27", + "last_page": "0936" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6865000128746033, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6865000128746033, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.64090496301651 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4825281798839569 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4684337079524994 + }, + { + "id": "https://openalex.org/keywords/quality-control-and-genetic-algorithms", + "display_name": "Quality control and genetic algorithms", + "score": 0.4515381157398224 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.39135777950286865 + }, + { + "id": "https://openalex.org/keywords/genetic-algorithm", + "display_name": "Genetic algorithm", + "score": 0.37594497203826904 + }, + { + "id": "https://openalex.org/keywords/meta-optimization", + "display_name": "Meta-optimization", + "score": 0.18808576464653015 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.64090496301651 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4825281798839569 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4684337079524994 + }, + { + "id": "https://openalex.org/C161164918", + "wikidata": "https://www.wikidata.org/wiki/Q7268775", + "display_name": "Quality control and genetic algorithms", + "level": 4, + "score": 0.4515381157398224 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.39135777950286865 + }, + { + "id": "https://openalex.org/C8880873", + "wikidata": "https://www.wikidata.org/wiki/Q187787", + "display_name": "Genetic algorithm", + "level": 2, + "score": 0.37594497203826904 + }, + { + "id": "https://openalex.org/C4935549", + "wikidata": "https://www.wikidata.org/wiki/Q6822261", + "display_name": "Meta-optimization", + "level": 3, + "score": 0.18808576464653015 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.5860/choice.27-0936", + "is_oa": false, + "landing_page_url": "https://doi.org/10.5860/choice.27-0936", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764375719", + "display_name": "Choice Reviews Online", + "issn_l": "0009-4978", + "issn": [ + "0009-4978", + "1523-8253", + "1943-5975" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310316146", + "host_organization_name": "Association of College and Research Libraries", + "host_organization_lineage": [ + "https://openalex.org/P4310316146", + "https://openalex.org/P4310315903" + ], + "host_organization_lineage_names": [ + "Association of College and Research Libraries", + "American Library Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Choice Reviews Online", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.800000011920929 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W2030843598", + "https://openalex.org/W2381755277", + "https://openalex.org/W4360996914", + "https://openalex.org/W2509607449", + "https://openalex.org/W1608872107", + "https://openalex.org/W2786126153", + "https://openalex.org/W2360904702" + ], + "abstract_inverted_index": { + "From": [ + 0 + ], + "the": [ + 1, + 14 + ], + "Publisher:\r\nThis": [ + 2 + ], + "book": [ + 3 + ], + "brings": [ + 4 + ], + "together": [ + 5 + ], + "-": [ + 6, + 13 + ], + "in": [ + 7, + 35 + ], + "an": [ + 8 + ], + "informal": [ + 9 + ], + "and": [ + 10, + 19, + 27, + 45, + 63, + 70 + ], + "tutorial": [ + 11 + ], + "fashion": [ + 12 + ], + "computer": [ + 15, + 52, + 68 + ], + "techniques,": [ + 16 + ], + "mathematical": [ + 17 + ], + "tools,": [ + 18 + ], + "research": [ + 20 + ], + "results": [ + 21 + ], + "that": [ + 22 + ], + "will": [ + 23 + ], + "enable": [ + 24 + ], + "both": [ + 25 + ], + "students": [ + 26 + ], + "practitioners": [ + 28 + ], + "to": [ + 29, + 33 + ], + "apply": [ + 30 + ], + "genetic": [ + 31 + ], + "algorithms": [ + 32, + 47 + ], + "problems": [ + 34 + ], + "many": [ + 36 + ], + "fields.": [ + 37 + ], + "\r\n\r\nMajor": [ + 38 + ], + "concepts": [ + 39 + ], + "are": [ + 40, + 48 + ], + "illustrated": [ + 41, + 49 + ], + "with": [ + 42 + ], + "running": [ + 43 + ], + "examples,": [ + 44 + ], + "major": [ + 46 + ], + "by": [ + 50 + ], + "Pascal": [ + 51 + ], + "programs.": [ + 53 + ], + "No": [ + 54 + ], + "prior": [ + 55 + ], + "knowledge": [ + 56 + ], + "of": [ + 57, + 67 + ], + "GAs": [ + 58 + ], + "or": [ + 59 + ], + "genetics": [ + 60 + ], + "is": [ + 61, + 73 + ], + "assumed,": [ + 62 + ], + "only": [ + 64 + ], + "a": [ + 65 + ], + "minimum": [ + 66 + ], + "programming": [ + 69 + ], + "mathematics": [ + 71 + ], + "background": [ + 72 + ], + "required.": [ + 74 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 6 + }, + { + "year": 2025, + "cited_by_count": 311 + }, + { + "year": 2024, + "cited_by_count": 480 + }, + { + "year": 2023, + "cited_by_count": 736 + }, + { + "year": 2022, + "cited_by_count": 722 + }, + { + "year": 2021, + "cited_by_count": 1091 + }, + { + "year": 2020, + "cited_by_count": 1203 + }, + { + "year": 2019, + "cited_by_count": 1219 + }, + { + "year": 2018, + "cited_by_count": 1396 + }, + { + "year": 2017, + "cited_by_count": 1475 + }, + { + "year": 2016, + "cited_by_count": 1729 + }, + { + "year": 2015, + "cited_by_count": 1774 + }, + { + "year": 2014, + "cited_by_count": 2001 + }, + { + "year": 2013, + "cited_by_count": 2166 + }, + { + "year": 2012, + "cited_by_count": 2360 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2125055259", + "doi": null, + "title": "C4.5: Programs for Machine Learning", + "display_name": "C4.5: Programs for Machine Learning", + "relevance_score": 10836.938, + "publication_year": 1992, + "publication_date": "1992-10-15", + "ids": { + "openalex": "https://openalex.org/W2125055259", + "mag": "2125055259" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028413442", + "is_oa": false, + "landing_page_url": "http://lib.myilibrary.com?id=677844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110271944", + "display_name": "J. R. Quinlan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "J. R. Quinlan", + "raw_affiliation_strings": [ + "Univ. of Sydney, Sydney, NSW, Australia#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Univ. of Sydney, Sydney, NSW, Australia#TAB#", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110271944" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I129604602" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 37.5253, + "has_fulltext": false, + "cited_by_count": 23696, + "citation_normalized_percentile": { + "value": 0.99811143, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 95, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.732699990272522, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.732699990272522, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7494493126869202 + }, + { + "id": "https://openalex.org/keywords/unix", + "display_name": "Unix", + "score": 0.7103577852249146 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.5452554225921631 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5430417060852051 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5293187499046326 + }, + { + "id": "https://openalex.org/keywords/source-code", + "display_name": "Source code", + "score": 0.5040985345840454 + }, + { + "id": "https://openalex.org/keywords/workstation", + "display_name": "Workstation", + "score": 0.4916697144508362 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.47135013341903687 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.4408881366252899 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.43640998005867004 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.3549916744232178 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.34295010566711426 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.28907880187034607 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.16292878985404968 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7494493126869202 + }, + { + "id": "https://openalex.org/C112968700", + "wikidata": "https://www.wikidata.org/wiki/Q11368", + "display_name": "Unix", + "level": 3, + "score": 0.7103577852249146 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.5452554225921631 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5430417060852051 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5293187499046326 + }, + { + "id": "https://openalex.org/C43126263", + "wikidata": "https://www.wikidata.org/wiki/Q128751", + "display_name": "Source code", + "level": 2, + "score": 0.5040985345840454 + }, + { + "id": "https://openalex.org/C67953723", + "wikidata": "https://www.wikidata.org/wiki/Q192525", + "display_name": "Workstation", + "level": 2, + "score": 0.4916697144508362 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.47135013341903687 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.4408881366252899 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.43640998005867004 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.3549916744232178 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.34295010566711426 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.28907880187034607 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.16292878985404968 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028413442", + "is_oa": false, + "landing_page_url": "http://lib.myilibrary.com?id=677844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:cds.cern.ch:2031749", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2031749", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:2125055259", + "is_oa": false, + "landing_page_url": "https://cds.cern.ch/record/2031749", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/10", + "display_name": "Reduced inequalities", + "score": 0.49000000953674316 + }, + { + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions", + "score": 0.4300000071525574 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W3085162807", + "https://openalex.org/W2966207845", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766", + "https://openalex.org/W2147169507", + "https://openalex.org/W2140190241", + "https://openalex.org/W2136000097", + "https://openalex.org/W2133990480", + "https://openalex.org/W2123504579", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112076978", + "https://openalex.org/W2084812512", + "https://openalex.org/W1988790447", + "https://openalex.org/W1912123407", + "https://openalex.org/W1670263352", + "https://openalex.org/W1570448133", + "https://openalex.org/W1504694836" + ], + "abstract_inverted_index": { + "Classifier": [ + 0 + ], + "systems": [ + 1 + ], + "play": [ + 2 + ], + "a": [ + 3, + 38, + 55 + ], + "major": [ + 4 + ], + "role": [ + 5 + ], + "in": [ + 6, + 47 + ], + "machine": [ + 7 + ], + "learning": [ + 8 + ], + "and": [ + 9, + 12, + 18, + 69, + 75 + ], + "knowledge-based": [ + 10 + ], + "systems,": [ + 11 + ], + "Ross": [ + 13 + ], + "Quinlan's": [ + 14 + ], + "work": [ + 15 + ], + "on": [ + 16 + ], + "ID3": [ + 17 + ], + "C4.5": [ + 19, + 43, + 85 + ], + "is": [ + 20, + 37 + ], + "widely": [ + 21 + ], + "acknowledged": [ + 22 + ], + "to": [ + 23, + 32, + 41, + 58, + 93 + ], + "have": [ + 24 + ], + "made": [ + 25 + ], + "some": [ + 26 + ], + "of": [ + 27, + 90 + ], + "the": [ + 28, + 42, + 50, + 59, + 63 + ], + "most": [ + 29 + ], + "significant": [ + 30 + ], + "contributions": [ + 31 + ], + "their": [ + 33 + ], + "development.": [ + 34 + ], + "This": [ + 35 + ], + "book": [ + 36 + ], + "complete": [ + 39 + ], + "guide": [ + 40, + 57 + ], + "system": [ + 44 + ], + "as": [ + 45 + ], + "implemented": [ + 46 + ], + "C": [ + 48 + ], + "for": [ + 49, + 81 + ], + "UNIX": [ + 51 + ], + "environment.": [ + 52 + ], + "It": [ + 53 + ], + "contains": [ + 54 + ], + "comprehensive": [ + 56 + ], + "system's": [ + 60 + ], + "use": [ + 61 + ], + ",": [ + 62 + ], + "source": [ + 64, + 73 + ], + "code": [ + 65, + 74 + ], + "(about": [ + 66 + ], + "8,800": [ + 67 + ], + "lines),": [ + 68 + ], + "implementation": [ + 70 + ], + "notes.": [ + 71 + ], + "The": [ + 72, + 96 + ], + "sample": [ + 76 + ], + "datasets": [ + 77 + ], + "are": [ + 78 + ], + "also": [ + 79 + ], + "available": [ + 80 + ], + "download": [ + 82 + ], + "(see": [ + 83 + ], + "below).": [ + 84 + ], + "starts": [ + 86 + ], + "with": [ + 87 + ], + "large": [ + 88 + ], + "sets": [ + 89 + ], + "cases": [ + 91 + ], + "belonging": [ + 92 + ], + "known": [ + 94 + ], + "classes.": [ + 95 + ], + "cases,": [ + 97 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 119 + }, + { + "year": 2024, + "cited_by_count": 234 + }, + { + "year": 2023, + "cited_by_count": 397 + }, + { + "year": 2022, + "cited_by_count": 454 + }, + { + "year": 2021, + "cited_by_count": 798 + }, + { + "year": 2020, + "cited_by_count": 893 + }, + { + "year": 2019, + "cited_by_count": 970 + }, + { + "year": 2018, + "cited_by_count": 978 + }, + { + "year": 2017, + "cited_by_count": 1004 + }, + { + "year": 2016, + "cited_by_count": 1088 + }, + { + "year": 2015, + "cited_by_count": 1179 + }, + { + "year": 2014, + "cited_by_count": 1226 + }, + { + "year": 2013, + "cited_by_count": 1265 + }, + { + "year": 2012, + "cited_by_count": 1268 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1570448133", + "doi": "https://doi.org/10.1016/c2009-0-19715-5", + "title": "Data Mining: Practical Machine Learning Tools and Techniques", + "display_name": "Data Mining: Practical Machine Learning Tools and Techniques", + "relevance_score": 9976.794, + "publication_year": 2011, + "publication_date": "2011-01-01", + "ids": { + "openalex": "https://openalex.org/W1570448133", + "doi": "https://doi.org/10.1016/c2009-0-19715-5", + "mag": "1570448133" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1016/c2009-0-19715-5", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1016/c2009-0-19715-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463230", + "display_name": "Elsevier eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "any_repository_has_fulltext": null + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5045934263", + "display_name": "Ian H. Witten", + "orcid": "https://orcid.org/0000-0001-6428-8988" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Witten, Ian H. 1947-", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059992863", + "display_name": "Eibe Frank", + "orcid": "https://orcid.org/0000-0001-6152-7111" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Frank, Eibe", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5065290010", + "display_name": "Mark A. Hall", + "orcid": "https://orcid.org/0000-0001-6277-144X" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Hall, Mark A.", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5045934263" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 777.8895, + "has_fulltext": false, + "cited_by_count": 25711, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.994700014591217, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9937000274658203, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6216986179351807 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.40141761302948 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.381103515625 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3717349171638489 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3705868124961853 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6216986179351807 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.40141761302948 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.381103515625 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3717349171638489 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3705868124961853 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1016/c2009-0-19715-5", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1016/c2009-0-19715-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463230", + "display_name": "Elsevier eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + { + "id": "pmh:KOHA-OAI-BM:91035", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:KOHA-OAI-BM:44641", + "is_oa": false, + "landing_page_url": "http://www.loc.gov/catdir/enhancements/fy0624/2005043385-t.html", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027751250", + "is_oa": false, + "landing_page_url": "http://www.sciencedirect.com/science/book/9780123748560", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + } + ], + "best_oa_location": { + "id": "pmh:KOHA-OAI-BM:91035", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/9", + "display_name": "Industry, innovation and infrastructure", + "score": 0.47999998927116394 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W1570448133.pdf" + }, + "referenced_works_count": 203, + "referenced_works": [ + "https://openalex.org/W23418094", + "https://openalex.org/W24402856", + "https://openalex.org/W28412257", + "https://openalex.org/W43179442", + "https://openalex.org/W64096637", + "https://openalex.org/W66926763", + "https://openalex.org/W69783631", + "https://openalex.org/W122789262", + "https://openalex.org/W123339444", + "https://openalex.org/W138217685", + "https://openalex.org/W149472151", + "https://openalex.org/W173229765", + "https://openalex.org/W187357405", + "https://openalex.org/W586094522", + "https://openalex.org/W589058777", + "https://openalex.org/W1483135265", + "https://openalex.org/W1483679765", + "https://openalex.org/W1492324553", + "https://openalex.org/W1492698999", + "https://openalex.org/W1495859460", + "https://openalex.org/W1500698297", + "https://openalex.org/W1506285740", + "https://openalex.org/W1513366687", + "https://openalex.org/W1516443426", + "https://openalex.org/W1520687314", + "https://openalex.org/W1523856491", + "https://openalex.org/W1524704912", + "https://openalex.org/W1528113134", + "https://openalex.org/W1530010412", + "https://openalex.org/W1533544838", + "https://openalex.org/W1533946607", + "https://openalex.org/W1536719366", + "https://openalex.org/W1550206324", + "https://openalex.org/W1550821944", + "https://openalex.org/W1551066950", + "https://openalex.org/W1553019137", + "https://openalex.org/W1553313034", + "https://openalex.org/W1554663460", + "https://openalex.org/W1555244713", + "https://openalex.org/W1559060276", + "https://openalex.org/W1560107318", + "https://openalex.org/W1563088657", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571836963", + "https://openalex.org/W1572964175", + "https://openalex.org/W1572978214", + "https://openalex.org/W1573228426", + "https://openalex.org/W1576962511", + "https://openalex.org/W1582036668", + "https://openalex.org/W1583700199", + "https://openalex.org/W1584333058", + "https://openalex.org/W1585221258", + "https://openalex.org/W1585610988", + "https://openalex.org/W1585743408", + "https://openalex.org/W1588100052", + "https://openalex.org/W1588282782", + "https://openalex.org/W1597165973", + "https://openalex.org/W1598333443", + "https://openalex.org/W1598696986", + "https://openalex.org/W1600437712", + "https://openalex.org/W1601529450", + "https://openalex.org/W1604345466", + "https://openalex.org/W1605275907", + "https://openalex.org/W1605688901", + "https://openalex.org/W1605957858", + "https://openalex.org/W1619226191", + "https://openalex.org/W1625504505", + "https://openalex.org/W1630964756", + "https://openalex.org/W1641039719", + "https://openalex.org/W1648885110", + "https://openalex.org/W1670263352", + "https://openalex.org/W1673310716", + "https://openalex.org/W1676820704", + "https://openalex.org/W1678889691", + "https://openalex.org/W1679846099", + "https://openalex.org/W1680392829", + "https://openalex.org/W1763728792", + "https://openalex.org/W1781794689", + "https://openalex.org/W1800049145", + "https://openalex.org/W1806329564", + "https://openalex.org/W1817561967", + "https://openalex.org/W1833977909", + "https://openalex.org/W1861764418", + "https://openalex.org/W1881647329", + "https://openalex.org/W1882120692", + "https://openalex.org/W1906182963", + "https://openalex.org/W1907578970", + "https://openalex.org/W1908888846", + "https://openalex.org/W1912123407", + "https://openalex.org/W1932571505", + "https://openalex.org/W1955600018", + "https://openalex.org/W1969482724", + "https://openalex.org/W1978515644", + "https://openalex.org/W1979711143", + "https://openalex.org/W1982161962", + "https://openalex.org/W1985593448", + "https://openalex.org/W1987947967", + "https://openalex.org/W1990748933", + "https://openalex.org/W1995945562", + "https://openalex.org/W2001619934", + "https://openalex.org/W2008906462", + "https://openalex.org/W2014725748", + "https://openalex.org/W2015401436", + "https://openalex.org/W2017337590", + "https://openalex.org/W2019575783", + "https://openalex.org/W2024046085", + "https://openalex.org/W2024646871", + "https://openalex.org/W2024668293", + "https://openalex.org/W2035890032", + "https://openalex.org/W2037603696", + "https://openalex.org/W2037768235", + "https://openalex.org/W2037965136", + "https://openalex.org/W2042385018", + "https://openalex.org/W2048679005", + "https://openalex.org/W2053154970", + "https://openalex.org/W2057720927", + "https://openalex.org/W2058732827", + "https://openalex.org/W2064853889", + "https://openalex.org/W2065861851", + "https://openalex.org/W2066636486", + "https://openalex.org/W2067098334", + "https://openalex.org/W2068337856", + "https://openalex.org/W2073308541", + "https://openalex.org/W2073583237", + "https://openalex.org/W2074610805", + "https://openalex.org/W2075665712", + "https://openalex.org/W2078579128", + "https://openalex.org/W2095749253", + "https://openalex.org/W2095897464", + "https://openalex.org/W2097089247", + "https://openalex.org/W2097569937", + "https://openalex.org/W2100406636", + "https://openalex.org/W2102009083", + "https://openalex.org/W2105494575", + "https://openalex.org/W2105497548", + "https://openalex.org/W2106393550", + "https://openalex.org/W2108949035", + "https://openalex.org/W2110119381", + "https://openalex.org/W2111746072", + "https://openalex.org/W2112076978", + "https://openalex.org/W2112841646", + "https://openalex.org/W2113242816", + "https://openalex.org/W2117812871", + "https://openalex.org/W2118020653", + "https://openalex.org/W2118383892", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119885577", + "https://openalex.org/W2120216197", + "https://openalex.org/W2122111042", + "https://openalex.org/W2122410182", + "https://openalex.org/W2129113961", + "https://openalex.org/W2129249398", + "https://openalex.org/W2132166479", + "https://openalex.org/W2133632100", + "https://openalex.org/W2134696506", + "https://openalex.org/W2138064700", + "https://openalex.org/W2138621811", + "https://openalex.org/W2139059214", + "https://openalex.org/W2140190241", + "https://openalex.org/W2142767931", + "https://openalex.org/W2142819948", + "https://openalex.org/W2142957916", + "https://openalex.org/W2143349571", + "https://openalex.org/W2143426320", + "https://openalex.org/W2144907232", + "https://openalex.org/W2146257637", + "https://openalex.org/W2147492008", + "https://openalex.org/W2147810216", + "https://openalex.org/W2148949939", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153028052", + "https://openalex.org/W2154318594", + "https://openalex.org/W2154642793", + "https://openalex.org/W2156909104", + "https://openalex.org/W2160642098", + "https://openalex.org/W2161077873", + "https://openalex.org/W2163915185", + "https://openalex.org/W2164818318", + "https://openalex.org/W2166559705", + "https://openalex.org/W2167793421", + "https://openalex.org/W2170112109", + "https://openalex.org/W2170654002", + "https://openalex.org/W2170726034", + "https://openalex.org/W2170913656", + "https://openalex.org/W2172162418", + "https://openalex.org/W2172780573", + "https://openalex.org/W2277957941", + "https://openalex.org/W2331052961", + "https://openalex.org/W2621280964", + "https://openalex.org/W2912934387", + "https://openalex.org/W2913066018", + "https://openalex.org/W2914369697", + "https://openalex.org/W2953014340", + "https://openalex.org/W2988864014", + "https://openalex.org/W3017143921", + "https://openalex.org/W3023540311", + "https://openalex.org/W3083113686", + "https://openalex.org/W3085162807", + "https://openalex.org/W3123294050", + "https://openalex.org/W3163638146", + "https://openalex.org/W3193477162", + "https://openalex.org/W3203633735", + "https://openalex.org/W3208887124" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "As": [ + 0 + ], + "with": [ + 1 + ], + "any": [ + 2 + ], + "burgeoning": [ + 3 + ], + "technology": [ + 4 + ], + "that": [ + 5, + 27, + 61, + 89, + 108 + ], + "enjoys": [ + 6 + ], + "commercial": [ + 7 + ], + "attention,": [ + 8 + ], + "the": [ + 9, + 86, + 94, + 98, + 106, + 120, + 125 + ], + "use": [ + 10 + ], + "of": [ + 11, + 20, + 25, + 37, + 58, + 85 + ], + "data": [ + 12 + ], + "mining": [ + 13 + ], + "is": [ + 14, + 41, + 54, + 81 + ], + "surrounded": [ + 15 + ], + "by": [ + 16, + 31 + ], + "a": [ + 17, + 82, + 150 + ], + "great": [ + 18 + ], + "deal": [ + 19 + ], + "hype.": [ + 21 + ], + "Exaggerated": [ + 22 + ], + "reports": [ + 23 + ], + "tell": [ + 24 + ], + "secrets": [ + 26 + ], + "can": [ + 28, + 62 + ], + "be": [ + 29 + ], + "uncovered": [ + 30 + ], + "setting": [ + 32 + ], + "algorithms": [ + 33 + ], + "loose": [ + 34 + ], + "on": [ + 35, + 147, + 153 + ], + "oceans": [ + 36 + ], + "data.": [ + 38, + 68 + ], + "But": [ + 39 + ], + "there": [ + 40, + 53 + ], + "no": [ + 42, + 47, + 50 + ], + "magic": [ + 43 + ], + "in": [ + 44, + 91 + ], + "machine": [ + 45, + 136 + ], + "learning,": [ + 46 + ], + "hidden": [ + 48 + ], + "power,": [ + 49 + ], + "alchemy.": [ + 51 + ], + "Instead": [ + 52 + ], + "an": [ + 55, + 133, + 142 + ], + "identifiable": [ + 56 + ], + "body": [ + 57 + ], + "practical": [ + 59 + ], + "techniques": [ + 60, + 73 + ], + "extract": [ + 63 + ], + "useful": [ + 64 + ], + "information": [ + 65, + 146 + ], + "from": [ + 66 + ], + "raw": [ + 67 + ], + "This": [ + 69 + ], + "book": [ + 70, + 80 + ], + "describes": [ + 71 + ], + "these": [ + 72 + ], + "and": [ + 74, + 115 + ], + "shows": [ + 75 + ], + "how": [ + 76 + ], + "they": [ + 77 + ], + "work.": [ + 78 + ], + "The": [ + 79, + 122 + ], + "major": [ + 83 + ], + "revision": [ + 84 + ], + "first": [ + 87 + ], + "edition": [ + 88, + 127 + ], + "appeared": [ + 90 + ], + "1999.": [ + 92 + ], + "While": [ + 93 + ], + "basic": [ + 95 + ], + "core": [ + 96 + ], + "remains": [ + 97 + ], + "same,": [ + 99 + ], + "it": [ + 100 + ], + "has": [ + 101, + 117 + ], + "been": [ + 102 + ], + "updated": [ + 103 + ], + "to": [ + 104 + ], + "reflect": [ + 105 + ], + "changes": [ + 107 + ], + "have": [ + 109 + ], + "taken": [ + 110 + ], + "place": [ + 111 + ], + "over": [ + 112 + ], + "five": [ + 113 + ], + "years,": [ + 114 + ], + "now": [ + 116, + 140 + ], + "nearly": [ + 118 + ], + "double": [ + 119 + ], + "references.": [ + 121 + ], + "highlights": [ + 123 + ], + "for": [ + 124 + ], + "new": [ + 126, + 130, + 151 + ], + "include": [ + 128 + ], + "thirty": [ + 129 + ], + "technique": [ + 131 + ], + "sections;": [ + 132 + ], + "enhanced": [ + 134 + ], + "Weka": [ + 135 + ], + "learning": [ + 137 + ], + "workbench,": [ + 138 + ], + "which": [ + 139 + ], + "features": [ + 141 + ], + "interactive": [ + 143 + ], + "interface;": [ + 144 + ], + "comprehensive": [ + 145 + ], + "neural": [ + 148 + ], + "networks;": [ + 149, + 155 + ], + "section": [ + 152 + ], + "Bayesian": [ + 154 + ], + "plus": [ + 156 + ], + "much": [ + 157 + ], + "more.": [ + 158 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 5 + }, + { + "year": 2025, + "cited_by_count": 237 + }, + { + "year": 2024, + "cited_by_count": 449 + }, + { + "year": 2023, + "cited_by_count": 684 + }, + { + "year": 2022, + "cited_by_count": 774 + }, + { + "year": 2021, + "cited_by_count": 1127 + }, + { + "year": 2020, + "cited_by_count": 1434 + }, + { + "year": 2019, + "cited_by_count": 1625 + }, + { + "year": 2018, + "cited_by_count": 1646 + }, + { + "year": 2017, + "cited_by_count": 1443 + }, + { + "year": 2016, + "cited_by_count": 1255 + }, + { + "year": 2015, + "cited_by_count": 1510 + }, + { + "year": 2014, + "cited_by_count": 1529 + }, + { + "year": 2013, + "cited_by_count": 1672 + }, + { + "year": 2012, + "cited_by_count": 1557 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1663973292", + "doi": "https://doi.org/10.1117/1.2819119", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 9309.5625, + "publication_year": 2007, + "publication_date": "2007-01-01", + "ids": { + "openalex": "https://openalex.org/W1663973292", + "doi": "https://doi.org/10.1117/1.2819119", + "mag": "1663973292" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1117/1.2819119", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1117/1.2819119", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S158511090", + "display_name": "Journal of Electronic Imaging", + "issn_l": "1017-9909", + "issn": [ + "1017-9909", + "1560-229X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315543", + "host_organization_name": "SPIE", + "host_organization_lineage": [ + "https://openalex.org/P4310315543" + ], + "host_organization_lineage_names": [ + "SPIE" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Electronic Imaging", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Nasser M. Nasrabadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + }, + { + "id": "https://openalex.org/I4210164937", + "display_name": "Microsoft Research (United Kingdom)", + "ror": "https://ror.org/05k87vq12", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253", + "https://openalex.org/I4210164937" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nasser M. Nasrabadi", + "raw_affiliation_strings": [ + "West Virginia Univ. (United States)", + "Microsoft" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "West Virginia Univ. (United States)", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + }, + { + "raw_affiliation_string": "Microsoft", + "institution_ids": [ + "https://openalex.org/I4210164937" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I12097938", + "https://openalex.org/I4210164937" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 798.0702, + "has_fulltext": false, + "cited_by_count": 22082, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "16", + "issue": "4", + "first_page": "049901", + "last_page": "049901" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10688", + "display_name": "Image and Signal Denoising Methods", + "score": 0.9861999750137329, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5992881655693054 + }, + { + "id": "https://openalex.org/keywords/imaging-science", + "display_name": "Imaging science", + "score": 0.5219192504882812 + }, + { + "id": "https://openalex.org/keywords/cover", + "display_name": "Cover (algebra)", + "score": 0.45677652955055237 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.4510306119918823 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.41892093420028687 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.15935367345809937 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5992881655693054 + }, + { + "id": "https://openalex.org/C57177791", + "wikidata": "https://www.wikidata.org/wiki/Q1038886", + "display_name": "Imaging science", + "level": 2, + "score": 0.5219192504882812 + }, + { + "id": "https://openalex.org/C2780428219", + "wikidata": "https://www.wikidata.org/wiki/Q16952335", + "display_name": "Cover (algebra)", + "level": 2, + "score": 0.45677652955055237 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.4510306119918823 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.41892093420028687 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.15935367345809937 + }, + { + "id": "https://openalex.org/C78519656", + "wikidata": "https://www.wikidata.org/wiki/Q101333", + "display_name": "Mechanical engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1117/1.2819119", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1117/1.2819119", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S158511090", + "display_name": "Journal of Electronic Imaging", + "issn_l": "1017-9909", + "issn": [ + "1017-9909", + "1560-229X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315543", + "host_organization_name": "SPIE", + "host_organization_lineage": [ + "https://openalex.org/P4310315543" + ], + "host_organization_lineage_names": [ + "SPIE" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Electronic Imaging", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W1480376833", + "https://openalex.org/W1496317909", + "https://openalex.org/W2117812871", + "https://openalex.org/W3215037115", + "https://openalex.org/W4232383088", + "https://openalex.org/W4292691288" + ], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W623607250", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W4245429118", + "https://openalex.org/W2382290278", + "https://openalex.org/W4245505501", + "https://openalex.org/W2350741829" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "Journal": [ + 1 + ], + "of": [ + 2, + 27 + ], + "Electronic": [ + 3 + ], + "Imaging": [ + 4 + ], + "(JEI),": [ + 5 + ], + "copublished": [ + 6 + ], + "bimonthly": [ + 7 + ], + "with": [ + 8 + ], + "the": [ + 9 + ], + "Society": [ + 10 + ], + "for": [ + 11 + ], + "Imaging": [ + 12 + ], + "Science": [ + 13 + ], + "and": [ + 14, + 22, + 31 + ], + "Technology,": [ + 15 + ], + "publishes": [ + 16 + ], + "peer-reviewed": [ + 17 + ], + "papers": [ + 18 + ], + "that": [ + 19 + ], + "cover": [ + 20 + ], + "research": [ + 21 + ], + "applications": [ + 23 + ], + "in": [ + 24 + ], + "all": [ + 25 + ], + "areas": [ + 26 + ], + "electronic": [ + 28 + ], + "imaging": [ + 29 + ], + "science": [ + 30 + ], + "technology.": [ + 32 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 22 + }, + { + "year": 2025, + "cited_by_count": 52 + }, + { + "year": 2024, + "cited_by_count": 85 + }, + { + "year": 2023, + "cited_by_count": 106 + }, + { + "year": 2022, + "cited_by_count": 170 + }, + { + "year": 2021, + "cited_by_count": 2005 + }, + { + "year": 2020, + "cited_by_count": 2386 + }, + { + "year": 2019, + "cited_by_count": 1999 + }, + { + "year": 2018, + "cited_by_count": 1718 + }, + { + "year": 2017, + "cited_by_count": 1316 + }, + { + "year": 2016, + "cited_by_count": 1444 + }, + { + "year": 2015, + "cited_by_count": 1951 + }, + { + "year": 2014, + "cited_by_count": 1736 + }, + { + "year": 2013, + "cited_by_count": 1461 + }, + { + "year": 2012, + "cited_by_count": 1440 + } + ], + "updated_date": "2026-05-24T08:33:08.758527", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1639032689", + "doi": null, + "title": "Genetic Algorithms in Search, Optimization and Machine Learning", + "display_name": "Genetic Algorithms in Search, Optimization and Machine Learning", + "relevance_score": 8468.335, + "publication_year": 1988, + "publication_date": "1988-01-01", + "ids": { + "openalex": "https://openalex.org/W1639032689", + "mag": "1639032689" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:KnabeLibrary:353", + "is_oa": false, + "landing_page_url": "http://panmental.de/library/index.php?bibtex|353", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110057218", + "display_name": "David E. Goldberg", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "David E. Goldberg", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110057218" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 26.7962, + "has_fulltext": false, + "cited_by_count": 17771, + "citation_normalized_percentile": { + "value": 0.99576372, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6876999735832214, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6876999735832214, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/pascal", + "display_name": "Pascal (unit)", + "score": 0.8266515135765076 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6943583488464355 + }, + { + "id": "https://openalex.org/keywords/genetic-programming", + "display_name": "Genetic programming", + "score": 0.6225850582122803 + }, + { + "id": "https://openalex.org/keywords/genetic-algorithm", + "display_name": "Genetic algorithm", + "score": 0.4758467376232147 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4586948752403259 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43886905908584595 + }, + { + "id": "https://openalex.org/keywords/quality-control-and-genetic-algorithms", + "display_name": "Quality control and genetic algorithms", + "score": 0.43597400188446045 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.3935277462005615 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.3595549464225769 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.20000383257865906 + }, + { + "id": "https://openalex.org/keywords/meta-optimization", + "display_name": "Meta-optimization", + "score": 0.1979789137840271 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C75608658", + "wikidata": "https://www.wikidata.org/wiki/Q44395", + "display_name": "Pascal (unit)", + "level": 2, + "score": 0.8266515135765076 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6943583488464355 + }, + { + "id": "https://openalex.org/C110332635", + "wikidata": "https://www.wikidata.org/wiki/Q629498", + "display_name": "Genetic programming", + "level": 2, + "score": 0.6225850582122803 + }, + { + "id": "https://openalex.org/C8880873", + "wikidata": "https://www.wikidata.org/wiki/Q187787", + "display_name": "Genetic algorithm", + "level": 2, + "score": 0.4758467376232147 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4586948752403259 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43886905908584595 + }, + { + "id": "https://openalex.org/C161164918", + "wikidata": "https://www.wikidata.org/wiki/Q7268775", + "display_name": "Quality control and genetic algorithms", + "level": 4, + "score": 0.43597400188446045 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.3935277462005615 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.3595549464225769 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.20000383257865906 + }, + { + "id": "https://openalex.org/C4935549", + "wikidata": "https://www.wikidata.org/wiki/Q6822261", + "display_name": "Meta-optimization", + "level": 3, + "score": 0.1979789137840271 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "pmh:oai:KnabeLibrary:353", + "is_oa": false, + "landing_page_url": "http://panmental.de/library/index.php?bibtex|353", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-001455853", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:206079", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/206079", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cumincad.architexturez.net:8807", + "is_oa": false, + "landing_page_url": "http://cumincad.architexturez.net//doc/oai-cumincadworks-id-a4ce", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:2996648926", + "is_oa": false, + "landing_page_url": "http://papers.cumincad.org/cgi-bin/works/Show?a4ce", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.800000011920929 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3149025087", + "https://openalex.org/W2904250082", + "https://openalex.org/W2339500526", + "https://openalex.org/W2261054240", + "https://openalex.org/W2166843422", + "https://openalex.org/W2152195021", + "https://openalex.org/W2152150600", + "https://openalex.org/W2142183404", + "https://openalex.org/W2126105956", + "https://openalex.org/W2116661285", + "https://openalex.org/W2097571405", + "https://openalex.org/W2096590200", + "https://openalex.org/W2024060531", + "https://openalex.org/W2011039300", + "https://openalex.org/W1659842140", + "https://openalex.org/W1595498733", + "https://openalex.org/W1595159159", + "https://openalex.org/W1576818901", + "https://openalex.org/W1544329015", + "https://openalex.org/W1497256448" + ], + "abstract_inverted_index": { + "David": [ + 0 + ], + "Goldberg's": [ + 1 + ], + "Genetic": [ + 2 + ], + "Algorithms": [ + 3 + ], + "in": [ + 4, + 26, + 69, + 85 + ], + "Search,": [ + 5 + ], + "Optimization": [ + 6 + ], + "and": [ + 7, + 38, + 93, + 111 + ], + "Machine": [ + 8 + ], + "Learning": [ + 9 + ], + "is": [ + 10, + 20, + 39 + ], + "by": [ + 11 + ], + "far": [ + 12 + ], + "the": [ + 13, + 23, + 27, + 45, + 54, + 82, + 86 + ], + "bestselling": [ + 14 + ], + "introduction": [ + 15 + ], + "to": [ + 16, + 106, + 115 + ], + "genetic": [ + 17, + 36, + 48, + 67, + 109, + 113 + ], + "algorithms.": [ + 18 + ], + "Goldberg": [ + 19 + ], + "one": [ + 21 + ], + "of": [ + 22, + 42, + 47, + 53, + 64, + 81 + ], + "preeminent": [ + 24 + ], + "researchers": [ + 25 + ], + "field--he": [ + 28 + ], + "has": [ + 29 + ], + "published": [ + 30 + ], + "over": [ + 31 + ], + "100": [ + 32 + ], + "research": [ + 33 + ], + "articles": [ + 34 + ], + "on": [ + 35 + ], + "algorithms": [ + 37, + 114 + ], + "a": [ + 40, + 61, + 65, + 97, + 100, + 108, + 116 + ], + "student": [ + 41 + ], + "John": [ + 43 + ], + "Holland,": [ + 44 + ], + "father": [ + 46 + ], + "algorithms--and": [ + 49 + ], + "his": [ + 50 + ], + "deep": [ + 51 + ], + "understanding": [ + 52 + ], + "material": [ + 55 + ], + "shines": [ + 56 + ], + "through.": [ + 57 + ], + "The": [ + 58, + 77 + ], + "book": [ + 59, + 78 + ], + "contains": [ + 60 + ], + "complete": [ + 62 + ], + "listing": [ + 63 + ], + "simple": [ + 66 + ], + "algorithm": [ + 68, + 110 + ], + "Pascal,": [ + 70 + ], + "which": [ + 71 + ], + "C": [ + 72 + ], + "programmers": [ + 73 + ], + "can": [ + 74 + ], + "easily": [ + 75 + ], + "understand.": [ + 76 + ], + "covers": [ + 79 + ], + "all": [ + 80 + ], + "important": [ + 83 + ], + "topics": [ + 84 + ], + "field,": [ + 87 + ], + "including": [ + 88 + ], + "crossover,": [ + 89 + ], + "mutation,": [ + 90 + ], + "classifier": [ + 91 + ], + "systems,": [ + 92 + ], + "fitness": [ + 94 + ], + "scaling,": [ + 95 + ], + "giving": [ + 96 + ], + "novice": [ + 98 + ], + "with": [ + 99 + ], + "computer": [ + 101 + ], + "science": [ + 102 + ], + "background": [ + 103 + ], + "enough": [ + 104 + ], + "information": [ + 105 + ], + "implement": [ + 107 + ], + "describe": [ + 112 + ], + "friend.": [ + 117 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 66 + }, + { + "year": 2024, + "cited_by_count": 102 + }, + { + "year": 2023, + "cited_by_count": 182 + }, + { + "year": 2022, + "cited_by_count": 116 + }, + { + "year": 2021, + "cited_by_count": 204 + }, + { + "year": 2020, + "cited_by_count": 176 + }, + { + "year": 2019, + "cited_by_count": 166 + }, + { + "year": 2018, + "cited_by_count": 168 + }, + { + "year": 2017, + "cited_by_count": 217 + }, + { + "year": 2016, + "cited_by_count": 360 + }, + { + "year": 2015, + "cited_by_count": 660 + }, + { + "year": 2014, + "cited_by_count": 886 + }, + { + "year": 2013, + "cited_by_count": 961 + }, + { + "year": 2012, + "cited_by_count": 984 + } + ], + "updated_date": "2026-05-15T08:27:34.491423", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1583837637", + "doi": "https://doi.org/10.1145/1273496", + "title": "Proceedings of the 24th international conference on Machine learning", + "display_name": "Proceedings of the 24th international conference on Machine learning", + "relevance_score": 7144.1416, + "publication_year": 2007, + "publication_date": "2007-06-20", + "ids": { + "openalex": "https://openalex.org/W1583837637", + "doi": "https://doi.org/10.1145/1273496", + "mag": "1583837637" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/1273496", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1273496", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "proceedings" + }, + "type": "preprint", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 11733, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": true, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.9121000170707703, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.9121000170707703, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.6044684648513794 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.4876014292240143 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.42869511246681213 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.3953603208065033 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.27516093850135803 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.6044684648513794 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.4876014292240143 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.42869511246681213 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.3953603208065033 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.27516093850135803 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/1273496", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1273496", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "proceedings" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W4387426029", + "https://openalex.org/W4254162896", + "https://openalex.org/W4388792380", + "https://openalex.org/W1477999932", + "https://openalex.org/W4386731653", + "https://openalex.org/W2376001620", + "https://openalex.org/W2925303117", + "https://openalex.org/W4285219045", + "https://openalex.org/W3167529338" + ], + "abstract_inverted_index": { + "This": [ + 0, + 71 + ], + "volume": [ + 1 + ], + "contains": [ + 2 + ], + "the": [ + 3, + 7, + 34, + 38, + 49, + 57, + 104, + 108, + 121, + 128, + 140, + 151, + 157, + 160, + 164, + 182, + 203, + 215, + 221, + 225, + 273, + 293, + 330, + 347, + 393, + 402, + 428, + 444 + ], + "papers": [ + 4, + 219, + 239, + 252, + 278, + 287 + ], + "accepted": [ + 5, + 197, + 241, + 277, + 334 + ], + "to": [ + 6, + 29, + 77, + 101, + 103, + 188, + 205, + 242, + 329, + 371, + 399, + 409 + ], + "24th": [ + 8 + ], + "International": [ + 9, + 39, + 429 + ], + "Conference": [ + 10, + 430 + ], + "on": [ + 11, + 117, + 218, + 356, + 431, + 443 + ], + "Machine": [ + 12, + 40, + 403 + ], + "Learning": [ + 13, + 41, + 404 + ], + "(ICML": [ + 14 + ], + "2007),": [ + 15 + ], + "which": [ + 16, + 87, + 199, + 253, + 336, + 360 + ], + "was": [ + 17, + 80, + 90, + 200, + 425 + ], + "held": [ + 18, + 440 + ], + "at": [ + 19 + ], + "Oregon": [ + 20 + ], + "State": [ + 21 + ], + "University": [ + 22 + ], + "in": [ + 23, + 56, + 86 + ], + "Corvalis,": [ + 24 + ], + "Oregon,": [ + 25 + ], + "from": [ + 26, + 214, + 268, + 292, + 296, + 299, + 305, + 308, + 312, + 317, + 322 + ], + "June": [ + 27 + ], + "20th": [ + 28 + ], + "24th,": [ + 30 + ], + "2007.": [ + 31, + 449 + ], + "ICML": [ + 32, + 229, + 243, + 265, + 348, + 424, + 437, + 448 + ], + "is": [ + 33 + ], + "annual": [ + 35 + ], + "conference": [ + 36 + ], + "of": [ + 37, + 53, + 59, + 123, + 153, + 159, + 177, + 192, + 232, + 251, + 263, + 333, + 363, + 381, + 413, + 447 + ], + "Society": [ + 42 + ], + "(IMLS),": [ + 43 + ], + "and": [ + 44, + 51, + 107, + 120, + 148, + 170, + 220, + 314, + 319, + 325, + 341, + 353, + 383, + 438 + ], + "provides": [ + 45 + ], + "a": [ + 46, + 81, + 172, + 190, + 247, + 289, + 339, + 411 + ], + "venue": [ + 47 + ], + "for": [ + 48, + 175, + 181, + 228, + 344, + 389 + ], + "presentation": [ + 50, + 343 + ], + "discussion": [ + 52, + 136, + 162 + ], + "current": [ + 54 + ], + "research": [ + 55 + ], + "field": [ + 58 + ], + "machine": [ + 60, + 269, + 357 + ], + "learning.": [ + 61 + ], + "These": [ + 62 + ], + "proceedings": [ + 63 + ], + "can": [ + 64 + ], + "also": [ + 65, + 368 + ], + "be": [ + 66 + ], + "found": [ + 67 + ], + "online": [ + 68, + 118 + ], + "at:": [ + 69 + ], + "http://www.machinelearning.org.": [ + 70 + ], + "year": [ + 72, + 132, + 280, + 422 + ], + "there": [ + 73, + 133 + ], + "were": [ + 74, + 99, + 134, + 186, + 240, + 254, + 281, + 367, + 407, + 419 + ], + "522": [ + 75 + ], + "submissions": [ + 76, + 267 + ], + "ICML.": [ + 78 + ], + "There": [ + 79 + ], + "very": [ + 82, + 248 + ], + "thorough": [ + 83 + ], + "review": [ + 84, + 174, + 226 + ], + "process,": [ + 85 + ], + "each": [ + 88, + 176, + 311, + 321, + 345 + ], + "paper": [ + 89, + 416 + ], + "reviewed": [ + 91 + ], + "by": [ + 92, + 139, + 202, + 401 + ], + "three": [ + 93 + ], + "program": [ + 94, + 142, + 332, + 349 + ], + "committee": [ + 95, + 143 + ], + "(PC)": [ + 96 + ], + "members.": [ + 97 + ], + "Authors": [ + 98 + ], + "able": [ + 100, + 408 + ], + "respond": [ + 102 + ], + "initial": [ + 105 + ], + "reviews,": [ + 106 + ], + "PC": [ + 109 + ], + "members": [ + 110, + 166 + ], + "could": [ + 111 + ], + "then": [ + 112 + ], + "modify": [ + 113 + ], + "their": [ + 114, + 168, + 178, + 195 + ], + "reviews": [ + 115 + ], + "based": [ + 116 + ], + "discussions": [ + 119 + ], + "content": [ + 122 + ], + "this": [ + 124, + 131, + 244, + 279, + 396, + 421 + ], + "author": [ + 125, + 154, + 291 + ], + "response.": [ + 126 + ], + "For": [ + 127 + ], + "first": [ + 129, + 183, + 290, + 445 + ], + "time": [ + 130, + 223 + ], + "two": [ + 135 + ], + "periods": [ + 137 + ], + "led": [ + 138 + ], + "senior": [ + 141 + ], + "(SPC),": [ + 144 + ], + "one": [ + 145, + 149 + ], + "just": [ + 146 + ], + "before": [ + 147 + ], + "after": [ + 150 + ], + "submission": [ + 152 + ], + "responses.": [ + 155 + ], + "At": [ + 156 + ], + "end": [ + 158 + ], + "second": [ + 161 + ], + "period,": [ + 163 + ], + "SPC": [ + 165 + ], + "gave": [ + 167 + ], + "recommendations": [ + 169 + ], + "provided": [ + 171 + ], + "summary": [ + 173 + ], + "papers.": [ + 179 + ], + "Also": [ + 180 + ], + "time,": [ + 184 + ], + "authors": [ + 185 + ], + "asked": [ + 187 + ], + "submit": [ + 189 + ], + "list": [ + 191 + ], + "changes": [ + 193 + ], + "with": [ + 194, + 427 + ], + "final": [ + 196 + ], + "papers,": [ + 198, + 335 + ], + "checked": [ + 201 + ], + "SPCs": [ + 204 + ], + "ensure": [ + 206 + ], + "that": [ + 207, + 231, + 423 + ], + "reviewer": [ + 208 + ], + "comments": [ + 209 + ], + "had": [ + 210, + 288 + ], + "been": [ + 211 + ], + "addressed.": [ + 212 + ], + "Apart": [ + 213 + ], + "length": [ + 216 + ], + "restrictions": [ + 217 + ], + "compressed": [ + 222 + ], + "frame,": [ + 224 + ], + "process": [ + 227 + ], + "resembles": [ + 230 + ], + "many": [ + 233 + ], + "journal": [ + 234 + ], + "publications.": [ + 235 + ], + "In": [ + 236, + 327 + ], + "total,": [ + 237 + ], + "150": [ + 238, + 276 + ], + "year,": [ + 245 + ], + "including": [ + 246 + ], + "small": [ + 249 + ], + "number": [ + 250, + 412 + ], + "initially": [ + 255 + ], + "conditionally": [ + 256 + ], + "accepted,": [ + 257 + ], + "yielding": [ + 258 + ], + "an": [ + 259 + ], + "overall": [ + 260 + ], + "acceptance": [ + 261 + ], + "rate": [ + 262 + ], + "29%.": [ + 264 + ], + "attracts": [ + 266 + ], + "learning": [ + 270, + 358 + ], + "researchers": [ + 271 + ], + "around": [ + 272 + ], + "globe.": [ + 274 + ], + "The": [ + 275 + ], + "geographically": [ + 282 + ], + "distributed": [ + 283 + ], + "as": [ + 284, + 392 + ], + "follows:": [ + 285 + ], + "66": [ + 286 + ], + "US,": [ + 294 + ], + "32": [ + 295 + ], + "Europe,": [ + 297 + ], + "19": [ + 298 + ], + "China": [ + 300 + ], + "or": [ + 301 + ], + "Hong": [ + 302 + ], + "Kong,": [ + 303 + ], + "11": [ + 304 + ], + "Canada,": [ + 306 + ], + "6": [ + 307 + ], + "India,": [ + 309 + ], + "5": [ + 310 + ], + "Australia": [ + 313 + ], + "Japan,": [ + 315 + ], + "3": [ + 316, + 351 + ], + "Israel,": [ + 318 + ], + "1": [ + 320 + ], + "Korea,": [ + 323 + ], + "Russia": [ + 324 + ], + "Taiwan.": [ + 326 + ], + "addition": [ + 328 + ], + "main": [ + 331 + ], + "includes": [ + 337 + ], + "both": [ + 338 + ], + "talk": [ + 340 + ], + "poster": [ + 342 + ], + "paper,": [ + 346 + ], + "included": [ + 350 + ], + "workshops": [ + 352 + ], + "8": [ + 354 + ], + "tutorials": [ + 355 + ], + "topics": [ + 359 + ], + "are": [ + 361 + ], + "currently": [ + 362 + ], + "broad": [ + 364 + ], + "interest.": [ + 365 + ], + "We": [ + 366, + 418 + ], + "extremely": [ + 369 + ], + "pleased": [ + 370 + ], + "have": [ + 372 + ], + "David": [ + 373 + ], + "Heckerman": [ + 374 + ], + "(Microsoft": [ + 375 + ], + "Research),": [ + 376 + ], + "Joshua": [ + 377 + ], + "Tenenbaum": [ + 378 + ], + "(Massachussetts": [ + 379 + ], + "Institute": [ + 380, + 388 + ], + "Technology),": [ + 382 + ], + "Bernhard": [ + 384 + ], + "Schölkopf": [ + 385 + ], + "(Max": [ + 386 + ], + "Planck": [ + 387 + ], + "Biological": [ + 390 + ], + "Cybernetics)": [ + 391 + ], + "invited": [ + 394 + ], + "speakers": [ + 395 + ], + "year.": [ + 397 + ], + "Thanks": [ + 398 + ], + "sponsorship": [ + 400 + ], + "Journal,": [ + 405 + ], + "we": [ + 406 + ], + "award": [ + 410 + ], + "outstanding": [ + 414 + ], + "student": [ + 415 + ], + "prizes.": [ + 417 + ], + "fortunate": [ + 420 + ], + "co-located": [ + 426 + ], + "Inductive": [ + 432 + ], + "Logic": [ + 433 + ], + "Programming": [ + 434 + ], + "(ILP": [ + 435 + ], + "2007).": [ + 436 + ], + "ILP": [ + 439 + ], + "joint": [ + 441 + ], + "sessions": [ + 442 + ], + "day": [ + 446 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 2573 + }, + { + "year": 2024, + "cited_by_count": 2390 + }, + { + "year": 2023, + "cited_by_count": 1818 + }, + { + "year": 2022, + "cited_by_count": 1221 + }, + { + "year": 2021, + "cited_by_count": 622 + }, + { + "year": 2020, + "cited_by_count": 595 + }, + { + "year": 2019, + "cited_by_count": 396 + }, + { + "year": 2018, + "cited_by_count": 268 + }, + { + "year": 2017, + "cited_by_count": 253 + }, + { + "year": 2016, + "cited_by_count": 196 + }, + { + "year": 2015, + "cited_by_count": 162 + }, + { + "year": 2014, + "cited_by_count": 153 + }, + { + "year": 2013, + "cited_by_count": 136 + }, + { + "year": 2012, + "cited_by_count": 135 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1503398984", + "doi": null, + "title": "Machine learning a probabilistic perspective", + "display_name": "Machine learning a probabilistic perspective", + "relevance_score": 6893.345, + "publication_year": 2012, + "publication_date": "2012-01-01", + "ids": { + "openalex": "https://openalex.org/W1503398984", + "mag": "1503398984" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028615309", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=028615309&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5103362817", + "display_name": "Kevin P. Murphy", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Kevin P. Murphy", + "raw_affiliation_strings": [], + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5103362817" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 397.5259, + "has_fulltext": false, + "cited_by_count": 9327, + "citation_normalized_percentile": { + "value": 0.99999101, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.09690000116825104, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.09690000116825104, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14406", + "display_name": "Multidisciplinary Science and Engineering Research", + "score": 0.08969999849796295, + "subfield": { + "id": "https://openalex.org/subfields/1804", + "display_name": "Statistics, Probability and Uncertainty" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6962889432907104 + }, + { + "id": "https://openalex.org/keywords/probabilistic-logic", + "display_name": "Probabilistic logic", + "score": 0.6251402497291565 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6185331344604492 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5668832063674927 + }, + { + "id": "https://openalex.org/keywords/conditional-random-field", + "display_name": "Conditional random field", + "score": 0.5589616298675537 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.5155355930328369 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.49392396211624146 + }, + { + "id": "https://openalex.org/keywords/graphical-model", + "display_name": "Graphical model", + "score": 0.4833957254886627 + }, + { + "id": "https://openalex.org/keywords/regularization", + "display_name": "Regularization (linguistics)", + "score": 0.4277557134628296 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.41000470519065857 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.1839407980442047 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6962889432907104 + }, + { + "id": "https://openalex.org/C49937458", + "wikidata": "https://www.wikidata.org/wiki/Q2599292", + "display_name": "Probabilistic logic", + "level": 2, + "score": 0.6251402497291565 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6185331344604492 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5668832063674927 + }, + { + "id": "https://openalex.org/C152565575", + "wikidata": "https://www.wikidata.org/wiki/Q1124538", + "display_name": "Conditional random field", + "level": 2, + "score": 0.5589616298675537 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.5155355930328369 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.49392396211624146 + }, + { + "id": "https://openalex.org/C155846161", + "wikidata": "https://www.wikidata.org/wiki/Q1143367", + "display_name": "Graphical model", + "level": 2, + "score": 0.4833957254886627 + }, + { + "id": "https://openalex.org/C2776135515", + "wikidata": "https://www.wikidata.org/wiki/Q17143721", + "display_name": "Regularization (linguistics)", + "level": 2, + "score": 0.4277557134628296 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.41000470519065857 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.1839407980442047 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028615309", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=028615309&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-032798127", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=032798127&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:1981503", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1981503", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2723460", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2723460", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.41999998688697815 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2135046866", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112796928", + "https://openalex.org/W2101234009", + "https://openalex.org/W2095705004", + "https://openalex.org/W2064675550", + "https://openalex.org/W2049633694", + "https://openalex.org/W2045656233", + "https://openalex.org/W1880262756", + "https://openalex.org/W1746819321", + "https://openalex.org/W1663973292", + "https://openalex.org/W1554944419", + "https://openalex.org/W1511986666", + "https://openalex.org/W1506806321", + "https://openalex.org/W1480376833" + ], + "abstract_inverted_index": { + "Today's": [ + 0 + ], + "Web-enabled": [ + 1 + ], + "deluge": [ + 2 + ], + "of": [ + 3, + 10, + 47, + 79, + 140, + 155 + ], + "electronic": [ + 4 + ], + "data": [ + 5, + 11, + 25 + ], + "calls": [ + 6 + ], + "for": [ + 7, + 106, + 191 + ], + "automated": [ + 8 + ], + "methods": [ + 9, + 18 + ], + "analysis.": [ + 12 + ], + "Machine": [ + 13 + ], + "learning": [ + 14 + ], + "provides": [ + 15 + ], + "these,": [ + 16 + ], + "developing": [ + 17 + ], + "that": [ + 19 + ], + "can": [ + 20 + ], + "automatically": [ + 21 + ], + "detect": [ + 22 + ], + "patterns": [ + 23, + 31 + ], + "in": [ + 24, + 82, + 98, + 161, + 175 + ], + "and": [ + 26, + 41, + 60, + 72, + 91, + 119, + 133, + 164, + 200 + ], + "then": [ + 27 + ], + "use": [ + 28 + ], + "the": [ + 29, + 45, + 83, + 107, + 144, + 153, + 169 + ], + "uncovered": [ + 30 + ], + "to": [ + 32, + 44, + 158 + ], + "predict": [ + 33 + ], + "future": [ + 34 + ], + "data.": [ + 35 + ], + "This": [ + 36 + ], + "textbook": [ + 37 + ], + "offers": [ + 38 + ], + "a": [ + 39, + 52, + 138, + 147, + 162, + 176 + ], + "comprehensive": [ + 40 + ], + "self-contained": [ + 42 + ], + "introduction": [ + 43 + ], + "field": [ + 46 + ], + "machine": [ + 48 + ], + "learning,": [ + 49 + ], + "based": [ + 50 + ], + "on": [ + 51, + 66 + ], + "unified,": [ + 53 + ], + "probabilistic": [ + 54 + ], + "approach.": [ + 55 + ], + "The": [ + 56, + 94, + 187 + ], + "coverage": [ + 57 + ], + "combines": [ + 58 + ], + "breadth": [ + 59 + ], + "depth,": [ + 61 + ], + "offering": [ + 62 + ], + "necessary": [ + 63 + ], + "background": [ + 64, + 199 + ], + "material": [ + 65 + ], + "such": [ + 67, + 124 + ], + "topics": [ + 68, + 112 + ], + "as": [ + 69, + 75, + 77, + 127 + ], + "probability,": [ + 70 + ], + "optimization,": [ + 71 + ], + "linear": [ + 73 + ], + "algebra": [ + 74 + ], + "well": [ + 76 + ], + "discussion": [ + 78 + ], + "recent": [ + 80 + ], + "developments": [ + 81 + ], + "field,": [ + 84 + ], + "including": [ + 85 + ], + "conditional": [ + 86 + ], + "random": [ + 87 + ], + "fields,": [ + 88 + ], + "L1": [ + 89 + ], + "regularization,": [ + 90 + ], + "deep": [ + 92 + ], + "learning.": [ + 93 + ], + "book": [ + 95, + 145, + 188 + ], + "is": [ + 96, + 183, + 189 + ], + "written": [ + 97 + ], + "an": [ + 99, + 195 + ], + "informal,": [ + 100 + ], + "accessible": [ + 101 + ], + "style,": [ + 102 + ], + "complete": [ + 103 + ], + "with": [ + 104, + 116, + 194 + ], + "pseudo-code": [ + 105 + ], + "most": [ + 108 + ], + "important": [ + 109 + ], + "algorithms.": [ + 110 + ], + "All": [ + 111 + ], + "are": [ + 113 + ], + "copiously": [ + 114 + ], + "illustrated": [ + 115 + ], + "color": [ + 117 + ], + "images": [ + 118 + ], + "worked": [ + 120 + ], + "examples": [ + 121 + ], + "drawn": [ + 122 + ], + "from": [ + 123 + ], + "application": [ + 125 + ], + "domains": [ + 126 + ], + "biology,": [ + 128 + ], + "text": [ + 129 + ], + "processing,": [ + 130 + ], + "computer": [ + 131 + ], + "vision,": [ + 132 + ], + "robotics.": [ + 134 + ], + "Rather": [ + 135 + ], + "than": [ + 136 + ], + "providing": [ + 137 + ], + "cookbook": [ + 139 + ], + "different": [ + 141 + ], + "heuristic": [ + 142 + ], + "methods,": [ + 143 + ], + "stresses": [ + 146 + ], + "principled": [ + 148 + ], + "model-based": [ + 149 + ], + "approach,": [ + 150 + ], + "often": [ + 151 + ], + "using": [ + 152 + ], + "language": [ + 154 + ], + "graphical": [ + 156 + ], + "models": [ + 157, + 160, + 170 + ], + "specify": [ + 159 + ], + "concise": [ + 163 + ], + "intuitive": [ + 165 + ], + "way.": [ + 166 + ], + "Almost": [ + 167 + ], + "all": [ + 168 + ], + "described": [ + 171 + ], + "have": [ + 172 + ], + "been": [ + 173 + ], + "implemented": [ + 174 + ], + "MATLAB": [ + 177 + ], + "software": [ + 178 + ], + "package--PMTK": [ + 179 + ], + "(probabilistic": [ + 180 + ], + "modeling": [ + 181 + ], + "toolkit)--that": [ + 182 + ], + "freely": [ + 184 + ], + "available": [ + 185 + ], + "online.": [ + 186 + ], + "suitable": [ + 190 + ], + "upper-level": [ + 192 + ], + "undergraduates": [ + 193 + ], + "introductory-level": [ + 196 + ], + "college": [ + 197 + ], + "math": [ + 198 + ], + "beginning": [ + 201 + ], + "graduate": [ + 202 + ], + "students.": [ + 203 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 363 + }, + { + "year": 2024, + "cited_by_count": 626 + }, + { + "year": 2023, + "cited_by_count": 915 + }, + { + "year": 2022, + "cited_by_count": 929 + }, + { + "year": 2021, + "cited_by_count": 1245 + }, + { + "year": 2020, + "cited_by_count": 1184 + }, + { + "year": 2019, + "cited_by_count": 1006 + }, + { + "year": 2018, + "cited_by_count": 862 + }, + { + "year": 2017, + "cited_by_count": 696 + }, + { + "year": 2016, + "cited_by_count": 594 + }, + { + "year": 2015, + "cited_by_count": 475 + }, + { + "year": 2014, + "cited_by_count": 294 + }, + { + "year": 2013, + "cited_by_count": 118 + }, + { + "year": 2012, + "cited_by_count": 12 + } + ], + "updated_date": "2026-04-19T08:26:33.389920", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1901616594", + "doi": "https://doi.org/10.1126/science.aaa8415", + "title": "Machine learning: Trends, perspectives, and prospects", + "display_name": "Machine learning: Trends, perspectives, and prospects", + "relevance_score": 6839.5435, + "publication_year": 2015, + "publication_date": "2015-07-16", + "ids": { + "openalex": "https://openalex.org/W1901616594", + "doi": "https://doi.org/10.1126/science.aaa8415", + "mag": "1901616594", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/26185243" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1126/science.aaa8415", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aaa8415", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5049812527", + "display_name": "Michael I. Jordan", + "orcid": "https://orcid.org/0000-0001-8935-817X" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "M. I. Jordan", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Sciences, Department of Statistics, University of California, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Sciences, Department of Statistics, University of California, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102921433", + "display_name": "Tom M. Mitchell", + "orcid": "https://orcid.org/0000-0001-7373-0301" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "T. M. Mitchell", + "raw_affiliation_strings": [ + "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA", + "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + }, + { + "raw_affiliation_string": "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA#TAB#", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5049812527", + "https://openalex.org/A5102921433" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I74973139", + "https://openalex.org/I95457486" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 231.985, + "has_fulltext": false, + "cited_by_count": 9497, + "citation_normalized_percentile": { + "value": 0.99992528, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "349", + "issue": "6245", + "first_page": "255", + "last_page": "260" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9993000030517578, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9993000030517578, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12761", + "display_name": "Data Stream Mining Techniques", + "score": 0.9962999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/intersection", + "display_name": "Intersection (aeronautics)", + "score": 0.6641911268234253 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6273059248924255 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5956528782844543 + }, + { + "id": "https://openalex.org/keywords/core", + "display_name": "Core (optical fiber)", + "score": 0.529660165309906 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.5171177387237549 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5001497268676758 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.4807169735431671 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.4387192130088806 + }, + { + "id": "https://openalex.org/keywords/lying", + "display_name": "Lying", + "score": 0.41993552446365356 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.14734527468681335 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.13175764679908752 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C64543145", + "wikidata": "https://www.wikidata.org/wiki/Q162942", + "display_name": "Intersection (aeronautics)", + "level": 2, + "score": 0.6641911268234253 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6273059248924255 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5956528782844543 + }, + { + "id": "https://openalex.org/C2164484", + "wikidata": "https://www.wikidata.org/wiki/Q5170150", + "display_name": "Core (optical fiber)", + "level": 2, + "score": 0.529660165309906 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.5171177387237549 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5001497268676758 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.4807169735431671 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.4387192130088806 + }, + { + "id": "https://openalex.org/C119421448", + "wikidata": "https://www.wikidata.org/wiki/Q2268776", + "display_name": "Lying", + "level": 2, + "score": 0.41993552446365356 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.14734527468681335 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.13175764679908752 + }, + { + "id": "https://openalex.org/C146978453", + "wikidata": "https://www.wikidata.org/wiki/Q3798668", + "display_name": "Aerospace engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1126/science.aaa8415", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aaa8415", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:26185243", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/26185243", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science (New York, N.Y.)", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 32, + "referenced_works": [ + "https://openalex.org/W99485931", + "https://openalex.org/W1503398984", + "https://openalex.org/W1512585804", + "https://openalex.org/W1554944419", + "https://openalex.org/W1569098853", + "https://openalex.org/W1873763122", + "https://openalex.org/W1970472910", + "https://openalex.org/W1992570774", + "https://openalex.org/W1999352252", + "https://openalex.org/W2006452405", + "https://openalex.org/W2019363670", + "https://openalex.org/W2042469398", + "https://openalex.org/W2047281923", + "https://openalex.org/W2076063813", + "https://openalex.org/W2097381042", + "https://openalex.org/W2100495367", + "https://openalex.org/W2117726420", + "https://openalex.org/W2127180992", + "https://openalex.org/W2132001804", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146774335", + "https://openalex.org/W2151320232", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163605009", + "https://openalex.org/W2174706414", + "https://openalex.org/W2618530766", + "https://openalex.org/W3102480238", + "https://openalex.org/W4214717370", + "https://openalex.org/W4231109964", + "https://openalex.org/W4238893454", + "https://openalex.org/W4244670803", + "https://openalex.org/W4292363360" + ], + "related_works": [ + "https://openalex.org/W2955910435", + "https://openalex.org/W2888123326", + "https://openalex.org/W2501458630", + "https://openalex.org/W2982312151", + "https://openalex.org/W4246089694", + "https://openalex.org/W2747462053", + "https://openalex.org/W2753162950", + "https://openalex.org/W4210719352", + "https://openalex.org/W2347526077", + "https://openalex.org/W1568263573" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 48, + 58 + ], + "addresses": [ + 2 + ], + "the": [ + 3, + 27, + 36, + 54, + 64, + 68 + ], + "question": [ + 4 + ], + "of": [ + 5, + 18, + 29, + 38, + 56, + 70, + 78, + 98 + ], + "how": [ + 6 + ], + "to": [ + 7, + 91 + ], + "build": [ + 8 + ], + "computers": [ + 9 + ], + "that": [ + 10 + ], + "improve": [ + 11 + ], + "automatically": [ + 12 + ], + "through": [ + 13 + ], + "experience.": [ + 14 + ], + "It": [ + 15 + ], + "is": [ + 16 + ], + "one": [ + 17 + ], + "today's": [ + 19 + ], + "most": [ + 20 + ], + "rapidly": [ + 21 + ], + "growing": [ + 22 + ], + "technical": [ + 23 + ], + "fields,": [ + 24 + ], + "lying": [ + 25 + ], + "at": [ + 26, + 35 + ], + "intersection": [ + 28 + ], + "computer": [ + 30 + ], + "science": [ + 31 + ], + "and": [ + 32, + 34, + 41, + 60, + 62, + 73, + 88, + 108 + ], + "statistics,": [ + 33 + ], + "core": [ + 37 + ], + "artificial": [ + 39 + ], + "intelligence": [ + 40 + ], + "data": [ + 42, + 72 + ], + "science.": [ + 43 + ], + "Recent": [ + 44 + ], + "progress": [ + 45 + ], + "in": [ + 46, + 67 + ], + "machine": [ + 47 + ], + "has": [ + 49 + ], + "been": [ + 50 + ], + "driven": [ + 51 + ], + "both": [ + 52 + ], + "by": [ + 53, + 63 + ], + "development": [ + 55 + ], + "new": [ + 57 + ], + "algorithms": [ + 59 + ], + "theory": [ + 61 + ], + "ongoing": [ + 65 + ], + "explosion": [ + 66 + ], + "availability": [ + 69 + ], + "online": [ + 71 + ], + "low-cost": [ + 74 + ], + "computation.": [ + 75 + ], + "The": [ + 76 + ], + "adoption": [ + 77 + ], + "data-intensive": [ + 79 + ], + "machine-learning": [ + 80 + ], + "methods": [ + 81 + ], + "can": [ + 82 + ], + "be": [ + 83 + ], + "found": [ + 84 + ], + "throughout": [ + 85 + ], + "science,": [ + 86 + ], + "technology": [ + 87 + ], + "commerce,": [ + 89 + ], + "leading": [ + 90 + ], + "more": [ + 92 + ], + "evidence-based": [ + 93 + ], + "decision-making": [ + 94 + ], + "across": [ + 95 + ], + "many": [ + 96 + ], + "walks": [ + 97 + ], + "life,": [ + 99 + ], + "including": [ + 100 + ], + "health": [ + 101 + ], + "care,": [ + 102 + ], + "manufacturing,": [ + 103 + ], + "education,": [ + 104 + ], + "financial": [ + 105 + ], + "modeling,": [ + 106 + ], + "policing,": [ + 107 + ], + "marketing.": [ + 109 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 560 + }, + { + "year": 2025, + "cited_by_count": 1716 + }, + { + "year": 2024, + "cited_by_count": 1766 + }, + { + "year": 2023, + "cited_by_count": 1523 + }, + { + "year": 2022, + "cited_by_count": 1276 + }, + { + "year": 2021, + "cited_by_count": 961 + }, + { + "year": 2020, + "cited_by_count": 657 + }, + { + "year": 2019, + "cited_by_count": 517 + }, + { + "year": 2018, + "cited_by_count": 271 + }, + { + "year": 2017, + "cited_by_count": 157 + }, + { + "year": 2016, + "cited_by_count": 79 + }, + { + "year": 2015, + "cited_by_count": 13 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1746819321", + "doi": "https://doi.org/10.7551/mitpress/3206.001.0001", + "title": "Gaussian Processes for Machine Learning", + "display_name": "Gaussian Processes for Machine Learning", + "relevance_score": 6815.038, + "publication_year": 2005, + "publication_date": "2005-11-23", + "ids": { + "openalex": "https://openalex.org/W1746819321", + "doi": "https://doi.org/10.7551/mitpress/3206.001.0001", + "mag": "1746819321" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/3206.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/3206.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5108711177", + "display_name": "Carl Edward Rasmussen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210112925", + "display_name": "Max Planck Institute for Biological Cybernetics", + "ror": "https://ror.org/026nmvv73", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ] + }, + { + "id": "https://openalex.org/I149899117", + "display_name": "Max Planck Society", + "ror": "https://ror.org/01hhn8329", + "country_code": "DE", + "type": "funder", + "lineage": [ + "https://openalex.org/I149899117" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Carl Edward Rasmussen", + "raw_affiliation_strings": [ + "Max Planck Institute for Biological Cybernetics, Max Planck Society" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "institution_ids": [ + "https://openalex.org/I4210112925", + "https://openalex.org/I149899117" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5080713659", + "display_name": "Christopher K. I. Williams", + "orcid": "https://orcid.org/0000-0002-6270-4703" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Christopher K. I. Williams", + "raw_affiliation_strings": [ + "School of Informatics" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Informatics", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5108711177" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 60.0909, + "has_fulltext": false, + "cited_by_count": 10487, + "citation_normalized_percentile": { + "value": 0.99936548, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9882000088691711, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13126", + "display_name": "Scientific Research and Discoveries", + "score": 0.9718000292778015, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.830909252166748 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7165400981903076 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.678665816783905 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.5565923452377319 + }, + { + "id": "https://openalex.org/keywords/gaussian-process", + "display_name": "Gaussian process", + "score": 0.5361518859863281 + }, + { + "id": "https://openalex.org/keywords/probabilistic-logic", + "display_name": "Probabilistic logic", + "score": 0.5021359920501709 + }, + { + "id": "https://openalex.org/keywords/relevance-vector-machine", + "display_name": "Relevance vector machine", + "score": 0.5012705326080322 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.48535385727882385 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.47896531224250793 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.3814472556114197 + }, + { + "id": "https://openalex.org/keywords/gaussian", + "display_name": "Gaussian", + "score": 0.2928916811943054 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.830909252166748 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7165400981903076 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.678665816783905 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.5565923452377319 + }, + { + "id": "https://openalex.org/C61326573", + "wikidata": "https://www.wikidata.org/wiki/Q1496376", + "display_name": "Gaussian process", + "level": 3, + "score": 0.5361518859863281 + }, + { + "id": "https://openalex.org/C49937458", + "wikidata": "https://www.wikidata.org/wiki/Q2599292", + "display_name": "Probabilistic logic", + "level": 2, + "score": 0.5021359920501709 + }, + { + "id": "https://openalex.org/C14948415", + "wikidata": "https://www.wikidata.org/wiki/Q7310972", + "display_name": "Relevance vector machine", + "level": 3, + "score": 0.5012705326080322 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.48535385727882385 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.47896531224250793 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.3814472556114197 + }, + { + "id": "https://openalex.org/C163716315", + "wikidata": "https://www.wikidata.org/wiki/Q901177", + "display_name": "Gaussian", + "level": 2, + "score": 0.2928916811943054 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 12, + "locations": [ + { + "id": "doi:10.7551/mitpress/3206.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/3206.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.363.7289", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.363.7289", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://mlg.eng.cam.ac.uk/pub/pdf/Ras04.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.86.3414", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.86.3414", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.ubc.ca/~hutter/earg/papers05/rasmussen_gps_in_ml.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-014768173", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=014768173&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:2307304", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2307304", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:edoc.mpg.de:232601", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/232601", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Advanced Lectures on Machine Learning: ML Summer Schools 2003, Canberra, Australia, February 2 - 14, 2003, Tübingen, Germany, August 4 - 16, 2003, Revised Lectures, 63-71 (2004)", + "raw_type": "InBook" + }, + { + "id": "pmh:oai:edoc.mpg.de:312148", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/312148", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book" + }, + { + "id": "pmh:oai:generic.eprints.org:325766", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/325766/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book" + }, + { + "id": "pmh:oai:generic.eprints.org:327253", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/327253/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book Section" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1791157", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-D2FB-6", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Adaptive Computation and Machine Learning", + "raw_type": "info:eu-repo/semantics/book" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1792157", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-F365-A", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Advanced Lectures on Machine Learning: ML Summer Schools 2003, Canberra, Australia, February 2 - 14, 2003, Tübingen, Germany, August 4 - 16, 2003", + "raw_type": "info:eu-repo/semantics/conferenceObject" + }, + { + "id": "mag:3023062339", + "is_oa": false, + "landing_page_url": "https://www.research.ed.ac.uk/portal/en/publications/covariance-functions(33de55b3-5bb5-43f6-874e-301a6d2b2160)/export.html", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463626", + "display_name": "MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "MIT Press eBooks", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 180, + "referenced_works": [ + "https://openalex.org/W14377099", + "https://openalex.org/W44447720", + "https://openalex.org/W61071295", + "https://openalex.org/W131514509", + "https://openalex.org/W186419298", + "https://openalex.org/W336602872", + "https://openalex.org/W1213006044", + "https://openalex.org/W1484867920", + "https://openalex.org/W1486089539", + "https://openalex.org/W1486164486", + "https://openalex.org/W1496317909", + "https://openalex.org/W1497675750", + "https://openalex.org/W1505043854", + "https://openalex.org/W1506153731", + "https://openalex.org/W1510355813", + "https://openalex.org/W1512098439", + "https://openalex.org/W1512149552", + "https://openalex.org/W1515272691", + "https://openalex.org/W1543996294", + "https://openalex.org/W1549258098", + "https://openalex.org/W1550570395", + "https://openalex.org/W1551209770", + "https://openalex.org/W1554663460", + "https://openalex.org/W1564947197", + "https://openalex.org/W1567512734", + "https://openalex.org/W1571894236", + "https://openalex.org/W1574225613", + "https://openalex.org/W1598589417", + "https://openalex.org/W1601740268", + "https://openalex.org/W1604293137", + "https://openalex.org/W1607751291", + "https://openalex.org/W1618393386", + "https://openalex.org/W1618449801", + "https://openalex.org/W1628829797", + "https://openalex.org/W1633751774", + "https://openalex.org/W1642427530", + "https://openalex.org/W1648445109", + "https://openalex.org/W1654787807", + "https://openalex.org/W1755117326", + "https://openalex.org/W1859781365", + "https://openalex.org/W1963533512", + "https://openalex.org/W1965999112", + "https://openalex.org/W1967396577", + "https://openalex.org/W1975780894", + "https://openalex.org/W1976382401", + "https://openalex.org/W1976625337", + "https://openalex.org/W1978188282", + "https://openalex.org/W1978394996", + "https://openalex.org/W1981025032", + "https://openalex.org/W1982032418", + "https://openalex.org/W1982276155", + "https://openalex.org/W1986280275", + "https://openalex.org/W1995672551", + "https://openalex.org/W1998167411", + "https://openalex.org/W2000241167", + "https://openalex.org/W2003706076", + "https://openalex.org/W2003870625", + "https://openalex.org/W2006314423", + "https://openalex.org/W2008827410", + "https://openalex.org/W2014831690", + "https://openalex.org/W2015904350", + "https://openalex.org/W2018044188", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020999234", + "https://openalex.org/W2023163512", + "https://openalex.org/W2033839039", + "https://openalex.org/W2041863660", + "https://openalex.org/W2047028564", + "https://openalex.org/W2049387919", + "https://openalex.org/W2056735347", + "https://openalex.org/W2062291655", + "https://openalex.org/W2063852603", + "https://openalex.org/W2065540158", + "https://openalex.org/W2069371995", + "https://openalex.org/W2069527924", + "https://openalex.org/W2072555316", + "https://openalex.org/W2078206416", + "https://openalex.org/W2081873601", + "https://openalex.org/W2085877024", + "https://openalex.org/W2087978636", + "https://openalex.org/W2088538739", + "https://openalex.org/W2090102379", + "https://openalex.org/W2090353374", + "https://openalex.org/W2093268114", + "https://openalex.org/W2094169479", + "https://openalex.org/W2094212611", + "https://openalex.org/W2096335861", + "https://openalex.org/W2098115979", + "https://openalex.org/W2098626000", + "https://openalex.org/W2098949458", + "https://openalex.org/W2100136038", + "https://openalex.org/W2101709642", + "https://openalex.org/W2103972570", + "https://openalex.org/W2104533781", + "https://openalex.org/W2106868411", + "https://openalex.org/W2107152312", + "https://openalex.org/W2107636931", + "https://openalex.org/W2107725114", + "https://openalex.org/W2108966602", + "https://openalex.org/W2111176881", + "https://openalex.org/W2111494971", + "https://openalex.org/W2112545207", + "https://openalex.org/W2114229504", + "https://openalex.org/W2114412769", + "https://openalex.org/W2115606304", + "https://openalex.org/W2116723448", + "https://openalex.org/W2117063635", + "https://openalex.org/W2117812871", + "https://openalex.org/W2118195892", + "https://openalex.org/W2123687908", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2126455177", + "https://openalex.org/W2127713198", + "https://openalex.org/W2129564505", + "https://openalex.org/W2129869373", + "https://openalex.org/W2130475491", + "https://openalex.org/W2130859329", + "https://openalex.org/W2137467792", + "https://openalex.org/W2137557016", + "https://openalex.org/W2137956165", + "https://openalex.org/W2139479120", + "https://openalex.org/W2140170995", + "https://openalex.org/W2140251433", + "https://openalex.org/W2141274633", + "https://openalex.org/W2141436719", + "https://openalex.org/W2142182841", + "https://openalex.org/W2142387771", + "https://openalex.org/W2142575165", + "https://openalex.org/W2143022286", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144286620", + "https://openalex.org/W2145295623", + "https://openalex.org/W2146766088", + "https://openalex.org/W2148603752", + "https://openalex.org/W2149417376", + "https://openalex.org/W2149846618", + "https://openalex.org/W2151238122", + "https://openalex.org/W2152701363", + "https://openalex.org/W2152937653", + "https://openalex.org/W2153347097", + "https://openalex.org/W2153756422", + "https://openalex.org/W2156909104", + "https://openalex.org/W2158451137", + "https://openalex.org/W2158529569", + "https://openalex.org/W2160840682", + "https://openalex.org/W2161767008", + "https://openalex.org/W2162114812", + "https://openalex.org/W2163057507", + "https://openalex.org/W2167061265", + "https://openalex.org/W2167986580", + "https://openalex.org/W2168022998", + "https://openalex.org/W2169779569", + "https://openalex.org/W2170076406", + "https://openalex.org/W2170078560", + "https://openalex.org/W2170120409", + "https://openalex.org/W2170334710", + "https://openalex.org/W2171522835", + "https://openalex.org/W2172039283", + "https://openalex.org/W2296319761", + "https://openalex.org/W2408196097", + "https://openalex.org/W2464224693", + "https://openalex.org/W2548695521", + "https://openalex.org/W2554813760", + "https://openalex.org/W2782810849", + "https://openalex.org/W2797583072", + "https://openalex.org/W2798909945", + "https://openalex.org/W2904816695", + "https://openalex.org/W2916304084", + "https://openalex.org/W2989448192", + "https://openalex.org/W3014600732", + "https://openalex.org/W3017143921", + "https://openalex.org/W3023786531", + "https://openalex.org/W3048078645", + "https://openalex.org/W3119264854", + "https://openalex.org/W3127325877", + "https://openalex.org/W3134067276", + "https://openalex.org/W3140968660", + "https://openalex.org/W3148924112", + "https://openalex.org/W3165771198" + ], + "related_works": [ + "https://openalex.org/W3140968660", + "https://openalex.org/W2951665052", + "https://openalex.org/W2911964244", + "https://openalex.org/W2192203593", + "https://openalex.org/W2168464387", + "https://openalex.org/W2156909104", + "https://openalex.org/W2131241448", + "https://openalex.org/W2107386393", + "https://openalex.org/W2101234009", + "https://openalex.org/W2099768828", + "https://openalex.org/W2099201756", + "https://openalex.org/W2038669746", + "https://openalex.org/W2018044188", + "https://openalex.org/W1973333099", + "https://openalex.org/W1663973292", + "https://openalex.org/W1571870753", + "https://openalex.org/W1567512734", + "https://openalex.org/W1560724230", + "https://openalex.org/W1510052597", + "https://openalex.org/W137285897" + ], + "abstract_inverted_index": { + "A": [ + 0 + ], + "comprehensive": [ + 1 + ], + "and": [ + 2 + ], + "self-contained": [ + 3 + ], + "introduction": [ + 4 + ], + "to": [ + 5, + 15 + ], + "Gaussian": [ + 6 + ], + "processes,": [ + 7 + ], + "which": [ + 8 + ], + "provide": [ + 9 + ], + "a": [ + 10 + ], + "principled,": [ + 11 + ], + "practical,": [ + 12 + ], + "probabilistic": [ + 13 + ], + "approach": [ + 14 + ], + "learning": [ + 16 + ], + "in": [ + 17 + ], + "kernel": [ + 18 + ], + "machines.": [ + 19 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 2 + }, + { + "year": 2025, + "cited_by_count": 3 + }, + { + "year": 2024, + "cited_by_count": 8 + }, + { + "year": 2023, + "cited_by_count": 30 + }, + { + "year": 2022, + "cited_by_count": 123 + }, + { + "year": 2021, + "cited_by_count": 1209 + }, + { + "year": 2020, + "cited_by_count": 1390 + }, + { + "year": 2019, + "cited_by_count": 1013 + }, + { + "year": 2018, + "cited_by_count": 912 + }, + { + "year": 2017, + "cited_by_count": 810 + }, + { + "year": 2016, + "cited_by_count": 818 + }, + { + "year": 2015, + "cited_by_count": 825 + }, + { + "year": 2014, + "cited_by_count": 736 + }, + { + "year": 2013, + "cited_by_count": 598 + }, + { + "year": 2012, + "cited_by_count": 493 + } + ], + "updated_date": "2026-05-14T08:36:36.166977", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2997591727", + "doi": "https://doi.org/10.5555/1953048.2078195", + "title": "Scikit-learn: Machine Learning in Python", + "display_name": "Scikit-learn: Machine Learning in Python", + "relevance_score": 6227.3545, + "publication_year": 2011, + "publication_date": "2011-11-01", + "ids": { + "openalex": "https://openalex.org/W2997591727", + "doi": "https://doi.org/10.5555/1953048.2078195", + "mag": "2997591727" + }, + "language": "en", + "primary_location": { + "id": "mag:2997591727", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1953048.2078195", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5001344255", + "display_name": "PedregosaFabian", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "PedregosaFabian", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015155577", + "display_name": "VaroquauxGaël", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "VaroquauxGaël", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5082193384", + "display_name": "GramfortAlexandre", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "GramfortAlexandre", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5046730698", + "display_name": "MichelVincent", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "MichelVincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5057304980", + "display_name": "ThirionBertrand", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "ThirionBertrand", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031085857", + "display_name": "GriselOlivier", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "GriselOlivier", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5023292999", + "display_name": "BlondelMathieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "BlondelMathieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088096317", + "display_name": "PrettenhoferPeter", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PrettenhoferPeter", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5083564992", + "display_name": "WeissRon", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "WeissRon", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5056576127", + "display_name": "DubourgVincent", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "DubourgVincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5082383435", + "display_name": "VanderplasJake", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "VanderplasJake", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027220078", + "display_name": "PassosAlexandre", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PassosAlexandre", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002306909", + "display_name": "CournapeauDavid", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "CournapeauDavid", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026983194", + "display_name": "BrucherMatthieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "BrucherMatthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014917008", + "display_name": "PerrotMatthieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PerrotMatthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5034896968", + "display_name": "DuchesnayÉdouard", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "DuchesnayÉdouard", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 16, + "corresponding_author_ids": [ + "https://openalex.org/A5001344255" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 21.1011, + "has_fulltext": false, + "cited_by_count": 8193, + "citation_normalized_percentile": { + "value": 0.99448925, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8940595388412476 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6587178707122803 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5495919585227966 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4344472587108612 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.3134846091270447 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8940595388412476 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6587178707122803 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5495919585227966 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4344472587108612 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.3134846091270447 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2997591727", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1953048.2078195", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.5299999713897705 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3102476541", + "https://openalex.org/W2911964244", + "https://openalex.org/W2064675550", + "https://openalex.org/W2011301426", + "https://openalex.org/W2153635508", + "https://openalex.org/W2119821739", + "https://openalex.org/W2250539671", + "https://openalex.org/W1678356000", + "https://openalex.org/W3103145119", + "https://openalex.org/W3120740533", + "https://openalex.org/W2194775991", + "https://openalex.org/W2146292423", + "https://openalex.org/W3085162807", + "https://openalex.org/W2342249984", + "https://openalex.org/W2056132907", + "https://openalex.org/W2187089797", + "https://openalex.org/W2097998348", + "https://openalex.org/W1880262756", + "https://openalex.org/W2148143831", + "https://openalex.org/W1480376833" + ], + "abstract_inverted_index": { + "Scikit-learn": [ + 0 + ], + "is": [ + 1 + ], + "a": [ + 2, + 6 + ], + "Python": [ + 3 + ], + "module": [ + 4 + ], + "integrating": [ + 5 + ], + "wide": [ + 7 + ], + "range": [ + 8 + ], + "of": [ + 9 + ], + "state-of-the-art": [ + 10 + ], + "machine": [ + 11 + ], + "learning": [ + 12 + ], + "algorithms": [ + 13 + ], + "for": [ + 14 + ], + "medium-scale": [ + 15 + ], + "supervised": [ + 16 + ], + "and": [ + 17 + ], + "unsupervised": [ + 18 + ], + "problems.": [ + 19 + ], + "This": [ + 20 + ], + "package": [ + 21 + ], + "focuses": [ + 22 + ], + "on": [ + 23 + ], + "bringing": [ + 24 + ], + "mach...": [ + 25 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 179 + }, + { + "year": 2025, + "cited_by_count": 3317 + }, + { + "year": 2024, + "cited_by_count": 1191 + }, + { + "year": 2023, + "cited_by_count": 907 + }, + { + "year": 2022, + "cited_by_count": 726 + }, + { + "year": 2021, + "cited_by_count": 629 + }, + { + "year": 2020, + "cited_by_count": 479 + }, + { + "year": 2019, + "cited_by_count": 250 + }, + { + "year": 2018, + "cited_by_count": 193 + }, + { + "year": 2017, + "cited_by_count": 136 + }, + { + "year": 2016, + "cited_by_count": 87 + }, + { + "year": 2015, + "cited_by_count": 50 + }, + { + "year": 2014, + "cited_by_count": 34 + }, + { + "year": 2013, + "cited_by_count": 13 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2953384591", + "doi": "https://doi.org/10.48550/arxiv.1605.08695", + "title": "TensorFlow: A system for large-scale machine learning", + "display_name": "TensorFlow: A system for large-scale machine learning", + "relevance_score": 6134.0415, + "publication_year": 2016, + "publication_date": "2016-05-27", + "ids": { + "openalex": "https://openalex.org/W2953384591", + "doi": "https://doi.org/10.48550/arxiv.1605.08695", + "mag": "2953384591" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1605.08695", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Abadi, Martín", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Barham, Paul", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100665512", + "display_name": "Jianmin Chen", + "orcid": "https://orcid.org/0000-0001-5859-3070" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Jianmin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715424", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-8631-2424" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Zhifeng", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Davis, Andy", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dean, Jeffrey", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Devin, Matthieu", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ghemawat, Sanjay", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Irving, Geoffrey", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isard, Michael", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kudlur, Manjunath", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Levenberg, Josh", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Monga, Rajat", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Moore, Sherry", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Murray, Derek G.", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Steiner, Benoit", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Tucker, Paul", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vasudevan, Vijay", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Warden, Pete", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Wicke, Martin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yu, Yuan", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zheng, Xiaoqiang", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 22, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 8815, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.996999979019165, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.996999979019165, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.9926000237464905, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9921000003814697, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6736689805984497 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5508862733840942 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4714523255825043 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3947470188140869 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.1177549660205841 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.11608994007110596 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6736689805984497 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5508862733840942 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4714523255825043 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3947470188140869 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.1177549660205841 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.11608994007110596 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1605.08695", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1605.08695", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/9", + "display_name": "Industry, innovation and infrastructure", + "score": 0.4099999964237213 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 56, + "referenced_works": [ + "https://openalex.org/W104184427", + "https://openalex.org/W145476170", + "https://openalex.org/W941230081", + "https://openalex.org/W1442374986", + "https://openalex.org/W1484210532", + "https://openalex.org/W1485981043", + "https://openalex.org/W1493893823", + "https://openalex.org/W1498436455", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1869752048", + "https://openalex.org/W1978660892", + "https://openalex.org/W1992479210", + "https://openalex.org/W2041517243", + "https://openalex.org/W2055312318", + "https://openalex.org/W2061570747", + "https://openalex.org/W2066443755", + "https://openalex.org/W2072566913", + "https://openalex.org/W2083842231", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100664567", + "https://openalex.org/W2109722477", + "https://openalex.org/W2117539524", + "https://openalex.org/W2120480077", + "https://openalex.org/W2131400476", + "https://openalex.org/W2131975293", + "https://openalex.org/W2132339004", + "https://openalex.org/W2140833774", + "https://openalex.org/W2141992894", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146757372", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163961697", + "https://openalex.org/W2168231600", + "https://openalex.org/W2173213060", + "https://openalex.org/W2186615578", + "https://openalex.org/W2198403777", + "https://openalex.org/W2259472270", + "https://openalex.org/W2308045930", + "https://openalex.org/W2336650964", + "https://openalex.org/W2339765813", + "https://openalex.org/W2384495648", + "https://openalex.org/W2591588155", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949245006", + "https://openalex.org/W2949501655", + "https://openalex.org/W2949605076", + "https://openalex.org/W2949650786", + "https://openalex.org/W2949888546", + "https://openalex.org/W2950094539", + "https://openalex.org/W2950179405", + "https://openalex.org/W2950577311", + "https://openalex.org/W2951714314", + "https://openalex.org/W2951781666" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 15, + 92, + 103, + 125, + 152, + 166 + ], + "is": [ + 1, + 87 + ], + "a": [ + 2, + 36, + 43, + 47, + 105 + ], + "machine": [ + 3, + 48, + 143 + ], + "learning": [ + 4, + 144 + ], + "system": [ + 5 + ], + "that": [ + 6, + 27, + 29, + 165 + ], + "operates": [ + 7 + ], + "at": [ + 8 + ], + "large": [ + 9 + ], + "scale": [ + 10 + ], + "and": [ + 11, + 24, + 45, + 58, + 100, + 115, + 136, + 160 + ], + "in": [ + 12, + 42, + 77, + 126, + 155 + ], + "heterogeneous": [ + 13 + ], + "environments.": [ + 14 + ], + "uses": [ + 16 + ], + "dataflow": [ + 17, + 37, + 153 + ], + "graphs": [ + 18 + ], + "to": [ + 19, + 72, + 95, + 157 + ], + "represent": [ + 20 + ], + "computation,": [ + 21 + ], + "shared": [ + 22, + 85 + ], + "state,": [ + 23 + ], + "the": [ + 25, + 33, + 73, + 82, + 90, + 151, + 162 + ], + "operations": [ + 26 + ], + "mutate": [ + 28 + ], + "state.": [ + 30 + ], + "It": [ + 31 + ], + "maps": [ + 32 + ], + "nodes": [ + 34 + ], + "of": [ + 35, + 84, + 107 + ], + "graph": [ + 38 + ], + "across": [ + 39, + 49 + ], + "many": [ + 40 + ], + "machines": [ + 41 + ], + "cluster,": [ + 44 + ], + "within": [ + 46 + ], + "multiple": [ + 50 + ], + "computational": [ + 51 + ], + "devices,": [ + 52 + ], + "including": [ + 53 + ], + "multicore": [ + 54 + ], + "CPUs,": [ + 55 + ], + "general-purpose": [ + 56 + ], + "GPUs,": [ + 57 + ], + "custom": [ + 59 + ], + "designed": [ + 60 + ], + "ASICs": [ + 61 + ], + "known": [ + 62 + ], + "as": [ + 63, + 132 + ], + "Tensor": [ + 64 + ], + "Processing": [ + 65 + ], + "Units": [ + 66 + ], + "(TPUs).": [ + 67 + ], + "This": [ + 68 + ], + "architecture": [ + 69 + ], + "gives": [ + 70 + ], + "flexibility": [ + 71 + ], + "application": [ + 74 + ], + "developer:": [ + 75 + ], + "whereas": [ + 76 + ], + "previous": [ + 78 + ], + "\"parameter": [ + 79 + ], + "server\"": [ + 80 + ], + "designs": [ + 81 + ], + "management": [ + 83 + ], + "state": [ + 86 + ], + "built": [ + 88 + ], + "into": [ + 89 + ], + "system,": [ + 91 + ], + "enables": [ + 93 + ], + "developers": [ + 94 + ], + "experiment": [ + 96 + ], + "with": [ + 97, + 109 + ], + "novel": [ + 98 + ], + "optimizations": [ + 99 + ], + "training": [ + 101, + 114 + ], + "algorithms.": [ + 102 + ], + "supports": [ + 104 + ], + "variety": [ + 106 + ], + "applications,": [ + 108 + ], + "particularly": [ + 110 + ], + "strong": [ + 111 + ], + "support": [ + 112 + ], + "for": [ + 113, + 142, + 168 + ], + "inference": [ + 116 + ], + "on": [ + 117 + ], + "deep": [ + 118 + ], + "neural": [ + 119 + ], + "networks.": [ + 120 + ], + "Several": [ + 121 + ], + "Google": [ + 122 + ], + "services": [ + 123 + ], + "use": [ + 124 + ], + "production,": [ + 127 + ], + "we": [ + 128, + 149 + ], + "have": [ + 129 + ], + "released": [ + 130 + ], + "it": [ + 131, + 137 + ], + "an": [ + 133 + ], + "open-source": [ + 134 + ], + "project,": [ + 135 + ], + "has": [ + 138 + ], + "become": [ + 139 + ], + "widely": [ + 140 + ], + "used": [ + 141 + ], + "research.": [ + 145 + ], + "In": [ + 146 + ], + "this": [ + 147 + ], + "paper,": [ + 148 + ], + "describe": [ + 150 + ], + "model": [ + 154 + ], + "contrast": [ + 156 + ], + "existing": [ + 158 + ], + "systems,": [ + 159 + ], + "demonstrate": [ + 161 + ], + "compelling": [ + 163 + ], + "performance": [ + 164 + ], + "achieves": [ + 167 + ], + "several": [ + 169 + ], + "real-world": [ + 170 + ], + "applications.": [ + 171 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 15 + }, + { + "year": 2025, + "cited_by_count": 161 + }, + { + "year": 2024, + "cited_by_count": 343 + }, + { + "year": 2023, + "cited_by_count": 730 + }, + { + "year": 2022, + "cited_by_count": 866 + }, + { + "year": 2021, + "cited_by_count": 1829 + }, + { + "year": 2020, + "cited_by_count": 1859 + }, + { + "year": 2019, + "cited_by_count": 1814 + }, + { + "year": 2018, + "cited_by_count": 959 + }, + { + "year": 2017, + "cited_by_count": 226 + }, + { + "year": 2016, + "cited_by_count": 12 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2118020653", + "doi": "https://doi.org/10.1145/505282.505283", + "title": "Machine learning in automated text categorization", + "display_name": "Machine learning in automated text categorization", + "relevance_score": 6087.0835, + "publication_year": 2002, + "publication_date": "2002-03-01", + "ids": { + "openalex": "https://openalex.org/W2118020653", + "doi": "https://doi.org/10.1145/505282.505283", + "mag": "2118020653" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/505282.505283", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/505282.505283", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S157921468", + "display_name": "ACM Computing Surveys", + "issn_l": "0360-0300", + "issn": [ + "0360-0300", + "1557-7341" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Computing Surveys", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/cs/0110053", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5063975186", + "display_name": "Fabrizio Sebastiani", + "orcid": "https://orcid.org/0000-0003-4221-6427" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210107558", + "display_name": "Consorzio Pisa Ricerche", + "ror": "https://ror.org/01t0n3b84", + "country_code": "IT", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210107558" + ] + } + ], + "countries": [ + "IT" + ], + "is_corresponding": true, + "raw_author_name": "Fabrizio Sebastiani", + "raw_affiliation_strings": [ + "Consiglio Nazionale delle Ricerche, Pisa, Italy" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Consiglio Nazionale delle Ricerche, Pisa, Italy", + "institution_ids": [ + "https://openalex.org/I4210107558" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5063975186" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210107558" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 291.6231, + "has_fulltext": false, + "cited_by_count": 7884, + "citation_normalized_percentile": { + "value": 0.99998629, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "34", + "issue": "1", + "first_page": "1", + "last_page": "47" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13083", + "display_name": "Advanced Text Analysis Techniques", + "score": 0.9939000010490417, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9889000058174133, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8797882795333862 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.7666846513748169 + }, + { + "id": "https://openalex.org/keywords/software-portability", + "display_name": "Software portability", + "score": 0.7267234325408936 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6928958892822266 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.678881049156189 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6749231815338135 + }, + { + "id": "https://openalex.org/keywords/text-categorization", + "display_name": "Text categorization", + "score": 0.5723184943199158 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.41375380754470825 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8797882795333862 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.7666846513748169 + }, + { + "id": "https://openalex.org/C63000827", + "wikidata": "https://www.wikidata.org/wiki/Q3080428", + "display_name": "Software portability", + "level": 2, + "score": 0.7267234325408936 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6928958892822266 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.678881049156189 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6749231815338135 + }, + { + "id": "https://openalex.org/C2986744138", + "wikidata": "https://www.wikidata.org/wiki/Q302088", + "display_name": "Text categorization", + "level": 3, + "score": 0.5723184943199158 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.41375380754470825 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1145/505282.505283", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/505282.505283", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S157921468", + "display_name": "ACM Computing Surveys", + "issn_l": "0360-0300", + "issn": [ + "0360-0300", + "1557-7341" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Computing Surveys", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:cs/0110053", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0110053", + "pdf_url": "https://arxiv.org/pdf/cs/0110053", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:dnet:people______::286d170179fde02bc512e4870a2b12b5", + "is_oa": false, + "landing_page_url": "https://openportal.isti.cnr.it/doc?id=people______::286d170179fde02bc512e4870a2b12b5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055261", + "display_name": "ISTI Open Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "ACM computing surveys 34 (2002): 1–47. doi:10.1145/505282.505283", + "raw_type": "Journal article" + }, + { + "id": "pmh:oai:dnet:people______::3938b196dad6eb4120aca01c3005413b", + "is_oa": false, + "landing_page_url": "https://openportal.isti.cnr.it/doc?id=people______::3938b196dad6eb4120aca01c3005413b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055261", + "display_name": "ISTI Open Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "ISTI Technical reports, pp.1–63, 1999", + "raw_type": "Other" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:cs/0110053", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0110053", + "pdf_url": "https://arxiv.org/pdf/cs/0110053", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/8", + "display_name": "Decent work and economic growth", + "score": 0.7099999785423279 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 204, + "referenced_works": [ + "https://openalex.org/W12876238", + "https://openalex.org/W22906612", + "https://openalex.org/W35304842", + "https://openalex.org/W59979790", + "https://openalex.org/W74894479", + "https://openalex.org/W81384683", + "https://openalex.org/W81511778", + "https://openalex.org/W104970664", + "https://openalex.org/W107306860", + "https://openalex.org/W112196149", + "https://openalex.org/W116328816", + "https://openalex.org/W148103248", + "https://openalex.org/W166124110", + "https://openalex.org/W1482260847", + "https://openalex.org/W1487445520", + "https://openalex.org/W1490175418", + "https://openalex.org/W1493526108", + "https://openalex.org/W1505794130", + "https://openalex.org/W1507179106", + "https://openalex.org/W1508175965", + "https://openalex.org/W1513874326", + "https://openalex.org/W1514707997", + "https://openalex.org/W1520963883", + "https://openalex.org/W1522930027", + "https://openalex.org/W1523389133", + "https://openalex.org/W1523949738", + "https://openalex.org/W1533946607", + "https://openalex.org/W1544227718", + "https://openalex.org/W1547553618", + "https://openalex.org/W1550961891", + "https://openalex.org/W1553682320", + "https://openalex.org/W1556094091", + "https://openalex.org/W1561056154", + "https://openalex.org/W1574901103", + "https://openalex.org/W1576676390", + "https://openalex.org/W1577216492", + "https://openalex.org/W1578881253", + "https://openalex.org/W1591234214", + "https://openalex.org/W1592212241", + "https://openalex.org/W1594962278", + "https://openalex.org/W1597379537", + "https://openalex.org/W1601145406", + "https://openalex.org/W1619226191", + "https://openalex.org/W1620204465", + "https://openalex.org/W1813610639", + "https://openalex.org/W1857571498", + "https://openalex.org/W1907380269", + "https://openalex.org/W1924689489", + "https://openalex.org/W1966065191", + "https://openalex.org/W1969572066", + "https://openalex.org/W1970858159", + "https://openalex.org/W1970974276", + "https://openalex.org/W1971666241", + "https://openalex.org/W1973911615", + "https://openalex.org/W1975496312", + "https://openalex.org/W1977182536", + "https://openalex.org/W1978394996", + "https://openalex.org/W1979648751", + "https://openalex.org/W1980776671", + "https://openalex.org/W1983078185", + "https://openalex.org/W1986913017", + "https://openalex.org/W1988711048", + "https://openalex.org/W1989568037", + "https://openalex.org/W1989738209", + "https://openalex.org/W1993657037", + "https://openalex.org/W1993934121", + "https://openalex.org/W1995014490", + "https://openalex.org/W2001664274", + "https://openalex.org/W2002675557", + "https://openalex.org/W2002857471", + "https://openalex.org/W2003436527", + "https://openalex.org/W2004180556", + "https://openalex.org/W2004871537", + "https://openalex.org/W2005422315", + "https://openalex.org/W2005758492", + "https://openalex.org/W2006119904", + "https://openalex.org/W2006187024", + "https://openalex.org/W2007395264", + "https://openalex.org/W2007512902", + "https://openalex.org/W2008931716", + "https://openalex.org/W2009190245", + "https://openalex.org/W2010652031", + "https://openalex.org/W2013657661", + "https://openalex.org/W2015267443", + "https://openalex.org/W2015518873", + "https://openalex.org/W2017867386", + "https://openalex.org/W2019778169", + "https://openalex.org/W2020316999", + "https://openalex.org/W2025451713", + "https://openalex.org/W2029609769", + "https://openalex.org/W2033751006", + "https://openalex.org/W2035754578", + "https://openalex.org/W2040424159", + "https://openalex.org/W2041726831", + "https://openalex.org/W2043909051", + "https://openalex.org/W2045812729", + "https://openalex.org/W2047031127", + "https://openalex.org/W2049384587", + "https://openalex.org/W2053463056", + "https://openalex.org/W2058982198", + "https://openalex.org/W2059019405", + "https://openalex.org/W2060216474", + "https://openalex.org/W2060476676", + "https://openalex.org/W2060704583", + "https://openalex.org/W2062847911", + "https://openalex.org/W2062914707", + "https://openalex.org/W2063198646", + "https://openalex.org/W2063862666", + "https://openalex.org/W2064580901", + "https://openalex.org/W2065010255", + "https://openalex.org/W2065747622", + "https://openalex.org/W2066462377", + "https://openalex.org/W2071415686", + "https://openalex.org/W2071664212", + "https://openalex.org/W2076008912", + "https://openalex.org/W2077777431", + "https://openalex.org/W2080251601", + "https://openalex.org/W2084044465", + "https://openalex.org/W2085302848", + "https://openalex.org/W2085989833", + "https://openalex.org/W2087609354", + "https://openalex.org/W2088658068", + "https://openalex.org/W2092134162", + "https://openalex.org/W2092488901", + "https://openalex.org/W2092689128", + "https://openalex.org/W2093098531", + "https://openalex.org/W2094934653", + "https://openalex.org/W2096152098", + "https://openalex.org/W2096411881", + "https://openalex.org/W2097089247", + "https://openalex.org/W2097847889", + "https://openalex.org/W2101154521", + "https://openalex.org/W2104808840", + "https://openalex.org/W2106365165", + "https://openalex.org/W2107008379", + "https://openalex.org/W2107827038", + "https://openalex.org/W2110224739", + "https://openalex.org/W2114535528", + "https://openalex.org/W2125776553", + "https://openalex.org/W2126502509", + "https://openalex.org/W2126631147", + "https://openalex.org/W2126850915", + "https://openalex.org/W2127994451", + "https://openalex.org/W2130337399", + "https://openalex.org/W2132315067", + "https://openalex.org/W2133890944", + "https://openalex.org/W2135276756", + "https://openalex.org/W2139578439", + "https://openalex.org/W2140785063", + "https://openalex.org/W2140956226", + "https://openalex.org/W2142515059", + "https://openalex.org/W2145036943", + "https://openalex.org/W2145296344", + "https://openalex.org/W2146888100", + "https://openalex.org/W2147152072", + "https://openalex.org/W2149684865", + "https://openalex.org/W2151801809", + "https://openalex.org/W2153211312", + "https://openalex.org/W2153962014", + "https://openalex.org/W2158738673", + "https://openalex.org/W2165612380", + "https://openalex.org/W2169384781", + "https://openalex.org/W2170654002", + "https://openalex.org/W2172142456", + "https://openalex.org/W2174678383", + "https://openalex.org/W2435251607", + "https://openalex.org/W2561675875", + "https://openalex.org/W2798573942", + "https://openalex.org/W2915186198", + "https://openalex.org/W2949696181", + "https://openalex.org/W2952299822", + "https://openalex.org/W2953123431", + "https://openalex.org/W3042893949", + "https://openalex.org/W3157411736", + "https://openalex.org/W4205241946", + "https://openalex.org/W4240008182", + "https://openalex.org/W4249379282", + "https://openalex.org/W4285719527", + "https://openalex.org/W6604296810", + "https://openalex.org/W6614676750", + "https://openalex.org/W6629232668", + "https://openalex.org/W6630268012", + "https://openalex.org/W6631307659", + "https://openalex.org/W6632118081", + "https://openalex.org/W6633640926", + "https://openalex.org/W6635379667", + "https://openalex.org/W6635548358", + "https://openalex.org/W6636628491", + "https://openalex.org/W6638423001", + "https://openalex.org/W6641777427", + "https://openalex.org/W6643036076", + "https://openalex.org/W6644484350", + "https://openalex.org/W6666817399", + "https://openalex.org/W6673691841", + "https://openalex.org/W6673781366", + "https://openalex.org/W6679004887", + "https://openalex.org/W6679453733", + "https://openalex.org/W6681835404", + "https://openalex.org/W6682342947", + "https://openalex.org/W6738852829", + "https://openalex.org/W6792154874", + "https://openalex.org/W6794861161", + "https://openalex.org/W7046466245", + "https://openalex.org/W7064660697" + ], + "related_works": [ + "https://openalex.org/W2360898036", + "https://openalex.org/W2390857744", + "https://openalex.org/W2133651098", + "https://openalex.org/W2390698788", + "https://openalex.org/W2383063829", + "https://openalex.org/W2138922887", + "https://openalex.org/W2082678934", + "https://openalex.org/W2035261173", + "https://openalex.org/W2106892947", + "https://openalex.org/W2237299843" + ], + "abstract_inverted_index": { + "The": [ + 0, + 74 + ], + "automated": [ + 1 + ], + "categorization": [ + 2, + 122 + ], + "(or": [ + 3 + ], + "classification)": [ + 4 + ], + "of": [ + 5, + 25, + 66, + 71, + 76, + 89, + 104 + ], + "texts": [ + 6 + ], + "into": [ + 7 + ], + "predefined": [ + 8 + ], + "categories": [ + 9 + ], + "has": [ + 10 + ], + "witnessed": [ + 11 + ], + "a": [ + 12, + 53, + 59, + 64, + 90, + 96 + ], + "booming": [ + 13 + ], + "interest": [ + 14 + ], + "in": [ + 15, + 27, + 85, + 102, + 133 + ], + "the": [ + 16, + 22, + 31, + 38, + 41, + 69, + 72, + 80, + 86, + 117, + 126 + ], + "last": [ + 17 + ], + "10": [ + 18 + ], + "years,": [ + 19 + ], + "due": [ + 20 + ], + "to": [ + 21, + 34, + 44, + 111, + 120, + 137 + ], + "increased": [ + 23 + ], + "availability": [ + 24 + ], + "documents": [ + 26 + ], + "digital": [ + 28 + ], + "form": [ + 29 + ], + "and": [ + 30, + 108, + 146 + ], + "ensuing": [ + 32 + ], + "need": [ + 33 + ], + "organize": [ + 35 + ], + "them.": [ + 36 + ], + "In": [ + 37 + ], + "research": [ + 39 + ], + "community": [ + 40 + ], + "dominant": [ + 42 + ], + "approach": [ + 43, + 78, + 83 + ], + "this": [ + 45, + 77 + ], + "problem": [ + 46 + ], + "is": [ + 47 + ], + "based": [ + 48 + ], + "on": [ + 49 + ], + "machine": [ + 50, + 127 + ], + "learning": [ + 51, + 128 + ], + "techniques:": [ + 52 + ], + "general": [ + 54 + ], + "inductive": [ + 55 + ], + "process": [ + 56 + ], + "automatically": [ + 57 + ], + "builds": [ + 58 + ], + "classifier": [ + 60, + 91, + 144, + 147 + ], + "by": [ + 61, + 92 + ], + "learning,": [ + 62 + ], + "from": [ + 63 + ], + "set": [ + 65 + ], + "preclassified": [ + 67 + ], + "documents,": [ + 68 + ], + "characteristics": [ + 70 + ], + "categories.": [ + 73 + ], + "advantages": [ + 75 + ], + "over": [ + 79 + ], + "knowledge": [ + 81 + ], + "engineering": [ + 82 + ], + "(consisting": [ + 84 + ], + "manual": [ + 87 + ], + "definition": [ + 88 + ], + "domain": [ + 93 + ], + "experts)": [ + 94 + ], + "are": [ + 95 + ], + "very": [ + 97 + ], + "good": [ + 98 + ], + "effectiveness,": [ + 99 + ], + "considerable": [ + 100 + ], + "savings": [ + 101 + ], + "terms": [ + 103 + ], + "expert": [ + 105 + ], + "labor": [ + 106 + ], + "power,": [ + 107 + ], + "straightforward": [ + 109 + ], + "portability": [ + 110 + ], + "different": [ + 112, + 139 + ], + "domains.": [ + 113 + ], + "This": [ + 114 + ], + "survey": [ + 115 + ], + "discusses": [ + 116 + ], + "main": [ + 118 + ], + "approaches": [ + 119 + ], + "text": [ + 121 + ], + "that": [ + 123 + ], + "fall": [ + 124 + ], + "within": [ + 125 + ], + "paradigm.": [ + 129 + ], + "We": [ + 130 + ], + "will": [ + 131 + ], + "discuss": [ + 132 + ], + "detail": [ + 134 + ], + "issues": [ + 135 + ], + "pertaining": [ + 136 + ], + "three": [ + 138 + ], + "problems,": [ + 140 + ], + "namely,": [ + 141 + ], + "document": [ + 142 + ], + "representation,": [ + 143 + ], + "construction,": [ + 145 + ], + "evaluation.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 43 + }, + { + "year": 2025, + "cited_by_count": 154 + }, + { + "year": 2024, + "cited_by_count": 162 + }, + { + "year": 2023, + "cited_by_count": 189 + }, + { + "year": 2022, + "cited_by_count": 208 + }, + { + "year": 2021, + "cited_by_count": 255 + }, + { + "year": 2020, + "cited_by_count": 387 + }, + { + "year": 2019, + "cited_by_count": 377 + }, + { + "year": 2018, + "cited_by_count": 423 + }, + { + "year": 2017, + "cited_by_count": 392 + }, + { + "year": 2016, + "cited_by_count": 423 + }, + { + "year": 2015, + "cited_by_count": 449 + }, + { + "year": 2014, + "cited_by_count": 482 + }, + { + "year": 2013, + "cited_by_count": 433 + }, + { + "year": 2012, + "cited_by_count": 433 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2021-02-01T00:00:00" + }, + { + "id": "https://openalex.org/W1504694836", + "doi": null, + "title": "Programs for Machine Learning", + "display_name": "Programs for Machine Learning", + "relevance_score": 5951.1997, + "publication_year": 1994, + "publication_date": "1994-01-01", + "ids": { + "openalex": "https://openalex.org/W1504694836", + "mag": "1504694836" + }, + "language": "en", + "primary_location": { + "id": "mag:1504694836", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5010384159", + "display_name": "Steven L. Salzberg", + "orcid": "https://orcid.org/0000-0002-8859-7432" + }, + "institutions": [ + { + "id": "https://openalex.org/I145311948", + "display_name": "Johns Hopkins University", + "ror": "https://ror.org/00za53h95", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I145311948" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Steven L. Salzberg", + "raw_affiliation_strings": [ + "Johns Hopkins University (" + ], + "raw_orcid": "https://orcid.org/0000-0002-8859-7432", + "affiliations": [ + { + "raw_affiliation_string": "Johns Hopkins University (", + "institution_ids": [ + "https://openalex.org/I145311948" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5071525910", + "display_name": "Alberto M. Segre", + "orcid": "https://orcid.org/0000-0002-8886-6559" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Alberto M. Segre", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-8886-6559", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5010384159" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I145311948" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 107.5137, + "has_fulltext": false, + "cited_by_count": 5804, + "citation_normalized_percentile": { + "value": 0.9997644, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11063", + "display_name": "Rough Sets and Fuzzy Logic", + "score": 0.9908000230789185, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/successor-cardinal", + "display_name": "Successor cardinal", + "score": 0.7589357495307922 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6884413957595825 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6734851002693176 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.6281428337097168 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6256998777389526 + }, + { + "id": "https://openalex.org/keywords/subject", + "display_name": "Subject (documents)", + "score": 0.5763391256332397 + }, + { + "id": "https://openalex.org/keywords/id3-algorithm", + "display_name": "ID3 algorithm", + "score": 0.5538088083267212 + }, + { + "id": "https://openalex.org/keywords/decision-tree-learning", + "display_name": "Decision tree learning", + "score": 0.2895125150680542 + }, + { + "id": "https://openalex.org/keywords/incremental-decision-tree", + "display_name": "Incremental decision tree", + "score": 0.1487756371498108 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.12600353360176086 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.1005239188671112 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C75306776", + "wikidata": "https://www.wikidata.org/wiki/Q7632662", + "display_name": "Successor cardinal", + "level": 2, + "score": 0.7589357495307922 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6884413957595825 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6734851002693176 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.6281428337097168 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6256998777389526 + }, + { + "id": "https://openalex.org/C2777855551", + "wikidata": "https://www.wikidata.org/wiki/Q12310021", + "display_name": "Subject (documents)", + "level": 2, + "score": 0.5763391256332397 + }, + { + "id": "https://openalex.org/C183931066", + "wikidata": "https://www.wikidata.org/wiki/Q1653378", + "display_name": "ID3 algorithm", + "level": 5, + "score": 0.5538088083267212 + }, + { + "id": "https://openalex.org/C5481197", + "wikidata": "https://www.wikidata.org/wiki/Q16766476", + "display_name": "Decision tree learning", + "level": 3, + "score": 0.2895125150680542 + }, + { + "id": "https://openalex.org/C10229987", + "wikidata": "https://www.wikidata.org/wiki/Q17083028", + "display_name": "Incremental decision tree", + "level": 4, + "score": 0.1487756371498108 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.12600353360176086 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.1005239188671112 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:1504694836", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions", + "score": 0.5799999833106995 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W1534707631", + "https://openalex.org/W1573640198", + "https://openalex.org/W1594031697", + "https://openalex.org/W1604329830", + "https://openalex.org/W2149706766", + "https://openalex.org/W3085162807" + ], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W2966207845", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766", + "https://openalex.org/W2147169507", + "https://openalex.org/W2140190241", + "https://openalex.org/W2136000097", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2123504579", + "https://openalex.org/W2112076978", + "https://openalex.org/W2084812512", + "https://openalex.org/W1988790447", + "https://openalex.org/W1912123407", + "https://openalex.org/W1670263352", + "https://openalex.org/W1594031697", + "https://openalex.org/W1585743408", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "Algorithms": [ + 0 + ], + "for": [ + 1, + 64, + 87 + ], + "constructing": [ + 2 + ], + "decision": [ + 3, + 20, + 68 + ], + "trees": [ + 4, + 69 + ], + "are": [ + 5, + 31 + ], + "among": [ + 6 + ], + "the": [ + 7, + 33, + 37, + 49, + 104, + 117 + ], + "most": [ + 8, + 34, + 61 + ], + "well": [ + 9 + ], + "known": [ + 10 + ], + "and": [ + 11, + 27, + 43, + 122 + ], + "widely": [ + 12 + ], + "used": [ + 13 + ], + "of": [ + 14, + 51, + 99, + 119 + ], + "all": [ + 15 + ], + "machine": [ + 16, + 38 + ], + "learning": [ + 17, + 39 + ], + "methods.": [ + 18 + ], + "Among": [ + 19 + ], + "tree": [ + 21 + ], + "algorithms,": [ + 22 + ], + "J.": [ + 23 + ], + "Ross": [ + 24 + ], + "Quinlan's": [ + 25, + 72 + ], + "ID3": [ + 26 + ], + "its": [ + 28 + ], + "successor,": [ + 29 + ], + "C4.5,": [ + 30 + ], + "probably": [ + 32 + ], + "popular": [ + 35 + ], + "in": [ + 36 + ], + "community.": [ + 40 + ], + "These": [ + 41 + ], + "algorithms": [ + 42 + ], + "variations": [ + 44 + ], + "on": [ + 45 + ], + "them": [ + 46 + ], + "have": [ + 47 + ], + "been": [ + 48 + ], + "subject": [ + 50 + ], + "numerous": [ + 52 + ], + "research": [ + 53 + ], + "papers": [ + 54 + ], + "since": [ + 55 + ], + "Quinlan": [ + 56, + 90 + ], + "introduced": [ + 57 + ], + "ID3.": [ + 58 + ], + "Until": [ + 59 + ], + "recently,": [ + 60 + ], + "researchers": [ + 62, + 121 + ], + "looking": [ + 63 + ], + "an": [ + 65 + ], + "introduction": [ + 66 + ], + "to": [ + 67, + 71, + 116 + ], + "turned": [ + 70 + ], + "seminal": [ + 73 + ], + "1986": [ + 74 + ], + "Machine": [ + 75, + 88 + ], + "Learning": [ + 76 + ], + "journal": [ + 77 + ], + "article": [ + 78 + ], + "[Quinlan,": [ + 79 + ], + "1986].": [ + 80 + ], + "In": [ + 81 + ], + "his": [ + 82, + 100 + ], + "new": [ + 83 + ], + "book,": [ + 84 + ], + "C4.5:": [ + 85 + ], + "Programs": [ + 86 + ], + "Learning,": [ + 89 + ], + "has": [ + 91 + ], + "put": [ + 92 + ], + "together": [ + 93 + ], + "a": [ + 94, + 113 + ], + "definitive,": [ + 95 + ], + "much": [ + 96 + ], + "needed": [ + 97 + ], + "description": [ + 98 + ], + "complete": [ + 101 + ], + "system,": [ + 102 + ], + "including": [ + 103 + ], + "latest": [ + 105 + ], + "developments.": [ + 106 + ], + "As": [ + 107 + ], + "such,": [ + 108 + ], + "this": [ + 109 + ], + "book": [ + 110 + ], + "will": [ + 111 + ], + "be": [ + 112 + ], + "welcome": [ + 114 + ], + "addition": [ + 115 + ], + "library": [ + 118 + ], + "many": [ + 120 + ], + "students.": [ + 123 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 11 + }, + { + "year": 2024, + "cited_by_count": 25 + }, + { + "year": 2023, + "cited_by_count": 36 + }, + { + "year": 2022, + "cited_by_count": 48 + }, + { + "year": 2021, + "cited_by_count": 153 + }, + { + "year": 2020, + "cited_by_count": 167 + }, + { + "year": 2019, + "cited_by_count": 143 + }, + { + "year": 2018, + "cited_by_count": 160 + }, + { + "year": 2017, + "cited_by_count": 145 + }, + { + "year": 2016, + "cited_by_count": 190 + }, + { + "year": 2015, + "cited_by_count": 311 + }, + { + "year": 2014, + "cited_by_count": 283 + }, + { + "year": 2013, + "cited_by_count": 321 + }, + { + "year": 2012, + "cited_by_count": 284 + } + ], + "updated_date": "2026-04-26T08:31:28.666265", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2271840356", + "doi": "https://doi.org/10.48550/arxiv.1603.04467", + "title": "TensorFlow: Large-Scale Machine Learning on Heterogeneous Distributed Systems", + "display_name": "TensorFlow: Large-Scale Machine Learning on Heterogeneous Distributed Systems", + "relevance_score": 5946.9307, + "publication_year": 2016, + "publication_date": "2016-03-14", + "ids": { + "openalex": "https://openalex.org/W2271840356", + "doi": "https://doi.org/10.48550/arxiv.1603.04467", + "mag": "2271840356" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1603.04467", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Abadi, Martín", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027820479", + "display_name": "Ashish Agarwal", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Agarwal, Ashish", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Barham, Paul", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047736127", + "display_name": "Eugene Brevdo", + "orcid": "https://orcid.org/0009-0005-7965-3534" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Brevdo, Eugene", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715424", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-8631-2424" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Chen, Zhifeng", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069624169", + "display_name": "Craig Citro", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Citro, Craig", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5066927687", + "display_name": "Gregory S. Corrado", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Corrado, Greg S.", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Davis, Andy", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Dean, Jeffrey", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Devin, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ghemawat, Sanjay", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004271128", + "display_name": "Ian Goodfellow", + "orcid": "https://orcid.org/0000-0003-3937-2322" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Goodfellow, Ian", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5064042510", + "display_name": "Andrew Harp", + "orcid": "https://orcid.org/0000-0002-4836-7878" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Harp, Andrew", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Irving, Geoffrey", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Isard, Michael", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110220840", + "display_name": "Yangqing Jia", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jia, Yangqing", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067370075", + "display_name": "Rafał Józefowicz", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jozefowicz, Rafal", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031789995", + "display_name": "Łukasz Kaiser", + "orcid": "https://orcid.org/0000-0003-1092-6010" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kaiser, Lukasz", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kudlur, Manjunath", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Levenberg, Josh", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5045113162", + "display_name": "Dan Mané", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Mane, Dan", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Monga, Rajat", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Moore, Sherry", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Murray, Derek", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039751155", + "display_name": "Chris Olah", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Olah, Chris", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5113452656", + "display_name": "Mike Schuster", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Schuster, Mike", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032356827", + "display_name": "Jonathon Shlens", + "orcid": "https://orcid.org/0000-0001-9513-4244" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shlens, Jonathon", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Steiner, Benoit", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006446297", + "display_name": "Ilya Sutskever", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Sutskever, Ilya", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080065269", + "display_name": "Kunal Talwar", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Talwar, Kunal", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tucker, Paul", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013813527", + "display_name": "Vincent Vanhoucke", + "orcid": "https://orcid.org/0000-0003-0544-2791" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vanhoucke, Vincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vasudevan, Vijay", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059594867", + "display_name": "Fernanda Viégas", + "orcid": "https://orcid.org/0000-0002-4951-4008" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Viegas, Fernanda", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003562101", + "display_name": "Oriol Vinyals", + "orcid": "https://orcid.org/0000-0001-7848-7283" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vinyals, Oriol", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Warden, Pete", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039276358", + "display_name": "Martin Wattenberg", + "orcid": "https://orcid.org/0000-0003-0904-4862" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wattenberg, Martin", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wicke, Martin", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Yu, Yuan", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zheng, Xiaoqiang", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 40, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 9772, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9970999956130981, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9970999956130981, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10101", + "display_name": "Cloud Computing and Resource Management", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11986", + "display_name": "Scientific Computing and Data Management", + "score": 0.9957000017166138, + "subfield": { + "id": "https://openalex.org/subfields/1802", + "display_name": "Information Systems and Management" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6250410079956055 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5916432738304138 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.463681161403656 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3644576668739319 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.36219537258148193 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.11677020788192749 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.11492305994033813 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6250410079956055 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5916432738304138 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.463681161403656 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3644576668739319 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.36219537258148193 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.11677020788192749 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.11492305994033813 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1603.04467", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1603.04467", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.5299999713897705 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 42, + "referenced_works": [ + "https://openalex.org/W1442374986", + "https://openalex.org/W1484210532", + "https://openalex.org/W1487337216", + "https://openalex.org/W1498436455", + "https://openalex.org/W1526734559", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1614298861", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1738019091", + "https://openalex.org/W1827297289", + "https://openalex.org/W1869752048", + "https://openalex.org/W1947291763", + "https://openalex.org/W1978660892", + "https://openalex.org/W1978924650", + "https://openalex.org/W2002257715", + "https://openalex.org/W2016053056", + "https://openalex.org/W2017351599", + "https://openalex.org/W2032036568", + "https://openalex.org/W2035424729", + "https://openalex.org/W2055312318", + "https://openalex.org/W2064675550", + "https://openalex.org/W2082171780", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100830825", + "https://openalex.org/W2123024445", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131975293", + "https://openalex.org/W2138243089", + "https://openalex.org/W2141992894", + "https://openalex.org/W2146757372", + "https://openalex.org/W2155893237", + "https://openalex.org/W2160815625", + "https://openalex.org/W2168231600", + "https://openalex.org/W2171532807", + "https://openalex.org/W2181607856", + "https://openalex.org/W2253807446", + "https://openalex.org/W2507756961", + "https://openalex.org/W2949117887", + "https://openalex.org/W2950789693", + "https://openalex.org/W2951781666" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 20, + 138, + 153 + ], + "is": [ + 1, + 65 + ], + "an": [ + 2, + 10, + 141, + 162 + ], + "interface": [ + 3, + 139, + 145 + ], + "for": [ + 4, + 12, + 83, + 93, + 97 + ], + "expressing": [ + 5 + ], + "machine": [ + 6, + 99 + ], + "learning": [ + 7, + 100 + ], + "algorithms,": [ + 8, + 77 + ], + "and": [ + 9, + 43, + 54, + 67, + 80, + 88, + 96, + 113, + 130, + 140, + 155, + 173 + ], + "implementation": [ + 11, + 142, + 158 + ], + "executing": [ + 13 + ], + "such": [ + 14, + 40, + 59 + ], + "algorithms.": [ + 15 + ], + "A": [ + 16 + ], + "computation": [ + 17 + ], + "expressed": [ + 18 + ], + "using": [ + 19 + ], + "can": [ + 21, + 68 + ], + "be": [ + 22, + 69 + ], + "executed": [ + 23 + ], + "with": [ + 24 + ], + "little": [ + 25 + ], + "or": [ + 26 + ], + "no": [ + 27 + ], + "change": [ + 28 + ], + "on": [ + 29 + ], + "a": [ + 30, + 73, + 107, + 156 + ], + "wide": [ + 31, + 74 + ], + "variety": [ + 32, + 75 + ], + "of": [ + 33, + 50, + 52, + 56, + 76, + 110, + 143 + ], + "heterogeneous": [ + 34 + ], + "systems,": [ + 35 + ], + "ranging": [ + 36 + ], + "from": [ + 37 + ], + "mobile": [ + 38 + ], + "devices": [ + 39, + 58 + ], + "as": [ + 41, + 60, + 161 + ], + "phones": [ + 42 + ], + "tablets": [ + 44 + ], + "up": [ + 45 + ], + "to": [ + 46, + 71 + ], + "large-scale": [ + 47 + ], + "distributed": [ + 48 + ], + "systems": [ + 49, + 101 + ], + "hundreds": [ + 51 + ], + "machines": [ + 53 + ], + "thousands": [ + 55 + ], + "computational": [ + 57, + 131 + ], + "GPU": [ + 61 + ], + "cards.": [ + 62 + ], + "The": [ + 63, + 152 + ], + "system": [ + 64 + ], + "flexible": [ + 66 + ], + "used": [ + 70, + 92 + ], + "express": [ + 72 + ], + "including": [ + 78, + 116 + ], + "training": [ + 79 + ], + "inference": [ + 81 + ], + "algorithms": [ + 82 + ], + "deep": [ + 84 + ], + "neural": [ + 85 + ], + "network": [ + 86 + ], + "models,": [ + 87 + ], + "it": [ + 89 + ], + "has": [ + 90 + ], + "been": [ + 91 + ], + "conducting": [ + 94 + ], + "research": [ + 95 + ], + "deploying": [ + 98 + ], + "into": [ + 102 + ], + "production": [ + 103 + ], + "across": [ + 104 + ], + "more": [ + 105 + ], + "than": [ + 106 + ], + "dozen": [ + 108 + ], + "areas": [ + 109 + ], + "computer": [ + 111, + 119 + ], + "science": [ + 112 + ], + "other": [ + 114 + ], + "fields,": [ + 115 + ], + "speech": [ + 117 + ], + "recognition,": [ + 118 + ], + "vision,": [ + 120 + ], + "robotics,": [ + 121 + ], + "information": [ + 122, + 128 + ], + "retrieval,": [ + 123 + ], + "natural": [ + 124 + ], + "language": [ + 125 + ], + "processing,": [ + 126 + ], + "geographic": [ + 127 + ], + "extraction,": [ + 129 + ], + "drug": [ + 132 + ], + "discovery.": [ + 133 + ], + "This": [ + 134 + ], + "paper": [ + 135 + ], + "describes": [ + 136 + ], + "the": [ + 137, + 166 + ], + "that": [ + 144, + 146 + ], + "we": [ + 147 + ], + "have": [ + 148 + ], + "built": [ + 149 + ], + "at": [ + 150, + 176 + ], + "Google.": [ + 151 + ], + "API": [ + 154 + ], + "reference": [ + 157 + ], + "were": [ + 159 + ], + "released": [ + 160 + ], + "open-source": [ + 163 + ], + "package": [ + 164 + ], + "under": [ + 165 + ], + "Apache": [ + 167 + ], + "2.0": [ + 168 + ], + "license": [ + 169 + ], + "in": [ + 170 + ], + "November,": [ + 171 + ], + "2015": [ + 172 + ], + "are": [ + 174 + ], + "available": [ + 175 + ], + "www.tensorflow.org.": [ + 177 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 34 + }, + { + "year": 2025, + "cited_by_count": 298 + }, + { + "year": 2024, + "cited_by_count": 727 + }, + { + "year": 2023, + "cited_by_count": 903 + }, + { + "year": 2022, + "cited_by_count": 846 + }, + { + "year": 2021, + "cited_by_count": 1496 + }, + { + "year": 2020, + "cited_by_count": 1433 + }, + { + "year": 2019, + "cited_by_count": 1315 + }, + { + "year": 2018, + "cited_by_count": 1564 + }, + { + "year": 2017, + "cited_by_count": 996 + }, + { + "year": 2016, + "cited_by_count": 156 + }, + { + "year": 2015, + "cited_by_count": 2 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2402144811", + "doi": "https://doi.org/10.5555/3026877.3026899", + "title": "TensorFlow: a system for large-scale machine learning", + "display_name": "TensorFlow: a system for large-scale machine learning", + "relevance_score": 5231.6167, + "publication_year": 2016, + "publication_date": "2016-11-02", + "ids": { + "openalex": "https://openalex.org/W2402144811", + "doi": "https://doi.org/10.5555/3026877.3026899", + "mag": "2402144811" + }, + "language": "en", + "primary_location": { + "id": "mag:2402144811", + "is_oa": false, + "landing_page_url": "https://www.usenix.org/system/files/conference/osdi16/osdi16-abadi.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420647", + "display_name": "Operating Systems Design and Implementation", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Operating Systems Design and Implementation", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Martı́n Abadi", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Paul Barham", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100665512", + "display_name": "Jianmin Chen", + "orcid": "https://orcid.org/0000-0001-5859-3070" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jianmin Chen", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5859-3070", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715421", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-5137-1344" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zhifeng Chen", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5137-1344", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Andy Davis", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jay B. Dean", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0003-1362-0500", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Matthieu Devin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sanjay Ghemawat", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0009-0005-6843-3093", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Geoffrey Irving", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Michael Isard", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Manjunath Kudlur", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Josh Levenberg", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rajat Monga", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sherry Moore", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Derek G. Murray", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Benoit Steiner", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0002-5767-4976", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Paul A. Tucker", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vijay Vasudevan", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Pete Warden", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Martin Wicke", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yuan Yu", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xiaoqiang Zheng", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5151-8561", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 22, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 330.6462, + "has_fulltext": false, + "cited_by_count": 6353, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "265", + "last_page": "283" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9969000220298767, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/dataflow", + "display_name": "Dataflow", + "score": 0.9571843147277832 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.830622673034668 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.711643636226654 + }, + { + "id": "https://openalex.org/keywords/multi-core-processor", + "display_name": "Multi-core processor", + "score": 0.5773373246192932 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5193118453025818 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.4896014332771301 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.4813452661037445 + }, + { + "id": "https://openalex.org/keywords/scalability", + "display_name": "Scalability", + "score": 0.47406429052352905 + }, + { + "id": "https://openalex.org/keywords/inference", + "display_name": "Inference", + "score": 0.4678526520729065 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.44974687695503235 + }, + { + "id": "https://openalex.org/keywords/dataflow-architecture", + "display_name": "Dataflow architecture", + "score": 0.4496024250984192 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.4395424723625183 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.3712141215801239 + }, + { + "id": "https://openalex.org/keywords/parallel-computing", + "display_name": "Parallel computing", + "score": 0.33661338686943054 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.21078741550445557 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.14919248223304749 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C96324660", + "wikidata": "https://www.wikidata.org/wiki/Q205446", + "display_name": "Dataflow", + "level": 2, + "score": 0.9571843147277832 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.830622673034668 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.711643636226654 + }, + { + "id": "https://openalex.org/C78766204", + "wikidata": "https://www.wikidata.org/wiki/Q555032", + "display_name": "Multi-core processor", + "level": 2, + "score": 0.5773373246192932 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5193118453025818 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.4896014332771301 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.4813452661037445 + }, + { + "id": "https://openalex.org/C48044578", + "wikidata": "https://www.wikidata.org/wiki/Q727490", + "display_name": "Scalability", + "level": 2, + "score": 0.47406429052352905 + }, + { + "id": "https://openalex.org/C2776214188", + "wikidata": "https://www.wikidata.org/wiki/Q408386", + "display_name": "Inference", + "level": 2, + "score": 0.4678526520729065 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.44974687695503235 + }, + { + "id": "https://openalex.org/C176727019", + "wikidata": "https://www.wikidata.org/wiki/Q1172415", + "display_name": "Dataflow architecture", + "level": 3, + "score": 0.4496024250984192 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.4395424723625183 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.3712141215801239 + }, + { + "id": "https://openalex.org/C173608175", + "wikidata": "https://www.wikidata.org/wiki/Q232661", + "display_name": "Parallel computing", + "level": 1, + "score": 0.33661338686943054 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.21078741550445557 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.14919248223304749 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2402144811", + "is_oa": false, + "landing_page_url": "https://www.usenix.org/system/files/conference/osdi16/osdi16-abadi.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420647", + "display_name": "Operating Systems Design and Implementation", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Operating Systems Design and Implementation", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/9", + "display_name": "Industry, innovation and infrastructure", + "score": 0.4000000059604645 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 55, + "referenced_works": [ + "https://openalex.org/W104184427", + "https://openalex.org/W145476170", + "https://openalex.org/W1425731158", + "https://openalex.org/W1442374986", + "https://openalex.org/W1485981043", + "https://openalex.org/W1493893823", + "https://openalex.org/W1498436455", + "https://openalex.org/W1526734559", + "https://openalex.org/W1539309091", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1815076433", + "https://openalex.org/W1947291763", + "https://openalex.org/W1978660892", + "https://openalex.org/W2016053056", + "https://openalex.org/W2032036568", + "https://openalex.org/W2035424729", + "https://openalex.org/W2041517243", + "https://openalex.org/W2061570747", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066443755", + "https://openalex.org/W2083842231", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100664567", + "https://openalex.org/W2100830825", + "https://openalex.org/W2117539524", + "https://openalex.org/W2122465391", + "https://openalex.org/W2131975293", + "https://openalex.org/W2132339004", + "https://openalex.org/W2140833774", + "https://openalex.org/W2141992894", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146502635", + "https://openalex.org/W2146757372", + "https://openalex.org/W2147527908", + "https://openalex.org/W2160815625", + "https://openalex.org/W2168231600", + "https://openalex.org/W2172654076", + "https://openalex.org/W2186615578", + "https://openalex.org/W2194775991", + "https://openalex.org/W2253807446", + "https://openalex.org/W2259472270", + "https://openalex.org/W2336650964", + "https://openalex.org/W2339765813", + "https://openalex.org/W2384495648", + "https://openalex.org/W2521218765", + "https://openalex.org/W2525778437", + "https://openalex.org/W2618530766", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949888546", + "https://openalex.org/W2950577311", + "https://openalex.org/W2951781666", + "https://openalex.org/W2962844195" + ], + "related_works": [ + "https://openalex.org/W3118608800", + "https://openalex.org/W2970971581", + "https://openalex.org/W2964121744", + "https://openalex.org/W2949117887", + "https://openalex.org/W2919115771", + "https://openalex.org/W2899771611", + "https://openalex.org/W2194775991", + "https://openalex.org/W2186615578", + "https://openalex.org/W2163605009", + "https://openalex.org/W2155893237", + "https://openalex.org/W2117539524", + "https://openalex.org/W2112796928", + "https://openalex.org/W2108598243", + "https://openalex.org/W2101234009", + "https://openalex.org/W2099471712", + "https://openalex.org/W2097117768", + "https://openalex.org/W2095705004", + "https://openalex.org/W2064675550", + "https://openalex.org/W1901129140", + "https://openalex.org/W1686810756" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 91, + 102, + 123, + 150, + 159 + ], + "is": [ + 1, + 86 + ], + "a": [ + 2, + 36, + 43, + 47, + 104, + 109 + ], + "machine": [ + 3, + 48, + 141 + ], + "learning": [ + 4, + 142 + ], + "system": [ + 5 + ], + "that": [ + 6, + 27, + 29, + 158 + ], + "operates": [ + 7 + ], + "at": [ + 8 + ], + "large": [ + 9 + ], + "scale": [ + 10 + ], + "and": [ + 11, + 24, + 45, + 58, + 99, + 113, + 134, + 153 + ], + "in": [ + 12, + 42, + 76, + 124 + ], + "heterogeneous": [ + 13 + ], + "environments.": [ + 14 + ], + "Tensor-Flow": [ + 15 + ], + "uses": [ + 16 + ], + "dataflow": [ + 17, + 37, + 151 + ], + "graphs": [ + 18 + ], + "to": [ + 19, + 71, + 94 + ], + "represent": [ + 20 + ], + "computation,": [ + 21 + ], + "shared": [ + 22, + 84 + ], + "state,": [ + 23 + ], + "the": [ + 25, + 33, + 72, + 81, + 89, + 149, + 155 + ], + "operations": [ + 26 + ], + "mutate": [ + 28 + ], + "state.": [ + 30 + ], + "It": [ + 31 + ], + "maps": [ + 32 + ], + "nodes": [ + 34 + ], + "of": [ + 35, + 83, + 106 + ], + "graph": [ + 38 + ], + "across": [ + 39, + 49 + ], + "many": [ + 40 + ], + "machines": [ + 41 + ], + "cluster,": [ + 44 + ], + "within": [ + 46 + ], + "multiple": [ + 50 + ], + "computational": [ + 51 + ], + "devices,": [ + 52 + ], + "including": [ + 53 + ], + "multicore": [ + 54 + ], + "CPUs,": [ + 55 + ], + "general-purpose": [ + 56 + ], + "GPUs,": [ + 57 + ], + "custom-designed": [ + 59 + ], + "ASICs": [ + 60 + ], + "known": [ + 61 + ], + "as": [ + 62, + 130 + ], + "Tensor": [ + 63 + ], + "Processing": [ + 64 + ], + "Units": [ + 65 + ], + "(TPUs).": [ + 66 + ], + "This": [ + 67 + ], + "architecture": [ + 68 + ], + "gives": [ + 69 + ], + "flexibility": [ + 70 + ], + "application": [ + 73 + ], + "developer:": [ + 74 + ], + "whereas": [ + 75 + ], + "previous": [ + 77 + ], + "parameter": [ + 78 + ], + "server": [ + 79 + ], + "designs": [ + 80 + ], + "management": [ + 82 + ], + "state": [ + 85 + ], + "built": [ + 87 + ], + "into": [ + 88 + ], + "system,": [ + 90 + ], + "enables": [ + 92 + ], + "developers": [ + 93 + ], + "experiment": [ + 95 + ], + "with": [ + 96, + 108 + ], + "novel": [ + 97 + ], + "optimizations": [ + 98 + ], + "training": [ + 100, + 112 + ], + "algorithms.": [ + 101 + ], + "supports": [ + 103 + ], + "variety": [ + 105 + ], + "applications,": [ + 107 + ], + "focus": [ + 110 + ], + "on": [ + 111, + 115 + ], + "inference": [ + 114 + ], + "deep": [ + 116 + ], + "neural": [ + 117 + ], + "networks.": [ + 118 + ], + "Several": [ + 119 + ], + "Google": [ + 120 + ], + "services": [ + 121 + ], + "use": [ + 122 + ], + "production,": [ + 125 + ], + "we": [ + 126, + 147 + ], + "have": [ + 127 + ], + "released": [ + 128 + ], + "it": [ + 129, + 135 + ], + "an": [ + 131 + ], + "open-source": [ + 132 + ], + "project,": [ + 133 + ], + "has": [ + 136 + ], + "become": [ + 137 + ], + "widely": [ + 138 + ], + "used": [ + 139 + ], + "for": [ + 140, + 161 + ], + "research.": [ + 143 + ], + "In": [ + 144 + ], + "this": [ + 145 + ], + "paper,": [ + 146 + ], + "describe": [ + 148 + ], + "model": [ + 152 + ], + "demonstrate": [ + 154 + ], + "compelling": [ + 156 + ], + "performance": [ + 157 + ], + "achieves": [ + 160 + ], + "several": [ + 162 + ], + "real-world": [ + 163 + ], + "applications.": [ + 164 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 11 + }, + { + "year": 2025, + "cited_by_count": 106 + }, + { + "year": 2024, + "cited_by_count": 160 + }, + { + "year": 2023, + "cited_by_count": 187 + }, + { + "year": 2022, + "cited_by_count": 221 + }, + { + "year": 2021, + "cited_by_count": 1336 + }, + { + "year": 2020, + "cited_by_count": 1696 + }, + { + "year": 2019, + "cited_by_count": 1675 + }, + { + "year": 2018, + "cited_by_count": 802 + }, + { + "year": 2017, + "cited_by_count": 151 + }, + { + "year": 2016, + "cited_by_count": 7 + }, + { + "year": 2015, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2912213068", + "doi": "https://doi.org/10.1145/3298981", + "title": "Federated Machine Learning", + "display_name": "Federated Machine Learning", + "relevance_score": 5104.1743, + "publication_year": 2019, + "publication_date": "2019-01-28", + "ids": { + "openalex": "https://openalex.org/W2912213068", + "doi": "https://doi.org/10.1145/3298981", + "mag": "2912213068" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3298981", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3298981", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2492086750", + "display_name": "ACM Transactions on Intelligent Systems and Technology", + "issn_l": "2157-6904", + "issn": [ + "2157-6904", + "2157-6912" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Transactions on Intelligent Systems and Technology", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5100636286", + "display_name": "Qiang Yang", + "orcid": "https://orcid.org/0000-0001-5059-8360" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": true, + "raw_author_name": "Qiang Yang", + "raw_affiliation_strings": [ + "Hong Kong University of Science and Technology, Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong University of Science and Technology, Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100356161", + "display_name": "Yang Liu", + "orcid": "https://orcid.org/0000-0003-3800-3533" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Yang Liu", + "raw_affiliation_strings": [ + "Webank, Shenzhen, China" + ], + "raw_orcid": "https://orcid.org/0000-0003-3800-3533", + "affiliations": [ + { + "raw_affiliation_string": "Webank, Shenzhen, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068882233", + "display_name": "Tianjian Chen", + "orcid": "https://orcid.org/0000-0002-8479-2054" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tianjian Chen", + "raw_affiliation_strings": [ + "Webank, Shenzhen, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Webank, Shenzhen, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5051874566", + "display_name": "Yongxin Tong", + "orcid": "https://orcid.org/0000-0002-5598-0312" + }, + "institutions": [ + { + "id": "https://openalex.org/I82880672", + "display_name": "Beihang University", + "ror": "https://ror.org/00wk2mp56", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I82880672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Yongxin Tong", + "raw_affiliation_strings": [ + "Beihang University, Beijing, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Beihang University, Beijing, China", + "institution_ids": [ + "https://openalex.org/I82880672" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5100636286" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I200769079" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 336.5216, + "has_fulltext": false, + "cited_by_count": 5790, + "citation_normalized_percentile": { + "value": 0.99993867, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "10", + "issue": "2", + "first_page": "1", + "last_page": "19" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11598", + "display_name": "Internet Traffic Analysis and Secure E-voting", + "score": 0.9965000152587891, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.9133003950119019 + }, + { + "id": "https://openalex.org/keywords/federated-learning", + "display_name": "Federated learning", + "score": 0.9119365215301514 + }, + { + "id": "https://openalex.org/keywords/transfer-of-learning", + "display_name": "Transfer of learning", + "score": 0.5265006422996521 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.39959585666656494 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.34242358803749084 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.3284221887588501 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.9133003950119019 + }, + { + "id": "https://openalex.org/C2992525071", + "wikidata": "https://www.wikidata.org/wiki/Q50818671", + "display_name": "Federated learning", + "level": 2, + "score": 0.9119365215301514 + }, + { + "id": "https://openalex.org/C150899416", + "wikidata": "https://www.wikidata.org/wiki/Q1820378", + "display_name": "Transfer of learning", + "level": 2, + "score": 0.5265006422996521 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.39959585666656494 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.34242358803749084 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.3284221887588501 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1145/3298981", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3298981", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2492086750", + "display_name": "ACM Transactions on Intelligent Systems and Technology", + "issn_l": "2157-6904", + "issn": [ + "2157-6904", + "2157-6912" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Transactions on Intelligent Systems and Technology", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:repository.hkust.edu.hk:1783.1-95671", + "is_oa": false, + "landing_page_url": "http://repository.hkust.edu.hk/ir/Record/1783.1-95671", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401796", + "display_name": "Rare & Special e-Zone (The Hong Kong University of Science and Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I200769079", + "host_organization_name": "Hong Kong University of Science and Technology", + "host_organization_lineage": [ + "https://openalex.org/I200769079" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Article" + }, + { + "id": "pmh:oai:repository.ust.hk:1783.1-95671", + "is_oa": false, + "landing_page_url": "http://repository.ust.hk/ir/Record/1783.1-95671", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401796", + "display_name": "Rare & Special e-Zone (The Hong Kong University of Science and Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I200769079", + "host_organization_name": "Hong Kong University of Science and Technology", + "host_organization_lineage": [ + "https://openalex.org/I200769079" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 85, + "referenced_works": [ + "https://openalex.org/W150223756", + "https://openalex.org/W162878246", + "https://openalex.org/W199752024", + "https://openalex.org/W1484769234", + "https://openalex.org/W1485800369", + "https://openalex.org/W1488526968", + "https://openalex.org/W1510952750", + "https://openalex.org/W1559506103", + "https://openalex.org/W1574534563", + "https://openalex.org/W1964366273", + "https://openalex.org/W1968265138", + "https://openalex.org/W1971991172", + "https://openalex.org/W1985511977", + "https://openalex.org/W2016758618", + "https://openalex.org/W2024652123", + "https://openalex.org/W2027471022", + "https://openalex.org/W2041416246", + "https://openalex.org/W2053637704", + "https://openalex.org/W2082624086", + "https://openalex.org/W2092422002", + "https://openalex.org/W2093367651", + "https://openalex.org/W2109426455", + "https://openalex.org/W2112022568", + "https://openalex.org/W2112340198", + "https://openalex.org/W2128906841", + "https://openalex.org/W2132737349", + "https://openalex.org/W2137351756", + "https://openalex.org/W2139336600", + "https://openalex.org/W2159024459", + "https://openalex.org/W2165698076", + "https://openalex.org/W2257979135", + "https://openalex.org/W2283463896", + "https://openalex.org/W2295292576", + "https://openalex.org/W2317339301", + "https://openalex.org/W2435473771", + "https://openalex.org/W2473418344", + "https://openalex.org/W2530417694", + "https://openalex.org/W2536058570", + "https://openalex.org/W2577421826", + "https://openalex.org/W2585580772", + "https://openalex.org/W2591882872", + "https://openalex.org/W2606882085", + "https://openalex.org/W2618494520", + "https://openalex.org/W2679684481", + "https://openalex.org/W2701059868", + "https://openalex.org/W2757853533", + "https://openalex.org/W2765200655", + "https://openalex.org/W2766255512", + "https://openalex.org/W2767079719", + "https://openalex.org/W2768347741", + "https://openalex.org/W2773194476", + "https://openalex.org/W2774000609", + "https://openalex.org/W2777914285", + "https://openalex.org/W2781091734", + "https://openalex.org/W2788629937", + "https://openalex.org/W2793216106", + "https://openalex.org/W2793925626", + "https://openalex.org/W2794888826", + "https://openalex.org/W2798551148", + "https://openalex.org/W2799803467", + "https://openalex.org/W2801958627", + "https://openalex.org/W2807006176", + "https://openalex.org/W2810065831", + "https://openalex.org/W2886722183", + "https://openalex.org/W2895865029", + "https://openalex.org/W2914304175", + "https://openalex.org/W2949140995", + "https://openalex.org/W2950460048", + "https://openalex.org/W2951152347", + "https://openalex.org/W2951368041", + "https://openalex.org/W2951798842", + "https://openalex.org/W2962877476", + "https://openalex.org/W2963106566", + "https://openalex.org/W2990138404", + "https://openalex.org/W3029558105", + "https://openalex.org/W3209546151", + "https://openalex.org/W4248358572", + "https://openalex.org/W4249529812", + "https://openalex.org/W4300427714", + "https://openalex.org/W4301418013", + "https://openalex.org/W4301483968", + "https://openalex.org/W6606067566", + "https://openalex.org/W6732586565", + "https://openalex.org/W6738383168", + "https://openalex.org/W6807767519" + ], + "related_works": [ + "https://openalex.org/W4298221930", + "https://openalex.org/W2777914285", + "https://openalex.org/W3013363440", + "https://openalex.org/W4287823391", + "https://openalex.org/W4312762663", + "https://openalex.org/W3035927627", + "https://openalex.org/W3201126466", + "https://openalex.org/W4317941881", + "https://openalex.org/W3128909129", + "https://openalex.org/W3123837699" + ], + "abstract_inverted_index": { + "Today’s": [ + 0 + ], + "artificial": [ + 1 + ], + "intelligence": [ + 2 + ], + "still": [ + 3 + ], + "faces": [ + 4 + ], + "two": [ + 5 + ], + "major": [ + 6 + ], + "challenges.": [ + 7 + ], + "One": [ + 8 + ], + "is": [ + 9, + 24 + ], + "that,": [ + 10 + ], + "in": [ + 11, + 16, + 51 + ], + "most": [ + 12 + ], + "industries,": [ + 13 + ], + "data": [ + 14, + 28, + 98 + ], + "exists": [ + 15 + ], + "the": [ + 17, + 25, + 44, + 79 + ], + "form": [ + 18 + ], + "of": [ + 19, + 27, + 87 + ], + "isolated": [ + 20 + ], + "islands.": [ + 21 + ], + "The": [ + 22 + ], + "other": [ + 23 + ], + "strengthening": [ + 26 + ], + "privacy": [ + 29 + ], + "and": [ + 30, + 68, + 76, + 82 + ], + "security.": [ + 31 + ], + "We": [ + 32, + 72 + ], + "propose": [ + 33, + 96 + ], + "a": [ + 34, + 55, + 84 + ], + "possible": [ + 35 + ], + "solution": [ + 36, + 109 + ], + "to": [ + 37, + 110, + 113 + ], + "these": [ + 38 + ], + "challenges:": [ + 39 + ], + "secure": [ + 40, + 57 + ], + "federated": [ + 41, + 63, + 66, + 69, + 104 + ], + "learning.": [ + 42, + 71 + ], + "Beyond": [ + 43 + ], + "federated-learning": [ + 45, + 58, + 80 + ], + "framework": [ + 46 + ], + "first": [ + 47 + ], + "proposed": [ + 48 + ], + "by": [ + 49 + ], + "Google": [ + 50 + ], + "2016,": [ + 52 + ], + "we": [ + 53, + 95 + ], + "introduce": [ + 54 + ], + "comprehensive": [ + 56, + 85 + ], + "framework,": [ + 59, + 81 + ], + "which": [ + 60 + ], + "includes": [ + 61 + ], + "horizontal": [ + 62 + ], + "learning,": [ + 64, + 67 + ], + "vertical": [ + 65 + ], + "transfer": [ + 70 + ], + "provide": [ + 73, + 83 + ], + "definitions,": [ + 74 + ], + "architectures,": [ + 75 + ], + "applications": [ + 77 + ], + "for": [ + 78 + ], + "survey": [ + 86 + ], + "existing": [ + 88 + ], + "works": [ + 89 + ], + "on": [ + 90, + 103 + ], + "this": [ + 91 + ], + "subject.": [ + 92 + ], + "In": [ + 93 + ], + "addition,": [ + 94 + ], + "building": [ + 97 + ], + "networks": [ + 99 + ], + "among": [ + 100 + ], + "organizations": [ + 101 + ], + "based": [ + 102 + ], + "mechanisms": [ + 105 + ], + "as": [ + 106 + ], + "an": [ + 107 + ], + "effective": [ + 108 + ], + "allowing": [ + 111 + ], + "knowledge": [ + 112 + ], + "be": [ + 114 + ], + "shared": [ + 115 + ], + "without": [ + 116 + ], + "compromising": [ + 117 + ], + "user": [ + 118 + ], + "privacy.": [ + 119 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 345 + }, + { + "year": 2025, + "cited_by_count": 1176 + }, + { + "year": 2024, + "cited_by_count": 1009 + }, + { + "year": 2023, + "cited_by_count": 939 + }, + { + "year": 2022, + "cited_by_count": 806 + }, + { + "year": 2021, + "cited_by_count": 932 + }, + { + "year": 2020, + "cited_by_count": 496 + }, + { + "year": 2019, + "cited_by_count": 85 + }, + { + "year": 2018, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2009086942", + "doi": "https://doi.org/10.1198/tech.2007.s518", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 4972.8193, + "publication_year": 2007, + "publication_date": "2007-08-01", + "ids": { + "openalex": "https://openalex.org/W2009086942", + "doi": "https://doi.org/10.1198/tech.2007.s518", + "mag": "2009086942" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1198/tech.2007.s518", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/tech.2007.s518", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5062571011", + "display_name": "Radford M. Neal", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Radford M Neal", + "raw_affiliation_strings": [ + "University of Toronto" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Toronto", + "institution_ids": [ + "https://openalex.org/I185261750" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5062571011" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I185261750" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 173.8255, + "has_fulltext": false, + "cited_by_count": 4651, + "citation_normalized_percentile": { + "value": 0.99994787, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 95, + "max": 100 + }, + "biblio": { + "volume": "49", + "issue": "3", + "first_page": "366", + "last_page": "366" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.23559999465942383, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.23559999465942383, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6036144495010376 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5715402960777283 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5367371439933777 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.4431344270706177 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6036144495010376 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5715402960777283 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5367371439933777 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.4431344270706177 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1198/tech.2007.s518", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/tech.2007.s518", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W2033914206", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "(2007).": [ + 0 + ], + "Pattern": [ + 1 + ], + "Recognition": [ + 2 + ], + "and": [ + 3 + ], + "Machine": [ + 4 + ], + "Learning.": [ + 5 + ], + "Technometrics:": [ + 6 + ], + "Vol.": [ + 7 + ], + "49,": [ + 8 + ], + "No.": [ + 9 + ], + "3,": [ + 10 + ], + "pp.": [ + 11 + ], + "366-366.": [ + 12 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 11 + }, + { + "year": 2024, + "cited_by_count": 227 + }, + { + "year": 2023, + "cited_by_count": 381 + }, + { + "year": 2022, + "cited_by_count": 433 + }, + { + "year": 2021, + "cited_by_count": 419 + }, + { + "year": 2020, + "cited_by_count": 369 + }, + { + "year": 2019, + "cited_by_count": 450 + }, + { + "year": 2018, + "cited_by_count": 372 + }, + { + "year": 2017, + "cited_by_count": 291 + }, + { + "year": 2016, + "cited_by_count": 284 + }, + { + "year": 2015, + "cited_by_count": 294 + }, + { + "year": 2014, + "cited_by_count": 222 + }, + { + "year": 2013, + "cited_by_count": 191 + }, + { + "year": 2012, + "cited_by_count": 178 + } + ], + "updated_date": "2026-05-19T08:33:51.333923", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2131241448", + "doi": "https://doi.org/10.48550/arxiv.1206.2944", + "title": "Practical Bayesian Optimization of Machine Learning Algorithms", + "display_name": "Practical Bayesian Optimization of Machine Learning Algorithms", + "relevance_score": 4882.38, + "publication_year": 2012, + "publication_date": "2012-06-13", + "ids": { + "openalex": "https://openalex.org/W2131241448", + "doi": "https://doi.org/10.48550/arxiv.1206.2944", + "mag": "2131241448" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1206.2944", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5112347601", + "display_name": "Jasper Snoek", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Snoek, Jasper", + "raw_affiliation_strings": [ + "[Department of Computer Science, University of Toronto]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Department of Computer Science, University of Toronto]", + "institution_ids": [ + "https://openalex.org/I185261750" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5019862529", + "display_name": "Hugo Larochelle", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I135117807", + "display_name": "Université de Sherbrooke", + "ror": "https://ror.org/00kybxq39", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I135117807" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Larochelle, Hugo", + "raw_affiliation_strings": [ + "Department of Computer Science, University of Sherbrooke," + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of Sherbrooke,", + "institution_ids": [ + "https://openalex.org/I135117807" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5007769527", + "display_name": "Ryan P. Adams", + "orcid": "https://orcid.org/0000-0002-5704-6654" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Adams, Ryan P.", + "raw_affiliation_strings": [ + "School of Engineering & Applied Sciences Harvard University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Engineering & Applied Sciences Harvard University", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5112347601" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I185261750" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 5659, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/bayesian-optimization", + "display_name": "Bayesian optimization", + "score": 0.6480942964553833 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6321470737457275 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.5293997526168823 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.49968791007995605 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4541047513484955 + }, + { + "id": "https://openalex.org/keywords/optimization-algorithm", + "display_name": "Optimization algorithm", + "score": 0.422710120677948 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4147215187549591 + }, + { + "id": "https://openalex.org/keywords/mathematical-optimization", + "display_name": "Mathematical optimization", + "score": 0.23351716995239258 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.17170017957687378 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778049539", + "wikidata": "https://www.wikidata.org/wiki/Q17002908", + "display_name": "Bayesian optimization", + "level": 2, + "score": 0.6480942964553833 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6321470737457275 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.5293997526168823 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.49968791007995605 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4541047513484955 + }, + { + "id": "https://openalex.org/C2987595161", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Optimization algorithm", + "level": 2, + "score": 0.422710120677948 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4147215187549591 + }, + { + "id": "https://openalex.org/C126255220", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Mathematical optimization", + "level": 1, + "score": 0.23351716995239258 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.17170017957687378 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1206.2944", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1206.2944", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 23, + "referenced_works": [ + "https://openalex.org/W60686164", + "https://openalex.org/W78356000", + "https://openalex.org/W84569508", + "https://openalex.org/W1497675750", + "https://openalex.org/W1746819321", + "https://openalex.org/W1973333099", + "https://openalex.org/W2061144551", + "https://openalex.org/W2097998348", + "https://openalex.org/W2099201756", + "https://openalex.org/W2106411961", + "https://openalex.org/W2106869737", + "https://openalex.org/W2119595900", + "https://openalex.org/W2129458072", + "https://openalex.org/W2132984949", + "https://openalex.org/W2141125852", + "https://openalex.org/W2147196093", + "https://openalex.org/W2151238122", + "https://openalex.org/W2165599843", + "https://openalex.org/W2189424119", + "https://openalex.org/W2197776371", + "https://openalex.org/W2951665052", + "https://openalex.org/W2964172739", + "https://openalex.org/W3118608800" + ], + "related_works": [ + "https://openalex.org/W3199608561", + "https://openalex.org/W4382049207", + "https://openalex.org/W4366549320", + "https://openalex.org/W4287863136", + "https://openalex.org/W3006015132", + "https://openalex.org/W2965078190", + "https://openalex.org/W3040644038", + "https://openalex.org/W4311207076", + "https://openalex.org/W3203633096", + "https://openalex.org/W2355226480" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 53, + 78, + 165, + 181 + ], + "algorithms": [ + 2, + 171, + 200, + 220 + ], + "frequently": [ + 3 + ], + "require": [ + 4 + ], + "careful": [ + 5 + ], + "tuning": [ + 6, + 17, + 67, + 163 + ], + "of": [ + 7, + 29, + 41, + 50, + 72, + 104, + 126, + 146, + 180, + 189, + 218 + ], + "model": [ + 8 + ], + "hyperparameters,": [ + 9 + ], + "regularization": [ + 10 + ], + "terms,": [ + 11 + ], + "and": [ + 12, + 131, + 183, + 206, + 227 + ], + "optimization": [ + 13, + 213 + ], + "parameters.": [ + 14 + ], + "Unfortunately,": [ + 15 + ], + "this": [ + 16, + 61 + ], + "is": [ + 18, + 38, + 82 + ], + "often": [ + 19 + ], + "a": [ + 20, + 51, + 77, + 85, + 88, + 138, + 215 + ], + "\"black": [ + 21 + ], + "art\"": [ + 22 + ], + "that": [ + 23, + 151, + 158, + 172, + 184, + 197 + ], + "requires": [ + 24 + ], + "expert": [ + 25 + ], + "experience,": [ + 26 + ], + "unwritten": [ + 27 + ], + "rules": [ + 28 + ], + "thumb,": [ + 30 + ], + "or": [ + 31, + 144, + 209 + ], + "sometimes": [ + 32 + ], + "brute-force": [ + 33 + ], + "search.": [ + 34 + ], + "Much": [ + 35 + ], + "more": [ + 36 + ], + "appealing": [ + 37 + ], + "the": [ + 39, + 48, + 56, + 65, + 70, + 98, + 105, + 124, + 127, + 132, + 142, + 176, + 187 + ], + "idea": [ + 40 + ], + "developing": [ + 42 + ], + "automatic": [ + 43, + 66, + 204 + ], + "approaches": [ + 44 + ], + "which": [ + 45, + 76 + ], + "can": [ + 46, + 136, + 154, + 185, + 207 + ], + "optimize": [ + 47 + ], + "performance": [ + 49, + 81, + 161 + ], + "given": [ + 52 + ], + "algorithm": [ + 54 + ], + "to": [ + 55, + 101, + 117, + 156 + ], + "task": [ + 57 + ], + "at": [ + 58 + ], + "hand.": [ + 59 + ], + "In": [ + 60 + ], + "work,": [ + 62 + ], + "we": [ + 63, + 121 + ], + "consider": [ + 64 + ], + "problem": [ + 68 + ], + "within": [ + 69 + ], + "framework": [ + 71 + ], + "Bayesian": [ + 73, + 147 + ], + "optimization,": [ + 74 + ], + "in": [ + 75, + 162 + ], + "algorithm's": [ + 79 + ], + "generalization": [ + 80 + ], + "modeled": [ + 83 + ], + "as": [ + 84 + ], + "sample": [ + 86 + ], + "from": [ + 87 + ], + "Gaussian": [ + 89, + 128 + ], + "process": [ + 90, + 129 + ], + "(GP).": [ + 91 + ], + "The": [ + 92 + ], + "tractable": [ + 93 + ], + "posterior": [ + 94 + ], + "distribution": [ + 95 + ], + "induced": [ + 96 + ], + "by": [ + 97, + 108 + ], + "GP": [ + 99 + ], + "leads": [ + 100 + ], + "efficient": [ + 102 + ], + "use": [ + 103 + ], + "information": [ + 106 + ], + "gathered": [ + 107 + ], + "previous": [ + 109, + 203 + ], + "experiments,": [ + 110 + ], + "enabling": [ + 111 + ], + "optimal": [ + 112 + ], + "choices": [ + 113, + 153 + ], + "about": [ + 114 + ], + "what": [ + 115 + ], + "parameters": [ + 116 + ], + "try": [ + 118 + ], + "next.": [ + 119 + ], + "Here": [ + 120 + ], + "show": [ + 122, + 150, + 196 + ], + "how": [ + 123 + ], + "effects": [ + 125 + ], + "prior": [ + 130 + ], + "associated": [ + 133 + ], + "inference": [ + 134 + ], + "procedure": [ + 135 + ], + "have": [ + 137 + ], + "large": [ + 139 + ], + "impact": [ + 140 + ], + "on": [ + 141, + 202, + 214 + ], + "success": [ + 143 + ], + "failure": [ + 145 + ], + "optimization.": [ + 148 + ], + "We": [ + 149, + 167, + 195 + ], + "thoughtful": [ + 152 + ], + "lead": [ + 155 + ], + "results": [ + 157 + ], + "exceed": [ + 159 + ], + "expert-level": [ + 160, + 212 + ], + "machine": [ + 164 + ], + "algorithms.": [ + 166 + ], + "also": [ + 168 + ], + "describe": [ + 169 + ], + "new": [ + 170 + ], + "take": [ + 173 + ], + "into": [ + 174 + ], + "account": [ + 175 + ], + "variable": [ + 177 + ], + "cost": [ + 178 + ], + "(duration)": [ + 179 + ], + "experiments": [ + 182 + ], + "leverage": [ + 186 + ], + "presence": [ + 188 + ], + "multiple": [ + 190 + ], + "cores": [ + 191 + ], + "for": [ + 192 + ], + "parallel": [ + 193 + ], + "experimentation.": [ + 194 + ], + "these": [ + 198 + ], + "proposed": [ + 199 + ], + "improve": [ + 201 + ], + "procedures": [ + 205 + ], + "reach": [ + 208 + ], + "surpass": [ + 210 + ], + "human": [ + 211 + ], + "diverse": [ + 216 + ], + "set": [ + 217 + ], + "contemporary": [ + 219 + ], + "including": [ + 221 + ], + "latent": [ + 222 + ], + "Dirichlet": [ + 223 + ], + "allocation,": [ + 224 + ], + "structured": [ + 225 + ], + "SVMs": [ + 226 + ], + "convolutional": [ + 228 + ], + "neural": [ + 229 + ], + "networks.": [ + 230 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 32 + }, + { + "year": 2025, + "cited_by_count": 500 + }, + { + "year": 2024, + "cited_by_count": 630 + }, + { + "year": 2023, + "cited_by_count": 637 + }, + { + "year": 2022, + "cited_by_count": 632 + }, + { + "year": 2021, + "cited_by_count": 872 + }, + { + "year": 2020, + "cited_by_count": 787 + }, + { + "year": 2019, + "cited_by_count": 613 + }, + { + "year": 2018, + "cited_by_count": 368 + }, + { + "year": 2017, + "cited_by_count": 201 + }, + { + "year": 2016, + "cited_by_count": 154 + }, + { + "year": 2015, + "cited_by_count": 113 + }, + { + "year": 2014, + "cited_by_count": 81 + }, + { + "year": 2013, + "cited_by_count": 31 + }, + { + "year": 2012, + "cited_by_count": 8 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2913668833", + "doi": null, + "title": "Proceedings of the 25th international conference on Machine learning", + "display_name": "Proceedings of the 25th international conference on Machine learning", + "relevance_score": 4811.663, + "publication_year": 2008, + "publication_date": "2008-07-05", + "ids": { + "openalex": "https://openalex.org/W2913668833", + "mag": "2913668833" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209046", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1390156", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5051617344", + "display_name": "William W. Cohen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "William W. Cohen", + "raw_affiliation_strings": [ + "Carnegie Mellon University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Carnegie Mellon University", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107835063", + "display_name": "Andrew McCallum", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I24603500", + "display_name": "University of Massachusetts Amherst", + "ror": "https://ror.org/0072zz521", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I24603500" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Andrew McCallum", + "raw_affiliation_strings": [ + "University of Massachusetts, Amherst" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Massachusetts, Amherst", + "institution_ids": [ + "https://openalex.org/I24603500" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5003010184", + "display_name": "Sam T. Roweis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sam T. Roweis", + "raw_affiliation_strings": [ + "University of Toronto and Google#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Toronto and Google#TAB#", + "institution_ids": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I185261750" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5051617344" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I74973139" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 211.7166, + "has_fulltext": false, + "cited_by_count": 5549, + "citation_normalized_percentile": { + "value": 0.99996634, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9751999974250793, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9751999974250793, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9610000252723694, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.949999988079071, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5605996251106262 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5152300000190735 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3871921896934509 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.3709452450275421 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.36655187606811523 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.28487396240234375 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5605996251106262 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5152300000190735 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3871921896934509 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.3709452450275421 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.36655187606811523 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.28487396240234375 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209046", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1390156", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:2913668833", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1390156", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306419644", + "display_name": "International Conference on Machine Learning", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "International Conference on Machine Learning", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/17", + "display_name": "Partnerships for the goals", + "score": 0.4000000059604645 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [], + "abstract_inverted_index": { + "This": [ + 0, + 395, + 430 + ], + "volume": [ + 1 + ], + "contains": [ + 2 + ], + "the": [ + 3, + 7, + 18, + 22, + 33, + 41, + 62, + 74, + 84, + 128, + 132, + 145, + 158, + 169, + 175, + 178, + 182, + 203, + 215, + 221, + 225, + 285, + 290, + 315, + 330, + 344, + 355, + 422, + 427, + 439, + 442, + 499, + 515 + ], + "papers": [ + 4, + 96, + 199, + 219, + 239, + 251, + 267 + ], + "accepted": [ + 5, + 241 + ], + "to": [ + 6, + 99, + 125, + 127, + 205, + 242, + 307, + 310, + 343, + 450, + 475 + ], + "25th": [ + 8 + ], + "International": [ + 9, + 23 + ], + "Conference": [ + 10, + 77, + 86 + ], + "on": [ + 11, + 78, + 87, + 141, + 218 + ], + "Machine": [ + 12, + 24, + 516 + ], + "Learning": [ + 13, + 25, + 80, + 517 + ], + "(ICML": [ + 14 + ], + "2008).": [ + 15 + ], + "ICML": [ + 16, + 56, + 100, + 229, + 243, + 445, + 503 + ], + "is": [ + 17 + ], + "annual": [ + 19 + ], + "conference": [ + 20, + 292 + ], + "of": [ + 21, + 37, + 43, + 64, + 147, + 171, + 177, + 195, + 232, + 250, + 262, + 284, + 289, + 314, + 318, + 322, + 329, + 337, + 408, + 414, + 426, + 441, + 502, + 522 + ], + "Society": [ + 26 + ], + "(IMLS),": [ + 27 + ], + "and": [ + 28, + 35, + 69, + 82, + 131, + 144, + 166, + 188, + 220, + 270, + 325, + 334, + 364, + 369, + 377, + 382, + 387, + 392, + 404, + 418, + 467, + 470, + 481, + 494 + ], + "provides": [ + 29 + ], + "a": [ + 30, + 104, + 190, + 247, + 272, + 300, + 409, + 433, + 510 + ], + "venue": [ + 31 + ], + "for": [ + 32, + 193, + 228, + 277, + 436, + 490, + 519 + ], + "presentation": [ + 34 + ], + "discussion": [ + 36, + 154, + 180 + ], + "current": [ + 38 + ], + "research": [ + 39 + ], + "in": [ + 40, + 66, + 89, + 109, + 271, + 507 + ], + "field": [ + 42 + ], + "machine": [ + 44 + ], + "learning.": [ + 45 + ], + "These": [ + 46 + ], + "proceedings": [ + 47 + ], + "can": [ + 48 + ], + "also": [ + 49, + 349, + 487 + ], + "be": [ + 50, + 308 + ], + "found": [ + 51 + ], + "online": [ + 52, + 142 + ], + "at": [ + 53, + 61 + ], + "http://www.machinelearning.org.\r\n\r\nThis": [ + 54 + ], + "year,": [ + 55, + 245, + 444 + ], + "was": [ + 57, + 70, + 103, + 113 + ], + "held": [ + 58, + 353 + ], + "July": [ + 59 + ], + "5..9": [ + 60 + ], + "University": [ + 63 + ], + "Helsinki,": [ + 65, + 67 + ], + "Finland,": [ + 68 + ], + "co-located": [ + 71, + 511 + ], + "with": [ + 72, + 280, + 402, + 509 + ], + "COLT-2008,": [ + 73 + ], + "21st": [ + 75 + ], + "Annual": [ + 76 + ], + "Computational": [ + 79 + ], + "Theory,": [ + 81 + ], + "UAI-2008,": [ + 83 + ], + "24th": [ + 85 + ], + "Uncertainty": [ + 88 + ], + "Artificial": [ + 90 + ], + "Intelligence.": [ + 91 + ], + "No": [ + 92 + ], + "less": [ + 93 + ], + "than": [ + 94 + ], + "583": [ + 95 + ], + "were": [ + 97, + 123, + 152, + 200, + 240, + 253, + 304, + 399 + ], + "submitted": [ + 98 + ], + "2008.": [ + 101 + ], + "There": [ + 102, + 151 + ], + "very": [ + 105, + 305 + ], + "thorough": [ + 106 + ], + "review": [ + 107, + 192, + 226 + ], + "process,": [ + 108 + ], + "which": [ + 110, + 252 + ], + "each": [ + 111, + 194 + ], + "paper": [ + 112, + 501, + 524 + ], + "reviewed": [ + 114 + ], + "double-blind": [ + 115 + ], + "by": [ + 116, + 157, + 202, + 299, + 359, + 421 + ], + "three": [ + 117, + 428 + ], + "program": [ + 118, + 160 + ], + "committee": [ + 119, + 161 + ], + "(PC)": [ + 120 + ], + "members.": [ + 121 + ], + "Authors": [ + 122 + ], + "able": [ + 124, + 309 + ], + "respond": [ + 126 + ], + "initial": [ + 129 + ], + "reviews,": [ + 130 + ], + "PC": [ + 133 + ], + "members": [ + 134, + 184 + ], + "could": [ + 135 + ], + "then": [ + 136 + ], + "modify": [ + 137 + ], + "their": [ + 138, + 186, + 196, + 266 + ], + "reviews": [ + 139 + ], + "based": [ + 140 + ], + "discussions": [ + 143, + 279 + ], + "content": [ + 146 + ], + "this": [ + 148, + 244 + ], + "author": [ + 149, + 172 + ], + "response.": [ + 150 + ], + "two": [ + 153, + 296 + ], + "periods": [ + 155 + ], + "led": [ + 156 + ], + "senior": [ + 159 + ], + "(SPC),": [ + 162 + ], + "one": [ + 163, + 167, + 294 + ], + "just": [ + 164 + ], + "before": [ + 165, + 354 + ], + "after": [ + 168 + ], + "submission": [ + 170 + ], + "responses.": [ + 173 + ], + "At": [ + 174 + ], + "end": [ + 176 + ], + "second": [ + 179 + ], + "period,": [ + 181 + ], + "SPC": [ + 183 + ], + "gave": [ + 185, + 488 + ], + "recommendations": [ + 187 + ], + "provided": [ + 189, + 432 + ], + "summary": [ + 191 + ], + "papers.": [ + 197 + ], + "Some": [ + 198 + ], + "checked": [ + 201 + ], + "SPCs": [ + 204 + ], + "ensure": [ + 206 + ], + "that": [ + 207, + 231 + ], + "reviewer": [ + 208 + ], + "comments": [ + 209 + ], + "had": [ + 210 + ], + "been": [ + 211 + ], + "addressed.": [ + 212 + ], + "Apart": [ + 213 + ], + "from": [ + 214 + ], + "length": [ + 216 + ], + "restrictions": [ + 217 + ], + "compressed": [ + 222 + ], + "time": [ + 223, + 276 + ], + "frame,": [ + 224 + ], + "process": [ + 227 + ], + "resembles": [ + 230 + ], + "many": [ + 233 + ], + "journal": [ + 234 + ], + "publications.": [ + 235 + ], + "In": [ + 236, + 341, + 473 + ], + "total,": [ + 237 + ], + "158": [ + 238 + ], + "including": [ + 246 + ], + "small": [ + 248 + ], + "number": [ + 249 + ], + "initially": [ + 254 + ], + "conditionally": [ + 255 + ], + "accepted,": [ + 256 + ], + "yielding": [ + 257 + ], + "an": [ + 258 + ], + "overall": [ + 259 + ], + "acceptance": [ + 260 + ], + "rate": [ + 261 + ], + "27%.\r\n\r\nICML": [ + 263 + ], + "authors": [ + 264 + ], + "presented": [ + 265, + 358 + ], + "both": [ + 268 + ], + "orally": [ + 269 + ], + "poster": [ + 273 + ], + "session,": [ + 274 + ], + "allowing": [ + 275 + ], + "detailed": [ + 278 + ], + "any": [ + 281 + ], + "interested": [ + 282 + ], + "attendees": [ + 283, + 440 + ], + "conference.": [ + 286 + ], + "Each": [ + 287 + ], + "day": [ + 288, + 431 + ], + "main": [ + 291, + 356 + ], + "included": [ + 293, + 350 + ], + "or": [ + 295 + ], + "invited": [ + 297 + ], + "talks": [ + 298 + ], + "prominent": [ + 301 + ], + "researcher.": [ + 302 + ], + "We": [ + 303, + 456, + 513 + ], + "fortunate": [ + 306 + ], + "host": [ + 311 + ], + "Michael": [ + 312 + ], + "Collins,": [ + 313 + ], + "Massachusetts": [ + 316 + ], + "Institute": [ + 317 + ], + "Technology;": [ + 319 + ], + "Andrew": [ + 320 + ], + "Ng,": [ + 321 + ], + "Stanford": [ + 323 + ], + "University;": [ + 324 + ], + "Luc": [ + 326 + ], + "De": [ + 327 + ], + "Raedt,": [ + 328 + ], + "Katholieke": [ + 331 + ], + "Universiteit": [ + 332 + ], + "Leuven,": [ + 333 + ], + "John": [ + 335 + ], + "Winn": [ + 336 + ], + "Microsoft": [ + 338 + ], + "Research": [ + 339 + ], + "Cambridge.": [ + 340 + ], + "addition": [ + 342, + 474 + ], + "technical": [ + 345 + ], + "talks,": [ + 346 + ], + "ICML-": [ + 347 + ], + "2008": [ + 348 + ], + "nine": [ + 351 + ], + "tutorials": [ + 352 + ], + "conference,": [ + 357 + ], + "Alex": [ + 360 + ], + "Smola,": [ + 361 + ], + "Arthur": [ + 362 + ], + "Gretton,": [ + 363 + ], + "Kenji": [ + 365 + ], + "Fukumizu;": [ + 366 + ], + "Bert": [ + 367 + ], + "Kappen": [ + 368 + ], + "Marc": [ + 370 + ], + "Toussaint;": [ + 371 + ], + "Neil": [ + 372 + ], + "Lawrence;": [ + 373 + ], + "MartinWainwright;": [ + 374 + ], + "Ralf": [ + 375 + ], + "Herbrich": [ + 376 + ], + "Thore": [ + 378 + ], + "Graepel;": [ + 379 + ], + "Andreas": [ + 380 + ], + "Krause": [ + 381 + ], + "Carlos": [ + 383 + ], + "Guestrin;": [ + 384 + ], + "Shai": [ + 385 + ], + "Shalev-Shwartz": [ + 386 + ], + "Yoram": [ + 388 + ], + "Singer;": [ + 389 + ], + "Rob": [ + 390 + ], + "Fergus;": [ + 391 + ], + "Matthias": [ + 393 + ], + "Seeger.": [ + 394 + ], + "year": [ + 396 + ], + "our": [ + 397, + 462, + 465, + 476, + 523 + ], + "workshops": [ + 398, + 416 + ], + "organized": [ + 400 + ], + "jointly": [ + 401 + ], + "COLT": [ + 403 + ], + "UAI": [ + 405 + ], + "as": [ + 406 + ], + "part": [ + 407 + ], + "special": [ + 410 + ], + "overlap": [ + 411 + ], + "day,": [ + 412 + ], + "consisting": [ + 413 + ], + "eleven": [ + 415 + ], + "selected": [ + 417 + ], + "arranged": [ + 419 + ], + "collaboratively": [ + 420 + ], + "respective": [ + 423 + ], + "workshop": [ + 424 + ], + "chairs": [ + 425 + ], + "conferences.": [ + 429, + 455 + ], + "rich": [ + 434 + ], + "opportunity": [ + 435 + ], + "interaction": [ + 437 + ], + "among": [ + 438 + ], + "conferences.\r\n\r\nThis": [ + 443 + ], + "enlarged": [ + 446 + ], + "its": [ + 447 + ], + "award": [ + 448 + ], + "offerings": [ + 449 + ], + "match": [ + 451 + ], + "several": [ + 452 + ], + "other": [ + 453 + ], + "well-established": [ + 454 + ], + "hope": [ + 457 + ], + "these": [ + 458 + ], + "will": [ + 459 + ], + "help": [ + 460 + ], + "build": [ + 461 + ], + "community,": [ + 463 + ], + "celebrate": [ + 464 + ], + "advances,": [ + 466 + ], + "encourage": [ + 468 + ], + "applications": [ + 469 + ], + "long-term": [ + 471 + ], + "thinking.": [ + 472 + ], + "previously": [ + 477 + ], + "traditional": [ + 478 + ], + "Best": [ + 496 + ], + "Paper": [ + 480, + 484, + 493, + 497 + ], + "Student": [ + 483 + ], + "awards,": [ + 485 + ], + "we": [ + 486 + ], + "awards": [ + 489 + ], + "Application": [ + 492 + ], + "10-year": [ + 495 + ], + "(for": [ + 498 + ], + "best": [ + 500 + ], + "1998,": [ + 504 + ], + "optionally": [ + 505 + ], + "given": [ + 506 + ], + "conjunction": [ + 508 + ], + "conference).": [ + 512 + ], + "thank": [ + 514 + ], + "Journal": [ + 518 + ], + "sponsoring": [ + 520 + ], + "some": [ + 521 + ], + "awards.": [ + 525 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 1143 + }, + { + "year": 2023, + "cited_by_count": 870 + }, + { + "year": 2022, + "cited_by_count": 611 + }, + { + "year": 2021, + "cited_by_count": 497 + }, + { + "year": 2020, + "cited_by_count": 423 + }, + { + "year": 2019, + "cited_by_count": 289 + }, + { + "year": 2018, + "cited_by_count": 221 + }, + { + "year": 2017, + "cited_by_count": 220 + }, + { + "year": 2016, + "cited_by_count": 148 + }, + { + "year": 2015, + "cited_by_count": 122 + }, + { + "year": 2014, + "cited_by_count": 105 + }, + { + "year": 2013, + "cited_by_count": 109 + }, + { + "year": 2012, + "cited_by_count": 81 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2934399013", + "doi": "https://doi.org/10.1056/nejmra1814259", + "title": "Machine Learning in Medicine", + "display_name": "Machine Learning in Medicine", + "relevance_score": 4743.7256, + "publication_year": 2019, + "publication_date": "2019-04-03", + "ids": { + "openalex": "https://openalex.org/W2934399013", + "doi": "https://doi.org/10.1056/nejmra1814259", + "mag": "2934399013", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30943338" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1056/nejmra1814259", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmra1814259", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5022388476", + "display_name": "Alvin Rajkomar", + "orcid": "https://orcid.org/0000-0001-5750-5016" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Alvin Rajkomar", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Google, Mountain View, CA" + ], + "raw_orcid": "https://orcid.org/0000-0001-5750-5016", + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google, Mountain View, CA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jeffrey Dean", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Google, Mountain View, CA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google, Mountain View, CA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088509061", + "display_name": "Isaac S. Kohane", + "orcid": "https://orcid.org/0000-0003-2192-5160" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isaac Kohane", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Department of Biomedical Informatics, Harvard Medical School, Boston" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5022388476" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 204.0333, + "has_fulltext": false, + "cited_by_count": 3873, + "citation_normalized_percentile": { + "value": 0.99985435, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "380", + "issue": "14", + "first_page": "1347", + "last_page": "1358" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11636", + "display_name": "Artificial Intelligence in Healthcare and Education", + "score": 0.9979000091552734, + "subfield": { + "id": "https://openalex.org/subfields/2718", + "display_name": "Health Informatics" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T10350", + "display_name": "Electronic Health Records Systems", + "score": 0.9948999881744385, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/download", + "display_name": "Download", + "score": 0.6465957164764404 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.43065306544303894 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.39671552181243896 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.3796260952949524 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.37657836079597473 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.321466863155365 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.27166682481765747 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2780154274", + "wikidata": "https://www.wikidata.org/wiki/Q7126717", + "display_name": "Download", + "level": 2, + "score": 0.6465957164764404 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.43065306544303894 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.39671552181243896 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.3796260952949524 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.37657836079597473 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.321466863155365 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.27166682481765747 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1056/nejmra1814259", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmra1814259", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + { + "id": "pmid:30943338", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30943338", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The New England journal of medicine", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 78, + "referenced_works": [ + "https://openalex.org/W1524493166", + "https://openalex.org/W1529983430", + "https://openalex.org/W2005440935", + "https://openalex.org/W2009184733", + "https://openalex.org/W2009954208", + "https://openalex.org/W2027540165", + "https://openalex.org/W2033163059", + "https://openalex.org/W2033609349", + "https://openalex.org/W2043092953", + "https://openalex.org/W2054076956", + "https://openalex.org/W2083721602", + "https://openalex.org/W2096849439", + "https://openalex.org/W2103018059", + "https://openalex.org/W2103889389", + "https://openalex.org/W2119472226", + "https://openalex.org/W2137767404", + "https://openalex.org/W2147246123", + "https://openalex.org/W2166187912", + "https://openalex.org/W2167414941", + "https://openalex.org/W2174931596", + "https://openalex.org/W2267932926", + "https://openalex.org/W2276530525", + "https://openalex.org/W2337116044", + "https://openalex.org/W2415841860", + "https://openalex.org/W2468431774", + "https://openalex.org/W2512902140", + "https://openalex.org/W2515682654", + "https://openalex.org/W2528491735", + "https://openalex.org/W2530247697", + "https://openalex.org/W2548723212", + "https://openalex.org/W2557738935", + "https://openalex.org/W2581082771", + "https://openalex.org/W2598272139", + "https://openalex.org/W2732701910", + "https://openalex.org/W2734356183", + "https://openalex.org/W2738975713", + "https://openalex.org/W2740060821", + "https://openalex.org/W2752747624", + "https://openalex.org/W2753059860", + "https://openalex.org/W2754518417", + "https://openalex.org/W2758348074", + "https://openalex.org/W2762741128", + "https://openalex.org/W2772246530", + "https://openalex.org/W2772723798", + "https://openalex.org/W2782945064", + "https://openalex.org/W2784499877", + "https://openalex.org/W2785268987", + "https://openalex.org/W2785526886", + "https://openalex.org/W2788633781", + "https://openalex.org/W2789894922", + "https://openalex.org/W2790444357", + "https://openalex.org/W2791819448", + "https://openalex.org/W2792902933", + "https://openalex.org/W2793267369", + "https://openalex.org/W2794457162", + "https://openalex.org/W2799837895", + "https://openalex.org/W2804685074", + "https://openalex.org/W2809453031", + "https://openalex.org/W2886281300", + "https://openalex.org/W2887623535", + "https://openalex.org/W2887719255", + "https://openalex.org/W2888109941", + "https://openalex.org/W2889242407", + "https://openalex.org/W2889494558", + "https://openalex.org/W2894917609", + "https://openalex.org/W2896385413", + "https://openalex.org/W2896817483", + "https://openalex.org/W2897434820", + "https://openalex.org/W2899560923", + "https://openalex.org/W2902802452", + "https://openalex.org/W2908201961", + "https://openalex.org/W2914579361", + "https://openalex.org/W2916105049", + "https://openalex.org/W2919115771", + "https://openalex.org/W3098949126", + "https://openalex.org/W4205374244", + "https://openalex.org/W4212774754", + "https://openalex.org/W4296220420" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W4389568370", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W1489783725" + ], + "abstract_inverted_index": { + "Interview": [ + 0 + ], + "with": [ + 1, + 32 + ], + "Dr.": [ + 2 + ], + "Isaac": [ + 3 + ], + "Kohane": [ + 4 + ], + "on": [ + 5 + ], + "machine": [ + 6 + ], + "learning": [ + 7 + ], + "in": [ + 8 + ], + "medicine.": [ + 9 + ], + "(16:31)Download": [ + 10 + ], + "In": [ + 11 + ], + "this": [ + 12 + ], + "view": [ + 13 + ], + "of": [ + 14, + 17, + 28 + ], + "the": [ + 15, + 43 + ], + "future": [ + 16 + ], + "medicine,": [ + 18 + ], + "patient–provider": [ + 19 + ], + "interactions": [ + 20, + 31 + ], + "are": [ + 21, + 37 + ], + "informed": [ + 22 + ], + "and": [ + 23, + 39, + 47 + ], + "supported": [ + 24 + ], + "by": [ + 25 + ], + "massive": [ + 26 + ], + "amounts": [ + 27 + ], + "data": [ + 29, + 36 + ], + "from": [ + 30 + ], + "similar": [ + 33 + ], + "patients.": [ + 34 + ], + "These": [ + 35 + ], + "collected": [ + 38 + ], + "curated": [ + 40 + ], + "to": [ + 41 + ], + "provide": [ + 42 + ], + "latest": [ + 44 + ], + "evidence-based": [ + 45 + ], + "assessment": [ + 46 + ], + "recommendations.": [ + 48 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 438 + }, + { + "year": 2025, + "cited_by_count": 852 + }, + { + "year": 2024, + "cited_by_count": 636 + }, + { + "year": 2023, + "cited_by_count": 536 + }, + { + "year": 2022, + "cited_by_count": 465 + }, + { + "year": 2021, + "cited_by_count": 495 + }, + { + "year": 2020, + "cited_by_count": 354 + }, + { + "year": 2019, + "cited_by_count": 91 + }, + { + "year": 2018, + "cited_by_count": 2 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1485009520", + "doi": "https://doi.org/10.48550/arxiv.1506.04214", + "title": "Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting", + "display_name": "Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting", + "relevance_score": 4733.2676, + "publication_year": 2015, + "publication_date": "2015-06-13", + "ids": { + "openalex": "https://openalex.org/W1485009520", + "doi": "https://doi.org/10.48550/arxiv.1506.04214", + "mag": "1485009520" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1506.04214", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5091515481", + "display_name": "Xingjian Shi", + "orcid": "https://orcid.org/0000-0002-2700-7742" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": true, + "raw_author_name": "Shi, Xingjian", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018500051", + "display_name": "Zhourong Chen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Zhourong", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100663938", + "display_name": "Hao Wang", + "orcid": "https://orcid.org/0000-0003-0090-2840" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Wang, Hao", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073139380", + "display_name": "Dit‐Yan Yeung", + "orcid": "https://orcid.org/0000-0003-3716-8125" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Yeung, Dit-Yan", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101899480", + "display_name": "Wai Kin Wong", + "orcid": "https://orcid.org/0000-0001-8724-0696" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210104672", + "display_name": "Hong Kong Observatory", + "ror": "https://ror.org/01bvxvq19", + "country_code": "CN", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210104672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Wong, Wai-kin", + "raw_affiliation_strings": [ + "Hong Kong Observatory Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong Observatory Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I4210104672" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5057734311", + "display_name": "Wang‐chun Woo", + "orcid": "https://orcid.org/0000-0001-5401-0333" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210104672", + "display_name": "Hong Kong Observatory", + "ror": "https://ror.org/01bvxvq19", + "country_code": "CN", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210104672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Woo, Wang-chun", + "raw_affiliation_strings": [ + "Hong Kong Observatory Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong Observatory Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I4210104672" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5091515481" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I200769079" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 6642, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10466", + "display_name": "Meteorological Phenomena and Simulations", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/1902", + "display_name": "Atmospheric Science" + }, + "field": { + "id": "https://openalex.org/fields/19", + "display_name": "Earth and Planetary Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10466", + "display_name": "Meteorological Phenomena and Simulations", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/1902", + "display_name": "Atmospheric Science" + }, + "field": { + "id": "https://openalex.org/fields/19", + "display_name": "Earth and Planetary Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11490", + "display_name": "Hydrological Forecasting Using AI", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10930", + "display_name": "Flood Risk Assessment and Management", + "score": 0.9973999857902527, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/nowcasting", + "display_name": "Nowcasting", + "score": 0.9966049790382385 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7099078297615051 + }, + { + "id": "https://openalex.org/keywords/convolutional-neural-network", + "display_name": "Convolutional neural network", + "score": 0.6329242587089539 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5754866600036621 + }, + { + "id": "https://openalex.org/keywords/precipitation", + "display_name": "Precipitation", + "score": 0.5342473387718201 + }, + { + "id": "https://openalex.org/keywords/state", + "display_name": "State (computer science)", + "score": 0.4683465361595154 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4540000259876251 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.4144560396671295 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.3392675518989563 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.20132499933242798 + }, + { + "id": "https://openalex.org/keywords/meteorology", + "display_name": "Meteorology", + "score": 0.17883428931236267 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.09717044234275818 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781013037", + "wikidata": "https://www.wikidata.org/wiki/Q1433331", + "display_name": "Nowcasting", + "level": 2, + "score": 0.9966049790382385 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7099078297615051 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.6329242587089539 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5754866600036621 + }, + { + "id": "https://openalex.org/C107054158", + "wikidata": "https://www.wikidata.org/wiki/Q25257", + "display_name": "Precipitation", + "level": 2, + "score": 0.5342473387718201 + }, + { + "id": "https://openalex.org/C48103436", + "wikidata": "https://www.wikidata.org/wiki/Q599031", + "display_name": "State (computer science)", + "level": 2, + "score": 0.4683465361595154 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4540000259876251 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.4144560396671295 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.3392675518989563 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.20132499933242798 + }, + { + "id": "https://openalex.org/C153294291", + "wikidata": "https://www.wikidata.org/wiki/Q25261", + "display_name": "Meteorology", + "level": 1, + "score": 0.17883428931236267 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.09717044234275818 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1506.04214", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1506.04214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/13", + "display_name": "Climate action", + "score": 0.8500000238418579 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 27, + "referenced_works": [ + "https://openalex.org/W588441650", + "https://openalex.org/W962117656", + "https://openalex.org/W1514535095", + "https://openalex.org/W1568514080", + "https://openalex.org/W1606347560", + "https://openalex.org/W1810943226", + "https://openalex.org/W1815076433", + "https://openalex.org/W1867429401", + "https://openalex.org/W1903029394", + "https://openalex.org/W1905882502", + "https://openalex.org/W1947481528", + "https://openalex.org/W1982479097", + "https://openalex.org/W2024414272", + "https://openalex.org/W2030459037", + "https://openalex.org/W2064675550", + "https://openalex.org/W2079565659", + "https://openalex.org/W2116435618", + "https://openalex.org/W2130942839", + "https://openalex.org/W2157331557", + "https://openalex.org/W2557283755", + "https://openalex.org/W2787727108", + "https://openalex.org/W2950635152", + "https://openalex.org/W2951183276", + "https://openalex.org/W2952453038", + "https://openalex.org/W4233546237", + "https://openalex.org/W4294306266", + "https://openalex.org/W4308909683" + ], + "related_works": [ + "https://openalex.org/W2098567841", + "https://openalex.org/W3124209601", + "https://openalex.org/W2238969010", + "https://openalex.org/W2189249776", + "https://openalex.org/W1526105959", + "https://openalex.org/W3193710367", + "https://openalex.org/W3122492506", + "https://openalex.org/W4388046081", + "https://openalex.org/W1778290058", + "https://openalex.org/W1166616657" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 21 + ], + "precipitation": [ + 3, + 46, + 101, + 125 + ], + "nowcasting": [ + 4, + 47, + 102 + ], + "is": [ + 5 + ], + "to": [ + 6, + 73, + 93 + ], + "predict": [ + 7 + ], + "the": [ + 8, + 37, + 57, + 60, + 68, + 79, + 86, + 100, + 119 + ], + "future": [ + 9 + ], + "rainfall": [ + 10 + ], + "intensity": [ + 11 + ], + "in": [ + 12, + 54, + 77 + ], + "a": [ + 13, + 17, + 49 + ], + "local": [ + 14 + ], + "region": [ + 15 + ], + "over": [ + 16 + ], + "relatively": [ + 18 + ], + "short": [ + 19 + ], + "period": [ + 20 + ], + "time.": [ + 22 + ], + "Very": [ + 23 + ], + "few": [ + 24 + ], + "previous": [ + 25 + ], + "studies": [ + 26 + ], + "have": [ + 27, + 74 + ], + "examined": [ + 28 + ], + "this": [ + 29, + 42 + ], + "crucial": [ + 30 + ], + "and": [ + 31, + 59, + 81, + 90, + 114, + 118 + ], + "challenging": [ + 32 + ], + "weather": [ + 33 + ], + "forecasting": [ + 34, + 52 + ], + "problem": [ + 35, + 53 + ], + "from": [ + 36 + ], + "machine": [ + 38 + ], + "learning": [ + 39 + ], + "perspective.": [ + 40 + ], + "In": [ + 41 + ], + "paper,": [ + 43 + ], + "we": [ + 44, + 84 + ], + "formulate": [ + 45 + ], + "as": [ + 48 + ], + "spatiotemporal": [ + 50, + 64, + 111 + ], + "sequence": [ + 51 + ], + "which": [ + 55 + ], + "both": [ + 56, + 78 + ], + "input": [ + 58 + ], + "prediction": [ + 61 + ], + "target": [ + 62 + ], + "are": [ + 63 + ], + "sequences.": [ + 65 + ], + "By": [ + 66 + ], + "extending": [ + 67 + ], + "fully": [ + 69 + ], + "connected": [ + 70 + ], + "LSTM": [ + 71, + 88 + ], + "(FC-LSTM)": [ + 72 + ], + "convolutional": [ + 75, + 87 + ], + "structures": [ + 76 + ], + "input-to-state": [ + 80 + ], + "state-to-state": [ + 82 + ], + "transitions,": [ + 83 + ], + "propose": [ + 85 + ], + "(ConvLSTM)": [ + 89 + ], + "use": [ + 91 + ], + "it": [ + 92 + ], + "build": [ + 94 + ], + "an": [ + 95 + ], + "end-to-end": [ + 96 + ], + "trainable": [ + 97 + ], + "model": [ + 98 + ], + "for": [ + 99, + 124 + ], + "problem.": [ + 103 + ], + "Experiments": [ + 104 + ], + "show": [ + 105 + ], + "that": [ + 106 + ], + "our": [ + 107 + ], + "ConvLSTM": [ + 108 + ], + "network": [ + 109 + ], + "captures": [ + 110 + ], + "correlations": [ + 112 + ], + "better": [ + 113 + ], + "consistently": [ + 115 + ], + "outperforms": [ + 116 + ], + "FC-LSTM": [ + 117 + ], + "state-of-the-art": [ + 120 + ], + "operational": [ + 121 + ], + "ROVER": [ + 122 + ], + "algorithm": [ + 123 + ], + "nowcasting.": [ + 126 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 24 + }, + { + "year": 2025, + "cited_by_count": 513 + }, + { + "year": 2024, + "cited_by_count": 855 + }, + { + "year": 2023, + "cited_by_count": 1013 + }, + { + "year": 2022, + "cited_by_count": 1028 + }, + { + "year": 2021, + "cited_by_count": 1126 + }, + { + "year": 2020, + "cited_by_count": 926 + }, + { + "year": 2019, + "cited_by_count": 736 + }, + { + "year": 2018, + "cited_by_count": 294 + }, + { + "year": 2017, + "cited_by_count": 110 + }, + { + "year": 2016, + "cited_by_count": 15 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W114517082", + "doi": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "title": "Large-Scale Machine Learning with Stochastic Gradient Descent", + "display_name": "Large-Scale Machine Learning with Stochastic Gradient Descent", + "relevance_score": 4601.843, + "publication_year": 2010, + "publication_date": "2010-01-01", + "ids": { + "openalex": "https://openalex.org/W114517082", + "doi": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "mag": "114517082" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/978-3-7908-2604-3_16", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of COMPSTAT'2010", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5019206666", + "display_name": "Léon Bottou", + "orcid": "https://orcid.org/0000-0002-9894-8128" + }, + "institutions": [ + { + "id": "https://openalex.org/I20089843", + "display_name": "Princeton University", + "ror": "https://ror.org/00hx57361", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I20089843" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Léon Bottou", + "raw_affiliation_strings": [ + "NEC Labs America, Princeton, NJ, 08542, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "NEC Labs America, Princeton, NJ, 08542, USA", + "institution_ids": [ + "https://openalex.org/I20089843" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5019206666" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I20089843" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 33.3114, + "has_fulltext": false, + "cited_by_count": 5615, + "citation_normalized_percentile": { + "value": 0.99817643, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "177", + "last_page": "186" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.003100000089034438, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12101", + "display_name": "Advanced Bandit Algorithms Research", + "score": 0.0019000000320374966, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.8901551961898804 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6674743294715881 + }, + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6642521619796753 + }, + { + "id": "https://openalex.org/keywords/stochastic-optimization", + "display_name": "Stochastic optimization", + "score": 0.610326886177063 + }, + { + "id": "https://openalex.org/keywords/gradient-descent", + "display_name": "Gradient descent", + "score": 0.5460410714149475 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5359654426574707 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.5075844526290894 + }, + { + "id": "https://openalex.org/keywords/context", + "display_name": "Context (archaeology)", + "score": 0.5021035671234131 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.44076448678970337 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43065375089645386 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.3568766713142395 + }, + { + "id": "https://openalex.org/keywords/mathematical-optimization", + "display_name": "Mathematical optimization", + "score": 0.3531373143196106 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3442344069480896 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.26637405157089233 + }, + { + "id": "https://openalex.org/keywords/active-learning", + "display_name": "Active learning (machine learning)", + "score": 0.11679795384407043 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.10637149214744568 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.8901551961898804 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6674743294715881 + }, + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6642521619796753 + }, + { + "id": "https://openalex.org/C194387892", + "wikidata": "https://www.wikidata.org/wiki/Q1747770", + "display_name": "Stochastic optimization", + "level": 2, + "score": 0.610326886177063 + }, + { + "id": "https://openalex.org/C153258448", + "wikidata": "https://www.wikidata.org/wiki/Q1199743", + "display_name": "Gradient descent", + "level": 3, + "score": 0.5460410714149475 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5359654426574707 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.5075844526290894 + }, + { + "id": "https://openalex.org/C2779343474", + "wikidata": "https://www.wikidata.org/wiki/Q3109175", + "display_name": "Context (archaeology)", + "level": 2, + "score": 0.5021035671234131 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.44076448678970337 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43065375089645386 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.3568766713142395 + }, + { + "id": "https://openalex.org/C126255220", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Mathematical optimization", + "level": 1, + "score": 0.3531373143196106 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3442344069480896 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.26637405157089233 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.11679795384407043 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.10637149214744568 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C151730666", + "wikidata": "https://www.wikidata.org/wiki/Q7205", + "display_name": "Paleontology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1007/978-3-7908-2604-3_16", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of COMPSTAT'2010", + "raw_type": "book-chapter" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.419.462", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.419.462", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://leon.bottou.org/publications/pdf/compstat-2010.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W1505356468", + "https://openalex.org/W1535810436", + "https://openalex.org/W1629097610", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030811966", + "https://openalex.org/W2035720976", + "https://openalex.org/W2043919728", + "https://openalex.org/W2068484625", + "https://openalex.org/W2086161653", + "https://openalex.org/W2098921539", + "https://openalex.org/W2101159990", + "https://openalex.org/W2113651538", + "https://openalex.org/W2119821739", + "https://openalex.org/W2127218421", + "https://openalex.org/W2129191766", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137515395", + "https://openalex.org/W2147880316", + "https://openalex.org/W2150102617", + "https://openalex.org/W2154451187", + "https://openalex.org/W2322150470", + "https://openalex.org/W2416173357", + "https://openalex.org/W2766736793", + "https://openalex.org/W2990138404", + "https://openalex.org/W3207342693", + "https://openalex.org/W4238284510" + ], + "related_works": [ + "https://openalex.org/W2895097035", + "https://openalex.org/W4206903459", + "https://openalex.org/W2754816816", + "https://openalex.org/W4366280654", + "https://openalex.org/W4323366756", + "https://openalex.org/W4286899070", + "https://openalex.org/W4389775782", + "https://openalex.org/W4285259204", + "https://openalex.org/W3207830353", + "https://openalex.org/W114517082" + ], + "abstract_inverted_index": { + "During": [ + 0 + ], + "the": [ + 1, + 4, + 11, + 18, + 28, + 33, + 45, + 57, + 61, + 100 + ], + "last": [ + 2 + ], + "decade,": [ + 3 + ], + "data": [ + 5 + ], + "sizes": [ + 6 + ], + "have": [ + 7 + ], + "grown": [ + 8 + ], + "faster": [ + 9 + ], + "than": [ + 10, + 32 + ], + "speed": [ + 12 + ], + "of": [ + 13, + 20, + 47, + 60 + ], + "processors.": [ + 14 + ], + "In": [ + 15, + 82 + ], + "this": [ + 16 + ], + "context,": [ + 17 + ], + "capabilities": [ + 19 + ], + "statistical": [ + 21 + ], + "machine": [ + 22 + ], + "learning": [ + 23, + 51 + ], + "methods": [ + 24 + ], + "is": [ + 25 + ], + "limited": [ + 26 + ], + "by": [ + 27 + ], + "computing": [ + 29 + ], + "time": [ + 30 + ], + "rather": [ + 31 + ], + "sample": [ + 34 + ], + "size.": [ + 35 + ], + "A": [ + 36 + ], + "more": [ + 37 + ], + "precise": [ + 38 + ], + "analysis": [ + 39 + ], + "uncovers": [ + 40 + ], + "qualitatively": [ + 41 + ], + "different": [ + 42 + ], + "tradeoffs": [ + 43 + ], + "for": [ + 44, + 79 + ], + "case": [ + 46, + 55 + ], + "small-scale": [ + 48 + ], + "and": [ + 49, + 88 + ], + "large-scale": [ + 50, + 54, + 80 + ], + "problems.": [ + 52, + 81 + ], + "The": [ + 53 + ], + "involves": [ + 56 + ], + "computational": [ + 58 + ], + "complexity": [ + 59 + ], + "underlying": [ + 62 + ], + "optimization": [ + 63, + 69 + ], + "algorithm": [ + 64 + ], + "in": [ + 65 + ], + "non-trivial": [ + 66 + ], + "ways.": [ + 67 + ], + "Unlikely": [ + 68 + ], + "algorithms": [ + 70 + ], + "such": [ + 71 + ], + "as": [ + 72 + ], + "stochastic": [ + 73, + 86, + 90 + ], + "gradient": [ + 74, + 87, + 91 + ], + "descent": [ + 75 + ], + "show": [ + 76 + ], + "amazing": [ + 77 + ], + "performance": [ + 78 + ], + "particular,": [ + 83 + ], + "second": [ + 84 + ], + "order": [ + 85 + ], + "averaged": [ + 89 + ], + "are": [ + 92 + ], + "asymptotically": [ + 93 + ], + "efficient": [ + 94 + ], + "after": [ + 95 + ], + "a": [ + 96 + ], + "single": [ + 97 + ], + "pass": [ + 98 + ], + "on": [ + 99 + ], + "training": [ + 101 + ], + "set.": [ + 102 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 79 + }, + { + "year": 2025, + "cited_by_count": 338 + }, + { + "year": 2024, + "cited_by_count": 343 + }, + { + "year": 2023, + "cited_by_count": 392 + }, + { + "year": 2022, + "cited_by_count": 436 + }, + { + "year": 2021, + "cited_by_count": 796 + }, + { + "year": 2020, + "cited_by_count": 903 + }, + { + "year": 2019, + "cited_by_count": 787 + }, + { + "year": 2018, + "cited_by_count": 515 + }, + { + "year": 2017, + "cited_by_count": 392 + }, + { + "year": 2016, + "cited_by_count": 254 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 107 + }, + { + "year": 2013, + "cited_by_count": 66 + }, + { + "year": 2012, + "cited_by_count": 40 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2619383789", + "doi": "https://doi.org/10.1109/tpami.2018.2798607", + "title": "Multimodal Machine Learning: A Survey and Taxonomy", + "display_name": "Multimodal Machine Learning: A Survey and Taxonomy", + "relevance_score": 4482.5703, + "publication_year": 2018, + "publication_date": "2018-01-25", + "ids": { + "openalex": "https://openalex.org/W2619383789", + "doi": "https://doi.org/10.1109/tpami.2018.2798607", + "mag": "2619383789", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29994351" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tpami.2018.2798607", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2018.2798607", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058610902", + "display_name": "Tadas Baltrušaitis", + "orcid": "https://orcid.org/0000-0001-7923-8780" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210164937", + "display_name": "Microsoft Research (United Kingdom)", + "ror": "https://ror.org/05k87vq12", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253", + "https://openalex.org/I4210164937" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Tadas Baltrusaitis", + "raw_affiliation_strings": [ + "Microsoft Corporation, Cambridge, United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0001-7923-8780", + "affiliations": [ + { + "raw_affiliation_string": "Microsoft Corporation, Cambridge, United Kingdom", + "institution_ids": [ + "https://openalex.org/I4210164937" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050602513", + "display_name": "Chaitanya Ahuja", + "orcid": "https://orcid.org/0000-0003-4396-2050" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chaitanya Ahuja", + "raw_affiliation_strings": [ + "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA" + ], + "raw_orcid": "https://orcid.org/0000-0003-4396-2050", + "affiliations": [ + { + "raw_affiliation_string": "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5081398601", + "display_name": "Louis–Philippe Morency", + "orcid": "https://orcid.org/0000-0001-6376-7696" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Louis-Philippe Morency", + "raw_affiliation_strings": [ + "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA" + ], + "raw_orcid": "https://orcid.org/0000-0001-6376-7696", + "affiliations": [ + { + "raw_affiliation_string": "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5058610902" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210164937" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 162.1177, + "has_fulltext": false, + "cited_by_count": 4129, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "41", + "issue": "2", + "first_page": "423", + "last_page": "443" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11309", + "display_name": "Music and Audio Processing", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11309", + "display_name": "Music and Audio Processing", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13083", + "display_name": "Advanced Text Analysis Techniques", + "score": 0.9890000224113464, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11667", + "display_name": "Advanced Chemical Sensor Technologies", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/2204", + "display_name": "Biomedical Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/multimodal-learning", + "display_name": "Multimodal learning", + "score": 0.7634491920471191 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6933263540267944 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.644882082939148 + }, + { + "id": "https://openalex.org/keywords/modalities", + "display_name": "Modalities", + "score": 0.6390953063964844 + }, + { + "id": "https://openalex.org/keywords/taxonomy", + "display_name": "Taxonomy (biology)", + "score": 0.6077015399932861 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.5977133512496948 + }, + { + "id": "https://openalex.org/keywords/multimodality", + "display_name": "Multimodality", + "score": 0.4987671375274658 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.45902901887893677 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.42995545268058777 + }, + { + "id": "https://openalex.org/keywords/human–computer-interaction", + "display_name": "Human–computer interaction", + "score": 0.35926470160484314 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.08981871604919434 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2780660688", + "wikidata": "https://www.wikidata.org/wiki/Q25052564", + "display_name": "Multimodal learning", + "level": 2, + "score": 0.7634491920471191 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6933263540267944 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.644882082939148 + }, + { + "id": "https://openalex.org/C2779903281", + "wikidata": "https://www.wikidata.org/wiki/Q6888026", + "display_name": "Modalities", + "level": 2, + "score": 0.6390953063964844 + }, + { + "id": "https://openalex.org/C58642233", + "wikidata": "https://www.wikidata.org/wiki/Q8269924", + "display_name": "Taxonomy (biology)", + "level": 2, + "score": 0.6077015399932861 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.5977133512496948 + }, + { + "id": "https://openalex.org/C2780910867", + "wikidata": "https://www.wikidata.org/wiki/Q1952416", + "display_name": "Multimodality", + "level": 2, + "score": 0.4987671375274658 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.45902901887893677 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.42995545268058777 + }, + { + "id": "https://openalex.org/C107457646", + "wikidata": "https://www.wikidata.org/wiki/Q207434", + "display_name": "Human–computer interaction", + "level": 1, + "score": 0.35926470160484314 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.08981871604919434 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C36289849", + "wikidata": "https://www.wikidata.org/wiki/Q34749", + "display_name": "Social science", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/tpami.2018.2798607", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2018.2798607", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + { + "id": "pmid:29994351", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29994351", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE transactions on pattern analysis and machine intelligence", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 369, + "referenced_works": [ + "https://openalex.org/W8316075", + "https://openalex.org/W21006490", + "https://openalex.org/W22229905", + "https://openalex.org/W59175527", + "https://openalex.org/W68733909", + "https://openalex.org/W129606432", + "https://openalex.org/W155596317", + "https://openalex.org/W189596042", + "https://openalex.org/W199018803", + "https://openalex.org/W262578090", + "https://openalex.org/W854541894", + "https://openalex.org/W877909479", + "https://openalex.org/W956551720", + "https://openalex.org/W1123427201", + "https://openalex.org/W1480583224", + "https://openalex.org/W1481820510", + "https://openalex.org/W1488163396", + "https://openalex.org/W1503933356", + "https://openalex.org/W1514535095", + "https://openalex.org/W1522301498", + "https://openalex.org/W1523385540", + "https://openalex.org/W1527575280", + "https://openalex.org/W1528056001", + "https://openalex.org/W1533861849", + "https://openalex.org/W1540429825", + "https://openalex.org/W1555767263", + "https://openalex.org/W1566289585", + "https://openalex.org/W1572567476", + "https://openalex.org/W1573040851", + "https://openalex.org/W1586939924", + "https://openalex.org/W1601567445", + "https://openalex.org/W1628307106", + "https://openalex.org/W1651753422", + "https://openalex.org/W1664311846", + "https://openalex.org/W1686810756", + "https://openalex.org/W1687846465", + "https://openalex.org/W1753482797", + "https://openalex.org/W1762503104", + "https://openalex.org/W1766290689", + "https://openalex.org/W1773149199", + "https://openalex.org/W1811254738", + "https://openalex.org/W1822526425", + "https://openalex.org/W1828348983", + "https://openalex.org/W1836465849", + "https://openalex.org/W1858383477", + "https://openalex.org/W1870428314", + "https://openalex.org/W1872883209", + "https://openalex.org/W1883346539", + "https://openalex.org/W1889038981", + "https://openalex.org/W1889081078", + "https://openalex.org/W1893116441", + "https://openalex.org/W1895577753", + "https://openalex.org/W1897761818", + "https://openalex.org/W1905882502", + "https://openalex.org/W1906515132", + "https://openalex.org/W1922557984", + "https://openalex.org/W1931795219", + "https://openalex.org/W1933065844", + "https://openalex.org/W1933349210", + "https://openalex.org/W1956340063", + "https://openalex.org/W1963540633", + "https://openalex.org/W1964073652", + "https://openalex.org/W1966811077", + "https://openalex.org/W1969616664", + "https://openalex.org/W1970055505", + "https://openalex.org/W1971791733", + "https://openalex.org/W1976066595", + "https://openalex.org/W1977547683", + "https://openalex.org/W1985867508", + "https://openalex.org/W1986451414", + "https://openalex.org/W1987835821", + "https://openalex.org/W1996418862", + "https://openalex.org/W1996478295", + "https://openalex.org/W2000911139", + "https://openalex.org/W2003333103", + "https://openalex.org/W2006969979", + "https://openalex.org/W2009059481", + "https://openalex.org/W2012237712", + "https://openalex.org/W2015394094", + "https://openalex.org/W2015412875", + "https://openalex.org/W2019024625", + "https://openalex.org/W2022799064", + "https://openalex.org/W2025341678", + "https://openalex.org/W2025638820", + "https://openalex.org/W2026012689", + "https://openalex.org/W2026243162", + "https://openalex.org/W2038698865", + "https://openalex.org/W2041288440", + "https://openalex.org/W2042608483", + "https://openalex.org/W2048343491", + "https://openalex.org/W2048679005", + "https://openalex.org/W2051721233", + "https://openalex.org/W2053101950", + "https://openalex.org/W2057568625", + "https://openalex.org/W2058616948", + "https://openalex.org/W2061781940", + "https://openalex.org/W2062632672", + "https://openalex.org/W2062955551", + "https://openalex.org/W2063036810", + "https://openalex.org/W2063330527", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066667210", + "https://openalex.org/W2068676460", + "https://openalex.org/W2069682406", + "https://openalex.org/W2077395415", + "https://openalex.org/W2080576537", + "https://openalex.org/W2083885588", + "https://openalex.org/W2090048052", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096391593", + "https://openalex.org/W2098411764", + "https://openalex.org/W2098562545", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100235303", + "https://openalex.org/W2100561338", + "https://openalex.org/W2101105183", + "https://openalex.org/W2101534792", + "https://openalex.org/W2102765684", + "https://openalex.org/W2105103432", + "https://openalex.org/W2106277773", + "https://openalex.org/W2108710284", + "https://openalex.org/W2109586012", + "https://openalex.org/W2109743529", + "https://openalex.org/W2111078031", + "https://openalex.org/W2111645492", + "https://openalex.org/W2112019442", + "https://openalex.org/W2112184938", + "https://openalex.org/W2112912048", + "https://openalex.org/W2113507809", + "https://openalex.org/W2118714046", + "https://openalex.org/W2119288237", + "https://openalex.org/W2120776756", + "https://openalex.org/W2123024445", + "https://openalex.org/W2124033848", + "https://openalex.org/W2124372976", + "https://openalex.org/W2125336414", + "https://openalex.org/W2125366733", + "https://openalex.org/W2126598020", + "https://openalex.org/W2128856065", + "https://openalex.org/W2129142580", + "https://openalex.org/W2129360799", + "https://openalex.org/W2129382193", + "https://openalex.org/W2130055251", + "https://openalex.org/W2130162821", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131179926", + "https://openalex.org/W2133459682", + "https://openalex.org/W2133564696", + "https://openalex.org/W2135776491", + "https://openalex.org/W2136922672", + "https://openalex.org/W2136985729", + "https://openalex.org/W2137735870", + "https://openalex.org/W2137806537", + "https://openalex.org/W2141477623", + "https://openalex.org/W2142192571", + "https://openalex.org/W2142900973", + "https://openalex.org/W2143449221", + "https://openalex.org/W2143492886", + "https://openalex.org/W2143612262", + "https://openalex.org/W2143926884", + "https://openalex.org/W2145056192", + "https://openalex.org/W2147880316", + "https://openalex.org/W2147885303", + "https://openalex.org/W2148298736", + "https://openalex.org/W2149172860", + "https://openalex.org/W2149557440", + "https://openalex.org/W2149940198", + "https://openalex.org/W2150295085", + "https://openalex.org/W2150658333", + "https://openalex.org/W2150696241", + "https://openalex.org/W2150824314", + "https://openalex.org/W2151096985", + "https://openalex.org/W2151103935", + "https://openalex.org/W2152239535", + "https://openalex.org/W2153579005", + "https://openalex.org/W2153927146", + "https://openalex.org/W2156303437", + "https://openalex.org/W2156503193", + "https://openalex.org/W2159973364", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163108352", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2164186291", + "https://openalex.org/W2164450870", + "https://openalex.org/W2164587673", + "https://openalex.org/W2164699598", + "https://openalex.org/W2167103782", + "https://openalex.org/W2173180041", + "https://openalex.org/W2180844455", + "https://openalex.org/W2181691731", + "https://openalex.org/W2184045248", + "https://openalex.org/W2184188583", + "https://openalex.org/W2185175083", + "https://openalex.org/W2201007611", + "https://openalex.org/W2203543769", + "https://openalex.org/W2220981600", + "https://openalex.org/W2250742840", + "https://openalex.org/W2250842428", + "https://openalex.org/W2251353663", + "https://openalex.org/W2251394420", + "https://openalex.org/W2251885125", + "https://openalex.org/W2251970440", + "https://openalex.org/W2252122141", + "https://openalex.org/W2252238675", + "https://openalex.org/W2266728343", + "https://openalex.org/W2267126114", + "https://openalex.org/W2282219577", + "https://openalex.org/W2291822808", + "https://openalex.org/W2293453011", + "https://openalex.org/W2294797155", + "https://openalex.org/W2296613712", + "https://openalex.org/W2316138215", + "https://openalex.org/W2327501763", + "https://openalex.org/W2342662179", + "https://openalex.org/W2388114291", + "https://openalex.org/W2397159106", + "https://openalex.org/W2399507222", + "https://openalex.org/W2399733683", + "https://openalex.org/W2402955625", + "https://openalex.org/W2405756170", + "https://openalex.org/W2411037331", + "https://openalex.org/W2418349398", + "https://openalex.org/W2434537049", + "https://openalex.org/W2462496837", + "https://openalex.org/W2470413457", + "https://openalex.org/W2489434015", + "https://openalex.org/W2494980014", + "https://openalex.org/W2519091744", + "https://openalex.org/W2519656895", + "https://openalex.org/W2520160253", + "https://openalex.org/W2546919788", + "https://openalex.org/W2557865186", + "https://openalex.org/W2579317665", + "https://openalex.org/W2914699769", + "https://openalex.org/W2949465329", + "https://openalex.org/W2953318193", + "https://openalex.org/W2962706528", + "https://openalex.org/W2962756039", + "https://openalex.org/W2962835968", + "https://openalex.org/W2963082528", + "https://openalex.org/W2963109634", + "https://openalex.org/W2963143316", + "https://openalex.org/W2963192057", + "https://openalex.org/W2963260436", + "https://openalex.org/W2963324994", + "https://openalex.org/W2963383024", + "https://openalex.org/W2963389687", + "https://openalex.org/W2963410018", + "https://openalex.org/W2963576560", + "https://openalex.org/W2963579811", + "https://openalex.org/W2963605190", + "https://openalex.org/W2963656855", + "https://openalex.org/W2963735856", + "https://openalex.org/W2963811219", + "https://openalex.org/W2963899908", + "https://openalex.org/W2963954913", + "https://openalex.org/W2964040984", + "https://openalex.org/W2964118342", + "https://openalex.org/W2964121744", + "https://openalex.org/W2964217371", + "https://openalex.org/W2964241990", + "https://openalex.org/W2964308564", + "https://openalex.org/W2964345931", + "https://openalex.org/W3000384245", + "https://openalex.org/W3023993913", + "https://openalex.org/W3087871082", + "https://openalex.org/W3125032682", + "https://openalex.org/W4211232216", + "https://openalex.org/W4212844288", + "https://openalex.org/W4240592325", + "https://openalex.org/W4244018879", + "https://openalex.org/W4245655784", + "https://openalex.org/W4252331534", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293665662", + "https://openalex.org/W4294170691", + "https://openalex.org/W4297813007", + "https://openalex.org/W4299801216", + "https://openalex.org/W4302613066", + "https://openalex.org/W4320013936", + "https://openalex.org/W6600334730", + "https://openalex.org/W6600827882", + "https://openalex.org/W6605295763", + "https://openalex.org/W6606244218", + "https://openalex.org/W6606327593", + "https://openalex.org/W6607775107", + "https://openalex.org/W6608183366", + "https://openalex.org/W6623517193", + "https://openalex.org/W6623995992", + "https://openalex.org/W6625044600", + "https://openalex.org/W6628794645", + "https://openalex.org/W6629203210", + "https://openalex.org/W6630875275", + "https://openalex.org/W6631190155", + "https://openalex.org/W6631216910", + "https://openalex.org/W6631516269", + "https://openalex.org/W6631943919", + "https://openalex.org/W6634126550", + "https://openalex.org/W6636447180", + "https://openalex.org/W6636942303", + "https://openalex.org/W6637306801", + "https://openalex.org/W6637373629", + "https://openalex.org/W6637698695", + "https://openalex.org/W6637971603", + "https://openalex.org/W6637989529", + "https://openalex.org/W6638549007", + "https://openalex.org/W6638667902", + "https://openalex.org/W6638742206", + "https://openalex.org/W6639103823", + "https://openalex.org/W6639118148", + "https://openalex.org/W6639283537", + "https://openalex.org/W6639358663", + "https://openalex.org/W6639432524", + "https://openalex.org/W6639434097", + "https://openalex.org/W6640257717", + "https://openalex.org/W6640296258", + "https://openalex.org/W6640764460", + "https://openalex.org/W6650605322", + "https://openalex.org/W6652311901", + "https://openalex.org/W6674330103", + "https://openalex.org/W6675048546", + "https://openalex.org/W6676380891", + "https://openalex.org/W6676497082", + "https://openalex.org/W6676647902", + "https://openalex.org/W6676709516", + "https://openalex.org/W6678360021", + "https://openalex.org/W6678470764", + "https://openalex.org/W6678809451", + "https://openalex.org/W6679434410", + "https://openalex.org/W6679436768", + "https://openalex.org/W6680094886", + "https://openalex.org/W6680336390", + "https://openalex.org/W6681184217", + "https://openalex.org/W6682082992", + "https://openalex.org/W6682086108", + "https://openalex.org/W6682222085", + "https://openalex.org/W6682511423", + "https://openalex.org/W6682691769", + "https://openalex.org/W6682864246", + "https://openalex.org/W6683074461", + "https://openalex.org/W6683167905", + "https://openalex.org/W6683277684", + "https://openalex.org/W6684191040", + "https://openalex.org/W6684209796", + "https://openalex.org/W6685183736", + "https://openalex.org/W6685527872", + "https://openalex.org/W6686207219", + "https://openalex.org/W6687543112", + "https://openalex.org/W6687672932", + "https://openalex.org/W6688143368", + "https://openalex.org/W6691419566", + "https://openalex.org/W6691647468", + "https://openalex.org/W6692004142", + "https://openalex.org/W6696843773", + "https://openalex.org/W6697449767", + "https://openalex.org/W6712426025", + "https://openalex.org/W6712802073", + "https://openalex.org/W6713645886", + "https://openalex.org/W6717487601", + "https://openalex.org/W6726977916", + "https://openalex.org/W6727336983", + "https://openalex.org/W6729831399", + "https://openalex.org/W6730042849", + "https://openalex.org/W6730666313", + "https://openalex.org/W6732843983", + "https://openalex.org/W6845679800", + "https://openalex.org/W6898505805", + "https://openalex.org/W7011438494" + ], + "related_works": [ + "https://openalex.org/W4319049579", + "https://openalex.org/W2791907740", + "https://openalex.org/W2135449968", + "https://openalex.org/W2739856905", + "https://openalex.org/W1508553398", + "https://openalex.org/W2170966221", + "https://openalex.org/W1594974701", + "https://openalex.org/W4287761641", + "https://openalex.org/W3034009428", + "https://openalex.org/W2116664529" + ], + "abstract_inverted_index": { + "Our": [ + 0 + ], + "experience": [ + 1 + ], + "of": [ + 2, + 93, + 101, + 164 + ], + "the": [ + 3, + 23, + 56, + 110, + 128, + 162, + 165 + ], + "world": [ + 4, + 57 + ], + "is": [ + 5, + 30, + 36, + 88 + ], + "multimodal": [ + 6, + 39, + 68, + 105, + 114, + 143 + ], + "-": [ + 7 + ], + "we": [ + 8 + ], + "see": [ + 9 + ], + "objects,": [ + 10 + ], + "hear": [ + 11 + ], + "sounds,": [ + 12 + ], + "feel": [ + 13 + ], + "texture,": [ + 14 + ], + "smell": [ + 15 + ], + "odors,": [ + 16 + ], + "and": [ + 17, + 32, + 81, + 96, + 118, + 131, + 135, + 151, + 167 + ], + "taste": [ + 18 + ], + "flavors.": [ + 19 + ], + "Modality": [ + 20 + ], + "refers": [ + 21 + ], + "to": [ + 22, + 51, + 62, + 65, + 75, + 159 + ], + "way": [ + 24 + ], + "in": [ + 25, + 54, + 113, + 121 + ], + "which": [ + 26 + ], + "something": [ + 27 + ], + "happens": [ + 28 + ], + "or": [ + 29 + ], + "experienced": [ + 31 + ], + "a": [ + 33, + 89, + 122 + ], + "research": [ + 34 + ], + "problem": [ + 35 + ], + "characterized": [ + 37 + ], + "as": [ + 38 + ], + "when": [ + 40 + ], + "it": [ + 41, + 60 + ], + "includes": [ + 42 + ], + "multiple": [ + 43, + 85 + ], + "such": [ + 44, + 67 + ], + "modalities.": [ + 45, + 86 + ], + "In": [ + 46 + ], + "order": [ + 47 + ], + "for": [ + 48, + 170 + ], + "Artificial": [ + 49 + ], + "Intelligence": [ + 50 + ], + "make": [ + 52 + ], + "progress": [ + 53 + ], + "understanding": [ + 55 + ], + "around": [ + 58 + ], + "us,": [ + 59 + ], + "needs": [ + 61 + ], + "be": [ + 63 + ], + "able": [ + 64 + ], + "interpret": [ + 66 + ], + "signals": [ + 69 + ], + "together.": [ + 70 + ], + "Multimodal": [ + 71 + ], + "machine": [ + 72, + 115, + 144 + ], + "learning": [ + 73, + 116 + ], + "aims": [ + 74 + ], + "build": [ + 76 + ], + "models": [ + 77 + ], + "that": [ + 78, + 139 + ], + "can": [ + 79 + ], + "process": [ + 80 + ], + "relate": [ + 82 + ], + "information": [ + 83 + ], + "from": [ + 84 + ], + "It": [ + 87 + ], + "vibrant": [ + 90 + ], + "multi-disciplinary": [ + 91 + ], + "field": [ + 92, + 166 + ], + "increasing": [ + 94 + ], + "importance": [ + 95 + ], + "with": [ + 97 + ], + "extraordinary": [ + 98 + ], + "potential.": [ + 99 + ], + "Instead": [ + 100 + ], + "focusing": [ + 102 + ], + "on": [ + 103 + ], + "specific": [ + 104 + ], + "applications,": [ + 106 + ], + "this": [ + 107 + ], + "paper": [ + 108 + ], + "surveys": [ + 109 + ], + "recent": [ + 111 + ], + "advances": [ + 112 + ], + "itself": [ + 117 + ], + "presents": [ + 119 + ], + "them": [ + 120 + ], + "common": [ + 123 + ], + "taxonomy.": [ + 124 + ], + "We": [ + 125 + ], + "go": [ + 126 + ], + "beyond": [ + 127 + ], + "typical": [ + 129 + ], + "early": [ + 130 + ], + "late": [ + 132 + ], + "fusion": [ + 133 + ], + "categorization": [ + 134 + ], + "identify": [ + 136, + 168 + ], + "broader": [ + 137 + ], + "challenges": [ + 138 + ], + "are": [ + 140 + ], + "faced": [ + 141 + ], + "by": [ + 142 + ], + "learning,": [ + 145 + ], + "namely:": [ + 146 + ], + "representation,": [ + 147 + ], + "translation,": [ + 148 + ], + "alignment,": [ + 149 + ], + "fusion,": [ + 150 + ], + "co-learning.": [ + 152 + ], + "This": [ + 153 + ], + "new": [ + 154 + ], + "taxonomy": [ + 155 + ], + "will": [ + 156 + ], + "enable": [ + 157 + ], + "researchers": [ + 158 + ], + "better": [ + 160 + ], + "understand": [ + 161 + ], + "state": [ + 163 + ], + "directions": [ + 169 + ], + "future": [ + 171 + ], + "research.": [ + 172 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 418 + }, + { + "year": 2025, + "cited_by_count": 971 + }, + { + "year": 2024, + "cited_by_count": 697 + }, + { + "year": 2023, + "cited_by_count": 590 + }, + { + "year": 2022, + "cited_by_count": 477 + }, + { + "year": 2021, + "cited_by_count": 383 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 194 + }, + { + "year": 2018, + "cited_by_count": 63 + }, + { + "year": 2017, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2177870565", + "doi": "https://doi.org/10.1161/circulationaha.115.001593", + "title": "Machine Learning in Medicine", + "display_name": "Machine Learning in Medicine", + "relevance_score": 4470.496, + "publication_year": 2015, + "publication_date": "2015-11-16", + "ids": { + "openalex": "https://openalex.org/W2177870565", + "doi": "https://doi.org/10.1161/circulationaha.115.001593", + "mag": "2177870565", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/26572668" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1161/circulationaha.115.001593", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1161/circulationaha.115.001593", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S116251202", + "display_name": "Circulation", + "issn_l": "0009-7322", + "issn": [ + "0009-7322", + "1524-4539" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315671", + "host_organization_name": "Lippincott Williams & Wilkins", + "host_organization_lineage": [ + "https://openalex.org/P4310315671", + "https://openalex.org/P4310318547" + ], + "host_organization_lineage_names": [ + "Lippincott Williams & Wilkins", + "Wolters Kluwer" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5026141445", + "display_name": "Rahul C. Deo", + "orcid": "https://orcid.org/0000-0002-2791-9434" + }, + "institutions": [ + { + "id": "https://openalex.org/I103922791", + "display_name": "QB3", + "ror": "https://ror.org/04n1n3n22", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I103922791", + "https://openalex.org/I180670191", + "https://openalex.org/I185103710", + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Rahul C. Deo", + "raw_affiliation_strings": [ + "From Cardiovascular Research Institute, Department of Medicine and Institute for Human Genetics, University of California, San Francisco, and California Institute for Quantitative Biosciences, San Francisco" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Cardiovascular Research Institute, Department of Medicine and Institute for Human Genetics, University of California, San Francisco, and California Institute for Quantitative Biosciences, San Francisco", + "institution_ids": [ + "https://openalex.org/I103922791" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5026141445" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I103922791" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 79.7031, + "has_fulltext": false, + "cited_by_count": 3391, + "citation_normalized_percentile": { + "value": 0.99935472, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "132", + "issue": "20", + "first_page": "1920", + "last_page": "1930" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11021", + "display_name": "ECG Monitoring and Analysis", + "score": 0.9660999774932861, + "subfield": { + "id": "https://openalex.org/subfields/2705", + "display_name": "Cardiology and Cardiovascular Medicine" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9575999975204468, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.9206037521362305 + }, + { + "id": "https://openalex.org/keywords/medical-physics", + "display_name": "Medical physics", + "score": 0.36205965280532837 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.35273855924606323 + }, + { + "id": "https://openalex.org/keywords/intensive-care-medicine", + "display_name": "Intensive care medicine", + "score": 0.32538071274757385 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.9206037521362305 + }, + { + "id": "https://openalex.org/C19527891", + "wikidata": "https://www.wikidata.org/wiki/Q1120908", + "display_name": "Medical physics", + "level": 1, + "score": 0.36205965280532837 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.35273855924606323 + }, + { + "id": "https://openalex.org/C177713679", + "wikidata": "https://www.wikidata.org/wiki/Q679690", + "display_name": "Intensive care medicine", + "level": 1, + "score": 0.32538071274757385 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + } + ], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1161/circulationaha.115.001593", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1161/circulationaha.115.001593", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S116251202", + "display_name": "Circulation", + "issn_l": "0009-7322", + "issn": [ + "0009-7322", + "1524-4539" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315671", + "host_organization_name": "Lippincott Williams & Wilkins", + "host_organization_lineage": [ + "https://openalex.org/P4310315671", + "https://openalex.org/P4310318547" + ], + "host_organization_lineage_names": [ + "Lippincott Williams & Wilkins", + "Wolters Kluwer" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": "journal-article" + }, + { + "id": "pmid:26572668", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/26572668", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": null + }, + { + "id": "pmh:oai:escholarship.org:ark:/13030/qt3jv2494f", + "is_oa": false, + "landing_page_url": "https://escholarship.org/uc/item/3jv2494f", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation, vol 132, iss 20", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5831252", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "pmh:oai:pubmedcentral.nih.gov:5831252", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation", + "raw_type": "Text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320332161", + "display_name": "National Institutes of Health", + "ror": "https://ror.org/01cwqze88" + }, + { + "id": "https://openalex.org/F4320332622", + "display_name": "University of California, San Francisco", + "ror": "https://ror.org/043mz5j54" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 47, + "referenced_works": [ + "https://openalex.org/W40442397", + "https://openalex.org/W1480376833", + "https://openalex.org/W1678356000", + "https://openalex.org/W1808991731", + "https://openalex.org/W1902027874", + "https://openalex.org/W1976196376", + "https://openalex.org/W2011999110", + "https://openalex.org/W2021701428", + "https://openalex.org/W2029243817", + "https://openalex.org/W2052825782", + "https://openalex.org/W2072128103", + "https://openalex.org/W2073751243", + "https://openalex.org/W2105464873", + "https://openalex.org/W2106665921", + "https://openalex.org/W2110243528", + "https://openalex.org/W2112289645", + "https://openalex.org/W2112592817", + "https://openalex.org/W2113606819", + "https://openalex.org/W2116802246", + "https://openalex.org/W2119361626", + "https://openalex.org/W2120480077", + "https://openalex.org/W2121495423", + "https://openalex.org/W2122111042", + "https://openalex.org/W2127482775", + "https://openalex.org/W2135046866", + "https://openalex.org/W2139212933", + "https://openalex.org/W2147461734", + "https://openalex.org/W2149298154", + "https://openalex.org/W2152072062", + "https://openalex.org/W2158927033", + "https://openalex.org/W2162586165", + "https://openalex.org/W2163697531", + "https://openalex.org/W2164434252", + "https://openalex.org/W2345255551", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2912934387", + "https://openalex.org/W2963481018", + "https://openalex.org/W2998216295", + "https://openalex.org/W3099478002", + "https://openalex.org/W4212883601", + "https://openalex.org/W4231109964", + "https://openalex.org/W4243607236", + "https://openalex.org/W4285719527", + "https://openalex.org/W6601599523", + "https://openalex.org/W6676903177", + "https://openalex.org/W7066667914" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W4389568370", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W1489783725" + ], + "abstract_inverted_index": { + "Spurred": [ + 0 + ], + "by": [ + 1 + ], + "advances": [ + 2 + ], + "in": [ + 3, + 48, + 94, + 107, + 125, + 178 + ], + "processing": [ + 4 + ], + "power,": [ + 5 + ], + "memory,": [ + 6 + ], + "storage,": [ + 7 + ], + "and": [ + 8, + 45, + 80, + 115, + 140, + 150, + 216 + ], + "an": [ + 9 + ], + "unprecedented": [ + 10 + ], + "wealth": [ + 11 + ], + "of": [ + 12, + 35, + 40, + 67, + 99, + 156, + 175, + 185, + 194, + 210 + ], + "data,": [ + 13, + 44, + 164 + ], + "computers": [ + 14 + ], + "are": [ + 15, + 89, + 154 + ], + "being": [ + 16 + ], + "asked": [ + 17 + ], + "to": [ + 18, + 75, + 92, + 103, + 121, + 131, + 162, + 170, + 181, + 188, + 199, + 206 + ], + "tackle": [ + 19 + ], + "increasingly": [ + 20 + ], + "complex": [ + 21, + 72 + ], + "learning": [ + 22, + 113, + 142, + 160, + 187, + 214 + ], + "tasks,": [ + 23 + ], + "often": [ + 24 + ], + "with": [ + 25 + ], + "astonishing": [ + 26 + ], + "success.": [ + 27 + ], + "Computers": [ + 28 + ], + "have": [ + 29, + 55, + 144, + 167 + ], + "now": [ + 30 + ], + "mastered": [ + 31 + ], + "a": [ + 32 + ], + "popular": [ + 33 + ], + "variant": [ + 34 + ], + "poker,": [ + 36 + ], + "learned": [ + 37 + ], + "the": [ + 38, + 65, + 119, + 182, + 208 + ], + "laws": [ + 39 + ], + "physics": [ + 41 + ], + "from": [ + 42, + 111, + 118 + ], + "experimental": [ + 43 + ], + "become": [ + 46 + ], + "experts": [ + 47 + ], + "video": [ + 49 + ], + "games": [ + 50 + ], + "-": [ + 51 + ], + "tasks": [ + 52 + ], + "that": [ + 53, + 85, + 133 + ], + "would": [ + 54 + ], + "been": [ + 56, + 145 + ], + "deemed": [ + 57 + ], + "impossible": [ + 58 + ], + "not": [ + 59 + ], + "too": [ + 60 + ], + "long": [ + 61 + ], + "ago.": [ + 62 + ], + "In": [ + 63 + ], + "parallel,": [ + 64 + ], + "number": [ + 66 + ], + "companies": [ + 68, + 88 + ], + "centered": [ + 69 + ], + "on": [ + 70 + ], + "applying": [ + 71, + 158 + ], + "data": [ + 73, + 138 + ], + "analysis": [ + 74 + ], + "varying": [ + 76 + ], + "industries": [ + 77 + ], + "has": [ + 78 + ], + "exploded,": [ + 79 + ], + "it": [ + 81 + ], + "is": [ + 82, + 102, + 129 + ], + "thus": [ + 83 + ], + "unsurprising": [ + 84 + ], + "some": [ + 86 + ], + "analytic": [ + 87 + ], + "turning": [ + 90 + ], + "attention": [ + 91 + ], + "problems": [ + 93, + 106 + ], + "health": [ + 95 + ], + "care.": [ + 96, + 172 + ], + "The": [ + 97 + ], + "purpose": [ + 98 + ], + "this": [ + 100 + ], + "review": [ + 101 + ], + "explore": [ + 104 + ], + "what": [ + 105, + 201 + ], + "medicine": [ + 108, + 211 + ], + "might": [ + 109, + 220 + ], + "benefit": [ + 110 + ], + "such": [ + 112 + ], + "approaches": [ + 114 + ], + "use": [ + 116 + ], + "examples": [ + 117 + ], + "literature": [ + 120 + ], + "introduce": [ + 122 + ], + "basic": [ + 123 + ], + "concepts": [ + 124 + ], + "machine": [ + 126, + 159, + 186 + ], + "learning.": [ + 127 + ], + "It": [ + 128 + ], + "important": [ + 130 + ], + "note": [ + 132 + ], + "seemingly": [ + 134 + ], + "large": [ + 135 + ], + "enough": [ + 136 + ], + "medical": [ + 137, + 163 + ], + "sets": [ + 139 + ], + "adequate": [ + 141 + ], + "algorithms": [ + 143, + 161 + ], + "available": [ + 146 + ], + "for": [ + 147 + ], + "many": [ + 148, + 189 + ], + "decades,": [ + 149 + ], + "yet,": [ + 151 + ], + "although": [ + 152 + ], + "there": [ + 153, + 203 + ], + "thousands": [ + 155 + ], + "papers": [ + 157 + ], + "very": [ + 165 + ], + "few": [ + 166 + ], + "contributed": [ + 168 + ], + "meaningfully": [ + 169 + ], + "clinical": [ + 171 + ], + "This": [ + 173 + ], + "lack": [ + 174 + ], + "impact": [ + 176 + ], + "stands": [ + 177 + ], + "stark": [ + 179 + ], + "contrast": [ + 180 + ], + "enormous": [ + 183 + ], + "relevance": [ + 184 + ], + "other": [ + 190 + ], + "industries.": [ + 191 + ], + "Thus,": [ + 192 + ], + "part": [ + 193 + ], + "my": [ + 195 + ], + "effort": [ + 196 + ], + "will": [ + 197 + ], + "be": [ + 198, + 205, + 221 + ], + "identify": [ + 200 + ], + "obstacles": [ + 202 + ], + "may": [ + 204 + ], + "changing": [ + 207 + ], + "practice": [ + 209 + ], + "through": [ + 212 + ], + "statistical": [ + 213 + ], + "approaches,": [ + 215 + ], + "discuss": [ + 217 + ], + "how": [ + 218 + ], + "these": [ + 219 + ], + "overcome.": [ + 222 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 176 + }, + { + "year": 2025, + "cited_by_count": 522 + }, + { + "year": 2024, + "cited_by_count": 593 + }, + { + "year": 2023, + "cited_by_count": 500 + }, + { + "year": 2022, + "cited_by_count": 451 + }, + { + "year": 2021, + "cited_by_count": 454 + }, + { + "year": 2020, + "cited_by_count": 319 + }, + { + "year": 2019, + "cited_by_count": 194 + }, + { + "year": 2018, + "cited_by_count": 98 + }, + { + "year": 2017, + "cited_by_count": 55 + }, + { + "year": 2016, + "cited_by_count": 23 + }, + { + "year": 2015, + "cited_by_count": 3 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2750384547", + "doi": "https://doi.org/10.48550/arxiv.1708.07747", + "title": "Fashion-MNIST: a Novel Image Dataset for Benchmarking Machine Learning Algorithms", + "display_name": "Fashion-MNIST: a Novel Image Dataset for Benchmarking Machine Learning Algorithms", + "relevance_score": 4394.2183, + "publication_year": 2017, + "publication_date": "2017-08-25", + "ids": { + "openalex": "https://openalex.org/W2750384547", + "doi": "https://doi.org/10.48550/arxiv.1708.07747", + "mag": "2750384547" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1708.07747", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Xiao, Han", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Xiao, Han", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5075846365", + "display_name": "Kashif Rasul", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Rasul, Kashif", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5011375551", + "display_name": "Roland Vollgraf", + "orcid": "https://orcid.org/0000-0003-4658-0381" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vollgraf, Roland", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 6068, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10775", + "display_name": "Generative Adversarial Networks and Image Synthesis", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9972000122070312, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.9985602498054504 + }, + { + "id": "https://openalex.org/keywords/benchmarking", + "display_name": "Benchmarking", + "score": 0.8764249086380005 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6721041202545166 + }, + { + "id": "https://openalex.org/keywords/grayscale", + "display_name": "Grayscale", + "score": 0.6421833038330078 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6257829666137695 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5550878643989563 + }, + { + "id": "https://openalex.org/keywords/test-set", + "display_name": "Test set", + "score": 0.548558235168457 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.5261946320533752 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.5203016400337219 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5067091584205627 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.33083993196487427 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.2942641079425812 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.9985602498054504 + }, + { + "id": "https://openalex.org/C86251818", + "wikidata": "https://www.wikidata.org/wiki/Q816754", + "display_name": "Benchmarking", + "level": 2, + "score": 0.8764249086380005 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6721041202545166 + }, + { + "id": "https://openalex.org/C78201319", + "wikidata": "https://www.wikidata.org/wiki/Q685727", + "display_name": "Grayscale", + "level": 3, + "score": 0.6421833038330078 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6257829666137695 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5550878643989563 + }, + { + "id": "https://openalex.org/C169903167", + "wikidata": "https://www.wikidata.org/wiki/Q3985153", + "display_name": "Test set", + "level": 2, + "score": 0.548558235168457 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.5261946320533752 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.5203016400337219 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5067091584205627 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.33083993196487427 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.2942641079425812 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144133560", + "wikidata": "https://www.wikidata.org/wiki/Q4830453", + "display_name": "Business", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162853370", + "wikidata": "https://www.wikidata.org/wiki/Q39809", + "display_name": "Marketing", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1708.07747", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1708.07747", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 3, + "referenced_works": [ + "https://openalex.org/W4919037", + "https://openalex.org/W2112796928", + "https://openalex.org/W2590796488" + ], + "related_works": [ + "https://openalex.org/W4386603768", + "https://openalex.org/W2950475743", + "https://openalex.org/W2886711096", + "https://openalex.org/W2750384547", + "https://openalex.org/W4238897586", + "https://openalex.org/W4380078352", + "https://openalex.org/W3046591097", + "https://openalex.org/W2901671134", + "https://openalex.org/W4289293320", + "https://openalex.org/W2987302549" + ], + "abstract_inverted_index": { + "We": [ + 0 + ], + "present": [ + 1 + ], + "Fashion-MNIST,": [ + 2 + ], + "a": [ + 3, + 42 + ], + "new": [ + 4 + ], + "dataset": [ + 5, + 50, + 74 + ], + "comprising": [ + 6 + ], + "of": [ + 7, + 11, + 68 + ], + "28x28": [ + 8 + ], + "grayscale": [ + 9 + ], + "images": [ + 10, + 20, + 28 + ], + "70,000": [ + 12 + ], + "fashion": [ + 13 + ], + "products": [ + 14 + ], + "from": [ + 15 + ], + "10": [ + 16 + ], + "categories,": [ + 17 + ], + "with": [ + 18 + ], + "7,000": [ + 19 + ], + "per": [ + 21 + ], + "category.": [ + 22 + ], + "The": [ + 23, + 73 + ], + "training": [ + 24, + 69 + ], + "set": [ + 25, + 32 + ], + "has": [ + 26, + 33 + ], + "60,000": [ + 27 + ], + "and": [ + 29, + 65, + 70 + ], + "the": [ + 30, + 47, + 59, + 66 + ], + "test": [ + 31 + ], + "10,000": [ + 34 + ], + "images.": [ + 35 + ], + "Fashion-MNIST": [ + 36 + ], + "is": [ + 37, + 75 + ], + "intended": [ + 38 + ], + "to": [ + 39 + ], + "serve": [ + 40 + ], + "as": [ + 41, + 56 + ], + "direct": [ + 43 + ], + "drop-in": [ + 44 + ], + "replacement": [ + 45 + ], + "for": [ + 46, + 51 + ], + "original": [ + 48 + ], + "MNIST": [ + 49 + ], + "benchmarking": [ + 52 + ], + "machine": [ + 53 + ], + "learning": [ + 54 + ], + "algorithms,": [ + 55 + ], + "it": [ + 57 + ], + "shares": [ + 58 + ], + "same": [ + 60 + ], + "image": [ + 61 + ], + "size,": [ + 62 + ], + "data": [ + 63 + ], + "format": [ + 64 + ], + "structure": [ + 67 + ], + "testing": [ + 71 + ], + "splits.": [ + 72 + ], + "freely": [ + 76 + ], + "available": [ + 77 + ], + "at": [ + 78 + ], + "https://github.com/zalandoresearch/fashion-mnist": [ + 79 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 20 + }, + { + "year": 2025, + "cited_by_count": 272 + }, + { + "year": 2024, + "cited_by_count": 758 + }, + { + "year": 2023, + "cited_by_count": 967 + }, + { + "year": 2022, + "cited_by_count": 759 + }, + { + "year": 2021, + "cited_by_count": 1340 + }, + { + "year": 2020, + "cited_by_count": 1050 + }, + { + "year": 2019, + "cited_by_count": 625 + }, + { + "year": 2018, + "cited_by_count": 256 + }, + { + "year": 2017, + "cited_by_count": 21 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1873332500", + "doi": null, + "title": "Supervised Machine Learning: A Review of Classification Techniques", + "display_name": "Supervised Machine Learning: A Review of Classification Techniques", + "relevance_score": 4288.003, + "publication_year": 2007, + "publication_date": "2007-01-01", + "ids": { + "openalex": "https://openalex.org/W1873332500", + "mag": "1873332500" + }, + "language": "en", + "primary_location": { + "id": "mag:1873332500", + "is_oa": false, + "landing_page_url": "https://dblp.uni-trier.de/db/journals/informaticaSI/informaticaSI31.html#Kotsiantis07", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Informatica", + "raw_type": null + }, + "type": "review", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5066370772", + "display_name": "Sotiris Kotsiantis", + "orcid": "https://orcid.org/0000-0002-2247-3082" + }, + "institutions": [ + { + "id": "https://openalex.org/I158716096", + "display_name": "University of Peloponnese", + "ror": "https://ror.org/04d4d3c02", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I158716096" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Sotiris Kotsiantis", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-2247-3082", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5066370772" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I158716096" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 49.7093, + "has_fulltext": false, + "cited_by_count": 4147, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "160", + "issue": "3", + "first_page": "249", + "last_page": "24" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9936000108718872, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.9873999953269958, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7691857218742371 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7264007925987244 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7053093314170837 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.5915338397026062 + }, + { + "id": "https://openalex.org/keywords/supervised-learning", + "display_name": "Supervised learning", + "score": 0.5904386043548584 + }, + { + "id": "https://openalex.org/keywords/one-class-classification", + "display_name": "One-class classification", + "score": 0.5449395179748535 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.5347427725791931 + }, + { + "id": "https://openalex.org/keywords/semi-supervised-learning", + "display_name": "Semi-supervised learning", + "score": 0.4761357605457306 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.13000115752220154 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7691857218742371 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7264007925987244 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7053093314170837 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.5915338397026062 + }, + { + "id": "https://openalex.org/C136389625", + "wikidata": "https://www.wikidata.org/wiki/Q334384", + "display_name": "Supervised learning", + "level": 3, + "score": 0.5904386043548584 + }, + { + "id": "https://openalex.org/C34872919", + "wikidata": "https://www.wikidata.org/wiki/Q7092302", + "display_name": "One-class classification", + "level": 3, + "score": 0.5449395179748535 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.5347427725791931 + }, + { + "id": "https://openalex.org/C58973888", + "wikidata": "https://www.wikidata.org/wiki/Q1041418", + "display_name": "Semi-supervised learning", + "level": 2, + "score": 0.4761357605457306 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.13000115752220154 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "mag:1873332500", + "is_oa": false, + "landing_page_url": "https://dblp.uni-trier.de/db/journals/informaticaSI/informaticaSI31.html#Kotsiantis07", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Informatica", + "raw_type": null + }, + { + "id": "mag:2295155158", + "is_oa": false, + "landing_page_url": "https://datajobs.com/data-science-repo/Supervised-Learning-%5bSB-Kotsiantis%5d.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "mag:3136385871", + "is_oa": false, + "landing_page_url": "https://ebooks.iospress.nl/volumearticle/3666", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210201731", + "display_name": "Frontiers in artificial intelligence and applications", + "issn_l": "0922-6389", + "issn": [ + "0922-6389", + "1879-8314" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Frontiers in artificial intelligence and applications", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.4099999964237213 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 111, + "referenced_works": [ + "https://openalex.org/W5472403", + "https://openalex.org/W135311109", + "https://openalex.org/W177590838", + "https://openalex.org/W203696055", + "https://openalex.org/W1007293483", + "https://openalex.org/W1497605902", + "https://openalex.org/W1506588750", + "https://openalex.org/W1515851193", + "https://openalex.org/W1520605446", + "https://openalex.org/W1522114398", + "https://openalex.org/W1528113134", + "https://openalex.org/W1537143578", + "https://openalex.org/W1538041071", + "https://openalex.org/W1547833367", + "https://openalex.org/W1554309553", + "https://openalex.org/W1560955742", + "https://openalex.org/W1562368284", + "https://openalex.org/W1563088657", + "https://openalex.org/W1567012231", + "https://openalex.org/W1570329253", + "https://openalex.org/W1570448133", + "https://openalex.org/W1570706771", + "https://openalex.org/W1587647246", + "https://openalex.org/W1588516554", + "https://openalex.org/W1594031697", + "https://openalex.org/W1594781927", + "https://openalex.org/W1602492977", + "https://openalex.org/W1605688901", + "https://openalex.org/W1605844890", + "https://openalex.org/W1637435380", + "https://openalex.org/W1670263352", + "https://openalex.org/W1671614046", + "https://openalex.org/W1746680969", + "https://openalex.org/W1780185704", + "https://openalex.org/W1808644423", + "https://openalex.org/W1813387235", + "https://openalex.org/W1817561967", + "https://openalex.org/W1827261456", + "https://openalex.org/W1904009171", + "https://openalex.org/W1935515061", + "https://openalex.org/W1973991804", + "https://openalex.org/W1974545290", + "https://openalex.org/W1979711143", + "https://openalex.org/W1983479840", + "https://openalex.org/W1983690667", + "https://openalex.org/W1986883011", + "https://openalex.org/W1992419399", + "https://openalex.org/W1993066733", + "https://openalex.org/W2006345381", + "https://openalex.org/W2011101028", + "https://openalex.org/W2016441117", + "https://openalex.org/W2022058268", + "https://openalex.org/W2026718556", + "https://openalex.org/W2037322594", + "https://openalex.org/W2046649434", + "https://openalex.org/W2050829396", + "https://openalex.org/W2063783806", + "https://openalex.org/W2074584355", + "https://openalex.org/W2075932270", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096756482", + "https://openalex.org/W2104333211", + "https://openalex.org/W2110179049", + "https://openalex.org/W2119479037", + "https://openalex.org/W2120199131", + "https://openalex.org/W2122111042", + "https://openalex.org/W2122496402", + "https://openalex.org/W2123623606", + "https://openalex.org/W2125055259", + "https://openalex.org/W2126333738", + "https://openalex.org/W2128912745", + "https://openalex.org/W2133160781", + "https://openalex.org/W2133218851", + "https://openalex.org/W2133632100", + "https://openalex.org/W2136000097", + "https://openalex.org/W2136132422", + "https://openalex.org/W2137130182", + "https://openalex.org/W2139212933", + "https://openalex.org/W2140586694", + "https://openalex.org/W2140785063", + "https://openalex.org/W2142857211", + "https://openalex.org/W2143603257", + "https://openalex.org/W2144731007", + "https://openalex.org/W2145467382", + "https://openalex.org/W2145680191", + "https://openalex.org/W2150796457", + "https://openalex.org/W2151450140", + "https://openalex.org/W2156440942", + "https://openalex.org/W2156571267", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157815868", + "https://openalex.org/W2158724449", + "https://openalex.org/W2159895197", + "https://openalex.org/W2161349318", + "https://openalex.org/W2161782846", + "https://openalex.org/W2161960932", + "https://openalex.org/W2164359548", + "https://openalex.org/W2166985738", + "https://openalex.org/W2167277498", + "https://openalex.org/W2167467747", + "https://openalex.org/W2168754135", + "https://openalex.org/W2171265988", + "https://openalex.org/W2172429451", + "https://openalex.org/W2322002063", + "https://openalex.org/W2488399954", + "https://openalex.org/W2603390332", + "https://openalex.org/W2766736793", + "https://openalex.org/W2911678770", + "https://openalex.org/W2912276539", + "https://openalex.org/W2912934387", + "https://openalex.org/W3015462599" + ], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W3085162807", + "https://openalex.org/W2919115771", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2153635508", + "https://openalex.org/W2149706766", + "https://openalex.org/W2140190241", + "https://openalex.org/W2139212933", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2122111042", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119479037", + "https://openalex.org/W2101234009", + "https://openalex.org/W2096352448", + "https://openalex.org/W1680392829", + "https://openalex.org/W1663973292", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "The": [ + 0, + 22 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 11, + 14, + 19, + 39, + 48, + 73 + ], + "supervised": [ + 3, + 58, + 75 + ], + "learning": [ + 4, + 60, + 77 + ], + "is": [ + 5, + 25, + 52 + ], + "to": [ + 6, + 28, + 32, + 113 + ], + "build": [ + 7 + ], + "a": [ + 8, + 65, + 70 + ], + "concise": [ + 9 + ], + "model": [ + 10 + ], + "the": [ + 12, + 33, + 37, + 40, + 46, + 49, + 89, + 94, + 99 + ], + "distribution": [ + 13 + ], + "class": [ + 15, + 30, + 50 + ], + "labels": [ + 16, + 31 + ], + "in": [ + 17, + 101 + ], + "terms": [ + 18 + ], + "predictor": [ + 20, + 41 + ], + "features.": [ + 21 + ], + "resulting": [ + 23 + ], + "classifier": [ + 24 + ], + "then": [ + 26 + ], + "used": [ + 27 + ], + "assign": [ + 29 + ], + "testing": [ + 34 + ], + "instances": [ + 35 + ], + "where": [ + 36 + ], + "values": [ + 38 + ], + "features": [ + 42 + ], + "are": [ + 43 + ], + "known,": [ + 44 + ], + "but": [ + 45 + ], + "value": [ + 47 + ], + "label": [ + 51 + ], + "unknown.": [ + 53 + ], + "This": [ + 54 + ], + "paper": [ + 55 + ], + "describes": [ + 56 + ], + "various": [ + 57 + ], + "machine": [ + 59, + 76 + ], + "classification": [ + 61, + 78, + 83 + ], + "techniques.": [ + 62 + ], + "Of": [ + 63 + ], + "course,": [ + 64 + ], + "single": [ + 66 + ], + "chapter": [ + 67 + ], + "cannot": [ + 68 + ], + "be": [ + 69, + 114 + ], + "complete": [ + 71 + ], + "review": [ + 72 + ], + "all": [ + 74 + ], + "algorithms": [ + 79 + ], + "(also": [ + 80 + ], + "known": [ + 81 + ], + "induction": [ + 82 + ], + "algorithms),": [ + 84 + ], + "yet": [ + 85, + 112 + ], + "we": [ + 86 + ], + "hope": [ + 87 + ], + "that": [ + 88, + 110 + ], + "references": [ + 90 + ], + "cited": [ + 91 + ], + "will": [ + 92 + ], + "cover": [ + 93 + ], + "major": [ + 95 + ], + "theoretical": [ + 96 + ], + "issues,": [ + 97 + ], + "guiding": [ + 98 + ], + "researcher": [ + 100 + ], + "interesting": [ + 102 + ], + "research": [ + 103 + ], + "directions": [ + 104 + ], + "and": [ + 105 + ], + "suggesting": [ + 106 + ], + "possible": [ + 107 + ], + "bias": [ + 108 + ], + "combinations": [ + 109 + ], + "have": [ + 111 + ], + "explored.": [ + 115 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 99 + }, + { + "year": 2024, + "cited_by_count": 227 + }, + { + "year": 2023, + "cited_by_count": 300 + }, + { + "year": 2022, + "cited_by_count": 329 + }, + { + "year": 2021, + "cited_by_count": 490 + }, + { + "year": 2020, + "cited_by_count": 504 + }, + { + "year": 2019, + "cited_by_count": 464 + }, + { + "year": 2018, + "cited_by_count": 344 + }, + { + "year": 2017, + "cited_by_count": 252 + }, + { + "year": 2016, + "cited_by_count": 221 + }, + { + "year": 2015, + "cited_by_count": 233 + }, + { + "year": 2014, + "cited_by_count": 184 + }, + { + "year": 2013, + "cited_by_count": 168 + }, + { + "year": 2012, + "cited_by_count": 125 + } + ], + "updated_date": "2025-10-10T17:16:08.811792", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4236362309", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "title": "Understanding Machine Learning", + "display_name": "Understanding Machine Learning", + "relevance_score": 4238.3584, + "publication_year": 2014, + "publication_date": "2014-05-19", + "ids": { + "openalex": "https://openalex.org/W4236362309", + "doi": "https://doi.org/10.1017/cbo9781107298019" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9781107298019", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9781107298019", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5078263052", + "display_name": "Shai Shalev‐Shwartz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I197251160", + "display_name": "Hebrew University of Jerusalem", + "ror": "https://ror.org/03qxff017", + "country_code": "IL", + "type": "education", + "lineage": [ + "https://openalex.org/I197251160" + ] + } + ], + "countries": [ + "IL" + ], + "is_corresponding": true, + "raw_author_name": "Shai Shalev-Shwartz", + "raw_affiliation_strings": [ + "Hebrew University of Jerusalem" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hebrew University of Jerusalem", + "institution_ids": [ + "https://openalex.org/I197251160" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5112193907", + "display_name": "Shai Ben-David", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I151746483", + "display_name": "University of Waterloo", + "ror": "https://ror.org/01aff2v68", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I151746483" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Shai Ben-David", + "raw_affiliation_strings": [ + "University of Waterloo, Ontario" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Waterloo, Ontario", + "institution_ids": [ + "https://openalex.org/I151746483" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5078263052" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I197251160" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 13.8547, + "has_fulltext": false, + "cited_by_count": 2907, + "citation_normalized_percentile": { + "value": 0.98681112, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.5062000155448914, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.5062000155448914, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7047193050384521 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6659388542175293 + }, + { + "id": "https://openalex.org/keywords/stability", + "display_name": "Stability (learning theory)", + "score": 0.5692204236984253 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.5539110898971558 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.5352068543434143 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5332021117210388 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5140898823738098 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.5117306709289551 + }, + { + "id": "https://openalex.org/keywords/convexity", + "display_name": "Convexity", + "score": 0.51105797290802 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.44482100009918213 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.40191978216171265 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7047193050384521 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6659388542175293 + }, + { + "id": "https://openalex.org/C112972136", + "wikidata": "https://www.wikidata.org/wiki/Q7595718", + "display_name": "Stability (learning theory)", + "level": 2, + "score": 0.5692204236984253 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.5539110898971558 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.5352068543434143 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5332021117210388 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5140898823738098 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.5117306709289551 + }, + { + "id": "https://openalex.org/C72134830", + "wikidata": "https://www.wikidata.org/wiki/Q5166524", + "display_name": "Convexity", + "level": 2, + "score": 0.51105797290802 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.44482100009918213 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.40191978216171265 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106159729", + "wikidata": "https://www.wikidata.org/wiki/Q2294553", + "display_name": "Financial economics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1017/cbo9781107298019", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9781107298019", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.7200000286102295 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W36398315", + "https://openalex.org/W4286799911", + "https://openalex.org/W3176029617", + "https://openalex.org/W2109601080", + "https://openalex.org/W3031362111", + "https://openalex.org/W2183087249", + "https://openalex.org/W4234769374", + "https://openalex.org/W2774684800", + "https://openalex.org/W2339204188", + "https://openalex.org/W2170905826" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 46, + 86, + 135 + ], + "is": [ + 2, + 20 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 17, + 41, + 61, + 70, + 81, + 85, + 90, + 133 + ], + "the": [ + 5, + 26, + 42, + 48, + 62, + 64, + 82, + 88, + 113, + 126, + 129 + ], + "fastest": [ + 6 + ], + "growing": [ + 7 + ], + "areas": [ + 8 + ], + "computer": [ + 10, + 144 + ], + "science,": [ + 11, + 145 + ], + "with": [ + 12 + ], + "far-reaching": [ + 13 + ], + "applications.": [ + 14 + ], + "The": [ + 15, + 35 + ], + "aim": [ + 16 + ], + "this": [ + 18 + ], + "textbook": [ + 19 + ], + "to": [ + 21, + 137 + ], + "introduce": [ + 22 + ], + "machine": [ + 23, + 45, + 134 + ], + "learning,": [ + 24 + ], + "and": [ + 25, + 47, + 87, + 92, + 103, + 107, + 116, + 131, + 139, + 147 + ], + "algorithmic": [ + 27, + 95 + ], + "paradigms": [ + 28, + 96 + ], + "it": [ + 29 + ], + "offers,": [ + 30 + ], + "in": [ + 31, + 142 + ], + "a": [ + 32, + 38, + 59, + 67, + 79 + ], + "principled": [ + 33 + ], + "way.": [ + 34 + ], + "book": [ + 36, + 65 + ], + "provides": [ + 37 + ], + "theoretical": [ + 39, + 109 + ], + "account": [ + 40 + ], + "fundamentals": [ + 43, + 130 + ], + "underlying": [ + 44 + ], + "mathematical": [ + 49 + ], + "derivations": [ + 50 + ], + "that": [ + 51 + ], + "transform": [ + 52 + ], + "these": [ + 53 + ], + "principles": [ + 54 + ], + "into": [ + 55 + ], + "practical": [ + 56 + ], + "algorithms.": [ + 57 + ], + "Following": [ + 58 + ], + "presentation": [ + 60 + ], + "basics,": [ + 63 + ], + "covers": [ + 66 + ], + "wide": [ + 68 + ], + "array": [ + 69 + ], + "central": [ + 71 + ], + "topics": [ + 72 + ], + "unaddressed": [ + 73 + ], + "by": [ + 74 + ], + "previous": [ + 75 + ], + "textbooks.": [ + 76 + ], + "These": [ + 77 + ], + "include": [ + 78 + ], + "discussion": [ + 80 + ], + "computational": [ + 83 + ], + "complexity": [ + 84 + ], + "concepts": [ + 89, + 110 + ], + "convexity": [ + 91 + ], + "stability;": [ + 93 + ], + "important": [ + 94 + ], + "including": [ + 97 + ], + "stochastic": [ + 98 + ], + "gradient": [ + 99 + ], + "descent,": [ + 100 + ], + "neural": [ + 101 + ], + "networks,": [ + 102 + ], + "structured": [ + 104 + ], + "output": [ + 105 + ], + "learning;": [ + 106 + ], + "emerging": [ + 108 + ], + "such": [ + 111 + ], + "as": [ + 112 + ], + "PAC-Bayes": [ + 114 + ], + "approach": [ + 115 + ], + "compression-based": [ + 117 + ], + "bounds.": [ + 118 + ], + "Designed": [ + 119 + ], + "for": [ + 120 + ], + "advanced": [ + 121 + ], + "undergraduates": [ + 122 + ], + "or": [ + 123 + ], + "beginning": [ + 124 + ], + "graduates,": [ + 125 + ], + "text": [ + 127 + ], + "makes": [ + 128 + ], + "algorithms": [ + 132 + ], + "accessible": [ + 136 + ], + "students": [ + 138 + ], + "non-expert": [ + 140 + ], + "readers": [ + 141 + ], + "statistics,": [ + 143 + ], + "mathematics": [ + 146 + ], + "engineering.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 98 + }, + { + "year": 2025, + "cited_by_count": 375 + }, + { + "year": 2024, + "cited_by_count": 400 + }, + { + "year": 2023, + "cited_by_count": 421 + }, + { + "year": 2022, + "cited_by_count": 424 + }, + { + "year": 2021, + "cited_by_count": 368 + }, + { + "year": 2020, + "cited_by_count": 366 + }, + { + "year": 2019, + "cited_by_count": 192 + }, + { + "year": 2018, + "cited_by_count": 144 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 33 + }, + { + "year": 2015, + "cited_by_count": 17 + }, + { + "year": 2014, + "cited_by_count": 4 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2022-05-12T00:00:00" + }, + { + "id": "https://openalex.org/W3198350258", + "doi": "https://doi.org/10.1147/rd.33.0210", + "title": "Some Studies in Machine Learning Using the Game of Checkers", + "display_name": "Some Studies in Machine Learning Using the Game of Checkers", + "relevance_score": 4166.422, + "publication_year": 1959, + "publication_date": "1959-07-01", + "ids": { + "openalex": "https://openalex.org/W3198350258", + "doi": "https://doi.org/10.1147/rd.33.0210", + "mag": "3198350258" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1147/rd.33.0210", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1147/rd.33.0210", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210219925", + "display_name": "IBM Journal of Research and Development", + "issn_l": "0018-8646", + "issn": [ + "0018-8646", + "2151-8556" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320652", + "host_organization_name": "IBM", + "host_organization_lineage": [ + "https://openalex.org/P4310320652" + ], + "host_organization_lineage_names": [ + "IBM" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IBM Journal of Research and Development", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5103515726", + "display_name": "Arthur L. Samuel", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "A. L. Samuel", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5103515726" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 58.6681, + "has_fulltext": false, + "cited_by_count": 4330, + "citation_normalized_percentile": { + "value": 0.99739244, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "3", + "first_page": "210", + "last_page": "229" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11574", + "display_name": "Artificial Intelligence in Games", + "score": 0.8087999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11574", + "display_name": "Artificial Intelligence in Games", + "score": 0.8087999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7188340425491333 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5375511050224304 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3793615698814392 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7188340425491333 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5375511050224304 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3793615698814392 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1147/rd.33.0210", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1147/rd.33.0210", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210219925", + "display_name": "IBM Journal of Research and Development", + "issn_l": "0018-8646", + "issn": [ + "0018-8646", + "2151-8556" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320652", + "host_organization_name": "IBM", + "host_organization_lineage": [ + "https://openalex.org/P4310320652" + ], + "host_organization_lineage_names": [ + "IBM" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IBM Journal of Research and Development", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.5 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W4286629047", + "https://openalex.org/W4306321456", + "https://openalex.org/W4285260836", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4205958290", + "https://openalex.org/W3209574120" + ], + "abstract_inverted_index": { + "Two": [ + 0 + ], + "machine-learning": [ + 1 + ], + "procedures": [ + 2 + ], + "have": [ + 3, + 97 + ], + "been": [ + 4, + 17 + ], + "investigated": [ + 5 + ], + "in": [ + 6, + 59 + ], + "some": [ + 7 + ], + "detail": [ + 8 + ], + "using": [ + 9 + ], + "the": [ + 10, + 21, + 46, + 50, + 76, + 79, + 102 + ], + "game": [ + 11, + 38 + ], + "of": [ + 12, + 39, + 64, + 70, + 78, + 83, + 91, + 117, + 125 + ], + "checkers.": [ + 13 + ], + "Enough": [ + 14 + ], + "work": [ + 15 + ], + "has": [ + 16 + ], + "done": [ + 18 + ], + "to": [ + 19, + 34, + 56, + 96, + 99, + 128 + ], + "verify": [ + 20 + ], + "fact": [ + 22 + ], + "that": [ + 23, + 30 + ], + "a": [ + 24, + 36, + 60, + 81, + 86 + ], + "computer": [ + 25 + ], + "can": [ + 26, + 42, + 54 + ], + "be": [ + 27, + 43 + ], + "programmed": [ + 28 + ], + "so": [ + 29 + ], + "it": [ + 31, + 53 + ], + "will": [ + 32 + ], + "learn": [ + 33, + 55 + ], + "play": [ + 35 + ], + "better": [ + 37 + ], + "checkers": [ + 40 + ], + "than": [ + 41 + ], + "played": [ + 44 + ], + "by": [ + 45, + 121 + ], + "person": [ + 47 + ], + "who": [ + 48 + ], + "wrote": [ + 49 + ], + "program.": [ + 51 + ], + "Furthermore,": [ + 52 + ], + "do": [ + 57, + 100 + ], + "this": [ + 58 + ], + "remarkably": [ + 61 + ], + "short": [ + 62 + ], + "period": [ + 63 + ], + "time": [ + 65 + ], + "(8": [ + 66 + ], + "or": [ + 67 + ], + "10": [ + 68 + ], + "hours": [ + 69 + ], + "machine-playing": [ + 71 + ], + "time)": [ + 72 + ], + "when": [ + 73 + ], + "given": [ + 74 + ], + "only": [ + 75 + ], + "rules": [ + 77 + ], + "game,": [ + 80, + 103 + ], + "sense": [ + 82 + ], + "direction,": [ + 84 + ], + "and": [ + 85, + 88, + 108, + 113 + ], + "redundant": [ + 87 + ], + "incomplete": [ + 89 + ], + "list": [ + 90 + ], + "parameters": [ + 92 + ], + "which": [ + 93 + ], + "are": [ + 94, + 111 + ], + "thought": [ + 95 + ], + "something": [ + 98 + ], + "with": [ + 101 + ], + "but": [ + 104 + ], + "whose": [ + 105 + ], + "correct": [ + 106 + ], + "signs": [ + 107 + ], + "relative": [ + 109 + ], + "weights": [ + 110 + ], + "unknown": [ + 112 + ], + "unspecified.": [ + 114 + ], + "The": [ + 115 + ], + "principles": [ + 116 + ], + "machine": [ + 118 + ], + "learning": [ + 119 + ], + "verified": [ + 120 + ], + "these": [ + 122 + ], + "experiments": [ + 123 + ], + "are,": [ + 124 + ], + "course,": [ + 126 + ], + "applicable": [ + 127 + ], + "many": [ + 129 + ], + "other": [ + 130 + ], + "situations.": [ + 131 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 87 + }, + { + "year": 2025, + "cited_by_count": 322 + }, + { + "year": 2024, + "cited_by_count": 345 + }, + { + "year": 2023, + "cited_by_count": 343 + }, + { + "year": 2022, + "cited_by_count": 342 + }, + { + "year": 2021, + "cited_by_count": 398 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 352 + }, + { + "year": 2018, + "cited_by_count": 221 + }, + { + "year": 2017, + "cited_by_count": 147 + }, + { + "year": 2016, + "cited_by_count": 59 + }, + { + "year": 2015, + "cited_by_count": 42 + }, + { + "year": 2014, + "cited_by_count": 42 + }, + { + "year": 2013, + "cited_by_count": 52 + }, + { + "year": 2012, + "cited_by_count": 45 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2535690855", + "doi": "https://doi.org/10.1109/sp.2017.41", + "title": "Membership Inference Attacks Against Machine Learning Models", + "display_name": "Membership Inference Attacks Against Machine Learning Models", + "relevance_score": 4124.878, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2535690855", + "doi": "https://doi.org/10.1109/sp.2017.41", + "mag": "2535690855" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2017.41", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.41", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5084892128", + "display_name": "Reza Shokri", + "orcid": "https://orcid.org/0000-0001-9816-0173" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Reza Shokri", + "raw_affiliation_strings": [ + "Cornell Tech" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5086560283", + "display_name": "Marco Stronati", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Marco Stronati", + "raw_affiliation_strings": [ + "INRIA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "INRIA", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048446895", + "display_name": "Congzheng Song", + "orcid": "https://orcid.org/0000-0002-5076-7299" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Congzheng Song", + "raw_affiliation_strings": [ + "Cornell" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5038206174", + "display_name": "Vitaly Shmatikov", + "orcid": "https://orcid.org/0009-0002-1336-5714" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vitaly Shmatikov", + "raw_affiliation_strings": [ + "Cornell Tech" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5084892128" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I205783295" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 167.1932, + "has_fulltext": false, + "cited_by_count": 4176, + "citation_normalized_percentile": { + "value": 0.99981039, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "3", + "last_page": "18" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9768000245094299, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/inference", + "display_name": "Inference", + "score": 0.8516879081726074 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7886953949928284 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7878186702728271 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6666349768638611 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5839544534683228 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.5145570635795593 + }, + { + "id": "https://openalex.org/keywords/data-modeling", + "display_name": "Data modeling", + "score": 0.47366389632225037 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.4463120698928833 + }, + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.41243356466293335 + }, + { + "id": "https://openalex.org/keywords/database", + "display_name": "Database", + "score": 0.07796728610992432 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2776214188", + "wikidata": "https://www.wikidata.org/wiki/Q408386", + "display_name": "Inference", + "level": 2, + "score": 0.8516879081726074 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7886953949928284 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7878186702728271 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6666349768638611 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5839544534683228 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.5145570635795593 + }, + { + "id": "https://openalex.org/C67186912", + "wikidata": "https://www.wikidata.org/wiki/Q367664", + "display_name": "Data modeling", + "level": 2, + "score": 0.47366389632225037 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.4463120698928833 + }, + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.41243356466293335 + }, + { + "id": "https://openalex.org/C77088390", + "wikidata": "https://www.wikidata.org/wiki/Q8513", + "display_name": "Database", + "level": 1, + "score": 0.07796728610992432 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/sp.2017.41", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.41", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:scholarbank.nus.edu.sg:10635/172937", + "is_oa": false, + "landing_page_url": "https://scholarbank.nus.edu.sg/handle/10635/172937", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407052290", + "display_name": "National University of Singapore", + "issn_l": null, + "issn": [], + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Elements", + "raw_type": "Conference Paper" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions", + "score": 0.5699999928474426 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 54, + "referenced_works": [ + "https://openalex.org/W1473189865", + "https://openalex.org/W1510952750", + "https://openalex.org/W1528076390", + "https://openalex.org/W1535019556", + "https://openalex.org/W1554944419", + "https://openalex.org/W1760458529", + "https://openalex.org/W1811750039", + "https://openalex.org/W1821462560", + "https://openalex.org/W1826232489", + "https://openalex.org/W1873763122", + "https://openalex.org/W1992926795", + "https://openalex.org/W2009733253", + "https://openalex.org/W2024594469", + "https://openalex.org/W2040228409", + "https://openalex.org/W2051267297", + "https://openalex.org/W2053637704", + "https://openalex.org/W2077905990", + "https://openalex.org/W2095272373", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096633407", + "https://openalex.org/W2106313770", + "https://openalex.org/W2106463421", + "https://openalex.org/W2112380340", + "https://openalex.org/W2114229504", + "https://openalex.org/W2119874464", + "https://openalex.org/W2123147099", + "https://openalex.org/W2130051287", + "https://openalex.org/W2151320232", + "https://openalex.org/W2162379889", + "https://openalex.org/W2186645727", + "https://openalex.org/W2198253679", + "https://openalex.org/W2329660289", + "https://openalex.org/W2461943168", + "https://openalex.org/W2473418344", + "https://openalex.org/W2532520288", + "https://openalex.org/W2950943617", + "https://openalex.org/W2951114885", + "https://openalex.org/W2962835266", + "https://openalex.org/W2963794891", + "https://openalex.org/W2964318098", + "https://openalex.org/W3118608800", + "https://openalex.org/W3215186461", + "https://openalex.org/W4248649186", + "https://openalex.org/W6628547770", + "https://openalex.org/W6631628602", + "https://openalex.org/W6632160336", + "https://openalex.org/W6638214083", + "https://openalex.org/W6639246211", + "https://openalex.org/W6661425395", + "https://openalex.org/W6674330103", + "https://openalex.org/W6676639149", + "https://openalex.org/W6677855611", + "https://openalex.org/W6686761782", + "https://openalex.org/W6731627051" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2502115930", + "https://openalex.org/W2482350142", + "https://openalex.org/W4246396837", + "https://openalex.org/W3126451824", + "https://openalex.org/W1561927205", + "https://openalex.org/W3191453585", + "https://openalex.org/W4297672492", + "https://openalex.org/W4310988119", + "https://openalex.org/W4285226279" + ], + "abstract_inverted_index": { + "We": [ + 0, + 19, + 92, + 146 + ], + "quantitatively": [ + 1 + ], + "investigate": [ + 2, + 148 + ], + "how": [ + 3 + ], + "machine": [ + 4, + 60 + ], + "learning": [ + 5, + 61, + 105 + ], + "models": [ + 6, + 100, + 138 + ], + "leak": [ + 7 + ], + "information": [ + 8 + ], + "about": [ + 9 + ], + "the": [ + 10, + 22, + 39, + 43, + 72, + 77, + 84, + 131, + 149 + ], + "individual": [ + 11 + ], + "data": [ + 12, + 29 + ], + "records": [ + 13 + ], + "on": [ + 14, + 21, + 76, + 82, + 98 + ], + "which": [ + 15 + ], + "they": [ + 16 + ], + "were": [ + 17 + ], + "trained.": [ + 18 + ], + "focus": [ + 20 + ], + "basic": [ + 23 + ], + "membership": [ + 24, + 49, + 127, + 143 + ], + "inference": [ + 25, + 50, + 66, + 96, + 144 + ], + "attack:": [ + 26 + ], + "given": [ + 27 + ], + "a": [ + 28, + 35, + 52, + 107, + 122 + ], + "record": [ + 30, + 40 + ], + "and": [ + 31, + 62, + 113, + 118, + 155 + ], + "black-box": [ + 32 + ], + "access": [ + 33 + ], + "to": [ + 34, + 68, + 142 + ], + "model,": [ + 36, + 54 + ], + "determine": [ + 37 + ], + "if": [ + 38 + ], + "was": [ + 41 + ], + "in": [ + 42, + 71 + ], + "model's": [ + 44, + 74 + ], + "training": [ + 45 + ], + "dataset.": [ + 46 + ], + "To": [ + 47 + ], + "perform": [ + 48 + ], + "against": [ + 51 + ], + "target": [ + 53, + 73 + ], + "we": [ + 55, + 134 + ], + "make": [ + 56 + ], + "adversarial": [ + 57 + ], + "use": [ + 58 + ], + "of": [ + 59 + ], + "train": [ + 63, + 90 + ], + "our": [ + 64, + 95 + ], + "own": [ + 65 + ], + "model": [ + 67 + ], + "recognize": [ + 69 + ], + "differences": [ + 70 + ], + "predictions": [ + 75 + ], + "inputs": [ + 78, + 85 + ], + "that": [ + 79, + 86, + 136, + 151 + ], + "it": [ + 80, + 87 + ], + "trained": [ + 81, + 101 + ], + "versus": [ + 83 + ], + "did": [ + 88 + ], + "not": [ + 89 + ], + "on.": [ + 91 + ], + "empirically": [ + 93 + ], + "evaluate": [ + 94, + 156 + ], + "techniques": [ + 97 + ], + "classification": [ + 99, + 119 + ], + "by": [ + 102 + ], + "commercial": [ + 103 + ], + "\"machine": [ + 104 + ], + "as": [ + 106, + 111 + ], + "service\"": [ + 108 + ], + "providers": [ + 109 + ], + "such": [ + 110 + ], + "Google": [ + 112 + ], + "Amazon.": [ + 114 + ], + "Using": [ + 115 + ], + "realistic": [ + 116 + ], + "datasets": [ + 117 + ], + "tasks,": [ + 120 + ], + "including": [ + 121 + ], + "hospital": [ + 123 + ], + "discharge": [ + 124 + ], + "dataset": [ + 125 + ], + "whose": [ + 126 + ], + "is": [ + 128 + ], + "sensitive": [ + 129 + ], + "from": [ + 130 + ], + "privacy": [ + 132 + ], + "perspective,": [ + 133 + ], + "show": [ + 135 + ], + "these": [ + 137 + ], + "can": [ + 139 + ], + "be": [ + 140 + ], + "vulnerable": [ + 141 + ], + "attacks.": [ + 145 + ], + "then": [ + 147 + ], + "factors": [ + 150 + ], + "influence": [ + 152 + ], + "this": [ + 153 + ], + "leakage": [ + 154 + ], + "mitigation": [ + 157 + ], + "strategies.": [ + 158 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 198 + }, + { + "year": 2025, + "cited_by_count": 744 + }, + { + "year": 2024, + "cited_by_count": 706 + }, + { + "year": 2023, + "cited_by_count": 627 + }, + { + "year": 2022, + "cited_by_count": 513 + }, + { + "year": 2021, + "cited_by_count": 585 + }, + { + "year": 2020, + "cited_by_count": 445 + }, + { + "year": 2019, + "cited_by_count": 232 + }, + { + "year": 2018, + "cited_by_count": 101 + }, + { + "year": 2017, + "cited_by_count": 24 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2885770726", + "doi": "https://doi.org/10.3390/s18082674", + "title": "Machine Learning in Agriculture: A Review", + "display_name": "Machine Learning in Agriculture: A Review", + "relevance_score": 4124.347, + "publication_year": 2018, + "publication_date": "2018-08-14", + "ids": { + "openalex": "https://openalex.org/W2885770726", + "doi": "https://doi.org/10.3390/s18082674", + "mag": "2885770726", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30110960" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5085282864", + "display_name": "Κωνσταντίνος Λιάκος", + "orcid": "https://orcid.org/0000-0002-6866-0932" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantinos Liakos", + "raw_affiliation_strings": [ + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059581084", + "display_name": "Patrizia Busato", + "orcid": "https://orcid.org/0000-0001-9546-530X" + }, + "institutions": [ + { + "id": "https://openalex.org/I55143463", + "display_name": "University of Turin", + "ror": "https://ror.org/048tbm396", + "country_code": "IT", + "type": "education", + "lineage": [ + "https://openalex.org/I55143463" + ] + } + ], + "countries": [ + "IT" + ], + "is_corresponding": false, + "raw_author_name": "Patrizia Busato", + "raw_affiliation_strings": [ + "Department of Agriculture, Forestry and Food Sciences (DISAFA), Faculty of Agriculture, University of Turin, Largo Braccini 2, 10095 Grugliasco, Italy" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Agriculture, Forestry and Food Sciences (DISAFA), Faculty of Agriculture, University of Turin, Largo Braccini 2, 10095 Grugliasco, Italy", + "institution_ids": [ + "https://openalex.org/I55143463" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047144831", + "display_name": "Dimitrios Moshou", + "orcid": "https://orcid.org/0000-0001-7270-5307" + }, + "institutions": [ + { + "id": "https://openalex.org/I21370196", + "display_name": "Aristotle University of Thessaloniki", + "ror": "https://ror.org/02j61yw88", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I21370196" + ] + }, + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Dimitrios Moshou", + "raw_affiliation_strings": [ + "Agricultural Engineering Laboratory, Faculty of Agriculture, Aristotle University of Thessaloniki, 54124 Thessaloniki, Greece", + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Agricultural Engineering Laboratory, Faculty of Agriculture, Aristotle University of Thessaloniki, 54124 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I21370196" + ] + }, + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018447003", + "display_name": "Simon Pearson", + "orcid": "https://orcid.org/0000-0002-4297-4837" + }, + "institutions": [ + { + "id": "https://openalex.org/I51532219", + "display_name": "University of Lincoln", + "ror": "https://ror.org/03yeq9x20", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I51532219" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Simon Pearson", + "raw_affiliation_strings": [ + "Lincoln Institute for Agri-food Technology (LIAT), University of Lincoln, Brayford Way, Brayford Pool, Lincoln LN6 7TS, UK" + ], + "raw_orcid": "https://orcid.org/0000-0002-4297-4837", + "affiliations": [ + { + "raw_affiliation_string": "Lincoln Institute for Agri-food Technology (LIAT), University of Lincoln, Brayford Way, Brayford Pool, Lincoln LN6 7TS, UK", + "institution_ids": [ + "https://openalex.org/I51532219" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5073592501", + "display_name": "Dionysis Bochtis", + "orcid": "https://orcid.org/0000-0002-7058-5986" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Dionysis Bochtis", + "raw_affiliation_strings": [ + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0002-7058-5986", + "affiliations": [ + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5073592501" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210134249" + ], + "apc_list": { + "value": 2400, + "currency": "CHF", + "value_usd": 2598 + }, + "apc_paid": { + "value": 2400, + "currency": "CHF", + "value_usd": 2598 + }, + "fwci": 234.4049, + "has_fulltext": true, + "cited_by_count": 2977, + "citation_normalized_percentile": { + "value": 0.99998177, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "18", + "issue": "8", + "first_page": "2674", + "last_page": "2674" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10616", + "display_name": "Smart Agriculture and AI", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1110", + "display_name": "Plant Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10616", + "display_name": "Smart Agriculture and AI", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1110", + "display_name": "Plant Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10640", + "display_name": "Spectroscopy and Chemometric Analyses", + "score": 0.9825999736785889, + "subfield": { + "id": "https://openalex.org/subfields/1602", + "display_name": "Analytical Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/16", + "display_name": "Chemistry" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10111", + "display_name": "Remote Sensing in Agriculture", + "score": 0.958299994468689, + "subfield": { + "id": "https://openalex.org/subfields/2303", + "display_name": "Ecology" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/agriculture", + "display_name": "Agriculture", + "score": 0.5998008251190186 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5735517740249634 + }, + { + "id": "https://openalex.org/keywords/precision-agriculture", + "display_name": "Precision agriculture", + "score": 0.5354065895080566 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5236620306968689 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5148038268089294 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.4952518045902252 + }, + { + "id": "https://openalex.org/keywords/livestock", + "display_name": "Livestock", + "score": 0.43506547808647156 + }, + { + "id": "https://openalex.org/keywords/decision-support-system", + "display_name": "Decision support system", + "score": 0.41696614027023315 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3964245617389679 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.13465631008148193 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C118518473", + "wikidata": "https://www.wikidata.org/wiki/Q11451", + "display_name": "Agriculture", + "level": 2, + "score": 0.5998008251190186 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5735517740249634 + }, + { + "id": "https://openalex.org/C120217122", + "wikidata": "https://www.wikidata.org/wiki/Q740083", + "display_name": "Precision agriculture", + "level": 3, + "score": 0.5354065895080566 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5236620306968689 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5148038268089294 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.4952518045902252 + }, + { + "id": "https://openalex.org/C112964050", + "wikidata": "https://www.wikidata.org/wiki/Q103459", + "display_name": "Livestock", + "level": 2, + "score": 0.43506547808647156 + }, + { + "id": "https://openalex.org/C107327155", + "wikidata": "https://www.wikidata.org/wiki/Q330268", + "display_name": "Decision support system", + "level": 2, + "score": 0.41696614027023315 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3964245617389679 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.13465631008148193 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C18903297", + "wikidata": "https://www.wikidata.org/wiki/Q7150", + "display_name": "Ecology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 9, + "locations": [ + { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + { + "id": "pmid:30110960", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30110960", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors (Basel, Switzerland)", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:c6cd93144ea3478f860eb1f3766e5a43", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/c6cd93144ea3478f860eb1f3766e5a43", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors, Vol 18, Iss 8, p 2674 (2018)", + "raw_type": "article" + }, + { + "id": "pmh:oai:eprints.lincoln.ac.uk:33015", + "is_oa": true, + "landing_page_url": "http://eprints.lincoln.ac.uk/id/eprint/33015/1/htm", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196275", + "display_name": "Lincoln Repository (University of Lincoln)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I51532219", + "host_organization_name": "University of Lincoln", + "host_organization_lineage": [ + "https://openalex.org/I51532219" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + }, + { + "id": "pmh:oai:europepmc.org:5064788", + "is_oa": true, + "landing_page_url": "http://europepmc.org/pmc/articles/PMC6111295", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:figshare.com:article/24372634", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Machine_Learning_in_Agriculture_A_Review/24372634", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:iris.unito.it:2318/1679884", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/2318/1679884", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400637", + "display_name": "Institutional Research Information System University of Turin (University of Turin)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I55143463", + "host_organization_name": "University of Turin", + "host_organization_lineage": [ + "https://openalex.org/I55143463" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "info:eu-repo/semantics/article" + }, + { + "id": "pmh:oai:mdpi.com:/1424-8220/18/8/2674/", + "is_oa": true, + "landing_page_url": "http://dx.doi.org/10.3390/s18082674", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6111295", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6111295", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors (Basel)", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/2", + "display_name": "Zero hunger", + "score": 0.800000011920929 + } + ], + "awards": [ + { + "id": "https://openalex.org/G3584239725", + "display_name": null, + "funder_award_id": "EP/R045127/1", + "funder_id": "https://openalex.org/F4320334627", + "funder_display_name": "Engineering and Physical Sciences Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320321917", + "display_name": "General Secretariat for Research and Technology", + "ror": "https://ror.org/04yeh8h63" + }, + { + "id": "https://openalex.org/F4320334627", + "display_name": "Engineering and Physical Sciences Research Council", + "ror": "https://ror.org/0439y7842" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2885770726.pdf", + "grobid_xml": "https://content.openalex.org/works/W2885770726.grobid-xml" + }, + "referenced_works_count": 112, + "referenced_works": [ + "https://openalex.org/W94523489", + "https://openalex.org/W189596042", + "https://openalex.org/W1179140510", + "https://openalex.org/W1496317909", + "https://openalex.org/W1596717185", + "https://openalex.org/W1689445748", + "https://openalex.org/W1916445479", + "https://openalex.org/W1963579367", + "https://openalex.org/W1963790103", + "https://openalex.org/W1966124853", + "https://openalex.org/W1967320885", + "https://openalex.org/W1968452917", + "https://openalex.org/W1984530193", + "https://openalex.org/W1990517717", + "https://openalex.org/W1995341919", + "https://openalex.org/W1998871699", + "https://openalex.org/W2000972253", + "https://openalex.org/W2001619934", + "https://openalex.org/W2009986810", + "https://openalex.org/W2015263929", + "https://openalex.org/W2018435387", + "https://openalex.org/W2019207321", + "https://openalex.org/W2024081693", + "https://openalex.org/W2025279987", + "https://openalex.org/W2028606616", + "https://openalex.org/W2040104179", + "https://openalex.org/W2040870580", + "https://openalex.org/W2049633694", + "https://openalex.org/W2063304499", + "https://openalex.org/W2065165083", + "https://openalex.org/W2072680624", + "https://openalex.org/W2075320162", + "https://openalex.org/W2076857888", + "https://openalex.org/W2081544115", + "https://openalex.org/W2087877962", + "https://openalex.org/W2095727900", + "https://openalex.org/W2102201073", + "https://openalex.org/W2106855632", + "https://openalex.org/W2108703480", + "https://openalex.org/W2110642273", + "https://openalex.org/W2111072639", + "https://openalex.org/W2119821739", + "https://openalex.org/W2128084896", + "https://openalex.org/W2138178898", + "https://openalex.org/W2143908786", + "https://openalex.org/W2149723649", + "https://openalex.org/W2150593711", + "https://openalex.org/W2153476503", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154350719", + "https://openalex.org/W2161673710", + "https://openalex.org/W2174918471", + "https://openalex.org/W2200121095", + "https://openalex.org/W2209382794", + "https://openalex.org/W2216013554", + "https://openalex.org/W2231576311", + "https://openalex.org/W2270460811", + "https://openalex.org/W2270641383", + "https://openalex.org/W2273322351", + "https://openalex.org/W2286091602", + "https://openalex.org/W2294798173", + "https://openalex.org/W2298521547", + "https://openalex.org/W2337945771", + "https://openalex.org/W2339447311", + "https://openalex.org/W2399675776", + "https://openalex.org/W2417395753", + "https://openalex.org/W2419137750", + "https://openalex.org/W2470803522", + "https://openalex.org/W2497210317", + "https://openalex.org/W2502044482", + "https://openalex.org/W2552660223", + "https://openalex.org/W2560811704", + "https://openalex.org/W2577148968", + "https://openalex.org/W2580808806", + "https://openalex.org/W2586821267", + "https://openalex.org/W2591104514", + "https://openalex.org/W2598645336", + "https://openalex.org/W2603364874", + "https://openalex.org/W2603417106", + "https://openalex.org/W2604196786", + "https://openalex.org/W2606244344", + "https://openalex.org/W2606916050", + "https://openalex.org/W2612828053", + "https://openalex.org/W2619390517", + "https://openalex.org/W2620473470", + "https://openalex.org/W2620542418", + "https://openalex.org/W2621525431", + "https://openalex.org/W2622758479", + "https://openalex.org/W2622999711", + "https://openalex.org/W2738911869", + "https://openalex.org/W2775111183", + "https://openalex.org/W2789255992", + "https://openalex.org/W2790639095", + "https://openalex.org/W2791690647", + "https://openalex.org/W2794415089", + "https://openalex.org/W2796501058", + "https://openalex.org/W2806779833", + "https://openalex.org/W2903950532", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W3125807057", + "https://openalex.org/W4210451417", + "https://openalex.org/W4212883601", + "https://openalex.org/W4232670376", + "https://openalex.org/W4239510810", + "https://openalex.org/W4250143236", + "https://openalex.org/W4400360174", + "https://openalex.org/W6607775107", + "https://openalex.org/W6632223008", + "https://openalex.org/W6675321329", + "https://openalex.org/W6675436802", + "https://openalex.org/W6676769703" + ], + "related_works": [ + "https://openalex.org/W1573929026", + "https://openalex.org/W4390608645", + "https://openalex.org/W4394895745", + "https://openalex.org/W4247566972", + "https://openalex.org/W3201212491", + "https://openalex.org/W4380767732", + "https://openalex.org/W4247744717", + "https://openalex.org/W3161605631", + "https://openalex.org/W2361557821", + "https://openalex.org/W2905677023" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 39, + 100, + 105 + ], + "has": [ + 2 + ], + "emerged": [ + 3 + ], + "with": [ + 4 + ], + "big": [ + 5 + ], + "data": [ + 6, + 16 + ], + "technologies": [ + 7 + ], + "and": [ + 8, + 64, + 75, + 81, + 87, + 125, + 131 + ], + "high-performance": [ + 9 + ], + "computing": [ + 10 + ], + "to": [ + 11, + 35, + 106 + ], + "create": [ + 12 + ], + "new": [ + 13 + ], + "opportunities": [ + 14 + ], + "for": [ + 15, + 127 + ], + "intensive": [ + 17 + ], + "science": [ + 18 + ], + "in": [ + 19, + 40, + 49 + ], + "the": [ + 20, + 90 + ], + "multi-disciplinary": [ + 21 + ], + "agri-technologies": [ + 22 + ], + "domain.": [ + 23 + ], + "In": [ + 24 + ], + "this": [ + 25 + ], + "paper,": [ + 26 + ], + "we": [ + 27 + ], + "present": [ + 28 + ], + "a": [ + 29 + ], + "comprehensive": [ + 30 + ], + "review": [ + 31 + ], + "of": [ + 32, + 37, + 89 + ], + "research": [ + 33 + ], + "dedicated": [ + 34 + ], + "applications": [ + 36, + 54, + 71 + ], + "machine": [ + 38, + 99, + 104 + ], + "agricultural": [ + 41 + ], + "production": [ + 42 + ], + "systems.": [ + 43 + ], + "The": [ + 44, + 85 + ], + "works": [ + 45 + ], + "analyzed": [ + 46 + ], + "were": [ + 47 + ], + "categorized": [ + 48 + ], + "(a)": [ + 50 + ], + "crop": [ + 51, + 62 + ], + "management,": [ + 52, + 69 + ], + "including": [ + 53, + 70 + ], + "on": [ + 55, + 72 + ], + "yield": [ + 56 + ], + "prediction,": [ + 57 + ], + "disease": [ + 58 + ], + "detection,": [ + 59 + ], + "weed": [ + 60 + ], + "detection": [ + 61 + ], + "quality,": [ + 63 + ], + "species": [ + 65 + ], + "recognition;": [ + 66 + ], + "(b)": [ + 67 + ], + "livestock": [ + 68, + 76 + ], + "animal": [ + 73 + ], + "welfare": [ + 74 + ], + "production;": [ + 77 + ], + "(c)": [ + 78 + ], + "water": [ + 79 + ], + "management;": [ + 80 + ], + "(d)": [ + 82 + ], + "soil": [ + 83 + ], + "management.": [ + 84 + ], + "filtering": [ + 86 + ], + "classification": [ + 88 + ], + "presented": [ + 91 + ], + "articles": [ + 92 + ], + "demonstrate": [ + 93 + ], + "how": [ + 94 + ], + "agriculture": [ + 95 + ], + "will": [ + 96 + ], + "benefit": [ + 97 + ], + "from": [ + 98 + ], + "technologies.": [ + 101 + ], + "By": [ + 102 + ], + "applying": [ + 103 + ], + "sensor": [ + 107 + ], + "data,": [ + 108 + ], + "farm": [ + 109 + ], + "management": [ + 110 + ], + "systems": [ + 111 + ], + "are": [ + 112 + ], + "evolving": [ + 113 + ], + "into": [ + 114 + ], + "real": [ + 115 + ], + "time": [ + 116 + ], + "artificial": [ + 117 + ], + "intelligence": [ + 118 + ], + "enabled": [ + 119 + ], + "programs": [ + 120 + ], + "that": [ + 121 + ], + "provide": [ + 122 + ], + "rich": [ + 123 + ], + "recommendations": [ + 124 + ], + "insights": [ + 126 + ], + "farmer": [ + 128 + ], + "decision": [ + 129 + ], + "support": [ + 130 + ], + "action.": [ + 132 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 274 + }, + { + "year": 2025, + "cited_by_count": 585 + }, + { + "year": 2024, + "cited_by_count": 449 + }, + { + "year": 2023, + "cited_by_count": 526 + }, + { + "year": 2022, + "cited_by_count": 448 + }, + { + "year": 2021, + "cited_by_count": 383 + }, + { + "year": 2020, + "cited_by_count": 235 + }, + { + "year": 2019, + "cited_by_count": 74 + }, + { + "year": 2018, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2588003345", + "doi": "https://doi.org/10.1371/journal.pone.0169748", + "title": "SoilGrids250m: Global gridded soil information based on machine learning", + "display_name": "SoilGrids250m: Global gridded soil information based on machine learning", + "relevance_score": 3983.277, + "publication_year": 2017, + "publication_date": "2017-02-16", + "ids": { + "openalex": "https://openalex.org/W2588003345", + "doi": "https://doi.org/10.1371/journal.pone.0169748", + "mag": "2588003345", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28207752" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5008884945", + "display_name": "Tomislav Hengl", + "orcid": "https://orcid.org/0000-0002-9921-5129" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": true, + "raw_author_name": "Tomislav Hengl", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": "https://orcid.org/0000-0002-9921-5129", + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5066931705", + "display_name": "Jorge Mendes de Jesus", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Jorge Mendes de Jesus", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5011620756", + "display_name": "G.B.M. Heuvelink", + "orcid": "https://orcid.org/0000-0003-0959-9358" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Gerard B. M. Heuvelink", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048983679", + "display_name": "M. Ruiperez González", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Maria Ruiperez Gonzalez", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5019218652", + "display_name": "Milan Kilibarda", + "orcid": "https://orcid.org/0000-0002-2930-3596" + }, + "institutions": [ + { + "id": "https://openalex.org/I4068193", + "display_name": "University of Belgrade", + "ror": "https://ror.org/02qsmb048", + "country_code": "RS", + "type": "education", + "lineage": [ + "https://openalex.org/I4068193" + ] + } + ], + "countries": [ + "RS" + ], + "is_corresponding": false, + "raw_author_name": "Milan Kilibarda", + "raw_affiliation_strings": [ + "Faculty of Civil Engineering, University of Belgrade, Belgrade, Serbia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Civil Engineering, University of Belgrade, Belgrade, Serbia", + "institution_ids": [ + "https://openalex.org/I4068193" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5079601401", + "display_name": "Aleksandar Blagotić", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Aleksandar Blagotić", + "raw_affiliation_strings": [ + "GILab Ltd, Belgrade, Serbia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "GILab Ltd, Belgrade, Serbia", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050326105", + "display_name": "Wei Shangguan", + "orcid": "https://orcid.org/0000-0001-7622-8210" + }, + "institutions": [ + { + "id": "https://openalex.org/I157773358", + "display_name": "Sun Yat-sen University", + "ror": "https://ror.org/0064kty71", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I157773358" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Wei Shangguan", + "raw_affiliation_strings": [ + "School of Atmospheric Sciences, Sun Yat-sen University, Guangzhou, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Atmospheric Sciences, Sun Yat-sen University, Guangzhou, China", + "institution_ids": [ + "https://openalex.org/I157773358" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5087084229", + "display_name": "Marvin N. Wright", + "orcid": "https://orcid.org/0000-0002-8542-6291" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210086407", + "display_name": "Institut für Medizinische Informatik, Biometrie und Epidemiologie", + "ror": "https://ror.org/00wqjrk21", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210086407" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Marvin N. Wright", + "raw_affiliation_strings": [ + "Institut für Medizinische Biometrie und Statistik, Lübeck, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut für Medizinische Biometrie und Statistik, Lübeck, Germany", + "institution_ids": [ + "https://openalex.org/I4210086407" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017091285", + "display_name": "Xiaoyuan Geng", + "orcid": "https://orcid.org/0000-0002-5391-6915" + }, + "institutions": [ + { + "id": "https://openalex.org/I1331897569", + "display_name": "Agriculture and Agri-Food Canada", + "ror": "https://ror.org/051dzs374", + "country_code": "CA", + "type": "government", + "lineage": [ + "https://openalex.org/I1331897569", + "https://openalex.org/I2802286613" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Xiaoyuan Geng", + "raw_affiliation_strings": [ + "Agriculture and Agri-Food Canada, Ottawa (Ontario), Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Agriculture and Agri-Food Canada, Ottawa (Ontario), Canada", + "institution_ids": [ + "https://openalex.org/I1331897569" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5033747033", + "display_name": "Bernhard Bauer-Marschallinger", + "orcid": "https://orcid.org/0000-0001-7356-7516" + }, + "institutions": [ + { + "id": "https://openalex.org/I145847075", + "display_name": "TU Wien", + "ror": "https://ror.org/04d836q62", + "country_code": "AT", + "type": "education", + "lineage": [ + "https://openalex.org/I145847075" + ] + } + ], + "countries": [ + "AT" + ], + "is_corresponding": false, + "raw_author_name": "Bernhard Bauer-Marschallinger", + "raw_affiliation_strings": [ + "Department of Geodesy and Geoinformation, Vienna University of Technology, Vienna, Austria" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Geodesy and Geoinformation, Vienna University of Technology, Vienna, Austria", + "institution_ids": [ + "https://openalex.org/I145847075" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047925002", + "display_name": "Mário Guevara", + "orcid": "https://orcid.org/0000-0002-9788-9947" + }, + "institutions": [ + { + "id": "https://openalex.org/I86501945", + "display_name": "University of Delaware", + "ror": "https://ror.org/01sbq1a82", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86501945" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mario Antonio Guevara", + "raw_affiliation_strings": [ + "University of Delaware, Newark (DE), United States of America" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Delaware, Newark (DE), United States of America", + "institution_ids": [ + "https://openalex.org/I86501945" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5051794236", + "display_name": "Rodrigo Vargas", + "orcid": "https://orcid.org/0000-0001-6829-5333" + }, + "institutions": [ + { + "id": "https://openalex.org/I86501945", + "display_name": "University of Delaware", + "ror": "https://ror.org/01sbq1a82", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86501945" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rodrigo Vargas", + "raw_affiliation_strings": [ + "University of Delaware, Newark (DE), United States of America" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Delaware, Newark (DE), United States of America", + "institution_ids": [ + "https://openalex.org/I86501945" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073655843", + "display_name": "R.A. MacMillan", + "orcid": "https://orcid.org/0000-0001-9063-3634" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Robert A. MacMillan", + "raw_affiliation_strings": [ + "LandMapper Environmental Solutions Inc., Edmonton (Alberta), Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LandMapper Environmental Solutions Inc., Edmonton (Alberta), Canada", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078952063", + "display_name": "N.H. Batjes", + "orcid": "https://orcid.org/0000-0003-2367-3067" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Niels H. Batjes", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5071302765", + "display_name": "J.G.B. Leenaars", + "orcid": "https://orcid.org/0000-0003-1091-7114" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Johan G. B. Leenaars", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5084085293", + "display_name": "Eloi Ribeiro", + "orcid": "https://orcid.org/0000-0002-2324-3000" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Eloi Ribeiro", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5037321926", + "display_name": "Ichsani Wheeler", + "orcid": "https://orcid.org/0000-0002-9425-9157" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ichsani Wheeler", + "raw_affiliation_strings": [ + "Envirometrix Inc., Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Envirometrix Inc., Wageningen, the Netherlands", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5091009469", + "display_name": "S. Mantel", + "orcid": "https://orcid.org/0000-0002-9623-0227" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Stephan Mantel", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5031737926", + "display_name": "Bas Kempen", + "orcid": "https://orcid.org/0000-0002-2841-0058" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Bas Kempen", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 7, + "institutions_distinct_count": 19, + "corresponding_author_ids": [ + "https://openalex.org/A5008884945" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I31761138" + ], + "apc_list": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "apc_paid": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "fwci": 145.6589, + "has_fulltext": true, + "cited_by_count": 4623, + "citation_normalized_percentile": { + "value": 0.99992747, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "12", + "issue": "2", + "first_page": "e0169748", + "last_page": "e0169748" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14339", + "display_name": "Image Processing and 3D Reconstruction", + "score": 0.9588000178337097, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10004", + "display_name": "Soil Carbon and Nitrogen Dynamics", + "score": 0.9283999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1111", + "display_name": "Soil Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.6831311583518982 + }, + { + "id": "https://openalex.org/keywords/landform", + "display_name": "Landform", + "score": 0.5974330902099609 + }, + { + "id": "https://openalex.org/keywords/soil-texture", + "display_name": "Soil texture", + "score": 0.5643965005874634 + }, + { + "id": "https://openalex.org/keywords/gradient-boosting", + "display_name": "Gradient boosting", + "score": 0.5401628613471985 + }, + { + "id": "https://openalex.org/keywords/soil-science", + "display_name": "Soil science", + "score": 0.48470354080200195 + }, + { + "id": "https://openalex.org/keywords/environmental-science", + "display_name": "Environmental science", + "score": 0.47415441274642944 + }, + { + "id": "https://openalex.org/keywords/soil-map", + "display_name": "Soil map", + "score": 0.4570498764514923 + }, + { + "id": "https://openalex.org/keywords/shuttle-radar-topography-mission", + "display_name": "Shuttle Radar Topography Mission", + "score": 0.45663928985595703 + }, + { + "id": "https://openalex.org/keywords/ensemble-learning", + "display_name": "Ensemble learning", + "score": 0.44700905680656433 + }, + { + "id": "https://openalex.org/keywords/spatial-variability", + "display_name": "Spatial variability", + "score": 0.4328833520412445 + }, + { + "id": "https://openalex.org/keywords/standard-deviation", + "display_name": "Standard deviation", + "score": 0.4192587435245514 + }, + { + "id": "https://openalex.org/keywords/land-cover", + "display_name": "Land cover", + "score": 0.4154254198074341 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3507459759712219 + }, + { + "id": "https://openalex.org/keywords/remote-sensing", + "display_name": "Remote sensing", + "score": 0.3381074368953705 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.279972106218338 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.2646501958370209 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2522737383842468 + }, + { + "id": "https://openalex.org/keywords/land-use", + "display_name": "Land use", + "score": 0.24553540349006653 + }, + { + "id": "https://openalex.org/keywords/digital-elevation-model", + "display_name": "Digital elevation model", + "score": 0.23033851385116577 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.22281324863433838 + }, + { + "id": "https://openalex.org/keywords/geology", + "display_name": "Geology", + "score": 0.2194647192955017 + }, + { + "id": "https://openalex.org/keywords/soil-water", + "display_name": "Soil water", + "score": 0.2089666724205017 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.6831311583518982 + }, + { + "id": "https://openalex.org/C108497213", + "wikidata": "https://www.wikidata.org/wiki/Q271669", + "display_name": "Landform", + "level": 2, + "score": 0.5974330902099609 + }, + { + "id": "https://openalex.org/C175963888", + "wikidata": "https://www.wikidata.org/wiki/Q5026010", + "display_name": "Soil texture", + "level": 3, + "score": 0.5643965005874634 + }, + { + "id": "https://openalex.org/C70153297", + "wikidata": "https://www.wikidata.org/wiki/Q5591907", + "display_name": "Gradient boosting", + "level": 3, + "score": 0.5401628613471985 + }, + { + "id": "https://openalex.org/C159390177", + "wikidata": "https://www.wikidata.org/wiki/Q9161265", + "display_name": "Soil science", + "level": 1, + "score": 0.48470354080200195 + }, + { + "id": "https://openalex.org/C39432304", + "wikidata": "https://www.wikidata.org/wiki/Q188847", + "display_name": "Environmental science", + "level": 0, + "score": 0.47415441274642944 + }, + { + "id": "https://openalex.org/C71864017", + "wikidata": "https://www.wikidata.org/wiki/Q889561", + "display_name": "Soil map", + "level": 3, + "score": 0.4570498764514923 + }, + { + "id": "https://openalex.org/C184149073", + "wikidata": "https://www.wikidata.org/wiki/Q965136", + "display_name": "Shuttle Radar Topography Mission", + "level": 3, + "score": 0.45663928985595703 + }, + { + "id": "https://openalex.org/C45942800", + "wikidata": "https://www.wikidata.org/wiki/Q245652", + "display_name": "Ensemble learning", + "level": 2, + "score": 0.44700905680656433 + }, + { + "id": "https://openalex.org/C94747663", + "wikidata": "https://www.wikidata.org/wiki/Q7574086", + "display_name": "Spatial variability", + "level": 2, + "score": 0.4328833520412445 + }, + { + "id": "https://openalex.org/C22679943", + "wikidata": "https://www.wikidata.org/wiki/Q159375", + "display_name": "Standard deviation", + "level": 2, + "score": 0.4192587435245514 + }, + { + "id": "https://openalex.org/C2780648208", + "wikidata": "https://www.wikidata.org/wiki/Q3001793", + "display_name": "Land cover", + "level": 3, + "score": 0.4154254198074341 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3507459759712219 + }, + { + "id": "https://openalex.org/C62649853", + "wikidata": "https://www.wikidata.org/wiki/Q199687", + "display_name": "Remote sensing", + "level": 1, + "score": 0.3381074368953705 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.279972106218338 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.2646501958370209 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2522737383842468 + }, + { + "id": "https://openalex.org/C4792198", + "wikidata": "https://www.wikidata.org/wiki/Q1165944", + "display_name": "Land use", + "level": 2, + "score": 0.24553540349006653 + }, + { + "id": "https://openalex.org/C181843262", + "wikidata": "https://www.wikidata.org/wiki/Q640492", + "display_name": "Digital elevation model", + "level": 2, + "score": 0.23033851385116577 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.22281324863433838 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.2194647192955017 + }, + { + "id": "https://openalex.org/C159750122", + "wikidata": "https://www.wikidata.org/wiki/Q96621023", + "display_name": "Soil water", + "level": 2, + "score": 0.2089666724205017 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C147176958", + "wikidata": "https://www.wikidata.org/wiki/Q77590", + "display_name": "Civil engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + { + "id": "pmid:28207752", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28207752", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PloS one", + "raw_type": null + }, + { + "id": "pmh:oai:library.wur.nl:wurpubs/526278", + "is_oa": true, + "landing_page_url": "https://research.wur.nl/en/publications/soilgrids250m-global-gridded-soil-information-based-on-machine-le", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210201231", + "display_name": "Socio-Environmental Systems Modeling", + "issn_l": "2663-3027", + "issn": [ + "2663-3027" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "acceptedVersion", + "is_accepted": true, + "is_published": false, + "raw_source_name": "ISSN: 1932-6203", + "raw_type": "Article/Letter to editor" + }, + { + "id": "pmh:oai:RePEc:plo:pone00:0169748", + "is_oa": false, + "landing_page_url": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0169748", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:doaj.org/article:ad46a8c2c401417e8b291d79603dfb3a", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/ad46a8c2c401417e8b291d79603dfb3a", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS ONE, Vol 12, Iss 2, p e0169748 (2017)", + "raw_type": "article" + }, + { + "id": "pmh:oai:grafar.grf.bg.ac.rs:123456789/885", + "is_oa": true, + "landing_page_url": "http://grafar.grf.bg.ac.rs/handle/123456789/885", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402541", + "display_name": "GraFar (University of Belgrade, Faculty of Civil Engineering)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210101313", + "host_organization_name": "University Hospital Center Dr Dragiša Mišović", + "host_organization_lineage": [ + "https://openalex.org/I4210101313" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLOS One", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5313206", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5313206", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS One", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/15", + "display_name": "Life in Land", + "score": 0.6600000262260437 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2588003345.pdf", + "grobid_xml": "https://content.openalex.org/works/W2588003345.grobid-xml" + }, + "referenced_works_count": 96, + "referenced_works": [ + "https://openalex.org/W30646539", + "https://openalex.org/W92141931", + "https://openalex.org/W191102129", + "https://openalex.org/W429766147", + "https://openalex.org/W595863337", + "https://openalex.org/W1482533224", + "https://openalex.org/W1513618424", + "https://openalex.org/W1573647811", + "https://openalex.org/W1606754933", + "https://openalex.org/W1689749838", + "https://openalex.org/W1727844347", + "https://openalex.org/W1786856418", + "https://openalex.org/W1831050183", + "https://openalex.org/W1895518694", + "https://openalex.org/W1969543759", + "https://openalex.org/W1980225565", + "https://openalex.org/W1983650914", + "https://openalex.org/W1984828485", + "https://openalex.org/W1985839444", + "https://openalex.org/W1990590197", + "https://openalex.org/W1993415357", + "https://openalex.org/W2005164184", + "https://openalex.org/W2006929658", + "https://openalex.org/W2018337952", + "https://openalex.org/W2023312901", + "https://openalex.org/W2023942604", + "https://openalex.org/W2027120296", + "https://openalex.org/W2032518966", + "https://openalex.org/W2033585087", + "https://openalex.org/W2036376676", + "https://openalex.org/W2037789405", + "https://openalex.org/W2050179592", + "https://openalex.org/W2057779644", + "https://openalex.org/W2066626803", + "https://openalex.org/W2078720475", + "https://openalex.org/W2088449361", + "https://openalex.org/W2102467070", + "https://openalex.org/W2112776483", + "https://openalex.org/W2114727579", + "https://openalex.org/W2123845623", + "https://openalex.org/W2126822776", + "https://openalex.org/W2130089270", + "https://openalex.org/W2130560194", + "https://openalex.org/W2131347105", + "https://openalex.org/W2131822674", + "https://openalex.org/W2133505387", + "https://openalex.org/W2135479785", + "https://openalex.org/W2140389576", + "https://openalex.org/W2142800341", + "https://openalex.org/W2145126338", + "https://openalex.org/W2151135366", + "https://openalex.org/W2151666808", + "https://openalex.org/W2155544089", + "https://openalex.org/W2156713494", + "https://openalex.org/W2157395790", + "https://openalex.org/W2158441306", + "https://openalex.org/W2160615957", + "https://openalex.org/W2179669825", + "https://openalex.org/W2191676425", + "https://openalex.org/W2199578048", + "https://openalex.org/W2205945645", + "https://openalex.org/W2287354130", + "https://openalex.org/W2295598076", + "https://openalex.org/W2310573451", + "https://openalex.org/W2346841190", + "https://openalex.org/W2417209869", + "https://openalex.org/W2463898247", + "https://openalex.org/W2479339604", + "https://openalex.org/W2514977123", + "https://openalex.org/W2522985694", + "https://openalex.org/W2554693566", + "https://openalex.org/W2557963070", + "https://openalex.org/W2564901692", + "https://openalex.org/W2580821229", + "https://openalex.org/W2582718246", + "https://openalex.org/W2727623211", + "https://openalex.org/W2730460668", + "https://openalex.org/W2736166619", + "https://openalex.org/W2890624634", + "https://openalex.org/W2890805913", + "https://openalex.org/W2917425395", + "https://openalex.org/W2917661374", + "https://openalex.org/W3022713798", + "https://openalex.org/W3102027041", + "https://openalex.org/W3102476541", + "https://openalex.org/W3163617311", + "https://openalex.org/W4211056572", + "https://openalex.org/W4250720198", + "https://openalex.org/W4252713891", + "https://openalex.org/W4285719527", + "https://openalex.org/W4399271987", + "https://openalex.org/W4399569501", + "https://openalex.org/W6634147026", + "https://openalex.org/W6727196412", + "https://openalex.org/W6870084398", + "https://openalex.org/W6891733106" + ], + "related_works": [ + "https://openalex.org/W3208169454", + "https://openalex.org/W4322004982", + "https://openalex.org/W2981500096", + "https://openalex.org/W2362208029", + "https://openalex.org/W3161502711", + "https://openalex.org/W2096944896", + "https://openalex.org/W2620784765", + "https://openalex.org/W2896029770", + "https://openalex.org/W2383154062", + "https://openalex.org/W4220718694" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "paper": [ + 1 + ], + "describes": [ + 2 + ], + "the": [ + 3, + 10, + 17, + 78, + 151, + 166, + 187, + 191, + 199, + 220, + 293, + 335 + ], + "technical": [ + 4 + ], + "development": [ + 5, + 248, + 294 + ], + "and": [ + 6, + 13, + 47, + 60, + 71, + 83, + 104, + 124, + 127, + 142, + 157, + 174, + 239, + 260, + 268, + 323 + ], + "accuracy": [ + 7, + 189 + ], + "assessment": [ + 8 + ], + "of": [ + 9, + 16, + 67, + 73, + 107, + 137, + 161, + 177, + 183, + 193, + 202, + 222, + 226, + 243, + 249, + 254, + 262, + 271, + 284, + 289, + 295, + 300 + ], + "most": [ + 11 + ], + "recent": [ + 12 + ], + "improved": [ + 14 + ], + "version": [ + 15, + 201 + ], + "SoilGrids": [ + 18, + 26, + 203, + 250, + 301, + 331 + ], + "system": [ + 19 + ], + "at": [ + 20, + 50, + 204 + ], + "250m": [ + 21 + ], + "resolution": [ + 22, + 236 + ], + "(June": [ + 23 + ], + "2016": [ + 24 + ], + "update).": [ + 25 + ], + "provides": [ + 27 + ], + "global": [ + 28, + 125, + 325 + ], + "predictions": [ + 29, + 66, + 302 + ], + "for": [ + 30, + 102, + 281, + 297 + ], + "standard": [ + 31, + 52 + ], + "numeric": [ + 32 + ], + "soil": [ + 33, + 44, + 74, + 99, + 111, + 245, + 276, + 285, + 308, + 326 + ], + "properties": [ + 34 + ], + "(organic": [ + 35 + ], + "carbon,": [ + 36 + ], + "bulk": [ + 37 + ], + "density,": [ + 38 + ], + "Cation": [ + 39 + ], + "Exchange": [ + 40 + ], + "Capacity": [ + 41 + ], + "(CEC),": [ + 42 + ], + "pH,": [ + 43 + ], + "texture": [ + 45 + ], + "fractions": [ + 46 + ], + "coarse": [ + 48 + ], + "fragments)": [ + 49, + 173 + ], + "seven": [ + 51 + ], + "depths": [ + 53 + ], + "(0,": [ + 54 + ], + "5,": [ + 55 + ], + "15,": [ + 56 + ], + "30,": [ + 57 + ], + "60,": [ + 58 + ], + "100": [ + 59 + ], + "200": [ + 61 + ], + "cm),": [ + 62 + ], + "in": [ + 63, + 91, + 150, + 186, + 196, + 233 + ], + "addition": [ + 64 + ], + "to": [ + 65, + 69, + 133, + 198, + 212, + 230, + 241, + 256, + 312 + ], + "depth": [ + 68 + ], + "bedrock": [ + 70 + ], + "distribution": [ + 72 + ], + "classes": [ + 75 + ], + "based": [ + 76, + 95 + ], + "on": [ + 77, + 96 + ], + "World": [ + 79 + ], + "Reference": [ + 80 + ], + "Base": [ + 81, + 338 + ], + "(WRB)": [ + 82 + ], + "USDA": [ + 84 + ], + "classification": [ + 85 + ], + "systems": [ + 86 + ], + "(ca.": [ + 87 + ], + "280": [ + 88 + ], + "raster": [ + 89 + ], + "layers": [ + 90, + 238 + ], + "total).": [ + 92 + ], + "Predictions": [ + 93 + ], + "were": [ + 94, + 131 + ], + "ca.": [ + 97 + ], + "150,000": [ + 98 + ], + "profiles": [ + 100 + ], + "used": [ + 101, + 132 + ], + "training": [ + 103 + ], + "a": [ + 105 + ], + "stack": [ + 106 + ], + "158": [ + 108 + ], + "remote": [ + 109 + ], + "sensing-based": [ + 110 + ], + "covariates": [ + 112 + ], + "(primarily": [ + 113 + ], + "derived": [ + 114 + ], + "from": [ + 115, + 210 + ], + "MODIS": [ + 116 + ], + "land": [ + 117 + ], + "products,": [ + 118 + ], + "SRTM": [ + 119 + ], + "DEM": [ + 120 + ], + "derivatives,": [ + 121 + ], + "climatic": [ + 122 + ], + "images": [ + 123 + ], + "landform": [ + 126 + ], + "lithology": [ + 128 + ], + "maps),": [ + 129 + ], + "which": [ + 130 + ], + "fit": [ + 134 + ], + "an": [ + 135, + 180 + ], + "ensemble": [ + 136, + 167 + ], + "machine": [ + 138, + 223 + ], + "learning": [ + 139, + 224 + ], + "methods-random": [ + 140 + ], + "forest": [ + 141 + ], + "gradient": [ + 143 + ], + "boosting": [ + 144 + ], + "and/or": [ + 145, + 305 + ], + "multinomial": [ + 146 + ], + "logistic": [ + 147 + ], + "regression-as": [ + 148 + ], + "implemented": [ + 149 + ], + "R": [ + 152 + ], + "packages": [ + 153 + ], + "ranger,": [ + 154 + ], + "xgboost,": [ + 155 + ], + "nnet": [ + 156 + ], + "caret.": [ + 158 + ], + "The": [ + 159 + ], + "results": [ + 160 + ], + "10-fold": [ + 162 + ], + "cross-validation": [ + 163 + ], + "show": [ + 164 + ], + "that": [ + 165, + 275, + 318 + ], + "models": [ + 168 + ], + "explain": [ + 169 + ], + "between": [ + 170 + ], + "56%": [ + 171 + ], + "(coarse": [ + 172 + ], + "83%": [ + 175 + ], + "(pH)": [ + 176 + ], + "variation": [ + 178, + 194 + ], + "with": [ + 179, + 303 + ], + "overall": [ + 181 + ], + "average": [ + 182 + ], + "61%.": [ + 184 + ], + "Improvements": [ + 185, + 214 + ], + "relative": [ + 188 + ], + "considering": [ + 190 + ], + "amount": [ + 192 + ], + "explained,": [ + 195 + ], + "comparison": [ + 197 + ], + "previous": [ + 200 + ], + "1": [ + 205 + ], + "km": [ + 206 + ], + "spatial": [ + 207, + 272, + 315 + ], + "resolution,": [ + 208 + ], + "range": [ + 209 + ], + "60": [ + 211 + ], + "230%.": [ + 213 + ], + "can": [ + 215, + 278, + 328 + ], + "be": [ + 216, + 279, + 329 + ], + "attributed": [ + 217 + ], + "to:": [ + 218 + ], + "(1)": [ + 219 + ], + "use": [ + 221 + ], + "instead": [ + 225 + ], + "linear": [ + 227 + ], + "regression,": [ + 228 + ], + "(2)": [ + 229 + ], + "considerable": [ + 231 + ], + "investments": [ + 232 + ], + "preparing": [ + 234 + ], + "finer": [ + 235 + ], + "covariate": [ + 237 + ], + "(3)": [ + 240 + ], + "insertion": [ + 242 + ], + "additional": [ + 244 + ], + "profiles.": [ + 246 + ], + "Further": [ + 247 + ], + "could": [ + 251 + ], + "include": [ + 252 + ], + "refinement": [ + 253 + ], + "methods": [ + 255, + 296 + ], + "incorporate": [ + 257 + ], + "input": [ + 258 + ], + "uncertainties": [ + 259 + ], + "derivation": [ + 261 + ], + "posterior": [ + 263 + ], + "probability": [ + 264 + ], + "distributions": [ + 265 + ], + "(per": [ + 266 + ], + "pixel),": [ + 267 + ], + "further": [ + 269 + ], + "automation": [ + 270 + ], + "modeling": [ + 273 + ], + "so": [ + 274, + 317 + ], + "maps": [ + 277 + ], + "generated": [ + 280 + ], + "potentially": [ + 282 + ], + "hundreds": [ + 283 + ], + "variables.": [ + 286 + ], + "Another": [ + 287 + ], + "area": [ + 288 + ], + "future": [ + 290 + ], + "research": [ + 291 + ], + "is": [ + 292 + ], + "multiscale": [ + 298 + ], + "merging": [ + 299 + ], + "local": [ + 304 + ], + "national": [ + 306 + ], + "gridded": [ + 307 + ], + "products": [ + 309 + ], + "(e.g.": [ + 310 + ], + "up": [ + 311 + ], + "50": [ + 313 + ], + "m": [ + 314 + ], + "resolution)": [ + 316 + ], + "increasingly": [ + 319 + ], + "more": [ + 320 + ], + "accurate,": [ + 321 + ], + "complete": [ + 322 + ], + "consistent": [ + 324 + ], + "information": [ + 327 + ], + "produced.": [ + 330 + ], + "are": [ + 332 + ], + "available": [ + 333 + ], + "under": [ + 334 + ], + "Open": [ + 336 + ], + "Data": [ + 337 + ], + "License.": [ + 339 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 265 + }, + { + "year": 2025, + "cited_by_count": 669 + }, + { + "year": 2024, + "cited_by_count": 634 + }, + { + "year": 2023, + "cited_by_count": 702 + }, + { + "year": 2022, + "cited_by_count": 702 + }, + { + "year": 2021, + "cited_by_count": 699 + }, + { + "year": 2020, + "cited_by_count": 422 + }, + { + "year": 2019, + "cited_by_count": 281 + }, + { + "year": 2018, + "cited_by_count": 185 + }, + { + "year": 2017, + "cited_by_count": 57 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3153990350", + "doi": "https://doi.org/10.1007/s12525-021-00475-2", + "title": "Machine learning and deep learning", + "display_name": "Machine learning and deep learning", + "relevance_score": 3910.7214, + "publication_year": 2021, + "publication_date": "2021-04-08", + "ids": { + "openalex": "https://openalex.org/W3153990350", + "doi": "https://doi.org/10.1007/s12525-021-00475-2", + "mag": "3153990350" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "hybrid", + "oa_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Christian Janiesch", + "orcid": "https://orcid.org/0000-0002-8050-123X" + }, + "institutions": [ + { + "id": "https://openalex.org/I25974101", + "display_name": "University of Würzburg", + "ror": "https://ror.org/00fbnyb24", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I25974101" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Christian Janiesch", + "raw_affiliation_strings": [ + "Faculty of Business Management & Economics, University of Würzburg, Sanderring 2, 97070, Würzburg, Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-8050-123X", + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Business Management & Economics, University of Würzburg, Sanderring 2, 97070, Würzburg, Germany", + "institution_ids": [ + "https://openalex.org/I25974101" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Patrick Zschech", + "orcid": "https://orcid.org/0000-0002-1105-8086" + }, + "institutions": [ + { + "id": "https://openalex.org/I181369854", + "display_name": "Friedrich-Alexander-Universität Erlangen-Nürnberg", + "ror": "https://ror.org/00f7hpc57", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I181369854" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Patrick Zschech", + "raw_affiliation_strings": [ + "Institute of Information Systems, Friedrich-Alexander University Erlangen-Nürnberg, Lange Gasse 20, 90403, Nürnberg, Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-1105-8086", + "affiliations": [ + { + "raw_affiliation_string": "Institute of Information Systems, Friedrich-Alexander University Erlangen-Nürnberg, Lange Gasse 20, 90403, Nürnberg, Germany", + "institution_ids": [ + "https://openalex.org/I181369854" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Kai Heinrich", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95793202", + "display_name": "Otto-von-Guericke-Universität Magdeburg", + "ror": "https://ror.org/00ggpsq73", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I95793202" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Kai Heinrich", + "raw_affiliation_strings": [ + "Faculty of Economics and Management, Otto-von-Guericke-Universität Magdeburg, Universitätsplatz 2, 39106, Magdeburg, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Economics and Management, Otto-von-Guericke-Universität Magdeburg, Universitätsplatz 2, 39106, Magdeburg, Germany", + "institution_ids": [ + "https://openalex.org/I95793202" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I25974101" + ], + "apc_list": { + "value": 2590, + "currency": "EUR", + "value_usd": 3190 + }, + "apc_paid": { + "value": 2590, + "currency": "EUR", + "value_usd": 3190 + }, + "fwci": 395.9188, + "has_fulltext": true, + "cited_by_count": 2443, + "citation_normalized_percentile": { + "value": 0.9999934, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "31", + "issue": "3", + "first_page": "685", + "last_page": "695" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T14347", + "display_name": "Big Data and Digital Economy", + "score": 0.0794999971985817, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T14347", + "display_name": "Big Data and Digital Economy", + "score": 0.0794999971985817, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14222", + "display_name": "Knowledge Management and Technology", + "score": 0.03700000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T11891", + "display_name": "Big Data and Business Intelligence", + "score": 0.03220000118017197, + "subfield": { + "id": "https://openalex.org/subfields/1404", + "display_name": "Management Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/14", + "display_name": "Business, Management and Accounting" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.7547000050544739 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5849999785423279 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.5758000016212463 + }, + { + "id": "https://openalex.org/keywords/underpinning", + "display_name": "Underpinning", + "score": 0.5667999982833862 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5267999768257141 + }, + { + "id": "https://openalex.org/keywords/instance-based-learning", + "display_name": "Instance-based learning", + "score": 0.34700000286102295 + }, + { + "id": "https://openalex.org/keywords/hyper-heuristic", + "display_name": "Hyper-heuristic", + "score": 0.34619998931884766 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.3402000069618225 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.8934999704360962 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.8062000274658203 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.7547000050544739 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6575000286102295 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5849999785423279 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.5758000016212463 + }, + { + "id": "https://openalex.org/C2780871342", + "wikidata": "https://www.wikidata.org/wiki/Q7883752", + "display_name": "Underpinning", + "level": 2, + "score": 0.5667999982833862 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5267999768257141 + }, + { + "id": "https://openalex.org/C24138899", + "wikidata": "https://www.wikidata.org/wiki/Q17141258", + "display_name": "Instance-based learning", + "level": 3, + "score": 0.34700000286102295 + }, + { + "id": "https://openalex.org/C117270229", + "wikidata": "https://www.wikidata.org/wiki/Q5957539", + "display_name": "Hyper-heuristic", + "level": 5, + "score": 0.34619998931884766 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.3402000069618225 + }, + { + "id": "https://openalex.org/C188888258", + "wikidata": "https://www.wikidata.org/wiki/Q7353390", + "display_name": "Robot learning", + "level": 4, + "score": 0.32989999651908875 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.32100000977516174 + }, + { + "id": "https://openalex.org/C56397880", + "wikidata": "https://www.wikidata.org/wiki/Q6044094", + "display_name": "Intelligent decision support system", + "level": 2, + "score": 0.3176000118255615 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.30889999866485596 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.2793000042438507 + }, + { + "id": "https://openalex.org/C189474733", + "wikidata": "https://www.wikidata.org/wiki/Q917912", + "display_name": "Model building", + "level": 2, + "score": 0.2775000035762787 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.274399995803833 + }, + { + "id": "https://openalex.org/C97385483", + "wikidata": "https://www.wikidata.org/wiki/Q16954980", + "display_name": "Deep belief network", + "level": 3, + "score": 0.2669999897480011 + }, + { + "id": "https://openalex.org/C8038995", + "wikidata": "https://www.wikidata.org/wiki/Q1152135", + "display_name": "Unsupervised learning", + "level": 2, + "score": 0.2630999982357025 + }, + { + "id": "https://openalex.org/C67186912", + "wikidata": "https://www.wikidata.org/wiki/Q367664", + "display_name": "Data modeling", + "level": 2, + "score": 0.2572000026702881 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.2549999952316284 + }, + { + "id": "https://openalex.org/C157170001", + "wikidata": "https://www.wikidata.org/wiki/Q4781507", + "display_name": "Applications of artificial intelligence", + "level": 2, + "score": 0.2500999867916107 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:2104.05314", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/2104.05314", + "pdf_url": "https://arxiv.org/pdf/2104.05314", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:RePEc:spr:elmark:v:31:y:2021:i:3:d:10.1007_s12525-021-00475-2", + "is_oa": false, + "landing_page_url": "http://link.springer.com/10.1007/s12525-021-00475-2", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:econstor.eu:10419/287156", + "is_oa": true, + "landing_page_url": "https://hdl.handle.net/10419/287156", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401696", + "display_name": "Econstor (Econstor)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "doc-type:article" + }, + { + "id": "pmh:oai:opus.bibliothek.uni-wuerzburg.de:27015", + "is_oa": true, + "landing_page_url": "https://opus.bibliothek.uni-wuerzburg.de/frontdoor/index/index/docId/27015", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401635", + "display_name": "Online Publication Service of Würzburg University (Würzburg University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I25974101", + "host_organization_name": "University of Würzburg", + "host_organization_lineage": [ + "https://openalex.org/I25974101" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "article" + }, + { + "id": "pmh:oai:ub.uni-erlangen.de-opus:22263", + "is_oa": true, + "landing_page_url": "https://opus4.kobv.de/opus4-fau/frontdoor/index/index/docId/22263", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401636", + "display_name": "OPUS Repository (Kooperativer Bibliotheksverbund Berlin-Brandenburg)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G2151094965", + "display_name": null, + "funder_award_id": "DIK0143/02", + "funder_id": "https://openalex.org/F4320331012", + "funder_display_name": "Bayerische Staatsministerium für Wirtschaft, Landesentwicklung und Energie" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320331012", + "display_name": "Bayerische Staatsministerium für Wirtschaft, Landesentwicklung und Energie", + "ror": null + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3153990350.pdf", + "grobid_xml": "https://content.openalex.org/works/W3153990350.grobid-xml" + }, + "referenced_works_count": 53, + "referenced_works": [ + "https://openalex.org/W822801274", + "https://openalex.org/W1506806321", + "https://openalex.org/W1565746575", + "https://openalex.org/W1901616594", + "https://openalex.org/W1978394996", + "https://openalex.org/W2034059032", + "https://openalex.org/W2059111627", + "https://openalex.org/W2076063813", + "https://openalex.org/W2096352448", + "https://openalex.org/W2099419573", + "https://openalex.org/W2106577732", + "https://openalex.org/W2151103935", + "https://openalex.org/W2161969291", + "https://openalex.org/W2164598857", + "https://openalex.org/W2251410821", + "https://openalex.org/W2269742369", + "https://openalex.org/W2585169518", + "https://openalex.org/W2751039952", + "https://openalex.org/W2798302089", + "https://openalex.org/W2800722845", + "https://openalex.org/W2802955324", + "https://openalex.org/W2884001105", + "https://openalex.org/W2888794009", + "https://openalex.org/W2891503716", + "https://openalex.org/W2892341857", + "https://openalex.org/W2895991254", + "https://openalex.org/W2900453322", + "https://openalex.org/W2902907165", + "https://openalex.org/W2915015079", + "https://openalex.org/W2919115771", + "https://openalex.org/W2921353139", + "https://openalex.org/W2945976633", + "https://openalex.org/W2953189907", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963428668", + "https://openalex.org/W2964716450", + "https://openalex.org/W2981207549", + "https://openalex.org/W2989851933", + "https://openalex.org/W2995871253", + "https://openalex.org/W2999321020", + "https://openalex.org/W3000062802", + "https://openalex.org/W3005351117", + "https://openalex.org/W3025420269", + "https://openalex.org/W3094605956", + "https://openalex.org/W3095865939", + "https://openalex.org/W3118496513", + "https://openalex.org/W3120261410", + "https://openalex.org/W3150796314", + "https://openalex.org/W4212902066", + "https://openalex.org/W4236093597", + "https://openalex.org/W4255466416", + "https://openalex.org/W6730267373", + "https://openalex.org/W6750380350" + ], + "related_works": [], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "Today,": [ + 1 + ], + "intelligent": [ + 2, + 91, + 128 + ], + "systems": [ + 3, + 20, + 129 + ], + "that": [ + 4, + 123 + ], + "offer": [ + 5 + ], + "artificial": [ + 6, + 48, + 152 + ], + "intelligence": [ + 7, + 153 + ], + "capabilities": [ + 8 + ], + "often": [ + 9 + ], + "rely": [ + 10 + ], + "on": [ + 11, + 47 + ], + "machine": [ + 12, + 43, + 59, + 75, + 114 + ], + "learning.": [ + 13 + ], + "Machine": [ + 14 + ], + "learning": [ + 15, + 40, + 44, + 55, + 60, + 76, + 79, + 115 + ], + "describes": [ + 16 + ], + "the": [ + 17, + 29, + 72, + 86, + 106, + 121, + 131 + ], + "capacity": [ + 18 + ], + "of": [ + 19, + 31, + 74, + 85, + 89, + 108, + 133 + ], + "to": [ + 21, + 27, + 80 + ], + "learn": [ + 22 + ], + "from": [ + 23 + ], + "problem-specific": [ + 24 + ], + "training": [ + 25 + ], + "data": [ + 26, + 64 + ], + "automate": [ + 28 + ], + "process": [ + 30, + 107 + ], + "analytical": [ + 32, + 110 + ], + "model": [ + 33, + 111 + ], + "building": [ + 34, + 112 + ], + "and": [ + 35, + 62, + 77, + 103, + 116, + 119, + 136, + 145, + 151 + ], + "solve": [ + 36 + ], + "associated": [ + 37 + ], + "tasks.": [ + 38 + ], + "Deep": [ + 39 + ], + "is": [ + 41 + ], + "a": [ + 42, + 82, + 97 + ], + "concept": [ + 45 + ], + "based": [ + 46 + ], + "neural": [ + 49 + ], + "networks.": [ + 50 + ], + "For": [ + 51 + ], + "many": [ + 52 + ], + "applications,": [ + 53 + ], + "deep": [ + 54, + 78, + 117 + ], + "models": [ + 56, + 61 + ], + "outperform": [ + 57 + ], + "shallow": [ + 58 + ], + "traditional": [ + 63 + ], + "analysis": [ + 65 + ], + "approaches.": [ + 66 + ], + "In": [ + 67, + 93 + ], + "this": [ + 68 + ], + "article,": [ + 69 + ], + "we": [ + 70, + 95 + ], + "summarize": [ + 71 + ], + "fundamentals": [ + 73 + ], + "generate": [ + 81 + ], + "broader": [ + 83 + ], + "understanding": [ + 84 + ], + "methodical": [ + 87 + ], + "underpinning": [ + 88 + ], + "current": [ + 90 + ], + "systems.": [ + 92 + ], + "particular,": [ + 94 + ], + "provide": [ + 96 + ], + "conceptual": [ + 98 + ], + "distinction": [ + 99 + ], + "between": [ + 100 + ], + "relevant": [ + 101 + ], + "terms": [ + 102 + ], + "concepts,": [ + 104 + ], + "explain": [ + 105 + ], + "automated": [ + 109 + ], + "through": [ + 113 + ], + "learning,": [ + 118 + ], + "discuss": [ + 120 + ], + "challenges": [ + 122 + ], + "arise": [ + 124 + ], + "when": [ + 125 + ], + "implementing": [ + 126 + ], + "such": [ + 127 + ], + "in": [ + 130, + 148 + ], + "field": [ + 132 + ], + "electronic": [ + 134 + ], + "markets": [ + 135 + ], + "networked": [ + 137 + ], + "business.": [ + 138 + ], + "These": [ + 139 + ], + "naturally": [ + 140 + ], + "go": [ + 141 + ], + "beyond": [ + 142 + ], + "technological": [ + 143 + ], + "aspects": [ + 144 + ], + "highlight": [ + 146 + ], + "issues": [ + 147 + ], + "human-machine": [ + 149 + ], + "interaction": [ + 150 + ], + "servitization.": [ + 154 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 228 + }, + { + "year": 2025, + "cited_by_count": 823 + }, + { + "year": 2024, + "cited_by_count": 709 + }, + { + "year": 2023, + "cited_by_count": 463 + }, + { + "year": 2022, + "cited_by_count": 204 + }, + { + "year": 2021, + "cited_by_count": 16 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2021-04-26T00:00:00" + }, + { + "id": "https://openalex.org/W1495061682", + "doi": null, + "title": "Correlation-based Feature Selection for Machine Learning", + "display_name": "Correlation-based Feature Selection for Machine Learning", + "relevance_score": 3887.3452, + "publication_year": 1998, + "publication_date": "1998-01-01", + "ids": { + "openalex": "https://openalex.org/W1495061682", + "mag": "1495061682" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.149.3848", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.149.3848", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~ml/publications/1999/99MH-Thesis.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5056507889", + "display_name": "Mark Hall", + "orcid": "https://orcid.org/0000-0003-0081-4277" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Mark Hall", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0003-0081-4277", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5056507889" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 6.5111, + "has_fulltext": false, + "cited_by_count": 3502, + "citation_normalized_percentile": { + "value": 0.969452, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.992900013923645, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7863954305648804 + }, + { + "id": "https://openalex.org/keywords/feature-selection", + "display_name": "Feature selection", + "score": 0.7660661935806274 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6697717905044556 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.6554372310638428 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6124832630157471 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.5173172950744629 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.5164375901222229 + }, + { + "id": "https://openalex.org/keywords/naive-bayes-classifier", + "display_name": "Naive Bayes classifier", + "score": 0.5061132311820984 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.4775296449661255 + }, + { + "id": "https://openalex.org/keywords/correlation", + "display_name": "Correlation", + "score": 0.45613178610801697 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.44838523864746094 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.4388089179992676 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.329307496547699 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.2919524312019348 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.22016915678977966 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7863954305648804 + }, + { + "id": "https://openalex.org/C148483581", + "wikidata": "https://www.wikidata.org/wiki/Q446488", + "display_name": "Feature selection", + "level": 2, + "score": 0.7660661935806274 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6697717905044556 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.6554372310638428 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6124832630157471 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.5173172950744629 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.5164375901222229 + }, + { + "id": "https://openalex.org/C52001869", + "wikidata": "https://www.wikidata.org/wiki/Q812530", + "display_name": "Naive Bayes classifier", + "level": 3, + "score": 0.5061132311820984 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.4775296449661255 + }, + { + "id": "https://openalex.org/C117220453", + "wikidata": "https://www.wikidata.org/wiki/Q5172842", + "display_name": "Correlation", + "level": 2, + "score": 0.45613178610801697 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.44838523864746094 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.4388089179992676 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.329307496547699 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.2919524312019348 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.22016915678977966 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.149.3848", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.149.3848", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~ml/publications/1999/99MH-Thesis.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.37.4643", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.37.4643", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~mhall/thesis.ps.gz", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.455.4521", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.455.4521", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "https://www.lri.fr/~pierres/donn%E9es/save/these/articles/lpr-queue/hall99correlationbased.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.62.9584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.62.9584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~mhall/thesis.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:researchcommons.waikato.ac.nz:10289/15043", + "is_oa": false, + "landing_page_url": "https://hdl.handle.net/10289/15043", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400944", + "display_name": "Research Commons (University of Waikato)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I52179390", + "host_organization_name": "University of Waikato", + "host_organization_lineage": [ + "https://openalex.org/I52179390" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Thesis" + }, + { + "id": "mag:1495061682", + "is_oa": false, + "landing_page_url": "https://www.cs.waikato.ac.nz/~mhall/thesis.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions", + "score": 0.4300000071525574 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 88, + "referenced_works": [ + "https://openalex.org/W14420165", + "https://openalex.org/W23418094", + "https://openalex.org/W31783794", + "https://openalex.org/W32535764", + "https://openalex.org/W43179442", + "https://openalex.org/W124232507", + "https://openalex.org/W138217685", + "https://openalex.org/W149472151", + "https://openalex.org/W168332103", + "https://openalex.org/W184639320", + "https://openalex.org/W187357405", + "https://openalex.org/W1481111462", + "https://openalex.org/W1487306946", + "https://openalex.org/W1489725718", + "https://openalex.org/W1497256448", + "https://openalex.org/W1504694836", + "https://openalex.org/W1507029541", + "https://openalex.org/W1520687314", + "https://openalex.org/W1523989055", + "https://openalex.org/W1528176576", + "https://openalex.org/W1528489993", + "https://openalex.org/W1533544838", + "https://openalex.org/W1535723299", + "https://openalex.org/W1540113330", + "https://openalex.org/W1553244859", + "https://openalex.org/W1553313034", + "https://openalex.org/W1557564713", + "https://openalex.org/W1557923305", + "https://openalex.org/W1562345870", + "https://openalex.org/W1566376227", + "https://openalex.org/W1571061365", + "https://openalex.org/W1575869149", + "https://openalex.org/W1583700199", + "https://openalex.org/W1587362683", + "https://openalex.org/W1597910678", + "https://openalex.org/W1601529450", + "https://openalex.org/W1605844890", + "https://openalex.org/W1608549042", + "https://openalex.org/W1619226191", + "https://openalex.org/W1630964756", + "https://openalex.org/W1678889691", + "https://openalex.org/W1679846099", + "https://openalex.org/W1808644423", + "https://openalex.org/W1906182963", + "https://openalex.org/W1923673105", + "https://openalex.org/W1970406594", + "https://openalex.org/W1981251392", + "https://openalex.org/W1983661866", + "https://openalex.org/W1998523455", + "https://openalex.org/W2000613518", + "https://openalex.org/W2002150630", + "https://openalex.org/W2003048487", + "https://openalex.org/W2017337590", + "https://openalex.org/W2042385018", + "https://openalex.org/W2050297026", + "https://openalex.org/W2054658115", + "https://openalex.org/W2067098334", + "https://openalex.org/W2071817951", + "https://openalex.org/W2075038844", + "https://openalex.org/W2088658068", + "https://openalex.org/W2096581064", + "https://openalex.org/W2104626092", + "https://openalex.org/W2109293916", + "https://openalex.org/W2112076978", + "https://openalex.org/W2120216197", + "https://openalex.org/W2123865363", + "https://openalex.org/W2125055259", + "https://openalex.org/W2125412267", + "https://openalex.org/W2128420091", + "https://openalex.org/W2132166479", + "https://openalex.org/W2136000097", + "https://openalex.org/W2140785063", + "https://openalex.org/W2146257637", + "https://openalex.org/W2147169507", + "https://openalex.org/W2147409005", + "https://openalex.org/W2149706766", + "https://openalex.org/W2158000296", + "https://openalex.org/W2159080219", + "https://openalex.org/W2168165449", + "https://openalex.org/W2170120409", + "https://openalex.org/W2193378034", + "https://openalex.org/W2743477090", + "https://openalex.org/W2797502950", + "https://openalex.org/W2798455746", + "https://openalex.org/W2913283985", + "https://openalex.org/W2982720039", + "https://openalex.org/W2988864014", + "https://openalex.org/W3085162807" + ], + "related_works": [ + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2169038408", + "https://openalex.org/W2156571267", + "https://openalex.org/W2154053567", + "https://openalex.org/W2153635508", + "https://openalex.org/W2149706766", + "https://openalex.org/W2143426320", + "https://openalex.org/W2140190241", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119479037", + "https://openalex.org/W2119387367", + "https://openalex.org/W2017337590", + "https://openalex.org/W1808644423", + "https://openalex.org/W1661871015", + "https://openalex.org/W1619226191", + "https://openalex.org/W1583700199", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "A": [ + 0, + 62 + ], + "central": [ + 1, + 41 + ], + "problem": [ + 2, + 28 + ], + "in": [ + 3, + 200, + 255 + ], + "machine": [ + 4, + 33, + 113, + 197 + ], + "learning": [ + 5, + 34, + 114, + 198, + 238 + ], + "is": [ + 6, + 43, + 84 + ], + "identifying": [ + 7 + ], + "a": [ + 8, + 17, + 21, + 36, + 98, + 224, + 227 + ], + "representative": [ + 9 + ], + "set": [ + 10, + 184 + ], + "of": [ + 11, + 29, + 76, + 211, + 215, + 280, + 296 + ], + "features": [ + 12, + 49, + 151, + 204, + 297 + ], + "from": [ + 13, + 69 + ], + "which": [ + 14, + 207, + 271 + ], + "to": [ + 15, + 231, + 240, + 251, + 274, + 276, + 283, + 319 + ], + "construct": [ + 16 + ], + "classification": [ + 18, + 178 + ], + "model": [ + 19 + ], + "for": [ + 20, + 32 + ], + "particular": [ + 22 + ], + "task.": [ + 23 + ], + "This": [ + 24 + ], + "thesis": [ + 25 + ], + "addresses": [ + 26 + ], + "the": [ + 27, + 55, + 173, + 181, + 190, + 216, + 236, + 252, + 258, + 269, + 299, + 306, + 326 + ], + "feature": [ + 30, + 46, + 63, + 183, + 192, + 232, + 242, + 285, + 302 + ], + "selection": [ + 31, + 195, + 233 + ], + "through": [ + 35 + ], + "correlation": [ + 37, + 95 + ], + "based": [ + 38, + 66, + 81, + 127 + ], + "approach.": [ + 39 + ], + "The": [ + 40, + 292 + ], + "hypothesis": [ + 42 + ], + "that": [ + 44, + 50, + 87, + 137, + 234, + 314 + ], + "good": [ + 45 + ], + "sets": [ + 47 + ], + "contain": [ + 48 + ], + "are": [ + 51, + 287 + ], + "highly": [ + 52, + 209 + ], + "correlated": [ + 53 + ], + "with": [ + 54, + 59, + 92, + 223 + ], + "class,": [ + 56 + ], + "yet": [ + 57 + ], + "uncorrelated": [ + 58 + ], + "each": [ + 60 + ], + "other.": [ + 61 + ], + "evaluation": [ + 64, + 90 + ], + "formula,": [ + 65 + ], + "on": [ + 67, + 107, + 133, + 161, + 260, + 310 + ], + "ideas": [ + 68 + ], + "test": [ + 70 + ], + "theory,": [ + 71 + ], + "provides": [ + 72 + ], + "an": [ + 73, + 85, + 93 + ], + "operational": [ + 74 + ], + "definition": [ + 75 + ], + "this": [ + 77, + 89 + ], + "hypothesis.": [ + 78 + ], + "CFS": [ + 79, + 138, + 167, + 222, + 247, + 263, + 282 + ], + "(Correlation": [ + 80 + ], + "Feature": [ + 82, + 194 + ], + "Selection)": [ + 83 + ], + "algorithm": [ + 86, + 239 + ], + "couples": [ + 88 + ], + "formula": [ + 91 + ], + "appropriate": [ + 94 + ], + "measure": [ + 96 + ], + "and": [ + 97, + 109, + 129, + 141, + 145, + 148, + 254, + 289, + 298 + ], + "heuristic": [ + 99 + ], + "search": [ + 100 + ], + "strategy.": [ + 101 + ], + " \\n \\nCFS": [ + 102 + ], + "was": [ + 103 + ], + "evaluated": [ + 104 + ], + "by": [ + 105, + 305, + 337 + ], + "experiments": [ + 106, + 220 + ], + "artificial": [ + 108, + 134, + 311 + ], + "natural": [ + 110, + 165, + 324 + ], + "datasets.": [ + 111, + 262 + ], + "Three": [ + 112 + ], + "algorithms": [ + 115 + ], + "were": [ + 116, + 205, + 208, + 317 + ], + "used:": [ + 117 + ], + "C4.5": [ + 118 + ], + "(a": [ + 119 + ], + "decision": [ + 120 + ], + "tree": [ + 121 + ], + "learner),": [ + 122, + 128 + ], + "IB": [ + 123 + ], + "1": [ + 124 + ], + "(an": [ + 125 + ], + "instance": [ + 126, + 217 + ], + "naive": [ + 130 + ], + "Bayes.": [ + 131 + ], + "Experiments": [ + 132, + 309 + ], + "datasets": [ + 135 + ], + "showed": [ + 136, + 313 + ], + "quickly": [ + 139 + ], + "identifies": [ + 140, + 149 + ], + "screens": [ + 142 + ], + "irrelevant,": [ + 143 + ], + "redundant,": [ + 144 + ], + "noisy": [ + 146 + ], + "features,": [ + 147 + ], + "relevant": [ + 150 + ], + "as": [ + 152, + 154 + ], + "long": [ + 153 + ], + "their": [ + 155 + ], + "relevance": [ + 156 + ], + "does": [ + 157 + ], + "not": [ + 158 + ], + "strongly": [ + 159 + ], + "depend": [ + 160 + ], + "other": [ + 162 + ], + "features.": [ + 163, + 174, + 322 + ], + "On": [ + 164, + 323 + ], + "domains,": [ + 166, + 325 + ], + "typically": [ + 168 + ], + "eliminated": [ + 169, + 206 + ], + "well": [ + 170, + 228 + ], + "over": [ + 171 + ], + "half": [ + 172 + ], + "In": [ + 175, + 244 + ], + "most": [ + 176 + ], + "cases,": [ + 177 + ], + "accuracy": [ + 179, + 188 + ], + "using": [ + 180, + 189, + 334 + ], + "reduced": [ + 182 + ], + "equaled": [ + 185 + ], + "or": [ + 186 + ], + "bettered": [ + 187 + ], + "complete": [ + 191 + ], + "set.": [ + 193 + ], + "degraded": [ + 196 + ], + "performance": [ + 199 + ], + "cases": [ + 201, + 246 + ], + "where": [ + 202 + ], + "some": [ + 203 + ], + "predictive": [ + 210 + ], + "very": [ + 212 + ], + "small": [ + 213, + 261 + ], + "areas": [ + 214 + ], + "space.": [ + 218 + ], + " \\n \\nFurther": [ + 219 + ], + "compared": [ + 221 + ], + "wrapper": [ + 225, + 259 + ], + "-": [ + 226 + ], + "known": [ + 229 + ], + "approach": [ + 230 + ], + "employs": [ + 235 + ], + "target": [ + 237 + ], + "evaluate": [ + 241 + ], + "sets.": [ + 243 + ], + "many": [ + 245, + 265 + ], + "gave": [ + 248, + 329 + ], + "comparable": [ + 249 + ], + "results": [ + 250, + 332 + ], + "wrapper,": [ + 253, + 270 + ], + "general,": [ + 256 + ], + "outperformed": [ + 257 + ], + "executes": [ + 264 + ], + "times": [ + 266 + ], + "faster": [ + 267 + ], + "than": [ + 268, + 333 + ], + "allows": [ + 272 + ], + "it": [ + 273 + ], + "scale": [ + 275 + ], + "larger": [ + 277 + ], + "datasets. \\n \\nTwo": [ + 278 + ], + "methods": [ + 279, + 316 + ], + "extending": [ + 281 + ], + "handle": [ + 284 + ], + "interaction": [ + 286 + ], + "presented": [ + 288 + ], + "experimentally": [ + 290 + ], + "evaluated.": [ + 291 + ], + "first": [ + 293 + ], + "considers": [ + 294 + ], + "pairs": [ + 295 + ], + "second": [ + 300 + ], + "incorporates": [ + 301 + ], + "weights": [ + 303, + 335 + ], + "calculated": [ + 304 + ], + "RELIEF": [ + 307 + ], + "algorithm.": [ + 308 + ], + "domains": [ + 312 + ], + "both": [ + 315 + ], + "able": [ + 318 + ], + "identify": [ + 320 + ], + "interacting": [ + 321 + ], + "pairwise": [ + 327 + ], + "method": [ + 328 + ], + "more": [ + 330 + ], + "reliable": [ + 331 + ], + "provided": [ + 336 + ], + "RELIEF.": [ + 338 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 38 + }, + { + "year": 2024, + "cited_by_count": 89 + }, + { + "year": 2023, + "cited_by_count": 147 + }, + { + "year": 2022, + "cited_by_count": 181 + }, + { + "year": 2021, + "cited_by_count": 299 + }, + { + "year": 2020, + "cited_by_count": 287 + }, + { + "year": 2019, + "cited_by_count": 295 + }, + { + "year": 2018, + "cited_by_count": 296 + }, + { + "year": 2017, + "cited_by_count": 277 + }, + { + "year": 2016, + "cited_by_count": 271 + }, + { + "year": 2015, + "cited_by_count": 264 + }, + { + "year": 2014, + "cited_by_count": 238 + }, + { + "year": 2013, + "cited_by_count": 181 + }, + { + "year": 2012, + "cited_by_count": 163 + } + ], + "updated_date": "2025-11-06T04:12:42.849631", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2594183968", + "doi": "https://doi.org/10.1039/c7sc02664a", + "title": "MoleculeNet: a benchmark for molecular machine learning", + "display_name": "MoleculeNet: a benchmark for molecular machine learning", + "relevance_score": 3869.809, + "publication_year": 2017, + "publication_date": "2017-10-31", + "ids": { + "openalex": "https://openalex.org/W2594183968", + "doi": "https://doi.org/10.1039/c7sc02664a", + "mag": "2594183968", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29629118" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "diamond", + "oa_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5054988040", + "display_name": "Zhenqin Wu", + "orcid": "https://orcid.org/0000-0002-0148-7055" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zhenqin Wu", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0148-7055", + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039641760", + "display_name": "Bharath Ramsundar", + "orcid": "https://orcid.org/0000-0001-8450-4262" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Bharath Ramsundar", + "raw_affiliation_strings": [ + "Department of Computer Science", + "Stanford", + "Stanford University", + "USA", + "Department of Computer Science, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Computer Science, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5011983540", + "display_name": "Evan N. Feinberg", + "orcid": "https://orcid.org/0000-0002-7989-8751" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evan N. Feinberg", + "raw_affiliation_strings": [ + "Program in Biophysics", + "Stanford", + "Stanford School of Medicine", + "USA", + "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Program in Biophysics", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford School of Medicine", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5044158176", + "display_name": "Joseph Gomes", + "orcid": "https://orcid.org/0000-0002-0755-0641" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Joseph Gomes", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0755-0641", + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069546508", + "display_name": "Caleb Geniesse", + "orcid": "https://orcid.org/0000-0002-7897-8338" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Caleb Geniesse", + "raw_affiliation_strings": [ + "Program in Biophysics", + "Stanford", + "Stanford School of Medicine", + "USA", + "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Program in Biophysics", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford School of Medicine", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015493289", + "display_name": "Aneesh Pappu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Aneesh S. Pappu", + "raw_affiliation_strings": [ + "Department of Computer Science", + "Stanford", + "Stanford University", + "USA", + "Department of Computer Science, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Computer Science, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004322104", + "display_name": "Karl Leswing", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I203455613", + "display_name": "Schrodinger (United States)", + "ror": "https://ror.org/05a3z6914", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I203455613" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karl Leswing", + "raw_affiliation_strings": [ + "Schrodinger Inc", + "USA", + "Schrodinger Inc., USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Schrodinger Inc", + "institution_ids": [ + "https://openalex.org/I203455613" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Schrodinger Inc., USA", + "institution_ids": [ + "https://openalex.org/I203455613" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5032418986", + "display_name": "Vijay S. Pande", + "orcid": "https://orcid.org/0000-0003-2774-1178" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Vijay Pande", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 8, + "corresponding_author_ids": [ + "https://openalex.org/A5032418986" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 128.6995, + "has_fulltext": true, + "cited_by_count": 2910, + "citation_normalized_percentile": { + "value": 0.9998827, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "9", + "issue": "2", + "first_page": "513", + "last_page": "530" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10044", + "display_name": "Protein Structure and Dynamics", + "score": 0.9779999852180481, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/benchmark", + "display_name": "Benchmark (surveying)", + "score": 0.9469650983810425 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6600202322006226 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6345625519752502 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6119014024734497 + }, + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.5160343647003174 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.04847747087478638 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.04328623414039612 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C185798385", + "wikidata": "https://www.wikidata.org/wiki/Q1161707", + "display_name": "Benchmark (surveying)", + "level": 2, + "score": 0.9469650983810425 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6600202322006226 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6345625519752502 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6119014024734497 + }, + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.5160343647003174 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.04847747087478638 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.04328623414039612 + }, + { + "id": "https://openalex.org/C13280743", + "wikidata": "https://www.wikidata.org/wiki/Q131089", + "display_name": "Geodesy", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:29629118", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29629118", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical science", + "raw_type": null + }, + { + "id": "pmh:oai:europepmc.org:4794812", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5868307", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + }, + { + "id": "pmh:oai:hub.hku.hk:10722/354386", + "is_oa": false, + "landing_page_url": "https://hub.hku.hk/handle/10722/354386", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196271", + "display_name": "The HKU Scholars Hub (University of Hong Kong)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I889458895", + "host_organization_name": "University of Hong Kong", + "host_organization_lineage": [ + "https://openalex.org/I889458895" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Article" + } + ], + "best_oa_location": { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G4484533445", + "display_name": null, + "funder_award_id": "GM062868", + "funder_id": "https://openalex.org/F4320332161", + "funder_display_name": "National Institutes of Health" + }, + { + "id": "https://openalex.org/G7442115961", + "display_name": null, + "funder_award_id": "U19 AI109662", + "funder_id": "https://openalex.org/F4320332161", + "funder_display_name": "National Institutes of Health" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320308782", + "display_name": "Hertz Foundation", + "ror": "https://ror.org/01ycgxf29" + }, + { + "id": "https://openalex.org/F4320332161", + "display_name": "National Institutes of Health", + "ror": "https://ror.org/01cwqze88" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2594183968.pdf", + "grobid_xml": "https://content.openalex.org/works/W2594183968.grobid-xml" + }, + "referenced_works_count": 64, + "referenced_works": [ + "https://openalex.org/W655356045", + "https://openalex.org/W1579198272", + "https://openalex.org/W1601495365", + "https://openalex.org/W1678356000", + "https://openalex.org/W1738019091", + "https://openalex.org/W1780364926", + "https://openalex.org/W1964513093", + "https://openalex.org/W1975147762", + "https://openalex.org/W1985748743", + "https://openalex.org/W1988037271", + "https://openalex.org/W1993046136", + "https://openalex.org/W1993285168", + "https://openalex.org/W1995808589", + "https://openalex.org/W1996327711", + "https://openalex.org/W1998056319", + "https://openalex.org/W1999798000", + "https://openalex.org/W2001816314", + "https://openalex.org/W2008505552", + "https://openalex.org/W2010700988", + "https://openalex.org/W2019678805", + "https://openalex.org/W2024046085", + "https://openalex.org/W2025444507", + "https://openalex.org/W2033206800", + "https://openalex.org/W2046589863", + "https://openalex.org/W2060531713", + "https://openalex.org/W2060565460", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076498053", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081454243", + "https://openalex.org/W2081580037", + "https://openalex.org/W2085126686", + "https://openalex.org/W2085312881", + "https://openalex.org/W2092285329", + "https://openalex.org/W2096560421", + "https://openalex.org/W2101234009", + "https://openalex.org/W2104489082", + "https://openalex.org/W2114162221", + "https://openalex.org/W2114704115", + "https://openalex.org/W2117539524", + "https://openalex.org/W2119821739", + "https://openalex.org/W2127330184", + "https://openalex.org/W2127644822", + "https://openalex.org/W2139271038", + "https://openalex.org/W2145578524", + "https://openalex.org/W2153693853", + "https://openalex.org/W2170214641", + "https://openalex.org/W2171830166", + "https://openalex.org/W2290847742", + "https://openalex.org/W2319902168", + "https://openalex.org/W2406943157", + "https://openalex.org/W2461470610", + "https://openalex.org/W2461620095", + "https://openalex.org/W2473190403", + "https://openalex.org/W2606780347", + "https://openalex.org/W2734982589", + "https://openalex.org/W2753558426", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2914584698", + "https://openalex.org/W2919115771", + "https://openalex.org/W3100157108", + "https://openalex.org/W3102449990", + "https://openalex.org/W3102797483" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4387369504", + "https://openalex.org/W3046775127", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3107602296", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474" + ], + "abstract_inverted_index": { + "Molecular": [ + 0 + ], + "machine": [ + 1, + 22, + 82, + 128 + ], + "learning": [ + 2, + 23, + 106, + 129, + 177 + ], + "has": [ + 3, + 36 + ], + "been": [ + 4, + 37 + ], + "maturing": [ + 5 + ], + "rapidly": [ + 6 + ], + "over": [ + 7 + ], + "the": [ + 8, + 15, + 41, + 49, + 67, + 112, + 133, + 164 + ], + "last": [ + 9 + ], + "few": [ + 10 + ], + "years.": [ + 11 + ], + "Improved": [ + 12 + ], + "methods": [ + 13 + ], + "and": [ + 14, + 93, + 105, + 130, + 154, + 161 + ], + "presence": [ + 16 + ], + "of": [ + 17, + 43, + 51, + 69, + 99, + 111, + 166, + 175 + ], + "larger": [ + 18 + ], + "datasets": [ + 19, + 61 + ], + "have": [ + 20 + ], + "enabled": [ + 21 + ], + "algorithms": [ + 24, + 56, + 107 + ], + "to": [ + 25, + 40, + 47, + 65, + 146 + ], + "make": [ + 26 + ], + "increasingly": [ + 27 + ], + "accurate": [ + 28 + ], + "predictions": [ + 29 + ], + "about": [ + 30 + ], + "molecular": [ + 31, + 81, + 103, + 127 + ], + "properties.": [ + 32 + ], + "However,": [ + 33, + 136 + ], + "algorithmic": [ + 34 + ], + "progress": [ + 35 + ], + "limited": [ + 38 + ], + "due": [ + 39 + ], + "lack": [ + 42 + ], + "a": [ + 44, + 76 + ], + "standard": [ + 45 + ], + "benchmark": [ + 46, + 79 + ], + "compare": [ + 48 + ], + "efficacy": [ + 50 + ], + "proposed": [ + 52, + 70, + 102 + ], + "methods;": [ + 53 + ], + "most": [ + 54 + ], + "new": [ + 55 + ], + "are": [ + 57, + 123 + ], + "benchmarked": [ + 58 + ], + "on": [ + 59 + ], + "different": [ + 60 + ], + "making": [ + 62 + ], + "it": [ + 63 + ], + "challenging": [ + 64 + ], + "gauge": [ + 66 + ], + "quality": [ + 68, + 96 + ], + "methods.": [ + 71 + ], + "This": [ + 72 + ], + "work": [ + 73 + ], + "introduces": [ + 74 + ], + "MoleculeNet,": [ + 75 + ], + "large": [ + 77 + ], + "scale": [ + 78 + ], + "for": [ + 80, + 91, + 126 + ], + "learning.": [ + 83 + ], + "MoleculeNet": [ + 84, + 117 + ], + "curates": [ + 85 + ], + "multiple": [ + 86, + 100 + ], + "public": [ + 87 + ], + "datasets,": [ + 88, + 163 + ], + "establishes": [ + 89 + ], + "metrics": [ + 90 + ], + "evaluation,": [ + 92 + ], + "offers": [ + 94 + ], + "high": [ + 95 + ], + "open-source": [ + 97 + ], + "implementations": [ + 98 + ], + "previously": [ + 101 + ], + "featurization": [ + 104 + ], + "(released": [ + 108 + ], + "as": [ + 109 + ], + "part": [ + 110 + ], + "DeepChem": [ + 113 + ], + "open": [ + 114 + ], + "source": [ + 115 + ], + "library).": [ + 116 + ], + "benchmarks": [ + 118 + ], + "demonstrate": [ + 119 + ], + "that": [ + 120 + ], + "learnable": [ + 121 + ], + "representations": [ + 122, + 143 + ], + "powerful": [ + 124 + ], + "tools": [ + 125 + ], + "broadly": [ + 131 + ], + "offer": [ + 132 + ], + "best": [ + 134 + ], + "performance.": [ + 135 + ], + "this": [ + 137 + ], + "result": [ + 138 + ], + "comes": [ + 139 + ], + "with": [ + 140, + 148 + ], + "caveats.": [ + 141 + ], + "Learnable": [ + 142 + ], + "still": [ + 144 + ], + "struggle": [ + 145 + ], + "deal": [ + 147 + ], + "complex": [ + 149 + ], + "tasks": [ + 150 + ], + "under": [ + 151 + ], + "data": [ + 152 + ], + "scarcity": [ + 153 + ], + "highly": [ + 155 + ], + "imbalanced": [ + 156 + ], + "classification.": [ + 157 + ], + "For": [ + 158 + ], + "quantum": [ + 159 + ], + "mechanical": [ + 160 + ], + "biophysical": [ + 162 + ], + "use": [ + 165 + ], + "physics-aware": [ + 167 + ], + "featurizations": [ + 168 + ], + "can": [ + 169 + ], + "be": [ + 170 + ], + "more": [ + 171 + ], + "important": [ + 172 + ], + "than": [ + 173 + ], + "choice": [ + 174 + ], + "particular": [ + 176 + ], + "algorithm.": [ + 178 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 185 + }, + { + "year": 2025, + "cited_by_count": 534 + }, + { + "year": 2024, + "cited_by_count": 510 + }, + { + "year": 2023, + "cited_by_count": 422 + }, + { + "year": 2022, + "cited_by_count": 374 + }, + { + "year": 2021, + "cited_by_count": 351 + }, + { + "year": 2020, + "cited_by_count": 292 + }, + { + "year": 2019, + "cited_by_count": 157 + }, + { + "year": 2018, + "cited_by_count": 75 + }, + { + "year": 2017, + "cited_by_count": 6 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2594475271", + "doi": "https://doi.org/10.48550/arxiv.1702.08608", + "title": "Towards A Rigorous Science of Interpretable Machine Learning", + "display_name": "Towards A Rigorous Science of Interpretable Machine Learning", + "relevance_score": 3832.6755, + "publication_year": 2017, + "publication_date": "2017-02-28", + "ids": { + "openalex": "https://openalex.org/W2594475271", + "doi": "https://doi.org/10.48550/arxiv.1702.08608", + "mag": "2594475271" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1702.08608", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5038771285", + "display_name": "Finale Doshi‐Velez", + "orcid": "https://orcid.org/0000-0003-2886-3898" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Doshi-Velez, Finale", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5041405652", + "display_name": "Been Kim", + "orcid": "https://orcid.org/0000-0001-9938-2915" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kim, Been", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5038771285" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 3136, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9822999835014343, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.989424467086792 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7579805850982666 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.723967432975769 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6432822346687317 + }, + { + "id": "https://openalex.org/keywords/taxonomy", + "display_name": "Taxonomy (biology)", + "score": 0.535308837890625 + }, + { + "id": "https://openalex.org/keywords/position-paper", + "display_name": "Position paper", + "score": 0.4703657329082489 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.989424467086792 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7579805850982666 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.723967432975769 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6432822346687317 + }, + { + "id": "https://openalex.org/C58642233", + "wikidata": "https://www.wikidata.org/wiki/Q8269924", + "display_name": "Taxonomy (biology)", + "level": 2, + "score": 0.535308837890625 + }, + { + "id": "https://openalex.org/C78780964", + "wikidata": "https://www.wikidata.org/wiki/Q7233193", + "display_name": "Position paper", + "level": 2, + "score": 0.4703657329082489 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1702.08608", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1702.08608", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions", + "score": 0.4399999976158142 + }, + { + "id": "https://metadata.un.org/sdg/10", + "display_name": "Reduced inequalities", + "score": 0.4300000071525574 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W65833265", + "https://openalex.org/W190506616", + "https://openalex.org/W214705575", + "https://openalex.org/W1570088706", + "https://openalex.org/W1757796397", + "https://openalex.org/W1983870751", + "https://openalex.org/W1994757764", + "https://openalex.org/W2008174170", + "https://openalex.org/W2100960835", + "https://openalex.org/W2119858020", + "https://openalex.org/W2132862423", + "https://openalex.org/W2159426623", + "https://openalex.org/W2160336621", + "https://openalex.org/W2187558068", + "https://openalex.org/W2189162242", + "https://openalex.org/W2257979135", + "https://openalex.org/W2336395599", + "https://openalex.org/W2367397349", + "https://openalex.org/W2440159969", + "https://openalex.org/W2462906003", + "https://openalex.org/W2493343568", + "https://openalex.org/W2528479067", + "https://openalex.org/W2560479124", + "https://openalex.org/W2567527106", + "https://openalex.org/W2951501516", + "https://openalex.org/W2964134873" + ], + "related_works": [ + "https://openalex.org/W1986582023", + "https://openalex.org/W2961085424", + "https://openalex.org/W2966829450", + "https://openalex.org/W4315864862", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694" + ], + "abstract_inverted_index": { + "As": [ + 0 + ], + "machine": [ + 1, + 15, + 53, + 100 + ], + "learning": [ + 2, + 54 + ], + "systems": [ + 3, + 17 + ], + "become": [ + 4 + ], + "ubiquitous,": [ + 5 + ], + "there": [ + 6, + 45 + ], + "has": [ + 7 + ], + "been": [ + 8 + ], + "a": [ + 9, + 84, + 94 + ], + "surge": [ + 10 + ], + "of": [ + 11, + 98 + ], + "interest": [ + 12, + 42 + ], + "in": [ + 13, + 43 + ], + "interpretable": [ + 14, + 52, + 99 + ], + "learning:": [ + 16 + ], + "that": [ + 18 + ], + "provide": [ + 19 + ], + "explanation": [ + 20 + ], + "for": [ + 21, + 86 + ], + "their": [ + 22 + ], + "outputs.": [ + 23 + ], + "These": [ + 24 + ], + "explanations": [ + 25 + ], + "are": [ + 26 + ], + "often": [ + 27 + ], + "used": [ + 28 + ], + "to": [ + 29 + ], + "qualitatively": [ + 30 + ], + "assess": [ + 31 + ], + "other": [ + 32 + ], + "criteria": [ + 33 + ], + "such": [ + 34 + ], + "as": [ + 35 + ], + "safety": [ + 36 + ], + "or": [ + 37 + ], + "non-discrimination.": [ + 38 + ], + "However,": [ + 39 + ], + "despite": [ + 40 + ], + "the": [ + 41 + ], + "interpretability,": [ + 44 + ], + "is": [ + 46, + 55, + 74, + 79 + ], + "very": [ + 47 + ], + "little": [ + 48 + ], + "consensus": [ + 49 + ], + "on": [ + 50 + ], + "what": [ + 51 + ], + "and": [ + 56, + 70, + 89 + ], + "how": [ + 57 + ], + "it": [ + 58, + 78 + ], + "should": [ + 59 + ], + "be": [ + 60 + ], + "measured.": [ + 61 + ], + "In": [ + 62 + ], + "this": [ + 63 + ], + "position": [ + 64 + ], + "paper,": [ + 65 + ], + "we": [ + 66, + 82 + ], + "first": [ + 67 + ], + "define": [ + 68 + ], + "interpretability": [ + 69, + 73 + ], + "describe": [ + 71 + ], + "when": [ + 72, + 77 + ], + "needed": [ + 75 + ], + "(and": [ + 76 + ], + "not).": [ + 80 + ], + "Next,": [ + 81 + ], + "suggest": [ + 83 + ], + "taxonomy": [ + 85 + ], + "rigorous": [ + 87, + 96 + ], + "evaluation": [ + 88 + ], + "expose": [ + 90 + ], + "open": [ + 91 + ], + "questions": [ + 92 + ], + "towards": [ + 93 + ], + "more": [ + 95 + ], + "science": [ + 97 + ], + "learning.": [ + 101 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 46 + }, + { + "year": 2025, + "cited_by_count": 334 + }, + { + "year": 2024, + "cited_by_count": 390 + }, + { + "year": 2023, + "cited_by_count": 427 + }, + { + "year": 2022, + "cited_by_count": 338 + }, + { + "year": 2021, + "cited_by_count": 597 + }, + { + "year": 2020, + "cited_by_count": 488 + }, + { + "year": 2019, + "cited_by_count": 319 + }, + { + "year": 2018, + "cited_by_count": 164 + }, + { + "year": 2017, + "cited_by_count": 32 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2007339694", + "doi": "https://doi.org/10.1109/msp.2012.2211477", + "title": "The MNIST Database of Handwritten Digit Images for Machine Learning Research [Best of the Web]", + "display_name": "The MNIST Database of Handwritten Digit Images for Machine Learning Research [Best of the Web]", + "relevance_score": 3801.1765, + "publication_year": 2012, + "publication_date": "2012-10-19", + "ids": { + "openalex": "https://openalex.org/W2007339694", + "doi": "https://doi.org/10.1109/msp.2012.2211477", + "mag": "2007339694" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/msp.2012.2211477", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/msp.2012.2211477", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S120977877", + "display_name": "IEEE Signal Processing Magazine", + "issn_l": "1053-5888", + "issn": [ + "1053-5888", + "1558-0792" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Signal Processing Magazine", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5100671326", + "display_name": "Li Deng", + "orcid": "https://orcid.org/0000-0002-7140-0701" + }, + "institutions": [ + { + "id": "https://openalex.org/I1290206253", + "display_name": "Microsoft (United States)", + "ror": "https://ror.org/00d0nc645", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Li Deng", + "raw_affiliation_strings": [ + "Microsoft Research, Redmond, WA, USA", + "[Microsoft Research,Redmond,WA,USA]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Microsoft Research, Redmond, WA, USA", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + }, + { + "raw_affiliation_string": "[Microsoft Research,Redmond,WA,USA]", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5100671326" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1290206253" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 4.4394, + "has_fulltext": false, + "cited_by_count": 4581, + "citation_normalized_percentile": { + "value": 0.95131101, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "29", + "issue": "6", + "first_page": "141", + "last_page": "142" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10601", + "display_name": "Handwritten Text Recognition Techniques", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10601", + "display_name": "Handwritten Text Recognition Techniques", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9983999729156494, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10627", + "display_name": "Advanced Image and Video Retrieval Techniques", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.9717313051223755 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8078590035438538 + }, + { + "id": "https://openalex.org/keywords/optical-character-recognition", + "display_name": "Optical character recognition", + "score": 0.6577181220054626 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6341533660888672 + }, + { + "id": "https://openalex.org/keywords/handwriting-recognition", + "display_name": "Handwriting recognition", + "score": 0.5454277992248535 + }, + { + "id": "https://openalex.org/keywords/numerical-digit", + "display_name": "Numerical digit", + "score": 0.544492244720459 + }, + { + "id": "https://openalex.org/keywords/digit-recognition", + "display_name": "Digit recognition", + "score": 0.5283616185188293 + }, + { + "id": "https://openalex.org/keywords/character", + "display_name": "Character (mathematics)", + "score": 0.5253086686134338 + }, + { + "id": "https://openalex.org/keywords/intelligent-word-recognition", + "display_name": "Intelligent word recognition", + "score": 0.47909122705459595 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.43089044094085693 + }, + { + "id": "https://openalex.org/keywords/character-recognition", + "display_name": "Character recognition", + "score": 0.4222016930580139 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.4071904420852661 + }, + { + "id": "https://openalex.org/keywords/speech-recognition", + "display_name": "Speech recognition", + "score": 0.39158111810684204 + }, + { + "id": "https://openalex.org/keywords/intelligent-character-recognition", + "display_name": "Intelligent character recognition", + "score": 0.3735637962818146 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.3423413634300232 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.27770859003067017 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.24367356300354004 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1194082498550415 + }, + { + "id": "https://openalex.org/keywords/arithmetic", + "display_name": "Arithmetic", + "score": 0.07683056592941284 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.07060250639915466 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.9717313051223755 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8078590035438538 + }, + { + "id": "https://openalex.org/C546480517", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Optical character recognition", + "level": 3, + "score": 0.6577181220054626 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6341533660888672 + }, + { + "id": "https://openalex.org/C112640561", + "wikidata": "https://www.wikidata.org/wiki/Q2440634", + "display_name": "Handwriting recognition", + "level": 3, + "score": 0.5454277992248535 + }, + { + "id": "https://openalex.org/C94957134", + "wikidata": "https://www.wikidata.org/wiki/Q82990", + "display_name": "Numerical digit", + "level": 2, + "score": 0.544492244720459 + }, + { + "id": "https://openalex.org/C2984784707", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Digit recognition", + "level": 3, + "score": 0.5283616185188293 + }, + { + "id": "https://openalex.org/C2780861071", + "wikidata": "https://www.wikidata.org/wiki/Q1062934", + "display_name": "Character (mathematics)", + "level": 2, + "score": 0.5253086686134338 + }, + { + "id": "https://openalex.org/C17649283", + "wikidata": "https://www.wikidata.org/wiki/Q6044162", + "display_name": "Intelligent word recognition", + "level": 5, + "score": 0.47909122705459595 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.43089044094085693 + }, + { + "id": "https://openalex.org/C2987247673", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Character recognition", + "level": 3, + "score": 0.4222016930580139 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.4071904420852661 + }, + { + "id": "https://openalex.org/C28490314", + "wikidata": "https://www.wikidata.org/wiki/Q189436", + "display_name": "Speech recognition", + "level": 1, + "score": 0.39158111810684204 + }, + { + "id": "https://openalex.org/C44868376", + "wikidata": "https://www.wikidata.org/wiki/Q3099089", + "display_name": "Intelligent character recognition", + "level": 4, + "score": 0.3735637962818146 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.3423413634300232 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.27770859003067017 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.24367356300354004 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1194082498550415 + }, + { + "id": "https://openalex.org/C94375191", + "wikidata": "https://www.wikidata.org/wiki/Q11205", + "display_name": "Arithmetic", + "level": 1, + "score": 0.07683056592941284 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.07060250639915466 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/msp.2012.2211477", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/msp.2012.2211477", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S120977877", + "display_name": "IEEE Signal Processing Magazine", + "issn_l": "1053-5888", + "issn": [ + "1053-5888", + "1558-0792" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Signal Processing Magazine", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 8, + "referenced_works": [ + "https://openalex.org/W2033154814", + "https://openalex.org/W2112796928", + "https://openalex.org/W2139622435", + "https://openalex.org/W2148461049", + "https://openalex.org/W2149600041", + "https://openalex.org/W2156163116", + "https://openalex.org/W2546302380", + "https://openalex.org/W6681813608" + ], + "related_works": [ + "https://openalex.org/W2218402054", + "https://openalex.org/W4384296853", + "https://openalex.org/W954954433", + "https://openalex.org/W4309724674", + "https://openalex.org/W2557740161", + "https://openalex.org/W2135329887", + "https://openalex.org/W2011042697", + "https://openalex.org/W3200113662", + "https://openalex.org/W2153054283", + "https://openalex.org/W3112133370" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "this": [ + 1 + ], + "issue,": [ + 2 + ], + "“Best": [ + 3 + ], + "of": [ + 4, + 12, + 19, + 22 + ], + "the": [ + 5, + 8 + ], + "Web”": [ + 6 + ], + "presents": [ + 7 + ], + "modified": [ + 9 + ], + "National": [ + 10 + ], + "Institute": [ + 11 + ], + "Standards": [ + 13 + ], + "and": [ + 14, + 32 + ], + "Technology": [ + 15 + ], + "(MNIST)": [ + 16 + ], + "resources,": [ + 17 + ], + "consisting": [ + 18 + ], + "a": [ + 20 + ], + "collection": [ + 21 + ], + "handwritten": [ + 23 + ], + "digit": [ + 24 + ], + "images": [ + 25 + ], + "used": [ + 26 + ], + "extensively": [ + 27 + ], + "in": [ + 28 + ], + "optical": [ + 29 + ], + "character": [ + 30 + ], + "recognition": [ + 31 + ], + "machine": [ + 33 + ], + "learning": [ + 34 + ], + "research.": [ + 35 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 234 + }, + { + "year": 2025, + "cited_by_count": 1000 + }, + { + "year": 2024, + "cited_by_count": 1002 + }, + { + "year": 2023, + "cited_by_count": 905 + }, + { + "year": 2022, + "cited_by_count": 527 + }, + { + "year": 2021, + "cited_by_count": 366 + }, + { + "year": 2020, + "cited_by_count": 258 + }, + { + "year": 2019, + "cited_by_count": 167 + }, + { + "year": 2018, + "cited_by_count": 50 + }, + { + "year": 2017, + "cited_by_count": 37 + }, + { + "year": 2016, + "cited_by_count": 19 + }, + { + "year": 2015, + "cited_by_count": 9 + }, + { + "year": 2014, + "cited_by_count": 5 + }, + { + "year": 2013, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W607505555", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "title": "Understanding Machine Learning: From Theory To Algorithms", + "display_name": "Understanding Machine Learning: From Theory To Algorithms", + "relevance_score": 3784.7166, + "publication_year": 2015, + "publication_date": "2015-01-01", + "ids": { + "openalex": "https://openalex.org/W607505555", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "mag": "607505555" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027241732", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027241732&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5078263052", + "display_name": "Shai Shalev‐Shwartz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I197251160", + "display_name": "Hebrew University of Jerusalem", + "ror": "https://ror.org/03qxff017", + "country_code": "IL", + "type": "education", + "lineage": [ + "https://openalex.org/I197251160" + ] + } + ], + "countries": [ + "IL" + ], + "is_corresponding": true, + "raw_author_name": "Shai Shalev‐Shwartz", + "raw_affiliation_strings": [ + "Hebrew University of Jerusalem ," + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hebrew University of Jerusalem ,", + "institution_ids": [ + "https://openalex.org/I197251160" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5112193907", + "display_name": "Shai Ben-David", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I151746483", + "display_name": "University of Waterloo", + "ror": "https://ror.org/01aff2v68", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I151746483" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Shai Ben-David", + "raw_affiliation_strings": [ + "University of Waterloo, Ontario#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Waterloo, Ontario#TAB#", + "institution_ids": [ + "https://openalex.org/I151746483" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5078263052" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I197251160" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 99.395, + "has_fulltext": false, + "cited_by_count": 3088, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12002", + "display_name": "Computability, Logic, AI Algorithms", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6889339685440063 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6654757261276245 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.6018842458724976 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5886845588684082 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.573776364326477 + }, + { + "id": "https://openalex.org/keywords/stability", + "display_name": "Stability (learning theory)", + "score": 0.5710829496383667 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.5549349784851074 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.5015144348144531 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4825989007949829 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.4673505127429962 + }, + { + "id": "https://openalex.org/keywords/convexity", + "display_name": "Convexity", + "score": 0.4466382563114166 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.4228948950767517 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.3927263915538788 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2105390727519989 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6889339685440063 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6654757261276245 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.6018842458724976 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5886845588684082 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.573776364326477 + }, + { + "id": "https://openalex.org/C112972136", + "wikidata": "https://www.wikidata.org/wiki/Q7595718", + "display_name": "Stability (learning theory)", + "level": 2, + "score": 0.5710829496383667 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.5549349784851074 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.5015144348144531 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4825989007949829 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.4673505127429962 + }, + { + "id": "https://openalex.org/C72134830", + "wikidata": "https://www.wikidata.org/wiki/Q5166524", + "display_name": "Convexity", + "level": 2, + "score": 0.4466382563114166 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.4228948950767517 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.3927263915538788 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2105390727519989 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106159729", + "wikidata": "https://www.wikidata.org/wiki/Q2294553", + "display_name": "Financial economics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027241732", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027241732&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028014298", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/CBO9781107298019", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:607505555", + "is_oa": false, + "landing_page_url": "https://www.cs.huji.ac.il/~shais/UnderstandingMachineLearning/understanding-machine-learning-theory-algorithms.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.699999988079071 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 192, + "referenced_works": [ + "https://openalex.org/W740415", + "https://openalex.org/W2169610", + "https://openalex.org/W27434444", + "https://openalex.org/W27926580", + "https://openalex.org/W60189517", + "https://openalex.org/W65382156", + "https://openalex.org/W88685657", + "https://openalex.org/W108503560", + "https://openalex.org/W182746352", + "https://openalex.org/W182881619", + "https://openalex.org/W1153891179", + "https://openalex.org/W1480376833", + "https://openalex.org/W1491105865", + "https://openalex.org/W1499397922", + "https://openalex.org/W1503398984", + "https://openalex.org/W1505356468", + "https://openalex.org/W1505731132", + "https://openalex.org/W1511986666", + "https://openalex.org/W1516903196", + "https://openalex.org/W1520252399", + "https://openalex.org/W1526146785", + "https://openalex.org/W1530699444", + "https://openalex.org/W1538131130", + "https://openalex.org/W1540155273", + "https://openalex.org/W1540586255", + "https://openalex.org/W1541527977", + "https://openalex.org/W1542886316", + "https://openalex.org/W1553702074", + "https://openalex.org/W1560724230", + "https://openalex.org/W1564947197", + "https://openalex.org/W1570963478", + "https://openalex.org/W1587157779", + "https://openalex.org/W1590183771", + "https://openalex.org/W1601740268", + "https://openalex.org/W1607832978", + "https://openalex.org/W1614597761", + "https://openalex.org/W1663973292", + "https://openalex.org/W1676820704", + "https://openalex.org/W1686946872", + "https://openalex.org/W1698155719", + "https://openalex.org/W1790582767", + "https://openalex.org/W1926592634", + "https://openalex.org/W1931645998", + "https://openalex.org/W1968934255", + "https://openalex.org/W1970074386", + "https://openalex.org/W1971361630", + "https://openalex.org/W1976697079", + "https://openalex.org/W1979711143", + "https://openalex.org/W1981207991", + "https://openalex.org/W1981340104", + "https://openalex.org/W1982381767", + "https://openalex.org/W1984876737", + "https://openalex.org/W1988355994", + "https://openalex.org/W1988790447", + "https://openalex.org/W1992208280", + "https://openalex.org/W1994520254", + "https://openalex.org/W1994584977", + "https://openalex.org/W1994616650", + "https://openalex.org/W2005140191", + "https://openalex.org/W2005306124", + "https://openalex.org/W2008652694", + "https://openalex.org/W2012400640", + "https://openalex.org/W2014384147", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015418199", + "https://openalex.org/W2016133707", + "https://openalex.org/W2017753243", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020913456", + "https://openalex.org/W2021302824", + "https://openalex.org/W2025263811", + "https://openalex.org/W2028781966", + "https://openalex.org/W2029029543", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030449718", + "https://openalex.org/W2030811966", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041613709", + "https://openalex.org/W2048448061", + "https://openalex.org/W2054658115", + "https://openalex.org/W2055186664", + "https://openalex.org/W2059507684", + "https://openalex.org/W2059811159", + "https://openalex.org/W2069936846", + "https://openalex.org/W2070771761", + "https://openalex.org/W2070902649", + "https://openalex.org/W2071846104", + "https://openalex.org/W2072128103", + "https://openalex.org/W2075567596", + "https://openalex.org/W2076451537", + "https://openalex.org/W2077008409", + "https://openalex.org/W2077424406", + "https://openalex.org/W2077723394", + "https://openalex.org/W2084544490", + "https://openalex.org/W2084840427", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087347434", + "https://openalex.org/W2091825929", + "https://openalex.org/W2093717447", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096879261", + "https://openalex.org/W2097931325", + "https://openalex.org/W2101276256", + "https://openalex.org/W2102486516", + "https://openalex.org/W2103194807", + "https://openalex.org/W2105594594", + "https://openalex.org/W2105644991", + "https://openalex.org/W2106596127", + "https://openalex.org/W2106948187", + "https://openalex.org/W2109943925", + "https://openalex.org/W2111004121", + "https://openalex.org/W2112269233", + "https://openalex.org/W2113651538", + "https://openalex.org/W2116314036", + "https://openalex.org/W2117049614", + "https://openalex.org/W2117130368", + "https://openalex.org/W2118075434", + "https://openalex.org/W2119479037", + "https://openalex.org/W2119821739", + "https://openalex.org/W2121127625", + "https://openalex.org/W2121367301", + "https://openalex.org/W2122111042", + "https://openalex.org/W2123921160", + "https://openalex.org/W2125055259", + "https://openalex.org/W2129113961", + "https://openalex.org/W2129131372", + "https://openalex.org/W2129160848", + "https://openalex.org/W2130325614", + "https://openalex.org/W2132914434", + "https://openalex.org/W2135046866", + "https://openalex.org/W2136885855", + "https://openalex.org/W2136922672", + "https://openalex.org/W2138263042", + "https://openalex.org/W2139338362", + "https://openalex.org/W2139427956", + "https://openalex.org/W2140095548", + "https://openalex.org/W2142623206", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148603752", + "https://openalex.org/W2148825261", + "https://openalex.org/W2149706766", + "https://openalex.org/W2150434953", + "https://openalex.org/W2150940164", + "https://openalex.org/W2151554678", + "https://openalex.org/W2151693816", + "https://openalex.org/W2154642048", + "https://openalex.org/W2154952480", + "https://openalex.org/W2155195660", + "https://openalex.org/W2155534369", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2160354932", + "https://openalex.org/W2162341153", + "https://openalex.org/W2164595191", + "https://openalex.org/W2168022998", + "https://openalex.org/W2170207925", + "https://openalex.org/W2222512263", + "https://openalex.org/W2253807446", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2296616510", + "https://openalex.org/W2329579984", + "https://openalex.org/W2395092015", + "https://openalex.org/W2399803916", + "https://openalex.org/W2401610261", + "https://openalex.org/W2402090481", + "https://openalex.org/W2416173357", + "https://openalex.org/W2429914308", + "https://openalex.org/W2493312408", + "https://openalex.org/W2547651473", + "https://openalex.org/W2579923771", + "https://openalex.org/W2592570088", + "https://openalex.org/W2611627047", + "https://openalex.org/W2613634265", + "https://openalex.org/W2798766386", + "https://openalex.org/W2799119698", + "https://openalex.org/W2911964244", + "https://openalex.org/W2952817049", + "https://openalex.org/W2964020133", + "https://openalex.org/W2964270981", + "https://openalex.org/W2971788173", + "https://openalex.org/W3021452258", + "https://openalex.org/W3034905139", + "https://openalex.org/W3038084247", + "https://openalex.org/W3083047178", + "https://openalex.org/W3085162807", + "https://openalex.org/W3100743579", + "https://openalex.org/W3124678630", + "https://openalex.org/W3140968660", + "https://openalex.org/W3141595720", + "https://openalex.org/W3149604617", + "https://openalex.org/W3214968550" + ], + "related_works": [ + "https://openalex.org/W3137695714", + "https://openalex.org/W3118608800", + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2579923771", + "https://openalex.org/W2296319761", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2156909104", + "https://openalex.org/W2148603752", + "https://openalex.org/W2139338362", + "https://openalex.org/W2112796928", + "https://openalex.org/W2101234009", + "https://openalex.org/W2029538739", + "https://openalex.org/W2019363670", + "https://openalex.org/W1944672", + "https://openalex.org/W1663973292", + "https://openalex.org/W1554944419", + "https://openalex.org/W1542886316" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 48, + 95, + 146 + ], + "is": [ + 2, + 20 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 17, + 42, + 63, + 66, + 75, + 90, + 94, + 99, + 144 + ], + "the": [ + 5, + 26, + 43, + 50, + 64, + 67, + 69, + 91, + 97, + 122, + 137, + 140 + ], + "fastest": [ + 6 + ], + "growing": [ + 7 + ], + "areas": [ + 8 + ], + "computer": [ + 10, + 155 + ], + "science,": [ + 11, + 156 + ], + "with": [ + 12 + ], + "far-reaching": [ + 13 + ], + "applications.": [ + 14 + ], + "The": [ + 15, + 35 + ], + "aim": [ + 16 + ], + "this": [ + 18 + ], + "textbook": [ + 19 + ], + "to": [ + 21, + 148 + ], + "introduce": [ + 22 + ], + "machine": [ + 23, + 47, + 145 + ], + "learning,": [ + 24 + ], + "and": [ + 25, + 49, + 96, + 101, + 112, + 116, + 125, + 142, + 150, + 158 + ], + "algorithmic": [ + 27, + 104 + ], + "paradigms": [ + 28, + 105 + ], + "it": [ + 29 + ], + "offers,": [ + 30 + ], + "in": [ + 31, + 153 + ], + "a": [ + 32, + 61, + 72, + 88 + ], + "principled": [ + 33 + ], + "way.": [ + 34 + ], + "book": [ + 36, + 70 + ], + "provides": [ + 37 + ], + "an": [ + 38, + 130 + ], + "extensive": [ + 39 + ], + "theoretical": [ + 40, + 118 + ], + "account": [ + 41 + ], + "fundamental": [ + 44 + ], + "ideas": [ + 45 + ], + "underlying": [ + 46 + ], + "mathematical": [ + 51 + ], + "derivations": [ + 52 + ], + "that": [ + 53, + 78 + ], + "transform": [ + 54 + ], + "these": [ + 55 + ], + "principles": [ + 56 + ], + "into": [ + 57 + ], + "practical": [ + 58 + ], + "algorithms.": [ + 59 + ], + "Following": [ + 60 + ], + "presentation": [ + 62 + ], + "basics": [ + 65 + ], + "field,": [ + 68 + ], + "covers": [ + 71 + ], + "wide": [ + 73 + ], + "array": [ + 74 + ], + "central": [ + 76 + ], + "topics": [ + 77 + ], + "have": [ + 79 + ], + "not": [ + 80 + ], + "been": [ + 81 + ], + "addressed": [ + 82 + ], + "by": [ + 83 + ], + "previous": [ + 84 + ], + "textbooks.": [ + 85 + ], + "These": [ + 86 + ], + "include": [ + 87 + ], + "discussion": [ + 89 + ], + "computational": [ + 92 + ], + "complexity": [ + 93 + ], + "concepts": [ + 98, + 119 + ], + "convexity": [ + 100 + ], + "stability;": [ + 102 + ], + "important": [ + 103 + ], + "including": [ + 106 + ], + "stochastic": [ + 107 + ], + "gradient": [ + 108 + ], + "descent,": [ + 109 + ], + "neural": [ + 110 + ], + "networks,": [ + 111 + ], + "structured": [ + 113 + ], + "output": [ + 114 + ], + "learning;": [ + 115 + ], + "emerging": [ + 117 + ], + "such": [ + 120 + ], + "as": [ + 121 + ], + "PAC-Bayes": [ + 123 + ], + "approach": [ + 124 + ], + "compression-based": [ + 126 + ], + "bounds.": [ + 127 + ], + "Designed": [ + 128 + ], + "for": [ + 129 + ], + "advanced": [ + 131 + ], + "undergraduate": [ + 132 + ], + "or": [ + 133 + ], + "beginning": [ + 134 + ], + "graduate": [ + 135 + ], + "course,": [ + 136 + ], + "text": [ + 138 + ], + "makes": [ + 139 + ], + "fundamentals": [ + 141 + ], + "algorithms": [ + 143 + ], + "accessible": [ + 147 + ], + "students": [ + 149 + ], + "non-expert": [ + 151 + ], + "readers": [ + 152 + ], + "statistics,": [ + 154 + ], + "mathematics,": [ + 157 + ], + "engineering.": [ + 159 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 80 + }, + { + "year": 2024, + "cited_by_count": 167 + }, + { + "year": 2023, + "cited_by_count": 278 + }, + { + "year": 2022, + "cited_by_count": 265 + }, + { + "year": 2021, + "cited_by_count": 621 + }, + { + "year": 2020, + "cited_by_count": 630 + }, + { + "year": 2019, + "cited_by_count": 453 + }, + { + "year": 2018, + "cited_by_count": 267 + }, + { + "year": 2017, + "cited_by_count": 152 + }, + { + "year": 2016, + "cited_by_count": 110 + }, + { + "year": 2015, + "cited_by_count": 46 + }, + { + "year": 2014, + "cited_by_count": 13 + }, + { + "year": 2013, + "cited_by_count": 3 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2115252128", + "doi": "https://doi.org/10.5555/1577069.1755843", + "title": "Dlib-ml: A Machine Learning Toolkit", + "display_name": "Dlib-ml: A Machine Learning Toolkit", + "relevance_score": 3735.6973, + "publication_year": 2009, + "publication_date": "2009-12-01", + "ids": { + "openalex": "https://openalex.org/W2115252128", + "doi": "https://doi.org/10.5555/1577069.1755843", + "mag": "2115252128" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.156.3584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.156.3584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.jmlr.org/papers/volume10/king09a/king09a.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5055606271", + "display_name": "Davis E. King", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Davis E. King", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5055606271" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 4.9979, + "has_fulltext": false, + "cited_by_count": 2921, + "citation_normalized_percentile": { + "value": 0.95441293, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "10", + "issue": "60", + "first_page": "1755", + "last_page": "1758" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.9950000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.9950000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11447", + "display_name": "Blind Source Separation Techniques", + "score": 0.9936000108718872, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9926000237464905, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8153140544891357 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.7605270147323608 + }, + { + "id": "https://openalex.org/keywords/debugging", + "display_name": "Debugging", + "score": 0.6248811483383179 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6037954092025757 + }, + { + "id": "https://openalex.org/keywords/cluster-analysis", + "display_name": "Cluster analysis", + "score": 0.553378701210022 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.4825972318649292 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.4804627299308777 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4792616367340088 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.46823209524154663 + }, + { + "id": "https://openalex.org/keywords/documentation", + "display_name": "Documentation", + "score": 0.4525264799594879 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.4523027539253235 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3667660355567932 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8153140544891357 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.7605270147323608 + }, + { + "id": "https://openalex.org/C168065819", + "wikidata": "https://www.wikidata.org/wiki/Q845566", + "display_name": "Debugging", + "level": 2, + "score": 0.6248811483383179 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6037954092025757 + }, + { + "id": "https://openalex.org/C73555534", + "wikidata": "https://www.wikidata.org/wiki/Q622825", + "display_name": "Cluster analysis", + "level": 2, + "score": 0.553378701210022 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.4825972318649292 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.4804627299308777 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4792616367340088 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.46823209524154663 + }, + { + "id": "https://openalex.org/C56666940", + "wikidata": "https://www.wikidata.org/wiki/Q788790", + "display_name": "Documentation", + "level": 2, + "score": 0.4525264799594879 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.4523027539253235 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3667660355567932 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.156.3584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.156.3584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.jmlr.org/papers/volume10/king09a/king09a.pdf", + "raw_type": "text" + }, + { + "id": "mag:2115252128", + "is_oa": false, + "landing_page_url": "https://jmlr.csail.mit.edu/papers/volume10/king09a/king09a.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/9", + "display_name": "Industry, innovation and infrastructure", + "score": 0.5400000214576721 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 9, + "referenced_works": [ + "https://openalex.org/W1486089539", + "https://openalex.org/W1494068061", + "https://openalex.org/W1618905105", + "https://openalex.org/W1633751774", + "https://openalex.org/W2125993116", + "https://openalex.org/W2142623206", + "https://openalex.org/W2153290280", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154462399" + ], + "related_works": [ + "https://openalex.org/W3101998545", + "https://openalex.org/W3099206234", + "https://openalex.org/W3097096317", + "https://openalex.org/W2964121744", + "https://openalex.org/W2963073614", + "https://openalex.org/W2325939864", + "https://openalex.org/W2301937176", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2161969291", + "https://openalex.org/W2145287260", + "https://openalex.org/W2108598243", + "https://openalex.org/W2103943262", + "https://openalex.org/W2099471712", + "https://openalex.org/W2097117768", + "https://openalex.org/W2087681821", + "https://openalex.org/W1901129140", + "https://openalex.org/W1834627138", + "https://openalex.org/W1782590233", + "https://openalex.org/W1686810756" + ], + "abstract_inverted_index": { + "There": [ + 0 + ], + "are": [ + 1 + ], + "many": [ + 2 + ], + "excellent": [ + 3 + ], + "toolkits": [ + 4 + ], + "which": [ + 5, + 33, + 105 + ], + "provide": [ + 6, + 36 + ], + "support": [ + 7 + ], + "for": [ + 8, + 41, + 71, + 80 + ], + "developing": [ + 9, + 42 + ], + "machine": [ + 10, + 43 + ], + "learning": [ + 11, + 44 + ], + "software": [ + 12, + 45 + ], + "in": [ + 13, + 46, + 62, + 74 + ], + "Python,": [ + 14 + ], + "R,": [ + 15 + ], + "Matlab,": [ + 16 + ], + "and": [ + 17, + 30, + 77, + 86, + 108 + ], + "similar": [ + 18 + ], + "environments.": [ + 19 + ], + "Dlib-ml": [ + 20 + ], + "is": [ + 21 + ], + "an": [ + 22, + 55 + ], + "open": [ + 23 + ], + "source": [ + 24 + ], + "library,": [ + 25 + ], + "targeted": [ + 26 + ], + "at": [ + 27 + ], + "both": [ + 28 + ], + "engineers": [ + 29 + ], + "research": [ + 31 + ], + "scientists,": [ + 32 + ], + "aims": [ + 34 + ], + "to": [ + 35 + ], + "a": [ + 37 + ], + "similarly": [ + 38 + ], + "rich": [ + 39 + ], + "environment": [ + 40 + ], + "the": [ + 47, + 96 + ], + "C++": [ + 48 + ], + "language.": [ + 49 + ], + "Towards": [ + 50 + ], + "this": [ + 51 + ], + "end,": [ + 52 + ], + "dlib-ml": [ + 53 + ], + "contains": [ + 54 + ], + "extensible": [ + 56 + ], + "linear": [ + 57 + ], + "algebra": [ + 58 + ], + "toolkit": [ + 59 + ], + "with": [ + 60, + 102 + ], + "built": [ + 61 + ], + "BLAS": [ + 63 + ], + "support.": [ + 64 + ], + "It": [ + 65 + ], + "also": [ + 66 + ], + "houses": [ + 67 + ], + "implementations": [ + 68 + ], + "of": [ + 69, + 93 + ], + "algorithms": [ + 70 + ], + "performing": [ + 72 + ], + "inference": [ + 73 + ], + "Bayesian": [ + 75, + 124 + ], + "networks": [ + 76, + 125 + ], + "kernel-based": [ + 78 + ], + "methods": [ + 79 + ], + "classification,": [ + 81 + ], + "regression,": [ + 82 + ], + "clustering,": [ + 83, + 122 + ], + "anomaly": [ + 84 + ], + "detection,": [ + 85 + ], + "feature": [ + 87 + ], + "ranking.": [ + 88 + ], + "To": [ + 89 + ], + "enable": [ + 90 + ], + "easy": [ + 91 + ], + "use": [ + 92 + ], + "these": [ + 94 + ], + "tools,": [ + 95 + ], + "entire": [ + 97 + ], + "library": [ + 98 + ], + "has": [ + 99 + ], + "been": [ + 100 + ], + "developed": [ + 101 + ], + "contract": [ + 103 + ], + "programming,": [ + 104 + ], + "provides": [ + 106 + ], + "complete": [ + 107 + ], + "precise": [ + 109 + ], + "documentation": [ + 110 + ], + "as": [ + 111, + 113 + ], + "well": [ + 112 + ], + "powerful": [ + 114 + ], + "debugging": [ + 115 + ], + "tools.": [ + 116 + ], + "Keywords:": [ + 117 + ], + "kernel-methods,": [ + 118 + ], + "svm,": [ + 119 + ], + "rvm,": [ + 120 + ], + "kernel": [ + 121 + ], + "C++,": [ + 123 + ], + "1.": [ + 126 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 74 + }, + { + "year": 2024, + "cited_by_count": 194 + }, + { + "year": 2023, + "cited_by_count": 292 + }, + { + "year": 2022, + "cited_by_count": 336 + }, + { + "year": 2021, + "cited_by_count": 479 + }, + { + "year": 2020, + "cited_by_count": 446 + }, + { + "year": 2019, + "cited_by_count": 400 + }, + { + "year": 2018, + "cited_by_count": 319 + }, + { + "year": 2017, + "cited_by_count": 190 + }, + { + "year": 2016, + "cited_by_count": 113 + }, + { + "year": 2015, + "cited_by_count": 44 + }, + { + "year": 2014, + "cited_by_count": 14 + }, + { + "year": 2013, + "cited_by_count": 5 + }, + { + "year": 2012, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-08T15:41:06.802602", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4400134761", + "doi": "https://doi.org/10.21275/art20203995", + "title": "Machine Learning Algorithms - A Review", + "display_name": "Machine Learning Algorithms - A Review", + "relevance_score": 3665.777, + "publication_year": 2020, + "publication_date": "2020-01-05", + "ids": { + "openalex": "https://openalex.org/W4400134761", + "doi": "https://doi.org/10.21275/art20203995" + }, + "language": "en", + "primary_location": { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "diamond", + "oa_url": "https://doi.org/10.21275/art20203995", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5113270062", + "display_name": "Batta Mahesh", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Batta Mahesh", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5113270062" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 300.9528, + "has_fulltext": false, + "cited_by_count": 2453, + "citation_normalized_percentile": { + "value": 0.99993518, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "9", + "issue": "1", + "first_page": "381", + "last_page": "386" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.19280000030994415, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.19280000030994415, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5793123245239258 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.46341603994369507 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.44169795513153076 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4307257831096649 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5793123245239258 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.46341603994369507 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.44169795513153076 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4307257831096649 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W4400134761.pdf" + }, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W328766226", + "https://openalex.org/W1549998098", + "https://openalex.org/W2040895929", + "https://openalex.org/W2091005538", + "https://openalex.org/W2223344998", + "https://openalex.org/W4236558809" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 61, + 93, + 125 + ], + "(ML)": [ + 2 + ], + "is": [ + 3, + 44, + 58, + 94 + ], + "the": [ + 4, + 48, + 52, + 120 + ], + "scientific": [ + 5 + ], + "study": [ + 6 + ], + "of": [ + 7, + 34, + 51, + 90, + 119, + 123 + ], + "algorithms": [ + 8, + 26, + 70, + 126 + ], + "and": [ + 9, + 116 + ], + "statistical": [ + 10 + ], + "models": [ + 11 + ], + "that": [ + 12, + 54 + ], + "computer": [ + 13 + ], + "systems": [ + 14 + ], + "use": [ + 15, + 33 + ], + "to": [ + 16, + 46, + 66, + 84, + 101 + ], + "perform": [ + 17 + ], + "a": [ + 18, + 38, + 60, + 86, + 113 + ], + "specific": [ + 19 + ], + "task": [ + 20 + ], + "without": [ + 21 + ], + "being": [ + 22 + ], + "explicitly": [ + 23 + ], + "programmed.": [ + 24 + ], + "Learning": [ + 25 + ], + "in": [ + 27 + ], + "many": [ + 28 + ], + "applications": [ + 29, + 122 + ], + "that's": [ + 30 + ], + "we": [ + 31 + ], + "make": [ + 32 + ], + "daily.": [ + 35 + ], + "Every": [ + 36 + ], + "time": [ + 37 + ], + "web": [ + 39, + 68 + ], + "search": [ + 40, + 47 + ], + "engine": [ + 41 + ], + "like": [ + 42, + 76 + ], + "Google": [ + 43 + ], + "used": [ + 45, + 72 + ], + "internet,": [ + 49 + ], + "one": [ + 50 + ], + "reasons": [ + 53 + ], + "work": [ + 55, + 109 + ], + "so": [ + 56 + ], + "well": [ + 57 + ], + "because": [ + 59 + ], + "algorithm": [ + 62, + 98 + ], + "thathas": [ + 63 + ], + "learned": [ + 64 + ], + "how": [ + 65 + ], + "rank": [ + 67 + ], + "pages.These": [ + 69 + ], + "are": [ + 71 + ], + "for": [ + 73 + ], + "various": [ + 74 + ], + "purposes": [ + 75 + ], + "data": [ + 77 + ], + "mining,": [ + 78 + ], + "image": [ + 79 + ], + "processing,": [ + 80 + ], + "predictive": [ + 81 + ], + "analytics,": [ + 82 + ], + "etc.": [ + 83 + ], + "name": [ + 85 + ], + "few.The": [ + 87 + ], + "main": [ + 88 + ], + "advantage": [ + 89 + ], + "using": [ + 91 + ], + "machine": [ + 92, + 124 + ], + "that,": [ + 95 + ], + "once": [ + 96 + ], + "an": [ + 97 + ], + "learns": [ + 99 + ], + "what": [ + 100 + ], + "do": [ + 102, + 107 + ], + "with": [ + 103 + ], + "data,": [ + 104 + ], + "it": [ + 105 + ], + "can": [ + 106 + ], + "its": [ + 108 + ], + "automatically.In": [ + 110 + ], + "this": [ + 111 + ], + "paper,": [ + 112 + ], + "brief": [ + 114 + ], + "review": [ + 115 + ], + "future": [ + 117 + ], + "prospect": [ + 118 + ], + "vast": [ + 121 + ], + "has": [ + 127 + ], + "been": [ + 128 + ], + "made.": [ + 129 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 103 + }, + { + "year": 2025, + "cited_by_count": 646 + }, + { + "year": 2024, + "cited_by_count": 720 + }, + { + "year": 2023, + "cited_by_count": 608 + }, + { + "year": 2022, + "cited_by_count": 271 + }, + { + "year": 2021, + "cited_by_count": 68 + }, + { + "year": 2020, + "cited_by_count": 27 + }, + { + "year": 2019, + "cited_by_count": 7 + }, + { + "year": 2018, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2161336914", + "doi": "https://doi.org/10.1145/2347736.2347755", + "title": "A few useful things to know about machine learning", + "display_name": "A few useful things to know about machine learning", + "relevance_score": 3658.7053, + "publication_year": 2012, + "publication_date": "2012-09-25", + "ids": { + "openalex": "https://openalex.org/W2161336914", + "doi": "https://doi.org/10.1145/2347736.2347755", + "mag": "2161336914" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/2347736.2347755", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2347736.2347755", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5018711331", + "display_name": "Pedro Domingos", + "orcid": "https://orcid.org/0000-0003-4523-5631" + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + }, + { + "id": "https://openalex.org/I58610484", + "display_name": "Seattle University", + "ror": "https://ror.org/02jqc0m91", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I58610484" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Pedro Domingos", + "raw_affiliation_strings": [ + "University of Washington, Seattle" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Washington, Seattle", + "institution_ids": [ + "https://openalex.org/I58610484", + "https://openalex.org/I201448701" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5018711331" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I201448701", + "https://openalex.org/I58610484" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 103.0331, + "has_fulltext": false, + "cited_by_count": 3232, + "citation_normalized_percentile": { + "value": 0.99977527, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "55", + "issue": "10", + "first_page": "78", + "last_page": "87" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9976000189781189, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9976000189781189, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11303", + "display_name": "Bayesian Modeling and Causal Inference", + "score": 0.9958000183105469, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6615294218063354 + }, + { + "id": "https://openalex.org/keywords/need-to-know", + "display_name": "Need to know", + "score": 0.5620318651199341 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43639615178108215 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.35491612553596497 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.22050878405570984 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6615294218063354 + }, + { + "id": "https://openalex.org/C2778519782", + "wikidata": "https://www.wikidata.org/wiki/Q1974060", + "display_name": "Need to know", + "level": 2, + "score": 0.5620318651199341 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43639615178108215 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.35491612553596497 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.22050878405570984 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1145/2347736.2347755", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2347736.2347755", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.353.7232", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.353.7232", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://homes.cs.washington.edu/~pedrod/papers/cacm12.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.3497", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.3497", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://pantherfile.uwm.edu/borji/www/lecturesML/Reviews/cacm12.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.85", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.85", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://haralick.org/ML/useful_things_about_machine_learning.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.47999998927116394 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 31, + "referenced_works": [ + "https://openalex.org/W1486658274", + "https://openalex.org/W1494137514", + "https://openalex.org/W1504694836", + "https://openalex.org/W1521062204", + "https://openalex.org/W1570448133", + "https://openalex.org/W1583837637", + "https://openalex.org/W1585009072", + "https://openalex.org/W1761022139", + "https://openalex.org/W1977970897", + "https://openalex.org/W2001141328", + "https://openalex.org/W2039683780", + "https://openalex.org/W2063961549", + "https://openalex.org/W2070902649", + "https://openalex.org/W2072128103", + "https://openalex.org/W2089624555", + "https://openalex.org/W2100483895", + "https://openalex.org/W2110065044", + "https://openalex.org/W2110228583", + "https://openalex.org/W2125055259", + "https://openalex.org/W2140785063", + "https://openalex.org/W2143891888", + "https://openalex.org/W2152761983", + "https://openalex.org/W2156909104", + "https://openalex.org/W2400138769", + "https://openalex.org/W2966207845", + "https://openalex.org/W3133236490", + "https://openalex.org/W3135029803", + "https://openalex.org/W4231109964", + "https://openalex.org/W4232632925", + "https://openalex.org/W4299515571", + "https://openalex.org/W6791387550" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W4286629047", + "https://openalex.org/W4306321456", + "https://openalex.org/W4285260836", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4205958290", + "https://openalex.org/W3209574120" + ], + "abstract_inverted_index": { + "Tapping": [ + 0 + ], + "into": [ + 1 + ], + "the": [ + 2 + ], + "\"folk": [ + 3 + ], + "knowledge\"": [ + 4 + ], + "needed": [ + 5 + ], + "to": [ + 6 + ], + "advance": [ + 7 + ], + "machine": [ + 8 + ], + "learning": [ + 9 + ], + "applications.": [ + 10 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 111 + }, + { + "year": 2025, + "cited_by_count": 349 + }, + { + "year": 2024, + "cited_by_count": 298 + }, + { + "year": 2023, + "cited_by_count": 268 + }, + { + "year": 2022, + "cited_by_count": 283 + }, + { + "year": 2021, + "cited_by_count": 310 + }, + { + "year": 2020, + "cited_by_count": 391 + }, + { + "year": 2019, + "cited_by_count": 326 + }, + { + "year": 2018, + "cited_by_count": 261 + }, + { + "year": 2017, + "cited_by_count": 248 + }, + { + "year": 2016, + "cited_by_count": 153 + }, + { + "year": 2015, + "cited_by_count": 106 + }, + { + "year": 2014, + "cited_by_count": 80 + }, + { + "year": 2013, + "cited_by_count": 45 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2151591509", + "doi": "https://doi.org/10.3389/fninf.2014.00014", + "title": "Machine learning for neuroimaging with scikit-learn", + "display_name": "Machine learning for neuroimaging with scikit-learn", + "relevance_score": 3625.0486, + "publication_year": 2014, + "publication_date": "2014-01-01", + "ids": { + "openalex": "https://openalex.org/W2151591509", + "doi": "https://doi.org/10.3389/fninf.2014.00014", + "mag": "2151591509", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/24600388" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5033483167", + "display_name": "Alexandre Abraham", + "orcid": "https://orcid.org/0000-0003-3693-0560" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": true, + "raw_author_name": "Alexandre Abraham", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108143968", + "display_name": "Fabian Pedregosa", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Fabian Pedregosa", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5065146930", + "display_name": "Michael Eickenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Michael Eickenberg", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5001112573", + "display_name": "Philippe Gervais", + "orcid": "https://orcid.org/0000-0003-2172-879X" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Philippe Gervais", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088500114", + "display_name": "Andreas Mueller", + "orcid": "https://orcid.org/0000-0002-2349-9428" + }, + "institutions": [ + { + "id": "https://openalex.org/I135140700", + "display_name": "University of Bonn", + "ror": "https://ror.org/041nas322", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I135140700" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Andreas Mueller", + "raw_affiliation_strings": [ + "Institute of Computer Science VI, University of Bonn Bonn, Germany", + "Institute of Computer Science VI, University of Bonn, Bonn, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute of Computer Science VI, University of Bonn Bonn, Germany", + "institution_ids": [ + "https://openalex.org/I135140700" + ] + }, + { + "raw_affiliation_string": "Institute of Computer Science VI, University of Bonn, Bonn, Germany", + "institution_ids": [ + "https://openalex.org/I135140700" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006048318", + "display_name": "Jean Kossaifi", + "orcid": "https://orcid.org/0000-0002-4445-3429" + }, + "institutions": [ + { + "id": "https://openalex.org/I47508984", + "display_name": "Imperial College London", + "ror": "https://ror.org/041kmwe10", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I47508984" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Jean Kossaifi", + "raw_affiliation_strings": [ + "Department of Computing, Imperial College London London, UK", + "Department of Computing, Imperial College London, London, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computing, Imperial College London London, UK", + "institution_ids": [ + "https://openalex.org/I47508984" + ] + }, + { + "raw_affiliation_string": "Department of Computing, Imperial College London, London, UK", + "institution_ids": [ + "https://openalex.org/I47508984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018256474", + "display_name": "Alexandre Gramfort", + "orcid": "https://orcid.org/0000-0001-9791-4404" + }, + "institutions": [ + { + "id": "https://openalex.org/I12356871", + "display_name": "Télécom Paris", + "ror": "https://ror.org/01naq7912", + "country_code": "FR", + "type": "education", + "lineage": [ + "https://openalex.org/I12356871", + "https://openalex.org/I205703379", + "https://openalex.org/I4210145102" + ] + }, + { + "id": "https://openalex.org/I1294671590", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1294671590" + ] + }, + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I205703379", + "display_name": "Institut Mines-Télécom", + "ror": "https://ror.org/025vp2923", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I205703379" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + }, + { + "id": "https://openalex.org/I4210165912", + "display_name": "Laboratoire Traitement et Communication de l’Information", + "ror": "https://ror.org/057er4c39", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I12356871", + "https://openalex.org/I205703379", + "https://openalex.org/I4210145102", + "https://openalex.org/I4210165912" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Alexandre Gramfort", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France ; Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI Paris, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI, Paris, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France ; Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI Paris, France", + "institution_ids": [ + "https://openalex.org/I1294671590", + "https://openalex.org/I205703379", + "https://openalex.org/I4210128565", + "https://openalex.org/I4210165912", + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI, Paris, France", + "institution_ids": [ + "https://openalex.org/I205703379", + "https://openalex.org/I12356871", + "https://openalex.org/I4210165912", + "https://openalex.org/I1294671590" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026762833", + "display_name": "Bertrand Thirion", + "orcid": "https://orcid.org/0000-0001-5018-7895" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Bertrand Thirion", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5074733625", + "display_name": "Gaël Varoquaux", + "orcid": "https://orcid.org/0000-0003-1076-5122" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Gaël Varoquaux", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 9, + "corresponding_author_ids": [ + "https://openalex.org/A5033483167" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210126360", + "https://openalex.org/I4210128565" + ], + "apc_list": { + "value": 2950, + "currency": "USD", + "value_usd": 2950 + }, + "apc_paid": { + "value": 2950, + "currency": "USD", + "value_usd": 2950 + }, + "fwci": 22.8931, + "has_fulltext": true, + "cited_by_count": 2628, + "citation_normalized_percentile": { + "value": 0.99795549, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "8", + "issue": null, + "first_page": "14", + "last_page": "14" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10581", + "display_name": "Neural dynamics and brain function", + "score": 0.9987999796867371, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10378", + "display_name": "Advanced MRI Techniques and Applications", + "score": 0.9851999878883362, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/neuroimaging", + "display_name": "Neuroimaging", + "score": 0.8332920074462891 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6829519271850586 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6763078570365906 + }, + { + "id": "https://openalex.org/keywords/unsupervised-learning", + "display_name": "Unsupervised learning", + "score": 0.633687436580658 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6015421152114868 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.5471705794334412 + }, + { + "id": "https://openalex.org/keywords/functional-neuroimaging", + "display_name": "Functional neuroimaging", + "score": 0.5229871273040771 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.40410205721855164 + }, + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.1943330466747284 + }, + { + "id": "https://openalex.org/keywords/neuroscience", + "display_name": "Neuroscience", + "score": 0.13872376084327698 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C58693492", + "wikidata": "https://www.wikidata.org/wiki/Q551875", + "display_name": "Neuroimaging", + "level": 2, + "score": 0.8332920074462891 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6829519271850586 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6763078570365906 + }, + { + "id": "https://openalex.org/C8038995", + "wikidata": "https://www.wikidata.org/wiki/Q1152135", + "display_name": "Unsupervised learning", + "level": 2, + "score": 0.633687436580658 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6015421152114868 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.5471705794334412 + }, + { + "id": "https://openalex.org/C52338299", + "wikidata": "https://www.wikidata.org/wiki/Q1004354", + "display_name": "Functional neuroimaging", + "level": 3, + "score": 0.5229871273040771 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.40410205721855164 + }, + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.1943330466747284 + }, + { + "id": "https://openalex.org/C169760540", + "wikidata": "https://www.wikidata.org/wiki/Q207011", + "display_name": "Neuroscience", + "level": 1, + "score": 0.13872376084327698 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + { + "id": "pmid:24600388", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/24600388", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in neuroinformatics", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:2202.11333", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/2202.11333", + "pdf_url": "https://arxiv.org/pdf/2202.11333", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-01093971v1", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-01093971", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Frontiers in Neuroscience, 2013, pp.15. ⟨10.3389/fninf.2014.00014⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:HAL:hal-03187887v3", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-03187887", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Neuroinformatics, 2022, ⟨10.3389/fninf.2014.00014⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:doaj.org/article:055de24a9c3540b6b3884081362be90d", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/055de24a9c3540b6b3884081362be90d", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Frontiers in Neuroinformatics, Vol 8 (2014)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:2928056", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/3930868", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education", + "score": 0.6600000262260437 + } + ], + "awards": [ + { + "id": "https://openalex.org/G2501487254", + "display_name": null, + "funder_award_id": "R21 DA034954", + "funder_id": "https://openalex.org/F4320337347", + "funder_display_name": "National Institute on Drug Abuse" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320337347", + "display_name": "National Institute on Drug Abuse", + "ror": "https://ror.org/00fq5cm18" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 71, + "referenced_works": [ + "https://openalex.org/W758533152", + "https://openalex.org/W1480376833", + "https://openalex.org/W1528119265", + "https://openalex.org/W1548802052", + "https://openalex.org/W1569370144", + "https://openalex.org/W1571024744", + "https://openalex.org/W1906883763", + "https://openalex.org/W1970956440", + "https://openalex.org/W1974687978", + "https://openalex.org/W1985327120", + "https://openalex.org/W1988045490", + "https://openalex.org/W1996510233", + "https://openalex.org/W2001399171", + "https://openalex.org/W2006096283", + "https://openalex.org/W2007581301", + "https://openalex.org/W2009494091", + "https://openalex.org/W2011301426", + "https://openalex.org/W2011650426", + "https://openalex.org/W2023633168", + "https://openalex.org/W2024933578", + "https://openalex.org/W2040305148", + "https://openalex.org/W2040566369", + "https://openalex.org/W2040974372", + "https://openalex.org/W2048476135", + "https://openalex.org/W2048631316", + "https://openalex.org/W2052451171", + "https://openalex.org/W2056465968", + "https://openalex.org/W2060259639", + "https://openalex.org/W2063951486", + "https://openalex.org/W2063978378", + "https://openalex.org/W2073683361", + "https://openalex.org/W2077745487", + "https://openalex.org/W2079450984", + "https://openalex.org/W2079785597", + "https://openalex.org/W2089632738", + "https://openalex.org/W2096230777", + "https://openalex.org/W2097267381", + "https://openalex.org/W2097850441", + "https://openalex.org/W2101234009", + "https://openalex.org/W2102729564", + "https://openalex.org/W2113619522", + "https://openalex.org/W2116328702", + "https://openalex.org/W2117621792", + "https://openalex.org/W2122457251", + "https://openalex.org/W2123649031", + "https://openalex.org/W2133990480", + "https://openalex.org/W2134585061", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137966626", + "https://openalex.org/W2140255740", + "https://openalex.org/W2140587192", + "https://openalex.org/W2145217719", + "https://openalex.org/W2145487185", + "https://openalex.org/W2146292423", + "https://openalex.org/W2148601705", + "https://openalex.org/W2151130155", + "https://openalex.org/W2151286458", + "https://openalex.org/W2151591509", + "https://openalex.org/W2158485497", + "https://openalex.org/W2164025570", + "https://openalex.org/W2179752489", + "https://openalex.org/W2240767875", + "https://openalex.org/W2540277519", + "https://openalex.org/W2752197104", + "https://openalex.org/W2810031488", + "https://openalex.org/W3132053208", + "https://openalex.org/W4206031975", + "https://openalex.org/W6633893416", + "https://openalex.org/W6675354045", + "https://openalex.org/W6959406008", + "https://openalex.org/W7074038129" + ], + "related_works": [ + "https://openalex.org/W2506266834", + "https://openalex.org/W2499037785", + "https://openalex.org/W2028174874", + "https://openalex.org/W2351278828", + "https://openalex.org/W4308957544", + "https://openalex.org/W2239282469", + "https://openalex.org/W67648935", + "https://openalex.org/W1993895507", + "https://openalex.org/W2122202779", + "https://openalex.org/W1995600417" + ], + "abstract_inverted_index": { + "Statistical": [ + 0 + ], + "machine": [ + 1, + 84 + ], + "learning": [ + 2, + 32, + 52, + 85, + 104 + ], + "methods": [ + 3 + ], + "are": [ + 4 + ], + "increasingly": [ + 5 + ], + "used": [ + 6, + 35, + 89 + ], + "for": [ + 7 + ], + "neuroimaging": [ + 8, + 76, + 114 + ], + "data": [ + 9, + 115 + ], + "analysis.": [ + 10 + ], + "Their": [ + 11 + ], + "main": [ + 12 + ], + "virtue": [ + 13 + ], + "is": [ + 14, + 33 + ], + "their": [ + 15 + ], + "ability": [ + 16 + ], + "to": [ + 17, + 41, + 45, + 90, + 113, + 120 + ], + "model": [ + 18 + ], + "high-dimensional": [ + 19 + ], + "datasets,": [ + 20 + ], + "e.g.,": [ + 21 + ], + "multivariate": [ + 22 + ], + "analysis": [ + 23, + 94 + ], + "of": [ + 24, + 59, + 102 + ], + "activation": [ + 25 + ], + "images": [ + 26, + 44, + 60 + ], + "or": [ + 27, + 38, + 47, + 66 + ], + "resting-state": [ + 28 + ], + "time": [ + 29 + ], + "series.": [ + 30 + ], + "Supervised": [ + 31 + ], + "typically": [ + 34 + ], + "in": [ + 36, + 57, + 69 + ], + "decoding": [ + 37 + ], + "encoding": [ + 39 + ], + "settings": [ + 40 + ], + "relate": [ + 42 + ], + "brain": [ + 43 + ], + "behavioral": [ + 46 + ], + "clinical": [ + 48 + ], + "observations,": [ + 49 + ], + "while": [ + 50 + ], + "unsupervised": [ + 51 + ], + "can": [ + 53, + 87 + ], + "uncover": [ + 54 + ], + "hidden": [ + 55 + ], + "structures": [ + 56 + ], + "sets": [ + 58 + ], + "(e.g.,": [ + 61 + ], + "resting": [ + 62 + ], + "state": [ + 63 + ], + "functional": [ + 64, + 75 + ], + "MRI)": [ + 65 + ], + "find": [ + 67 + ], + "sub-populations": [ + 68 + ], + "large": [ + 70, + 100 + ], + "cohorts.": [ + 71 + ], + "By": [ + 72 + ], + "considering": [ + 73 + ], + "different": [ + 74 + ], + "applications,": [ + 77 + ], + "we": [ + 78 + ], + "illustrate": [ + 79 + ], + "how": [ + 80 + ], + "scikit-learn,": [ + 81 + ], + "a": [ + 82, + 98, + 117 + ], + "Python": [ + 83 + ], + "library,": [ + 86 + ], + "be": [ + 88 + ], + "perform": [ + 91 + ], + "some": [ + 92 + ], + "key": [ + 93 + ], + "steps.": [ + 95 + ], + "Scikit-learn": [ + 96 + ], + "contains": [ + 97 + ], + "very": [ + 99 + ], + "set": [ + 101 + ], + "statistical": [ + 103 + ], + "algorithms,": [ + 105 + ], + "both": [ + 106 + ], + "supervised": [ + 107 + ], + "and": [ + 108, + 110 + ], + "unsupervised,": [ + 109 + ], + "its": [ + 111 + ], + "application": [ + 112 + ], + "provides": [ + 116 + ], + "versatile": [ + 118 + ], + "tool": [ + 119 + ], + "study": [ + 121 + ], + "the": [ + 122 + ], + "brain.": [ + 123 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 129 + }, + { + "year": 2025, + "cited_by_count": 383 + }, + { + "year": 2024, + "cited_by_count": 443 + }, + { + "year": 2023, + "cited_by_count": 381 + }, + { + "year": 2022, + "cited_by_count": 338 + }, + { + "year": 2021, + "cited_by_count": 320 + }, + { + "year": 2020, + "cited_by_count": 244 + }, + { + "year": 2019, + "cited_by_count": 151 + }, + { + "year": 2018, + "cited_by_count": 92 + }, + { + "year": 2017, + "cited_by_count": 61 + }, + { + "year": 2016, + "cited_by_count": 43 + }, + { + "year": 2015, + "cited_by_count": 29 + }, + { + "year": 2014, + "cited_by_count": 12 + }, + { + "year": 2013, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2973119841", + "doi": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "title": "Machine Learning for Fluid Mechanics", + "display_name": "Machine Learning for Fluid Mechanics", + "relevance_score": 3608.3281, + "publication_year": 2019, + "publication_date": "2019-09-12", + "ids": { + "openalex": "https://openalex.org/W2973119841", + "doi": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "mag": "2973119841" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1146/annurev-fluid-010719-060214", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S169493037", + "display_name": "Annual Review of Fluid Mechanics", + "issn_l": "0066-4189", + "issn": [ + "0066-4189", + "1545-4479" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320373", + "host_organization_name": "Annual Reviews", + "host_organization_lineage": [ + "https://openalex.org/P4310320373" + ], + "host_organization_lineage_names": [ + "Annual Reviews" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Annual Review of Fluid Mechanics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1905.11075", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Steven L. Brunton", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Steven L. Brunton", + "raw_affiliation_strings": [ + "Department of Mechanical Engineering, University of Washington, Seattle, Washington 98195, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Mechanical Engineering, University of Washington, Seattle, Washington 98195, USA", + "institution_ids": [ + "https://openalex.org/I201448701" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Bernd R. Noack", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1294671590", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1294671590" + ] + }, + { + "id": "https://openalex.org/I277688954", + "display_name": "Université Paris-Saclay", + "ror": "https://ror.org/03xjwb503", + "country_code": "FR", + "type": "education", + "lineage": [ + "https://openalex.org/I277688954" + ] + }, + { + "id": "https://openalex.org/I4210115485", + "display_name": "Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur", + "ror": "https://ror.org/01raq4x89", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I102197404", + "https://openalex.org/I1294671590", + "https://openalex.org/I4210115485", + "https://openalex.org/I4210159245" + ] + }, + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + } + ], + "countries": [ + "DE", + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Bernd R. Noack", + "raw_affiliation_strings": [ + "Institut für Strömungsmechanik und Technische Akustik, Technische Universität Berlin, D-10634 Berlin, Germany", + "LIMSI (Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur), CNRS UPR 3251, Université Paris-Saclay, F-91403 Orsay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut für Strömungsmechanik und Technische Akustik, Technische Universität Berlin, D-10634 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "LIMSI (Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur), CNRS UPR 3251, Université Paris-Saclay, F-91403 Orsay, France", + "institution_ids": [ + "https://openalex.org/I277688954", + "https://openalex.org/I4210115485", + "https://openalex.org/I1294671590" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Petros Koumoutsakos", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I35440088", + "display_name": "ETH Zurich", + "ror": "https://ror.org/05a28rw58", + "country_code": "CH", + "type": "education", + "lineage": [ + "https://openalex.org/I2799323385", + "https://openalex.org/I35440088" + ] + } + ], + "countries": [ + "CH" + ], + "is_corresponding": false, + "raw_author_name": "Petros Koumoutsakos", + "raw_affiliation_strings": [ + "Computational Science and Engineering Laboratory, ETH Zurich, CH-8092 Zurich, Switzerland;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Computational Science and Engineering Laboratory, ETH Zurich, CH-8092 Zurich, Switzerland;", + "institution_ids": [ + "https://openalex.org/I35440088" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 4, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I201448701" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 117.0585, + "has_fulltext": true, + "cited_by_count": 2557, + "citation_normalized_percentile": { + "value": 0.99990047, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "52", + "issue": "1", + "first_page": "477", + "last_page": "508" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11206", + "display_name": "Model Reduction and Neural Networks", + "score": 0.9092000126838684, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11206", + "display_name": "Model Reduction and Neural Networks", + "score": 0.9092000126838684, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10775", + "display_name": "Generative Adversarial Networks and Image Synthesis", + "score": 0.01759999990463257, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.012000000104308128, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/fluid-mechanics", + "display_name": "Fluid mechanics", + "score": 0.7289000153541565 + }, + { + "id": "https://openalex.org/keywords/current", + "display_name": "Current (fluid)", + "score": 0.5666999816894531 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5497000217437744 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5285000205039978 + }, + { + "id": "https://openalex.org/keywords/fluid-dynamics", + "display_name": "Fluid dynamics", + "score": 0.5188999772071838 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.4918000102043152 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C43133876", + "wikidata": "https://www.wikidata.org/wiki/Q172145", + "display_name": "Fluid mechanics", + "level": 2, + "score": 0.7289000153541565 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7146999835968018 + }, + { + "id": "https://openalex.org/C148043351", + "wikidata": "https://www.wikidata.org/wiki/Q4456944", + "display_name": "Current (fluid)", + "level": 2, + "score": 0.5666999816894531 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5497000217437744 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5285000205039978 + }, + { + "id": "https://openalex.org/C90278072", + "wikidata": "https://www.wikidata.org/wiki/Q216320", + "display_name": "Fluid dynamics", + "level": 2, + "score": 0.5188999772071838 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5113000273704529 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.4918000102043152 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.43700000643730164 + }, + { + "id": "https://openalex.org/C207685749", + "wikidata": "https://www.wikidata.org/wiki/Q2088941", + "display_name": "Domain knowledge", + "level": 2, + "score": 0.38100001215934753 + }, + { + "id": "https://openalex.org/C38349280", + "wikidata": "https://www.wikidata.org/wiki/Q1434290", + "display_name": "Flow (mathematics)", + "level": 2, + "score": 0.3517000079154968 + }, + { + "id": "https://openalex.org/C99874945", + "wikidata": "https://www.wikidata.org/wiki/Q188715", + "display_name": "Statistical mechanics", + "level": 2, + "score": 0.2985999882221222 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.2874999940395355 + }, + { + "id": "https://openalex.org/C2984161354", + "wikidata": "https://www.wikidata.org/wiki/Q216320", + "display_name": "Fluid motion", + "level": 2, + "score": 0.2538999915122986 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1146/annurev-fluid-010719-060214", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S169493037", + "display_name": "Annual Review of Fluid Mechanics", + "issn_l": "0066-4189", + "issn": [ + "0066-4189", + "1545-4479" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320373", + "host_organization_name": "Annual Reviews", + "host_organization_lineage": [ + "https://openalex.org/P4310320373" + ], + "host_organization_lineage_names": [ + "Annual Reviews" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Annual Review of Fluid Mechanics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1905.11075", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1905.11075", + "pdf_url": "https://arxiv.org/pdf/1905.11075", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-02398670v1", + "is_oa": false, + "landing_page_url": "https://hal.science/hal-02398670", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annual Review of Fluid Mechanics, 2020, 52 (1), pp.477-508. ⟨10.1146/annurev-fluid-010719-060214⟩", + "raw_type": "Journal articles" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1905.11075", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1905.11075", + "pdf_url": "https://arxiv.org/pdf/1905.11075", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G1483361726", + "display_name": null, + "funder_award_id": "W911NF-17-1-0422", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G1523888516", + "display_name": null, + "funder_award_id": "FA9550-", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G3655914848", + "display_name": null, + "funder_award_id": "W911NF-17-1-0306", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G4205652870", + "display_name": null, + "funder_award_id": "W911NF-17-1-0422", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G5809100787", + "display_name": null, + "funder_award_id": "FA9550", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G7042399192", + "display_name": null, + "funder_award_id": "AFOSR FA9550-18-1-0200", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G7452299184", + "display_name": null, + "funder_award_id": "W911NF", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G8202574490", + "display_name": null, + "funder_award_id": "FA9550-18-1-0200", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G8249314747", + "display_name": null, + "funder_award_id": "ARO W911NF-17-1-0306", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320322892", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73" + }, + { + "id": "https://openalex.org/F4320338279", + "display_name": "Air Force Office of Scientific Research", + "ror": "https://ror.org/011e9bt93" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2973119841.pdf", + "grobid_xml": "https://content.openalex.org/works/W2973119841.grobid-xml" + }, + "referenced_works_count": 139, + "referenced_works": [ + "https://openalex.org/W54257720", + "https://openalex.org/W119114865", + "https://openalex.org/W1479971399", + "https://openalex.org/W1498436455", + "https://openalex.org/W1528439235", + "https://openalex.org/W1590183771", + "https://openalex.org/W1606265566", + "https://openalex.org/W1614107838", + "https://openalex.org/W1633869374", + "https://openalex.org/W1650825897", + "https://openalex.org/W1685006559", + "https://openalex.org/W1954793758", + "https://openalex.org/W1967011375", + "https://openalex.org/W1967963082", + "https://openalex.org/W1970454553", + "https://openalex.org/W1972005403", + "https://openalex.org/W1976068300", + "https://openalex.org/W1979769287", + "https://openalex.org/W1992462433", + "https://openalex.org/W1996773027", + "https://openalex.org/W1997126009", + "https://openalex.org/W2008125068", + "https://openalex.org/W2010459912", + "https://openalex.org/W2012725996", + "https://openalex.org/W2014356541", + "https://openalex.org/W2017479642", + "https://openalex.org/W2027964569", + "https://openalex.org/W2030450972", + "https://openalex.org/W2031349338", + "https://openalex.org/W2034541995", + "https://openalex.org/W2040387238", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041754533", + "https://openalex.org/W2050195777", + "https://openalex.org/W2051465149", + "https://openalex.org/W2054881170", + "https://openalex.org/W2055503573", + "https://openalex.org/W2056653303", + "https://openalex.org/W2064675550", + "https://openalex.org/W2067472975", + "https://openalex.org/W2070246049", + "https://openalex.org/W2074447412", + "https://openalex.org/W2076110561", + "https://openalex.org/W2078626246", + "https://openalex.org/W2097074225", + "https://openalex.org/W2102162541", + "https://openalex.org/W2103626435", + "https://openalex.org/W2104578628", + "https://openalex.org/W2108380954", + "https://openalex.org/W2109177042", + "https://openalex.org/W2109883840", + "https://openalex.org/W2110418811", + "https://openalex.org/W2113553269", + "https://openalex.org/W2113640817", + "https://openalex.org/W2117756735", + "https://openalex.org/W2118944048", + "https://openalex.org/W2121058967", + "https://openalex.org/W2122861381", + "https://openalex.org/W2123381477", + "https://openalex.org/W2126999002", + "https://openalex.org/W2127129738", + "https://openalex.org/W2128084896", + "https://openalex.org/W2129812935", + "https://openalex.org/W2130259898", + "https://openalex.org/W2131847304", + "https://openalex.org/W2134692705", + "https://openalex.org/W2137595289", + "https://openalex.org/W2137983211", + "https://openalex.org/W2138537392", + "https://openalex.org/W2139960762", + "https://openalex.org/W2145339207", + "https://openalex.org/W2150559081", + "https://openalex.org/W2158985775", + "https://openalex.org/W2164954534", + "https://openalex.org/W2168479071", + "https://openalex.org/W2179833213", + "https://openalex.org/W2239232218", + "https://openalex.org/W2239916406", + "https://openalex.org/W2257979135", + "https://openalex.org/W2266714625", + "https://openalex.org/W2335276023", + "https://openalex.org/W2339890646", + "https://openalex.org/W2345737627", + "https://openalex.org/W2346717862", + "https://openalex.org/W2395962256", + "https://openalex.org/W2465244584", + "https://openalex.org/W2487365028", + "https://openalex.org/W2490045648", + "https://openalex.org/W2494808947", + "https://openalex.org/W2517135970", + "https://openalex.org/W2525748878", + "https://openalex.org/W2534240011", + "https://openalex.org/W2556930732", + "https://openalex.org/W2573798107", + "https://openalex.org/W2584231952", + "https://openalex.org/W2586197373", + "https://openalex.org/W2594632285", + "https://openalex.org/W2730644873", + "https://openalex.org/W2745110207", + "https://openalex.org/W2748760860", + "https://openalex.org/W2751013712", + "https://openalex.org/W2758626922", + "https://openalex.org/W2765372792", + "https://openalex.org/W2765861397", + "https://openalex.org/W2768911907", + "https://openalex.org/W2770660451", + "https://openalex.org/W2777417212", + "https://openalex.org/W2782714865", + "https://openalex.org/W2787894218", + "https://openalex.org/W2788403524", + "https://openalex.org/W2794371820", + "https://openalex.org/W2795982117", + "https://openalex.org/W2799103053", + "https://openalex.org/W2805869290", + "https://openalex.org/W2887432454", + "https://openalex.org/W2888317899", + "https://openalex.org/W2891423421", + "https://openalex.org/W2899283552", + "https://openalex.org/W2900119356", + "https://openalex.org/W2902480423", + "https://openalex.org/W2902946198", + "https://openalex.org/W2909451642", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W2950974717", + "https://openalex.org/W2962757926", + "https://openalex.org/W2962761333", + "https://openalex.org/W2962899390", + "https://openalex.org/W2963448313", + "https://openalex.org/W2964027982", + "https://openalex.org/W2964059953", + "https://openalex.org/W2964128214", + "https://openalex.org/W2964129632", + "https://openalex.org/W2971781109", + "https://openalex.org/W4210968171", + "https://openalex.org/W4213332169", + "https://openalex.org/W4233518571", + "https://openalex.org/W4238160257", + "https://openalex.org/W4250955649" + ], + "related_works": [ + "https://openalex.org/W2772595360", + "https://openalex.org/W2221523880", + "https://openalex.org/W3046946477", + "https://openalex.org/W2010181683", + "https://openalex.org/W2778641779", + "https://openalex.org/W2967095864", + "https://openalex.org/W2056815676", + "https://openalex.org/W2284359467", + "https://openalex.org/W204992595", + "https://openalex.org/W2049238023" + ], + "abstract_inverted_index": { + "The": [ + 0, + 100 + ], + "field": [ + 1, + 16 + ], + "of": [ + 2, + 12, + 31, + 70, + 78, + 104, + 112, + 122, + 142 + ], + "fluid": [ + 3, + 47, + 81, + 98, + 143 + ], + "mechanics": [ + 4, + 144 + ], + "is": [ + 5 + ], + "rapidly": [ + 6 + ], + "advancing,": [ + 7 + ], + "driven": [ + 8 + ], + "by": [ + 9 + ], + "unprecedented": [ + 10 + ], + "volumes": [ + 11 + ], + "data": [ + 13, + 37, + 117 + ], + "from": [ + 14, + 36, + 109 + ], + "experiments,": [ + 15, + 124 + ], + "measurements,": [ + 17 + ], + "and": [ + 18, + 56, + 63, + 75, + 88, + 96, + 102, + 125, + 136, + 146 + ], + "large-scale": [ + 19 + ], + "simulations": [ + 20 + ], + "at": [ + 21 + ], + "multiple": [ + 22 + ], + "spatiotemporal": [ + 23 + ], + "scales.": [ + 24 + ], + "Machine": [ + 25 + ], + "learning": [ + 26 + ], + "(ML)": [ + 27 + ], + "offers": [ + 28 + ], + "a": [ + 29, + 129 + ], + "wealth": [ + 30 + ], + "techniques": [ + 32 + ], + "to": [ + 33, + 60 + ], + "extract": [ + 34 + ], + "information": [ + 35 + ], + "that": [ + 38, + 115, + 133 + ], + "can": [ + 39, + 52, + 134 + ], + "be": [ + 40 + ], + "translated": [ + 41 + ], + "into": [ + 42 + ], + "knowledge": [ + 43, + 55 + ], + "about": [ + 44 + ], + "the": [ + 45, + 110 + ], + "underlying": [ + 46 + ], + "mechanics.": [ + 48, + 82 + ], + "Moreover,": [ + 49 + ], + "ML": [ + 50, + 79, + 86, + 127 + ], + "algorithms": [ + 51 + ], + "augment": [ + 53 + ], + "domain": [ + 54 + ], + "automate": [ + 57 + ], + "tasks": [ + 58 + ], + "related": [ + 59 + ], + "flow": [ + 61 + ], + "control": [ + 62 + ], + "optimization.": [ + 64 + ], + "This": [ + 65 + ], + "article": [ + 66 + ], + "presents": [ + 67 + ], + "an": [ + 68, + 119 + ], + "overview": [ + 69 + ], + "past": [ + 71 + ], + "history,": [ + 72 + ], + "current": [ + 73, + 140 + ], + "developments,": [ + 74 + ], + "emerging": [ + 76 + ], + "opportunities": [ + 77 + ], + "for": [ + 80, + 92 + ], + "We": [ + 83 + ], + "outline": [ + 84 + ], + "fundamental": [ + 85 + ], + "methodologies": [ + 87 + ], + "discuss": [ + 89 + ], + "their": [ + 90 + ], + "uses": [ + 91 + ], + "understanding,": [ + 93 + ], + "modeling,": [ + 94, + 123 + ], + "optimizing,": [ + 95 + ], + "controlling": [ + 97 + ], + "flows.": [ + 99 + ], + "strengths": [ + 101 + ], + "limitations": [ + 103 + ], + "these": [ + 105 + ], + "methods": [ + 106 + ], + "are": [ + 107 + ], + "addressed": [ + 108 + ], + "perspective": [ + 111 + ], + "scientific": [ + 113 + ], + "inquiry": [ + 114 + ], + "considers": [ + 116 + ], + "as": [ + 118 + ], + "inherent": [ + 120 + ], + "part": [ + 121 + ], + "simulations.": [ + 126 + ], + "provides": [ + 128 + ], + "powerful": [ + 130 + ], + "information-processing": [ + 131 + ], + "framework": [ + 132 + ], + "augment,": [ + 135 + ], + "possibly": [ + 137 + ], + "even": [ + 138 + ], + "transform,": [ + 139 + ], + "lines": [ + 141 + ], + "research": [ + 145 + ], + "industrial": [ + 147 + ], + "applications.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 236 + }, + { + "year": 2025, + "cited_by_count": 548 + }, + { + "year": 2024, + "cited_by_count": 526 + }, + { + "year": 2023, + "cited_by_count": 435 + }, + { + "year": 2022, + "cited_by_count": 396 + }, + { + "year": 2021, + "cited_by_count": 285 + }, + { + "year": 2020, + "cited_by_count": 121 + }, + { + "year": 2019, + "cited_by_count": 10 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2019-09-19T00:00:00" + }, + { + "id": "https://openalex.org/W2525984666", + "doi": "https://doi.org/10.1056/nejmp1606181", + "title": "Predicting the Future — Big Data, Machine Learning, and Clinical Medicine", + "display_name": "Predicting the Future — Big Data, Machine Learning, and Clinical Medicine", + "relevance_score": 3578.4949, + "publication_year": 2016, + "publication_date": "2016-09-28", + "ids": { + "openalex": "https://openalex.org/W2525984666", + "doi": "https://doi.org/10.1056/nejmp1606181", + "mag": "2525984666" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1056/nejmp1606181", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmp1606181", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5017000481", + "display_name": "Ziad Obermeyer", + "orcid": "https://orcid.org/0000-0002-4563-5849" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Ziad Obermeyer", + "raw_affiliation_strings": [ + "Department of Health Care Policy, Harvard Medical School, Boston, and the Department of Medical Ethics and Health Policy, Perelman School of Medicine" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Health Care Policy, Harvard Medical School, Boston, and the Department of Medical Ethics and Health Policy, Perelman School of Medicine", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5012567636", + "display_name": "Ezekiel Emanuel", + "orcid": "https://orcid.org/0000-0002-9796-5735" + }, + "institutions": [ + { + "id": "https://openalex.org/I79576946", + "display_name": "University of Pennsylvania", + "ror": "https://ror.org/00b30xv10", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I79576946" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ezekiel J. Emanuel", + "raw_affiliation_strings": [ + "Department of Health Care Management, Wharton School, University of Pennsylvania, Philadelphia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Health Care Management, Wharton School, University of Pennsylvania, Philadelphia", + "institution_ids": [ + "https://openalex.org/I79576946" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5017000481" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 397.1409, + "has_fulltext": false, + "cited_by_count": 3452, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "375", + "issue": "13", + "first_page": "1216", + "last_page": "1219" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9932000041007996, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9932000041007996, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11636", + "display_name": "Artificial Intelligence in Healthcare and Education", + "score": 0.991599977016449, + "subfield": { + "id": "https://openalex.org/subfields/2718", + "display_name": "Health Informatics" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9872000217437744, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.766974925994873 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6763951182365417 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6183133125305176 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.47957199811935425 + }, + { + "id": "https://openalex.org/keywords/precision-medicine", + "display_name": "Precision medicine", + "score": 0.46924924850463867 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.45585569739341736 + }, + { + "id": "https://openalex.org/keywords/scale-invariant-feature-transform", + "display_name": "Scale-invariant feature transform", + "score": 0.4480826258659363 + }, + { + "id": "https://openalex.org/keywords/medline", + "display_name": "MEDLINE", + "score": 0.42730244994163513 + }, + { + "id": "https://openalex.org/keywords/medical-physics", + "display_name": "Medical physics", + "score": 0.41148635745048523 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.21748274564743042 + }, + { + "id": "https://openalex.org/keywords/pathology", + "display_name": "Pathology", + "score": 0.20210126042366028 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.19222670793533325 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.09807196259498596 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.766974925994873 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6763951182365417 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6183133125305176 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.47957199811935425 + }, + { + "id": "https://openalex.org/C163763905", + "wikidata": "https://www.wikidata.org/wiki/Q17075943", + "display_name": "Precision medicine", + "level": 2, + "score": 0.46924924850463867 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.45585569739341736 + }, + { + "id": "https://openalex.org/C61265191", + "wikidata": "https://www.wikidata.org/wiki/Q767770", + "display_name": "Scale-invariant feature transform", + "level": 3, + "score": 0.4480826258659363 + }, + { + "id": "https://openalex.org/C2779473830", + "wikidata": "https://www.wikidata.org/wiki/Q1540899", + "display_name": "MEDLINE", + "level": 2, + "score": 0.42730244994163513 + }, + { + "id": "https://openalex.org/C19527891", + "wikidata": "https://www.wikidata.org/wiki/Q1120908", + "display_name": "Medical physics", + "level": 1, + "score": 0.41148635745048523 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.21748274564743042 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.20210126042366028 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.19222670793533325 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.09807196259498596 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1056/nejmp1606181", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmp1606181", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5070532", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "N Engl J Med", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "pmh:oai:pubmedcentral.nih.gov:5070532", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "N Engl J Med", + "raw_type": "Text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W2020506948", + "https://openalex.org/W2103018059", + "https://openalex.org/W2203167467", + "https://openalex.org/W2341256599", + "https://openalex.org/W2610886376" + ], + "related_works": [ + "https://openalex.org/W3014300295", + "https://openalex.org/W2297410961", + "https://openalex.org/W2548459112", + "https://openalex.org/W2905881943", + "https://openalex.org/W4224276240", + "https://openalex.org/W4312569874", + "https://openalex.org/W2946781799", + "https://openalex.org/W2588050043", + "https://openalex.org/W2531479711", + "https://openalex.org/W2191030086" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "algorithms": [ + 1 + ], + "of": [ + 2, + 11, + 25, + 28 + ], + "machine": [ + 3 + ], + "learning,": [ + 4 + ], + "which": [ + 5 + ], + "can": [ + 6 + ], + "sift": [ + 7 + ], + "through": [ + 8 + ], + "vast": [ + 9 + ], + "numbers": [ + 10 + ], + "variables": [ + 12 + ], + "looking": [ + 13 + ], + "for": [ + 14 + ], + "combinations": [ + 15 + ], + "that": [ + 16 + ], + "reliably": [ + 17 + ], + "predict": [ + 18 + ], + "outcomes,": [ + 19 + ], + "will": [ + 20 + ], + "improve": [ + 21, + 34 + ], + "prognosis,": [ + 22 + ], + "displace": [ + 23 + ], + "much": [ + 24 + ], + "the": [ + 26 + ], + "work": [ + 27 + ], + "radiologists": [ + 29 + ], + "and": [ + 30, + 33 + ], + "anatomical": [ + 31 + ], + "pathologists,": [ + 32 + ], + "diagnostic": [ + 35 + ], + "accuracy.": [ + 36 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 203 + }, + { + "year": 2025, + "cited_by_count": 588 + }, + { + "year": 2024, + "cited_by_count": 517 + }, + { + "year": 2023, + "cited_by_count": 393 + }, + { + "year": 2022, + "cited_by_count": 380 + }, + { + "year": 2021, + "cited_by_count": 405 + }, + { + "year": 2020, + "cited_by_count": 372 + }, + { + "year": 2019, + "cited_by_count": 283 + }, + { + "year": 2018, + "cited_by_count": 205 + }, + { + "year": 2017, + "cited_by_count": 98 + }, + { + "year": 2016, + "cited_by_count": 3 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2111547563", + "doi": "https://doi.org/10.1016/j.csbj.2014.11.005", + "title": "Machine learning applications in cancer prognosis and prediction", + "display_name": "Machine learning applications in cancer prognosis and prediction", + "relevance_score": 3577.737, + "publication_year": 2014, + "publication_date": "2014-11-15", + "ids": { + "openalex": "https://openalex.org/W2111547563", + "doi": "https://doi.org/10.1016/j.csbj.2014.11.005", + "mag": "2111547563", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/25750696" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5067569191", + "display_name": "Κωνσταντίνα Κούρου", + "orcid": "https://orcid.org/0000-0003-4310-2739" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantina Kourou", + "raw_affiliation_strings": [ + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104150275", + "display_name": "Themis P. Exarchos", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + }, + { + "id": "https://openalex.org/I4210105723", + "display_name": "FORTH Institute of Molecular Biology and Biotechnology", + "ror": "https://ror.org/01gzszr18", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210105723", + "https://openalex.org/I8901234" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Themis P. Exarchos", + "raw_affiliation_strings": [ + "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I4210105723" + ] + }, + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017880834", + "display_name": "Konstantinos Exarchos", + "orcid": "https://orcid.org/0000-0002-4754-7623" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantinos P. Exarchos", + "raw_affiliation_strings": [ + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5084550691", + "display_name": "Michalis V. Karamouzis", + "orcid": "https://orcid.org/0000-0003-1369-8201" + }, + "institutions": [ + { + "id": "https://openalex.org/I200777214", + "display_name": "National and Kapodistrian University of Athens", + "ror": "https://ror.org/04gnjpq42", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I200777214" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Michalis V. Karamouzis", + "raw_affiliation_strings": [ + "Molecular Oncology Unit, Department of Biological Chemistry, Medical School, University of Athens, Athens, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Molecular Oncology Unit, Department of Biological Chemistry, Medical School, University of Athens, Athens, Greece", + "institution_ids": [ + "https://openalex.org/I200777214" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5037813012", + "display_name": "Dimitrios I. Fotiadis", + "orcid": "https://orcid.org/0000-0002-7362-5082" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + }, + { + "id": "https://openalex.org/I4210105723", + "display_name": "FORTH Institute of Molecular Biology and Biotechnology", + "ror": "https://ror.org/01gzszr18", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210105723", + "https://openalex.org/I8901234" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Dimitrios I. Fotiadis", + "raw_affiliation_strings": [ + "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I4210105723" + ] + }, + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5037813012" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I194019607", + "https://openalex.org/I4210105723" + ], + "apc_list": { + "value": 2450, + "currency": "EUR", + "value_usd": 2642 + }, + "apc_paid": { + "value": 2450, + "currency": "EUR", + "value_usd": 2642 + }, + "fwci": 61.3227, + "has_fulltext": false, + "cited_by_count": 3275, + "citation_normalized_percentile": { + "value": 0.99922624, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "13", + "issue": null, + "first_page": "8", + "last_page": "17" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9977999925613403, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9977999925613403, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9937999844551086, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9843000173568726, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7670019865036011 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6441092491149902 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6317405104637146 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6097581386566162 + }, + { + "id": "https://openalex.org/keywords/cancer", + "display_name": "Cancer", + "score": 0.567906379699707 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5353600978851318 + }, + { + "id": "https://openalex.org/keywords/bayesian-network", + "display_name": "Bayesian network", + "score": 0.5231181979179382 + }, + { + "id": "https://openalex.org/keywords/clinical-practice", + "display_name": "Clinical Practice", + "score": 0.46658024191856384 + }, + { + "id": "https://openalex.org/keywords/variety", + "display_name": "Variety (cybernetics)", + "score": 0.4417306184768677 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.43627700209617615 + }, + { + "id": "https://openalex.org/keywords/predictive-modelling", + "display_name": "Predictive modelling", + "score": 0.4162035584449768 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2604517340660095 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.08188235759735107 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7670019865036011 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6441092491149902 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6317405104637146 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6097581386566162 + }, + { + "id": "https://openalex.org/C121608353", + "wikidata": "https://www.wikidata.org/wiki/Q12078", + "display_name": "Cancer", + "level": 2, + "score": 0.567906379699707 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5353600978851318 + }, + { + "id": "https://openalex.org/C33724603", + "wikidata": "https://www.wikidata.org/wiki/Q812540", + "display_name": "Bayesian network", + "level": 2, + "score": 0.5231181979179382 + }, + { + "id": "https://openalex.org/C2779974597", + "wikidata": "https://www.wikidata.org/wiki/Q28448986", + "display_name": "Clinical Practice", + "level": 2, + "score": 0.46658024191856384 + }, + { + "id": "https://openalex.org/C136197465", + "wikidata": "https://www.wikidata.org/wiki/Q1729295", + "display_name": "Variety (cybernetics)", + "level": 2, + "score": 0.4417306184768677 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.43627700209617615 + }, + { + "id": "https://openalex.org/C45804977", + "wikidata": "https://www.wikidata.org/wiki/Q7239673", + "display_name": "Predictive modelling", + "level": 2, + "score": 0.4162035584449768 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2604517340660095 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.08188235759735107 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126322002", + "wikidata": "https://www.wikidata.org/wiki/Q11180", + "display_name": "Internal medicine", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C512399662", + "wikidata": "https://www.wikidata.org/wiki/Q3505712", + "display_name": "Family medicine", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + { + "id": "pmid:25750696", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/25750696", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and structural biotechnology journal", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:35b9fc4c35f148889aab32c978d9a58b", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/35b9fc4c35f148889aab32c978d9a58b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Computational and Structural Biotechnology Journal, Vol 13, Iss C, Pp 8-17 (2015)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:3318377", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/4348437", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions", + "score": 0.4099999964237213 + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320338370", + "display_name": "FP7 Information and Communication Technologies", + "ror": null + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 74, + "referenced_works": [ + "https://openalex.org/W1491953704", + "https://openalex.org/W1500572886", + "https://openalex.org/W1517879388", + "https://openalex.org/W1519433744", + "https://openalex.org/W1565377632", + "https://openalex.org/W1570448133", + "https://openalex.org/W1591717158", + "https://openalex.org/W1651586605", + "https://openalex.org/W1663973292", + "https://openalex.org/W1960669649", + "https://openalex.org/W1971005400", + "https://openalex.org/W1978761216", + "https://openalex.org/W1983024255", + "https://openalex.org/W1985663400", + "https://openalex.org/W1987776395", + "https://openalex.org/W1989628460", + "https://openalex.org/W1992297816", + "https://openalex.org/W1993628165", + "https://openalex.org/W1995199599", + "https://openalex.org/W2007265575", + "https://openalex.org/W2011021469", + "https://openalex.org/W2014510428", + "https://openalex.org/W2017337590", + "https://openalex.org/W2020402396", + "https://openalex.org/W2021100122", + "https://openalex.org/W2025060250", + "https://openalex.org/W2025738103", + "https://openalex.org/W2036839465", + "https://openalex.org/W2041652340", + "https://openalex.org/W2048701123", + "https://openalex.org/W2053522428", + "https://openalex.org/W2058089746", + "https://openalex.org/W2062364738", + "https://openalex.org/W2083780116", + "https://openalex.org/W2088338744", + "https://openalex.org/W2089927030", + "https://openalex.org/W2091947792", + "https://openalex.org/W2097554668", + "https://openalex.org/W2105882193", + "https://openalex.org/W2109103446", + "https://openalex.org/W2109896839", + "https://openalex.org/W2111461407", + "https://openalex.org/W2116841457", + "https://openalex.org/W2117692326", + "https://openalex.org/W2118366842", + "https://openalex.org/W2119782683", + "https://openalex.org/W2122227569", + "https://openalex.org/W2123696692", + "https://openalex.org/W2126009609", + "https://openalex.org/W2128767954", + "https://openalex.org/W2130338776", + "https://openalex.org/W2132619562", + "https://openalex.org/W2133601033", + "https://openalex.org/W2140218006", + "https://openalex.org/W2148078825", + "https://openalex.org/W2152121590", + "https://openalex.org/W2154362705", + "https://openalex.org/W2155461561", + "https://openalex.org/W2156483112", + "https://openalex.org/W2157132621", + "https://openalex.org/W2157239837", + "https://openalex.org/W2163042952", + "https://openalex.org/W2167645795", + "https://openalex.org/W2167769381", + "https://openalex.org/W2170379523", + "https://openalex.org/W2324845196", + "https://openalex.org/W2431164060", + "https://openalex.org/W2476253186", + "https://openalex.org/W2977661550", + "https://openalex.org/W4205774955", + "https://openalex.org/W4255865525", + "https://openalex.org/W4296886862", + "https://openalex.org/W6660969321", + "https://openalex.org/W6663876547" + ], + "related_works": [ + "https://openalex.org/W2032233321", + "https://openalex.org/W3121970507", + "https://openalex.org/W2110028391", + "https://openalex.org/W54497855", + "https://openalex.org/W217960748", + "https://openalex.org/W3125814499", + "https://openalex.org/W2090827041", + "https://openalex.org/W2565703248", + "https://openalex.org/W187246281", + "https://openalex.org/W2143548620" + ], + "abstract_inverted_index": { + "Cancer": [ + 0 + ], + "has": [ + 1, + 51 + ], + "been": [ + 2, + 76, + 129 + ], + "characterized": [ + 3 + ], + "as": [ + 4, + 29, + 78, + 216, + 218, + 250 + ], + "a": [ + 5, + 19, + 24, + 191 + ], + "heterogeneous": [ + 6 + ], + "disease": [ + 7 + ], + "consisting": [ + 8 + ], + "of": [ + 9, + 18, + 37, + 41, + 67, + 87, + 94, + 109, + 138, + 156, + 163, + 169, + 193, + 201, + 233 + ], + "many": [ + 10, + 53 + ], + "different": [ + 11, + 220 + ], + "subtypes.": [ + 12 + ], + "The": [ + 13, + 39, + 204 + ], + "early": [ + 14 + ], + "diagnosis": [ + 15 + ], + "and": [ + 16, + 59, + 85, + 124, + 144, + 223 + ], + "prognosis": [ + 17 + ], + "cancer": [ + 20, + 27, + 43, + 133, + 164, + 202, + 237, + 255 + ], + "type": [ + 21 + ], + "have": [ + 22, + 75, + 128 + ], + "become": [ + 23 + ], + "necessity": [ + 25 + ], + "in": [ + 26, + 132, + 142, + 173, + 181, + 198, + 236 + ], + "research,": [ + 28, + 238 + ], + "it": [ + 30, + 150 + ], + "can": [ + 31, + 159 + ], + "facilitate": [ + 32 + ], + "the": [ + 33, + 57, + 60, + 65, + 83, + 92, + 136, + 154, + 182, + 199, + 227, + 231, + 242 + ], + "subsequent": [ + 34 + ], + "clinical": [ + 35, + 184 + ], + "management": [ + 36 + ], + "patients.": [ + 38 + ], + "importance": [ + 40 + ], + "classifying": [ + 42 + ], + "patients": [ + 44 + ], + "into": [ + 45 + ], + "high": [ + 46 + ], + "or": [ + 47, + 257 + ], + "low": [ + 48 + ], + "risk": [ + 49, + 256 + ], + "groups": [ + 50 + ], + "led": [ + 52 + ], + "research": [ + 54, + 134 + ], + "teams,": [ + 55 + ], + "from": [ + 56, + 101 + ], + "biomedical": [ + 58 + ], + "bioinformatics": [ + 61 + ], + "field,": [ + 62 + ], + "to": [ + 63, + 81, + 97, + 178, + 253 + ], + "study": [ + 64 + ], + "application": [ + 66, + 232 + ], + "machine": [ + 68 + ], + "learning": [ + 69 + ], + "(ML)": [ + 70 + ], + "methods.": [ + 71 + ], + "Therefore,": [ + 72 + ], + "these": [ + 73, + 110, + 176, + 248 + ], + "techniques": [ + 74, + 215, + 249 + ], + "utilized": [ + 77 + ], + "an": [ + 79, + 166, + 251 + ], + "aim": [ + 80, + 252 + ], + "model": [ + 82, + 254 + ], + "progression": [ + 84 + ], + "treatment": [ + 86 + ], + "cancerous": [ + 88 + ], + "conditions.": [ + 89 + ], + "In": [ + 90, + 186 + ], + "addition,": [ + 91 + ], + "ability": [ + 93 + ], + "ML": [ + 95, + 157, + 195, + 214, + 234 + ], + "tools": [ + 96 + ], + "detect": [ + 98 + ], + "key": [ + 99 + ], + "features": [ + 100, + 222 + ], + "complex": [ + 102 + ], + "datasets": [ + 103 + ], + "reveals": [ + 104 + ], + "their": [ + 105 + ], + "importance.": [ + 106 + ], + "A": [ + 107 + ], + "variety": [ + 108 + ], + "techniques,": [ + 111 + ], + "including": [ + 112 + ], + "Artificial": [ + 113 + ], + "Neural": [ + 114 + ], + "Networks": [ + 115, + 118 + ], + "(ANNs),": [ + 116 + ], + "Bayesian": [ + 117 + ], + "(BNs),": [ + 119 + ], + "Support": [ + 120 + ], + "Vector": [ + 121 + ], + "Machines": [ + 122 + ], + "(SVMs)": [ + 123 + ], + "Decision": [ + 125 + ], + "Trees": [ + 126 + ], + "(DTs)": [ + 127 + ], + "widely": [ + 130 + ], + "applied": [ + 131 + ], + "for": [ + 135, + 175 + ], + "development": [ + 137 + ], + "predictive": [ + 139, + 205 + ], + "models,": [ + 140 + ], + "resulting": [ + 141 + ], + "effective": [ + 143 + ], + "accurate": [ + 145 + ], + "decision": [ + 146 + ], + "making.": [ + 147 + ], + "Even": [ + 148 + ], + "though": [ + 149 + ], + "is": [ + 151, + 171 + ], + "evident": [ + 152 + ], + "that": [ + 153, + 246 + ], + "use": [ + 155 + ], + "methods": [ + 158, + 177, + 235 + ], + "improve": [ + 160 + ], + "our": [ + 161 + ], + "understanding": [ + 162 + ], + "progression,": [ + 165 + ], + "appropriate": [ + 167 + ], + "level": [ + 168 + ], + "validation": [ + 170 + ], + "needed": [ + 172 + ], + "order": [ + 174 + ], + "be": [ + 179 + ], + "considered": [ + 180 + ], + "everyday": [ + 183 + ], + "practice.": [ + 185 + ], + "this": [ + 187 + ], + "work,": [ + 188 + ], + "we": [ + 189, + 239 + ], + "present": [ + 190, + 240 + ], + "review": [ + 192 + ], + "recent": [ + 194, + 244 + ], + "approaches": [ + 196 + ], + "employed": [ + 197 + ], + "modeling": [ + 200 + ], + "progression.": [ + 203 + ], + "models": [ + 206 + ], + "discussed": [ + 207 + ], + "here": [ + 208, + 241 + ], + "are": [ + 209 + ], + "based": [ + 210 + ], + "on": [ + 211, + 219, + 230 + ], + "various": [ + 212 + ], + "supervised": [ + 213 + ], + "well": [ + 217 + ], + "input": [ + 221 + ], + "data": [ + 224 + ], + "samples.": [ + 225 + ], + "Given": [ + 226 + ], + "growing": [ + 228 + ], + "trend": [ + 229 + ], + "most": [ + 243 + ], + "publications": [ + 245 + ], + "employ": [ + 247 + ], + "patient": [ + 258 + ], + "outcomes.": [ + 259 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 131 + }, + { + "year": 2025, + "cited_by_count": 408 + }, + { + "year": 2024, + "cited_by_count": 427 + }, + { + "year": 2023, + "cited_by_count": 421 + }, + { + "year": 2022, + "cited_by_count": 411 + }, + { + "year": 2021, + "cited_by_count": 446 + }, + { + "year": 2020, + "cited_by_count": 441 + }, + { + "year": 2019, + "cited_by_count": 280 + }, + { + "year": 2018, + "cited_by_count": 165 + }, + { + "year": 2017, + "cited_by_count": 84 + }, + { + "year": 2016, + "cited_by_count": 49 + }, + { + "year": 2015, + "cited_by_count": 11 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2923537029", + "doi": "https://doi.org/10.1103/revmodphys.91.045002", + "title": "Machine learning and the physical sciences", + "display_name": "Machine learning and the physical sciences", + "relevance_score": 3569.3367, + "publication_year": 2019, + "publication_date": "2019-12-06", + "ids": { + "openalex": "https://openalex.org/W2923537029", + "doi": "https://doi.org/10.1103/revmodphys.91.045002", + "mag": "2923537029" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/revmodphys.91.045002", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/revmodphys.91.045002", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S73260565", + "display_name": "Reviews of Modern Physics", + "issn_l": "0034-6861", + "issn": [ + "0034-6861", + "1538-4527", + "1539-0756" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1903.10563", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5007408828", + "display_name": "Giuseppe Carleo", + "orcid": "https://orcid.org/0000-0002-8887-4356" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Giuseppe Carleo", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-8887-4356", + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5083228566", + "display_name": "J. I. Cirac", + "orcid": "https://orcid.org/0000-0003-3359-1743" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ignacio Cirac", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108167175", + "display_name": "K. Cranmer", + "orcid": "https://orcid.org/0000-0002-5769-7094" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kyle Cranmer", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5058259063", + "display_name": "Laurent Daudet", + "orcid": "https://orcid.org/0000-0001-5811-1078" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Laurent Daudet", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073832417", + "display_name": "Maria Schuld", + "orcid": "https://orcid.org/0000-0001-8626-168X" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004273274", + "display_name": "Naftali Tishby", + "orcid": "https://orcid.org/0000-0002-8086-4436" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Naftali Tishby", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024209749", + "display_name": "Leslie Vogt-Maranto", + "orcid": "https://orcid.org/0000-0002-7006-4582" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Leslie Vogt-Maranto", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-7006-4582", + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5089268172", + "display_name": "Lenka Zdeborová", + "orcid": "https://orcid.org/0000-0002-8377-3978" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lenka Zdeborová", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 8, + "corresponding_author_ids": [ + "https://openalex.org/A5007408828" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210153546" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 98.7524, + "has_fulltext": false, + "cited_by_count": 2413, + "citation_normalized_percentile": { + "value": 0.99995195, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "91", + "issue": "4", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.9898999929428101, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11804", + "display_name": "Quantum many-body systems", + "score": 0.9840999841690063, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.8221291899681091 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.517598032951355 + }, + { + "id": "https://openalex.org/keywords/column", + "display_name": "Column (typography)", + "score": 0.5173665881156921 + }, + { + "id": "https://openalex.org/keywords/engineering-physics", + "display_name": "Engineering physics", + "score": 0.3996226489543915 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.3428024649620056 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.33104032278060913 + }, + { + "id": "https://openalex.org/keywords/engineering-ethics", + "display_name": "Engineering ethics", + "score": 0.3266659080982208 + }, + { + "id": "https://openalex.org/keywords/mechanical-engineering", + "display_name": "Mechanical engineering", + "score": 0.10730153322219849 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.08470335602760315 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.08188295364379883 + }, + { + "id": "https://openalex.org/keywords/connection", + "display_name": "Connection (principal bundle)", + "score": 0.05932199954986572 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.8221291899681091 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.517598032951355 + }, + { + "id": "https://openalex.org/C2780551164", + "wikidata": "https://www.wikidata.org/wiki/Q2306599", + "display_name": "Column (typography)", + "level": 3, + "score": 0.5173665881156921 + }, + { + "id": "https://openalex.org/C61696701", + "wikidata": "https://www.wikidata.org/wiki/Q770766", + "display_name": "Engineering physics", + "level": 1, + "score": 0.3996226489543915 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.3428024649620056 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.33104032278060913 + }, + { + "id": "https://openalex.org/C55587333", + "wikidata": "https://www.wikidata.org/wiki/Q1133029", + "display_name": "Engineering ethics", + "level": 1, + "score": 0.3266659080982208 + }, + { + "id": "https://openalex.org/C78519656", + "wikidata": "https://www.wikidata.org/wiki/Q101333", + "display_name": "Mechanical engineering", + "level": 1, + "score": 0.10730153322219849 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.08470335602760315 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.08188295364379883 + }, + { + "id": "https://openalex.org/C13355873", + "wikidata": "https://www.wikidata.org/wiki/Q2920850", + "display_name": "Connection (principal bundle)", + "level": 2, + "score": 0.05932199954986572 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1103/revmodphys.91.045002", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/revmodphys.91.045002", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S73260565", + "display_name": "Reviews of Modern Physics", + "issn_l": "0034-6861", + "issn": [ + "0034-6861", + "1538-4527", + "1539-0756" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1903.10563", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1903.10563", + "pdf_url": "https://arxiv.org/pdf/1903.10563", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-02101667v1", + "is_oa": false, + "landing_page_url": "https://hal.science/hal-02101667", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Rev.Mod.Phys., 2019, 91 (4), pp.045002. ⟨10.1103/RevModPhys.91.045002⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:283035", + "is_oa": true, + "landing_page_url": "https://infoscience.epfl.ch/handle/20.500.14299/175040", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "research article" + }, + { + "id": "pmh:oai:pure.mpg.de:item_3192298", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/21.11116/0000-0005-B0C5-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1903.10563", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1903.10563", + "pdf_url": "https://arxiv.org/pdf/1903.10563", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G162064734", + "display_name": null, + "funder_award_id": "W911NF-13-1-0387", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G3038972242", + "display_name": null, + "funder_award_id": "714608-SMiLe", + "funder_id": "https://openalex.org/F4320338335", + "funder_display_name": "H2020 European Research Council" + }, + { + "id": "https://openalex.org/G3228186847", + "display_name": null, + "funder_award_id": "ACI-1450310", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G346715306", + "display_name": null, + "funder_award_id": "OAC-1836650", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6221687394", + "display_name": null, + "funder_award_id": "DMR-1420073", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + }, + { + "id": "https://openalex.org/F4320338335", + "display_name": "H2020 European Research Council", + "ror": "https://ror.org/0472cxd90" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 580, + "referenced_works": [ + "https://openalex.org/W32507011", + "https://openalex.org/W41554520", + "https://openalex.org/W51943945", + "https://openalex.org/W577274971", + "https://openalex.org/W632087424", + "https://openalex.org/W659070123", + "https://openalex.org/W965729195", + "https://openalex.org/W1490670270", + "https://openalex.org/W1501987263", + "https://openalex.org/W1510052597", + "https://openalex.org/W1527520754", + "https://openalex.org/W1529624360", + "https://openalex.org/W1543736766", + "https://openalex.org/W1555084454", + "https://openalex.org/W1579940749", + "https://openalex.org/W1594031697", + "https://openalex.org/W1631356911", + "https://openalex.org/W1650706190", + "https://openalex.org/W1668248414", + "https://openalex.org/W1694049600", + "https://openalex.org/W1731081199", + "https://openalex.org/W1813659000", + "https://openalex.org/W1825525822", + "https://openalex.org/W1871641673", + "https://openalex.org/W1890000358", + "https://openalex.org/W1896203379", + "https://openalex.org/W1959879694", + "https://openalex.org/W1963762696", + "https://openalex.org/W1970789124", + "https://openalex.org/W1973128603", + "https://openalex.org/W1975907901", + "https://openalex.org/W1983959825", + "https://openalex.org/W1984793731", + "https://openalex.org/W1988369744", + "https://openalex.org/W1988790447", + "https://openalex.org/W1990124919", + "https://openalex.org/W1990755770", + "https://openalex.org/W1993482030", + "https://openalex.org/W1994395934", + "https://openalex.org/W1995842804", + "https://openalex.org/W1998515260", + "https://openalex.org/W1999383621", + "https://openalex.org/W1999975338", + "https://openalex.org/W2004531067", + "https://openalex.org/W2007749676", + "https://openalex.org/W2010536552", + "https://openalex.org/W2011535927", + "https://openalex.org/W2012895716", + "https://openalex.org/W2015990127", + "https://openalex.org/W2019781611", + "https://openalex.org/W2020452821", + "https://openalex.org/W2020786104", + "https://openalex.org/W2024514015", + "https://openalex.org/W2025444507", + "https://openalex.org/W2029007937", + "https://openalex.org/W2029413789", + "https://openalex.org/W2029507757", + "https://openalex.org/W2030450972", + "https://openalex.org/W2034451938", + "https://openalex.org/W2036463035", + "https://openalex.org/W2037768897", + "https://openalex.org/W2040171281", + "https://openalex.org/W2042318263", + "https://openalex.org/W2045973738", + "https://openalex.org/W2049530405", + "https://openalex.org/W2053881994", + "https://openalex.org/W2062363822", + "https://openalex.org/W2063397409", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066424095", + "https://openalex.org/W2068476337", + "https://openalex.org/W2069129925", + "https://openalex.org/W2072420187", + "https://openalex.org/W2072637332", + "https://openalex.org/W2073065445", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076476236", + "https://openalex.org/W2079488937", + "https://openalex.org/W2080021732", + "https://openalex.org/W2080173214", + "https://openalex.org/W2080531309", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081119846", + "https://openalex.org/W2081748565", + "https://openalex.org/W2083415705", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087375161", + "https://openalex.org/W2088025933", + "https://openalex.org/W2090614046", + "https://openalex.org/W2093437356", + "https://openalex.org/W2096391265", + "https://openalex.org/W2097714737", + "https://openalex.org/W2103496339", + "https://openalex.org/W2104489082", + "https://openalex.org/W2105724942", + "https://openalex.org/W2112370854", + "https://openalex.org/W2116064496", + "https://openalex.org/W2116416291", + "https://openalex.org/W2118706537", + "https://openalex.org/W2120802379", + "https://openalex.org/W2121863487", + "https://openalex.org/W2125621954", + "https://openalex.org/W2127048411", + "https://openalex.org/W2128084896", + "https://openalex.org/W2132914434", + "https://openalex.org/W2134344701", + "https://openalex.org/W2139812092", + "https://openalex.org/W2140862024", + "https://openalex.org/W2148539882", + "https://openalex.org/W2151729750", + "https://openalex.org/W2151781750", + "https://openalex.org/W2152876174", + "https://openalex.org/W2155413623", + "https://openalex.org/W2161966883", + "https://openalex.org/W2165960883", + "https://openalex.org/W2167298647", + "https://openalex.org/W2168029744", + "https://openalex.org/W2171253836", + "https://openalex.org/W2209668876", + "https://openalex.org/W2211979669", + "https://openalex.org/W2226799981", + "https://openalex.org/W2240020188", + "https://openalex.org/W2244690429", + "https://openalex.org/W2246040896", + "https://openalex.org/W2257086086", + "https://openalex.org/W2257617748", + "https://openalex.org/W2257937122", + "https://openalex.org/W2267648874", + "https://openalex.org/W2325907229", + "https://openalex.org/W2326812357", + "https://openalex.org/W2337082154", + "https://openalex.org/W2339008828", + "https://openalex.org/W2341702711", + "https://openalex.org/W2347891459", + "https://openalex.org/W2394697995", + "https://openalex.org/W2414456771", + "https://openalex.org/W2419175238", + "https://openalex.org/W2486570794", + "https://openalex.org/W2490183153", + "https://openalex.org/W2491766731", + "https://openalex.org/W2494808947", + "https://openalex.org/W2515276161", + "https://openalex.org/W2516533688", + "https://openalex.org/W2516912949", + "https://openalex.org/W2517648041", + "https://openalex.org/W2520022941", + "https://openalex.org/W2521066248", + "https://openalex.org/W2525193548", + "https://openalex.org/W2528697476", + "https://openalex.org/W2528710350", + "https://openalex.org/W2530117613", + "https://openalex.org/W2530819665", + "https://openalex.org/W2531147647", + "https://openalex.org/W2533940598", + "https://openalex.org/W2541404351", + "https://openalex.org/W2543804629", + "https://openalex.org/W2547192247", + "https://openalex.org/W2547447472", + "https://openalex.org/W2548129158", + "https://openalex.org/W2549491455", + "https://openalex.org/W2556341799", + "https://openalex.org/W2557778781", + "https://openalex.org/W2558748708", + "https://openalex.org/W2559394418", + "https://openalex.org/W2559655401", + "https://openalex.org/W2562250282", + "https://openalex.org/W2563240863", + "https://openalex.org/W2563437659", + "https://openalex.org/W2565722603", + "https://openalex.org/W2566505556", + "https://openalex.org/W2572438701", + "https://openalex.org/W2580506952", + "https://openalex.org/W2580838454", + "https://openalex.org/W2582157661", + "https://openalex.org/W2582761306", + "https://openalex.org/W2582886917", + "https://openalex.org/W2588219153", + "https://openalex.org/W2588591043", + "https://openalex.org/W2592570417", + "https://openalex.org/W2593634001", + "https://openalex.org/W2593807178", + "https://openalex.org/W2594041373", + "https://openalex.org/W2594639291", + "https://openalex.org/W2594780084", + "https://openalex.org/W2594983911", + "https://openalex.org/W2604272474", + "https://openalex.org/W2604506260", + "https://openalex.org/W2604901683", + "https://openalex.org/W2605800822", + "https://openalex.org/W2606429533", + "https://openalex.org/W2606470147", + "https://openalex.org/W2607662938", + "https://openalex.org/W2607839392", + "https://openalex.org/W2610038766", + "https://openalex.org/W2611652092", + "https://openalex.org/W2612065714", + "https://openalex.org/W2612690371", + "https://openalex.org/W2614083378", + "https://openalex.org/W2614157797", + "https://openalex.org/W2615473567", + "https://openalex.org/W2618159897", + "https://openalex.org/W2618574512", + "https://openalex.org/W2618646460", + "https://openalex.org/W2618945100", + "https://openalex.org/W2620286290", + "https://openalex.org/W2623750799", + "https://openalex.org/W2624637765", + "https://openalex.org/W2626454479", + "https://openalex.org/W2649051464", + "https://openalex.org/W2727796268", + "https://openalex.org/W2731335845", + "https://openalex.org/W2736592352", + "https://openalex.org/W2737327729", + "https://openalex.org/W2739440074", + "https://openalex.org/W2740976142", + "https://openalex.org/W2742127985", + "https://openalex.org/W2743218360", + "https://openalex.org/W2744415540", + "https://openalex.org/W2745533326", + "https://openalex.org/W2746272096", + "https://openalex.org/W2746470301", + "https://openalex.org/W2750458571", + "https://openalex.org/W2750586355", + "https://openalex.org/W2750673150", + "https://openalex.org/W2752849906", + "https://openalex.org/W2753545915", + "https://openalex.org/W2753962198", + "https://openalex.org/W2755157865", + "https://openalex.org/W2755190613", + "https://openalex.org/W2755695124", + "https://openalex.org/W2756015143", + "https://openalex.org/W2756291233", + "https://openalex.org/W2761015455", + "https://openalex.org/W2761329292", + "https://openalex.org/W2761704992", + "https://openalex.org/W2762549329", + "https://openalex.org/W2762761825", + "https://openalex.org/W2763146374", + "https://openalex.org/W2763850513", + "https://openalex.org/W2763894180", + "https://openalex.org/W2764347725", + "https://openalex.org/W2765128778", + "https://openalex.org/W2765372792", + "https://openalex.org/W2765499180", + "https://openalex.org/W2765597272", + "https://openalex.org/W2765861397", + "https://openalex.org/W2765910566", + "https://openalex.org/W2766140179", + "https://openalex.org/W2766183519", + "https://openalex.org/W2766323574", + "https://openalex.org/W2766572821", + "https://openalex.org/W2766678531", + "https://openalex.org/W2767545053", + "https://openalex.org/W2767713609", + "https://openalex.org/W2768213699", + "https://openalex.org/W2769068614", + "https://openalex.org/W2769287225", + "https://openalex.org/W2772549578", + "https://openalex.org/W2774682142", + "https://openalex.org/W2775562332", + "https://openalex.org/W2775599538", + "https://openalex.org/W2775970449", + "https://openalex.org/W2778051509", + "https://openalex.org/W2778530713", + "https://openalex.org/W2779710223", + "https://openalex.org/W2780640308", + "https://openalex.org/W2781708744", + "https://openalex.org/W2782213776", + "https://openalex.org/W2782714865", + "https://openalex.org/W2782719466", + "https://openalex.org/W2783102654", + "https://openalex.org/W2785331752", + "https://openalex.org/W2785813126", + "https://openalex.org/W2785838999", + "https://openalex.org/W2785942752", + "https://openalex.org/W2786295636", + "https://openalex.org/W2786721297", + "https://openalex.org/W2786956473", + "https://openalex.org/W2787088079", + "https://openalex.org/W2787955889", + "https://openalex.org/W2788379092", + "https://openalex.org/W2788577944", + "https://openalex.org/W2788652239", + "https://openalex.org/W2788808196", + "https://openalex.org/W2788824392", + "https://openalex.org/W2789327225", + "https://openalex.org/W2789590546", + "https://openalex.org/W2789706299", + "https://openalex.org/W2790105002", + "https://openalex.org/W2791995286", + "https://openalex.org/W2792137452", + "https://openalex.org/W2792315573", + "https://openalex.org/W2792351009", + "https://openalex.org/W2792521034", + "https://openalex.org/W2792944272", + "https://openalex.org/W2792946961", + "https://openalex.org/W2793087725", + "https://openalex.org/W2793179281", + "https://openalex.org/W2793645414", + "https://openalex.org/W2793709686", + "https://openalex.org/W2794727009", + "https://openalex.org/W2795016065", + "https://openalex.org/W2795407028", + "https://openalex.org/W2796506892", + "https://openalex.org/W2796744096", + "https://openalex.org/W2798084934", + "https://openalex.org/W2798368581", + "https://openalex.org/W2798398359", + "https://openalex.org/W2798434869", + "https://openalex.org/W2798439837", + "https://openalex.org/W2798701005", + "https://openalex.org/W2798718650", + "https://openalex.org/W2799038815", + "https://openalex.org/W2800301423", + "https://openalex.org/W2803163155", + "https://openalex.org/W2803328959", + "https://openalex.org/W2803439868", + "https://openalex.org/W2804425690", + "https://openalex.org/W2804639765", + "https://openalex.org/W2805461540", + "https://openalex.org/W2805827569", + "https://openalex.org/W2806094831", + "https://openalex.org/W2806315097", + "https://openalex.org/W2806607279", + "https://openalex.org/W2806687966", + "https://openalex.org/W2807616984", + "https://openalex.org/W2808455355", + "https://openalex.org/W2809092000", + "https://openalex.org/W2810437889", + "https://openalex.org/W2810441707", + "https://openalex.org/W2810443692", + "https://openalex.org/W2820787925", + "https://openalex.org/W2837143805", + "https://openalex.org/W2845055700", + "https://openalex.org/W2883445762", + "https://openalex.org/W2883954259", + "https://openalex.org/W2884430236", + "https://openalex.org/W2884564258", + "https://openalex.org/W2884817966", + "https://openalex.org/W2885278795", + "https://openalex.org/W2886382778", + "https://openalex.org/W2886408278", + "https://openalex.org/W2888720512", + "https://openalex.org/W2888774813", + "https://openalex.org/W2889149492", + "https://openalex.org/W2891423421", + "https://openalex.org/W2892666903", + "https://openalex.org/W2893674448", + "https://openalex.org/W2894980093", + "https://openalex.org/W2895363620", + "https://openalex.org/W2895846750", + "https://openalex.org/W2896410853", + "https://openalex.org/W2896564495", + "https://openalex.org/W2896712926", + "https://openalex.org/W2896817368", + "https://openalex.org/W2897050953", + "https://openalex.org/W2897760057", + "https://openalex.org/W2898121159", + "https://openalex.org/W2898391453", + "https://openalex.org/W2898595154", + "https://openalex.org/W2898966067", + "https://openalex.org/W2899415024", + "https://openalex.org/W2899961353", + "https://openalex.org/W2900466252", + "https://openalex.org/W2901551902", + "https://openalex.org/W2902247106", + "https://openalex.org/W2902639110", + "https://openalex.org/W2903935053", + "https://openalex.org/W2905527813", + "https://openalex.org/W2907627375", + "https://openalex.org/W2910259907", + "https://openalex.org/W2912516940", + "https://openalex.org/W2913063022", + "https://openalex.org/W2914465168", + "https://openalex.org/W2914520121", + "https://openalex.org/W2914529849", + "https://openalex.org/W2914982345", + "https://openalex.org/W2915156775", + "https://openalex.org/W2916052864", + "https://openalex.org/W2916528205", + "https://openalex.org/W2917217327", + "https://openalex.org/W2918745211", + "https://openalex.org/W2919115771", + "https://openalex.org/W2919751573", + "https://openalex.org/W2923779858", + "https://openalex.org/W2935584311", + "https://openalex.org/W2940305049", + "https://openalex.org/W2940425080", + "https://openalex.org/W2941443959", + "https://openalex.org/W2949158470", + "https://openalex.org/W2949697408", + "https://openalex.org/W2950881872", + "https://openalex.org/W2950999850", + "https://openalex.org/W2951004968", + "https://openalex.org/W2951993056", + "https://openalex.org/W2952177798", + "https://openalex.org/W2952203743", + "https://openalex.org/W2952877407", + "https://openalex.org/W2953283096", + "https://openalex.org/W2953495237", + "https://openalex.org/W2953581299", + "https://openalex.org/W2954332695", + "https://openalex.org/W2954692534", + "https://openalex.org/W2962730419", + "https://openalex.org/W2962929001", + "https://openalex.org/W2962938080", + "https://openalex.org/W2962947392", + "https://openalex.org/W2962999242", + "https://openalex.org/W2963071675", + "https://openalex.org/W2963072996", + "https://openalex.org/W2963173679", + "https://openalex.org/W2963784808", + "https://openalex.org/W2963819344", + "https://openalex.org/W2963827891", + "https://openalex.org/W2963886912", + "https://openalex.org/W2964156139", + "https://openalex.org/W2964268718", + "https://openalex.org/W2964313985", + "https://openalex.org/W2971059194", + "https://openalex.org/W2972246420", + "https://openalex.org/W2974176966", + "https://openalex.org/W2979001666", + "https://openalex.org/W2991697224", + "https://openalex.org/W2993717751", + "https://openalex.org/W2997073156", + "https://openalex.org/W2999905431", + "https://openalex.org/W3006317140", + "https://openalex.org/W3006943238", + "https://openalex.org/W3022095225", + "https://openalex.org/W3022539872", + "https://openalex.org/W3026847731", + "https://openalex.org/W3037108023", + "https://openalex.org/W3098229010", + "https://openalex.org/W3098509317", + "https://openalex.org/W3098558521", + "https://openalex.org/W3098574683", + "https://openalex.org/W3098827579", + "https://openalex.org/W3098847359", + "https://openalex.org/W3099013266", + "https://openalex.org/W3099014823", + "https://openalex.org/W3099142519", + "https://openalex.org/W3099186397", + "https://openalex.org/W3099267591", + "https://openalex.org/W3099305384", + "https://openalex.org/W3099381338", + "https://openalex.org/W3099423575", + "https://openalex.org/W3099659109", + "https://openalex.org/W3099680657", + "https://openalex.org/W3099765109", + "https://openalex.org/W3099782627", + "https://openalex.org/W3099813870", + "https://openalex.org/W3099950071", + "https://openalex.org/W3099956647", + "https://openalex.org/W3100009607", + "https://openalex.org/W3100068159", + "https://openalex.org/W3100072999", + "https://openalex.org/W3100127953", + "https://openalex.org/W3100248348", + "https://openalex.org/W3100294950", + "https://openalex.org/W3100492156", + "https://openalex.org/W3100511033", + "https://openalex.org/W3100550188", + "https://openalex.org/W3100571530", + "https://openalex.org/W3100749134", + "https://openalex.org/W3100757891", + "https://openalex.org/W3100942527", + "https://openalex.org/W3101119258", + "https://openalex.org/W3101214870", + "https://openalex.org/W3101363214", + "https://openalex.org/W3101493857", + "https://openalex.org/W3101501459", + "https://openalex.org/W3101542436", + "https://openalex.org/W3101643101", + "https://openalex.org/W3101696966", + "https://openalex.org/W3101749733", + "https://openalex.org/W3101949649", + "https://openalex.org/W3102014803", + "https://openalex.org/W3102038441", + "https://openalex.org/W3102180547", + "https://openalex.org/W3102400420", + "https://openalex.org/W3102409313", + "https://openalex.org/W3102548437", + "https://openalex.org/W3102549167", + "https://openalex.org/W3102617294", + "https://openalex.org/W3102641634", + "https://openalex.org/W3102678975", + "https://openalex.org/W3102776521", + "https://openalex.org/W3102844577", + "https://openalex.org/W3102885034", + "https://openalex.org/W3102926255", + "https://openalex.org/W3102929400", + "https://openalex.org/W3103002362", + "https://openalex.org/W3103107186", + "https://openalex.org/W3103289362", + "https://openalex.org/W3103328814", + "https://openalex.org/W3103393581", + "https://openalex.org/W3103574448", + "https://openalex.org/W3103589224", + "https://openalex.org/W3103722330", + "https://openalex.org/W3103746320", + "https://openalex.org/W3103863530", + "https://openalex.org/W3104065018", + "https://openalex.org/W3104289311", + "https://openalex.org/W3104300173", + "https://openalex.org/W3104403078", + "https://openalex.org/W3104481216", + "https://openalex.org/W3104496372", + "https://openalex.org/W3104536462", + "https://openalex.org/W3104644561", + "https://openalex.org/W3104674222", + "https://openalex.org/W3104690326", + "https://openalex.org/W3104771979", + "https://openalex.org/W3104864936", + "https://openalex.org/W3104962094", + "https://openalex.org/W3105233262", + "https://openalex.org/W3105377867", + "https://openalex.org/W3105494006", + "https://openalex.org/W3105570377", + "https://openalex.org/W3105585588", + "https://openalex.org/W3105977603", + "https://openalex.org/W3106144922", + "https://openalex.org/W3106166086", + "https://openalex.org/W3106193592", + "https://openalex.org/W3106214974", + "https://openalex.org/W3106310231", + "https://openalex.org/W3106418633", + "https://openalex.org/W3106447034", + "https://openalex.org/W3106469526", + "https://openalex.org/W3112028493", + "https://openalex.org/W3121355058", + "https://openalex.org/W3121659139", + "https://openalex.org/W3123261968", + "https://openalex.org/W3124956069", + "https://openalex.org/W3132379378", + "https://openalex.org/W3137695714", + "https://openalex.org/W3140960170", + "https://openalex.org/W3147165232", + "https://openalex.org/W4212774754", + "https://openalex.org/W4236747242", + "https://openalex.org/W4237249260", + "https://openalex.org/W4238893454", + "https://openalex.org/W4239969927", + "https://openalex.org/W4244364296", + "https://openalex.org/W4248685136", + "https://openalex.org/W4250955649", + "https://openalex.org/W4252579706", + "https://openalex.org/W4253029311", + "https://openalex.org/W4253271028", + "https://openalex.org/W4255056905", + "https://openalex.org/W4285719527", + "https://openalex.org/W4288418124", + "https://openalex.org/W4288616930", + "https://openalex.org/W4288622534", + "https://openalex.org/W4289108190", + "https://openalex.org/W4289305635", + "https://openalex.org/W4289389579", + "https://openalex.org/W4289543312", + "https://openalex.org/W4289751512", + "https://openalex.org/W4289761856", + "https://openalex.org/W4293358966", + "https://openalex.org/W4295111187", + "https://openalex.org/W4295769412", + "https://openalex.org/W4295837399", + "https://openalex.org/W4297749952", + "https://openalex.org/W4297802696", + "https://openalex.org/W4298125159", + "https://openalex.org/W4298201378", + "https://openalex.org/W4299295087", + "https://openalex.org/W4299565696", + "https://openalex.org/W4299971819", + "https://openalex.org/W4300852227", + "https://openalex.org/W4300885568", + "https://openalex.org/W4300921457", + "https://openalex.org/W4300946572", + "https://openalex.org/W4300990119", + "https://openalex.org/W4301055545", + "https://openalex.org/W4301057100", + "https://openalex.org/W4301369164", + "https://openalex.org/W4302549904", + "https://openalex.org/W4394667618" + ], + "related_works": [ + "https://openalex.org/W2181722423", + "https://openalex.org/W2347222412", + "https://openalex.org/W2085601491", + "https://openalex.org/W2375996887", + "https://openalex.org/W4322723290", + "https://openalex.org/W2368976073", + "https://openalex.org/W2948237757", + "https://openalex.org/W2376548177", + "https://openalex.org/W2808994565", + "https://openalex.org/W2769449614" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "October": [ + 1 + ], + "2018": [ + 2 + ], + "an": [ + 3 + ], + "APS": [ + 4 + ], + "Physics": [ + 5 + ], + "Next": [ + 6 + ], + "Workshop": [ + 7 + ], + "on": [ + 8 + ], + "Machine": [ + 9 + ], + "Learning": [ + 10 + ], + "was": [ + 11 + ], + "held": [ + 12 + ], + "in": [ + 13, + 34 + ], + "Riverhead,": [ + 14 + ], + "NY.": [ + 15 + ], + "This": [ + 16 + ], + "article": [ + 17 + ], + "reviews": [ + 18 + ], + "and": [ + 19 + ], + "summarizes": [ + 20 + ], + "the": [ + 21, + 35 + ], + "proceedings": [ + 22 + ], + "of": [ + 23 + ], + "this": [ + 24 + ], + "very": [ + 25 + ], + "broad,": [ + 26 + ], + "emerging": [ + 27 + ], + "field.This": [ + 28 + ], + "needs": [ + 29 + ], + "to": [ + 30 + ], + "be": [ + 31 + ], + "a": [ + 32, + 39 + ], + "placard": [ + 33 + ], + "left-hand": [ + 36 + ], + "column,": [ + 37 + ], + "with": [ + 38 + ], + "custom": [ + 40 + ], + "tag.": [ + 41 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 114 + }, + { + "year": 2025, + "cited_by_count": 374 + }, + { + "year": 2024, + "cited_by_count": 374 + }, + { + "year": 2023, + "cited_by_count": 477 + }, + { + "year": 2022, + "cited_by_count": 416 + }, + { + "year": 2021, + "cited_by_count": 429 + }, + { + "year": 2020, + "cited_by_count": 209 + }, + { + "year": 2019, + "cited_by_count": 19 + }, + { + "year": 2018, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2603766943", + "doi": "https://doi.org/10.1145/3052973.3053009", + "title": "Practical Black-Box Attacks against Machine Learning", + "display_name": "Practical Black-Box Attacks against Machine Learning", + "relevance_score": 3520.3503, + "publication_year": 2017, + "publication_date": "2017-03-31", + "ids": { + "openalex": "https://openalex.org/W2603766943", + "doi": "https://doi.org/10.1145/3052973.3053009", + "mag": "2603766943" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3052973.3053009", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3052973.3053009", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5018809423", + "display_name": "Nicolas Papernot", + "orcid": "https://orcid.org/0000-0001-5078-7233" + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nicolas Papernot", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055368149", + "display_name": "Patrick McDaniel", + "orcid": "https://orcid.org/0000-0003-2091-7484" + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Patrick McDaniel", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004271128", + "display_name": "Ian Goodfellow", + "orcid": "https://orcid.org/0000-0003-3937-2322" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210161460", + "display_name": "OpenAI (United States)", + "ror": "https://ror.org/05wx9n238", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210161460" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ian Goodfellow", + "raw_affiliation_strings": [ + "OpenAI, San Francisco, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "OpenAI, San Francisco, CA, USA", + "institution_ids": [ + "https://openalex.org/I4210161460" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088826068", + "display_name": "Somesh Jha", + "orcid": "https://orcid.org/0000-0001-5877-0436" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Somesh Jha", + "raw_affiliation_strings": [ + "University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Z. Berkay Celik", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Z. Berkay Celik", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5103191815", + "display_name": "Ananthram Swami", + "orcid": "https://orcid.org/0000-0003-1439-332X" + }, + "institutions": [ + { + "id": "https://openalex.org/I166416128", + "display_name": "DEVCOM Army Research Laboratory", + "ror": "https://ror.org/011hc8f90", + "country_code": "US", + "type": "government", + "lineage": [ + "https://openalex.org/I1304082316", + "https://openalex.org/I1330347796", + "https://openalex.org/I166416128", + "https://openalex.org/I2802705668", + "https://openalex.org/I4210154437" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ananthram Swami", + "raw_affiliation_strings": [ + "US Army Research Laboratory, Adelphi, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "US Army Research Laboratory, Adelphi, MD, USA", + "institution_ids": [ + "https://openalex.org/I166416128" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5018809423" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I130769515" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 282.6909, + "has_fulltext": false, + "cited_by_count": 3465, + "citation_normalized_percentile": { + "value": 0.99991872, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "506", + "last_page": "519" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9490000009536743, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.8607215881347656 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7777668237686157 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.7760648727416992 + }, + { + "id": "https://openalex.org/keywords/black-box", + "display_name": "Black box", + "score": 0.7213448286056519 + }, + { + "id": "https://openalex.org/keywords/malware", + "display_name": "Malware", + "score": 0.7048903107643127 + }, + { + "id": "https://openalex.org/keywords/deep-neural-networks", + "display_name": "Deep neural networks", + "score": 0.65977942943573 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6321082711219788 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.6107656955718994 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5658857226371765 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.559665858745575 + }, + { + "id": "https://openalex.org/keywords/adversarial-machine-learning", + "display_name": "Adversarial machine learning", + "score": 0.5187221169471741 + }, + { + "id": "https://openalex.org/keywords/threat-model", + "display_name": "Threat model", + "score": 0.4236634075641632 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.32835885882377625 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.8607215881347656 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7777668237686157 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.7760648727416992 + }, + { + "id": "https://openalex.org/C94966114", + "wikidata": "https://www.wikidata.org/wiki/Q29256", + "display_name": "Black box", + "level": 2, + "score": 0.7213448286056519 + }, + { + "id": "https://openalex.org/C541664917", + "wikidata": "https://www.wikidata.org/wiki/Q14001", + "display_name": "Malware", + "level": 2, + "score": 0.7048903107643127 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.65977942943573 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6321082711219788 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.6107656955718994 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5658857226371765 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.559665858745575 + }, + { + "id": "https://openalex.org/C2778403875", + "wikidata": "https://www.wikidata.org/wiki/Q20312394", + "display_name": "Adversarial machine learning", + "level": 3, + "score": 0.5187221169471741 + }, + { + "id": "https://openalex.org/C140547941", + "wikidata": "https://www.wikidata.org/wiki/Q7797194", + "display_name": "Threat model", + "level": 2, + "score": 0.4236634075641632 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.32835885882377625 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3052973.3053009", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3052973.3053009", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions", + "score": 0.6399999856948853 + } + ], + "awards": [ + { + "id": "https://openalex.org/G2043895709", + "display_name": null, + "funder_award_id": "W911NF-13-2-0045", + "funder_id": "https://openalex.org/F4320338295", + "funder_display_name": "Army Research Laboratory" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320338295", + "display_name": "Army Research Laboratory", + "ror": "https://ror.org/011hc8f90" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 18, + "referenced_works": [ + "https://openalex.org/W9657784", + "https://openalex.org/W581033782", + "https://openalex.org/W1510924833", + "https://openalex.org/W2038296020", + "https://openalex.org/W2045638068", + "https://openalex.org/W2067713319", + "https://openalex.org/W2095577883", + "https://openalex.org/W2119885577", + "https://openalex.org/W2151298633", + "https://openalex.org/W2174868984", + "https://openalex.org/W2180612164", + "https://openalex.org/W2252814878", + "https://openalex.org/W2461943168", + "https://openalex.org/W2475730566", + "https://openalex.org/W2535873859", + "https://openalex.org/W2574797807", + "https://openalex.org/W2963207607", + "https://openalex.org/W2964153729" + ], + "related_works": [ + "https://openalex.org/W4312601715", + "https://openalex.org/W3159204880", + "https://openalex.org/W2982631433", + "https://openalex.org/W4377865163", + "https://openalex.org/W4392828243", + "https://openalex.org/W4312822655", + "https://openalex.org/W3157170264", + "https://openalex.org/W4298185893", + "https://openalex.org/W4402427143", + "https://openalex.org/W2896078964" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 161 + ], + "(ML)": [ + 2 + ], + "models,": [ + 3 + ], + "e.g.,": [ + 4 + ], + "deep": [ + 5, + 160 + ], + "neural": [ + 6 + ], + "networks": [ + 7 + ], + "(DNNs),": [ + 8 + ], + "are": [ + 9, + 138 + ], + "vulnerable": [ + 10 + ], + "to": [ + 11, + 17, + 25, + 87, + 94, + 106, + 130, + 186, + 237 + ], + "adversarial": [ + 12, + 46, + 132, + 172, + 208, + 239 + ], + "examples:": [ + 13 + ], + "malicious": [ + 14, + 32 + ], + "inputs": [ + 15, + 113 + ], + "modified": [ + 16 + ], + "yield": [ + 18, + 207 + ], + "erroneous": [ + 19 + ], + "model": [ + 20, + 54, + 105 + ], + "outputs,": [ + 21 + ], + "while": [ + 22 + ], + "appearing": [ + 23 + ], + "unmodified": [ + 24 + ], + "human": [ + 26 + ], + "observers.": [ + 27 + ], + "Potential": [ + 28 + ], + "attacks": [ + 29, + 48 + ], + "include": [ + 30 + ], + "having": [ + 31 + ], + "content": [ + 33 + ], + "like": [ + 34 + ], + "malware": [ + 35 + ], + "identified": [ + 36 + ], + "as": [ + 37 + ], + "legitimate": [ + 38 + ], + "or": [ + 39, + 56 + ], + "controlling": [ + 40, + 69 + ], + "vehicle": [ + 41 + ], + "behavior.": [ + 42 + ], + "Yet,": [ + 43 + ], + "all": [ + 44 + ], + "existing": [ + 45 + ], + "example": [ + 47, + 240 + ], + "require": [ + 49 + ], + "knowledge": [ + 50 + ], + "of": [ + 51, + 66, + 82, + 170, + 183, + 217, + 231 + ], + "either": [ + 52 + ], + "the": [ + 53, + 62, + 79, + 92, + 109, + 122, + 127, + 141, + 171, + 180, + 192 + ], + "internals": [ + 55 + ], + "its": [ + 57 + ], + "training": [ + 58, + 102 + ], + "data.": [ + 59 + ], + "We": [ + 60, + 125, + 163, + 178, + 221 + ], + "introduce": [ + 61 + ], + "first": [ + 63 + ], + "practical": [ + 64 + ], + "demonstration": [ + 65 + ], + "an": [ + 67, + 117, + 158 + ], + "attacker": [ + 68 + ], + "a": [ + 70, + 103, + 146, + 153 + ], + "remotely": [ + 71 + ], + "hosted": [ + 72, + 155, + 197 + ], + "DNN": [ + 73, + 93, + 154, + 167 + ], + "with": [ + 74, + 175 + ], + "no": [ + 75 + ], + "such": [ + 76 + ], + "knowledge.": [ + 77 + ], + "Indeed,": [ + 78 + ], + "only": [ + 80 + ], + "capability": [ + 81 + ], + "our": [ + 83, + 176, + 184 + ], + "black-box": [ + 84, + 226 + ], + "adversary": [ + 85, + 118 + ], + "is": [ + 86, + 229 + ], + "observe": [ + 88 + ], + "labels": [ + 89 + ], + "given": [ + 90 + ], + "by": [ + 91, + 116, + 121, + 140, + 156, + 190, + 198, + 211 + ], + "chosen": [ + 95 + ], + "inputs.": [ + 96 + ], + "Our": [ + 97 + ], + "attack": [ + 98, + 152, + 194, + 227 + ], + "strategy": [ + 99, + 185, + 228 + ], + "consists": [ + 100 + ], + "in": [ + 101 + ], + "local": [ + 104, + 128 + ], + "substitute": [ + 107, + 129 + ], + "for": [ + 108 + ], + "target": [ + 110, + 123 + ], + "DNN,": [ + 111 + ], + "using": [ + 112, + 202 + ], + "synthetically": [ + 114 + ], + "generated": [ + 115 + ], + "and": [ + 119, + 134, + 148, + 200, + 213, + 219 + ], + "labeled": [ + 120 + ], + "DNN.": [ + 124, + 143 + ], + "use": [ + 126 + ], + "craft": [ + 131 + ], + "examples,": [ + 133 + ], + "find": [ + 135, + 164, + 223 + ], + "that": [ + 136, + 165, + 224 + ], + "they": [ + 137 + ], + "misclassified": [ + 139, + 210 + ], + "targeted": [ + 142 + ], + "To": [ + 144 + ], + "perform": [ + 145 + ], + "real-world": [ + 147 + ], + "properly-blinded": [ + 149 + ], + "evaluation,": [ + 150 + ], + "we": [ + 151 + ], + "MetaMind,": [ + 157 + ], + "online": [ + 159 + ], + "API.": [ + 162 + ], + "their": [ + 166 + ], + "misclassifies": [ + 168 + ], + "84.24%": [ + 169 + ], + "examples": [ + 173, + 209 + ], + "crafted": [ + 174 + ], + "substitute.": [ + 177 + ], + "demonstrate": [ + 179 + ], + "general": [ + 181 + ], + "applicability": [ + 182 + ], + "many": [ + 187 + ], + "ML": [ + 188 + ], + "techniques": [ + 189 + ], + "conducting": [ + 191 + ], + "same": [ + 193 + ], + "against": [ + 195 + ], + "models": [ + 196 + ], + "Amazon": [ + 199, + 212 + ], + "Google,": [ + 201 + ], + "logistic": [ + 203 + ], + "regression": [ + 204 + ], + "substitutes.": [ + 205 + ], + "They": [ + 206 + ], + "Google": [ + 214 + ], + "at": [ + 215 + ], + "rates": [ + 216 + ], + "96.19%": [ + 218 + ], + "88.94%.": [ + 220 + ], + "also": [ + 222 + ], + "this": [ + 225 + ], + "capable": [ + 230 + ], + "evading": [ + 232 + ], + "defense": [ + 233 + ], + "strategies": [ + 234 + ], + "previously": [ + 235 + ], + "found": [ + 236 + ], + "make": [ + 238 + ], + "crafting": [ + 241 + ], + "harder.": [ + 242 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 65 + }, + { + "year": 2025, + "cited_by_count": 289 + }, + { + "year": 2024, + "cited_by_count": 377 + }, + { + "year": 2023, + "cited_by_count": 396 + }, + { + "year": 2022, + "cited_by_count": 409 + }, + { + "year": 2021, + "cited_by_count": 569 + }, + { + "year": 2020, + "cited_by_count": 590 + }, + { + "year": 2019, + "cited_by_count": 476 + }, + { + "year": 2018, + "cited_by_count": 240 + }, + { + "year": 2017, + "cited_by_count": 52 + }, + { + "year": 2016, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2914584698", + "doi": null, + "title": "Proceedings of the 23rd international conference on Machine learning", + "display_name": "Proceedings of the 23rd international conference on Machine learning", + "relevance_score": 3418.8123, + "publication_year": 2006, + "publication_date": "2006-06-25", + "ids": { + "openalex": "https://openalex.org/W2914584698", + "mag": "2914584698" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209271", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5051617344", + "display_name": "William W. Cohen", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "William W. Cohen", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5101927521", + "display_name": "Andrew Moore", + "orcid": "https://orcid.org/0000-0002-3395-0841" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Andrew Moore", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-3395-0841", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5051617344" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 2.9972, + "has_fulltext": false, + "cited_by_count": 2592, + "citation_normalized_percentile": { + "value": 0.91286853, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.6675000190734863, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.6675000190734863, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.6546000242233276, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.64774489402771 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5538260340690613 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5068791508674622 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3816671371459961 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.338736891746521 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.23399221897125244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.64774489402771 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5538260340690613 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5068791508674622 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3816671371459961 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.338736891746521 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.23399221897125244 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209271", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:2914584698", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [], + "abstract_inverted_index": { + "This": [ + 0, + 52, + 138 + ], + "volume,": [ + 1 + ], + "which": [ + 2, + 92, + 295 + ], + "is": [ + 3, + 34 + ], + "also": [ + 4, + 81, + 123, + 288 + ], + "available": [ + 5 + ], + "from": [ + 6, + 165 + ], + "http://www.machinelearning.org,": [ + 7 + ], + "the": [ + 8, + 12, + 18, + 26, + 43, + 47, + 69, + 82, + 85, + 128, + 158, + 163, + 166, + 179, + 201, + 215, + 223, + 231, + 239, + 249, + 264, + 269, + 284, + 301, + 325, + 330, + 353, + 370 + ], + "home": [ + 9 + ], + "page": [ + 10 + ], + "of": [ + 11, + 42, + 49, + 98, + 127, + 130, + 182, + 222, + 238, + 261, + 280, + 324, + 329, + 352, + 355, + 362, + 369 + ], + "International": [ + 13, + 28 + ], + "Machine": [ + 14, + 31, + 89 + ], + "Learning": [ + 15, + 75, + 90 + ], + "Society,": [ + 16 + ], + "contains": [ + 17 + ], + "technical": [ + 19, + 285 + ], + "papers": [ + 20, + 148, + 164, + 170, + 253, + 307 + ], + "accepted": [ + 21, + 252, + 274 + ], + "for": [ + 22, + 38, + 84, + 275, + 317 + ], + "presentation": [ + 23, + 39 + ], + "at": [ + 24, + 57, + 357 + ], + "ICML-2006,": [ + 25 + ], + "23rd": [ + 27 + ], + "Conference": [ + 29, + 72 + ], + "on": [ + 30, + 73 + ], + "Learning.": [ + 32 + ], + "ICML": [ + 33, + 54 + ], + "an": [ + 35, + 106, + 197, + 257, + 277, + 334 + ], + "international": [ + 36 + ], + "forum": [ + 37 + ], + "and": [ + 40, + 64, + 113, + 122, + 204, + 292, + 299, + 310, + 365 + ], + "discussion": [ + 41, + 221 + ], + "latest": [ + 44 + ], + "results": [ + 45 + ], + "in": [ + 46, + 61, + 95, + 136, + 157, + 219, + 236, + 311 + ], + "field": [ + 48, + 129 + ], + "machine": [ + 50, + 131 + ], + "learning.": [ + 51 + ], + "year,": [ + 53 + ], + "was": [ + 55, + 65, + 80, + 93, + 102 + ], + "held": [ + 56, + 94, + 297 + ], + "Carnegie": [ + 58, + 77 + ], + "Mellon": [ + 59, + 78 + ], + "University,": [ + 60 + ], + "Pittsburgh,": [ + 62 + ], + "Pennsylvania,": [ + 63 + ], + "co-located": [ + 66 + ], + "with": [ + 67, + 162, + 320 + ], + "COLT-2006,": [ + 68 + ], + "19th": [ + 70 + ], + "Annual": [ + 71 + ], + "Computational": [ + 74 + ], + "Theory.Coincidentally,": [ + 76 + ], + "University": [ + 79, + 354 + ], + "venue": [ + 83 + ], + "first": [ + 86, + 167, + 180 + ], + "ICML---the": [ + 87 + ], + "First": [ + 88 + ], + "Workshop,": [ + 91 + ], + "1980.": [ + 96 + ], + "Instead": [ + 97 + ], + "proceedings,": [ + 99 + ], + "a": [ + 100, + 124, + 174, + 210, + 220, + 228, + 312, + 338 + ], + "book": [ + 101 + ], + "published": [ + 103, + 161 + ], + "(Machine": [ + 104 + ], + "Learning:": [ + 105 + ], + "Artificial": [ + 107 + ], + "Intelligence": [ + 108 + ], + "Approach,": [ + 109 + ], + "ed.": [ + 110 + ], + "Michalski,": [ + 111 + ], + "Carbonell,": [ + 112 + ], + "Mitchell,": [ + 114 + ], + "Morgan": [ + 115 + ], + "Kaufman,": [ + 116 + ], + "1983)": [ + 117 + ], + "containing": [ + 118 + ], + "sixteen": [ + 119 + ], + "research": [ + 120 + ], + "papers,": [ + 121 + ], + "comprehensive": [ + 125, + 159 + ], + "bibliography": [ + 139 + ], + "learning,": [ + 132 + ], + "as": [ + 133, + 153, + 155 + ], + "it": [ + 134 + ], + "stood": [ + 135 + ], + "1983.": [ + 137 + ], + "contained": [ + 140 + ], + "572": [ + 141 + ], + "entries.In": [ + 142 + ], + "2006,": [ + 143 + ], + "no": [ + 144 + ], + "less": [ + 145 + ], + "than": [ + 146 + ], + "548": [ + 147, + 270 + ], + "were": [ + 149, + 156, + 171, + 194, + 254, + 273, + 296, + 342 + ], + "submitted": [ + 150 + ], + "to": [ + 151, + 173, + 199, + 206, + 227, + 256, + 283, + 345, + 348 + ], + "ICML---nearly": [ + 152 + ], + "many": [ + 154 + ], + "ICML.": [ + 168 + ], + "These": [ + 169 + ], + "subjected": [ + 172 + ], + "thorough": [ + 175 + ], + "review": [ + 176, + 262 + ], + "process.": [ + 177 + ], + "In": [ + 178 + ], + "round": [ + 181, + 260 + ], + "reviewing,": [ + 183 + ], + "every": [ + 184 + ], + "paper": [ + 185 + ], + "received": [ + 186 + ], + "three": [ + 187 + ], + "reviews": [ + 188, + 203 + ], + "by": [ + 189, + 209, + 230, + 263, + 337 + ], + "program": [ + 190 + ], + "committee": [ + 191 + ], + "members.": [ + 192 + ], + "Authors": [ + 193, + 304 + ], + "then": [ + 195, + 217 + ], + "given": [ + 196 + ], + "opportunity": [ + 198 + ], + "view": [ + 200 + ], + "first-round": [ + 202 + ], + "respond": [ + 205 + ], + "them.": [ + 207 + ], + "Led": [ + 208 + ], + "Senior": [ + 211, + 232, + 265 + ], + "Program": [ + 212, + 233, + 266 + ], + "Committee": [ + 213, + 234 + ], + "member,": [ + 214 + ], + "reviewers": [ + 216 + ], + "engaged": [ + 218 + ], + "paper,": [ + 224 + ], + "leading": [ + 225 + ], + "finally": [ + 226 + ], + "decision": [ + 229 + ], + "member": [ + 235 + ], + "charge": [ + 237 + ], + "paper.": [ + 240 + ], + "Papers": [ + 241 + ], + "could": [ + 242 + ], + "be": [ + 243, + 346 + ], + "accepted,": [ + 244 + ], + "rejected,": [ + 245 + ], + "or": [ + 246 + ], + "conditionally": [ + 247, + 251 + ], + "accepted;": [ + 248 + ], + "36": [ + 250 + ], + "subject": [ + 255 + ], + "additional": [ + 258 + ], + "final": [ + 259 + ], + "Committee.": [ + 267 + ], + "Of": [ + 268 + ], + "submissions,": [ + 271 + ], + "140": [ + 272 + ], + "publication,": [ + 276 + ], + "acceptance": [ + 278 + ], + "rate": [ + 279 + ], + "25.5%.In": [ + 281 + ], + "addition": [ + 282 + ], + "talks,": [ + 286 + ], + "ICML-2006": [ + 287 + ], + "included": [ + 289, + 333 + ], + "seven": [ + 290 + ], + "tutorials": [ + 291 + ], + "eleven": [ + 293 + ], + "workshops,": [ + 294 + ], + "before": [ + 298 + ], + "after": [ + 300 + ], + "conference,": [ + 302 + ], + "respectively.": [ + 303 + ], + "presented": [ + 305 + ], + "their": [ + 306 + ], + "both": [ + 308 + ], + "orally": [ + 309 + ], + "poster": [ + 313 + ], + "session,": [ + 314 + ], + "allowing": [ + 315 + ], + "time": [ + 316 + ], + "detailed": [ + 318 + ], + "discussions": [ + 319 + ], + "any": [ + 321 + ], + "interested": [ + 322 + ], + "attendees": [ + 323 + ], + "conference.": [ + 326 + ], + "Each": [ + 327 + ], + "day": [ + 328 + ], + "main": [ + 331 + ], + "conference": [ + 332 + ], + "invited": [ + 335 + ], + "talk": [ + 336 + ], + "prominent": [ + 339 + ], + "researcher.": [ + 340 + ], + "We": [ + 341 + ], + "very": [ + 343 + ], + "fortunate": [ + 344 + ], + "able": [ + 347 + ], + "host": [ + 349 + ], + "David": [ + 350 + ], + "Haussler,": [ + 351 + ], + "California": [ + 356 + ], + "Santa": [ + 358 + ], + "Cruz;": [ + 359 + ], + "Robert": [ + 360 + ], + "Schapire,": [ + 361 + ], + "Princeton": [ + 363 + ], + "University;": [ + 364 + ], + "Mandyam": [ + 366 + ], + "V.": [ + 367 + ], + "Srinivasan,": [ + 368 + ], + "Australian": [ + 371 + ], + "National": [ + 372 + ], + "University.": [ + 373 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 295 + }, + { + "year": 2024, + "cited_by_count": 391 + }, + { + "year": 2023, + "cited_by_count": 338 + }, + { + "year": 2022, + "cited_by_count": 297 + }, + { + "year": 2021, + "cited_by_count": 262 + }, + { + "year": 2020, + "cited_by_count": 272 + }, + { + "year": 2019, + "cited_by_count": 207 + }, + { + "year": 2018, + "cited_by_count": 147 + }, + { + "year": 2017, + "cited_by_count": 134 + }, + { + "year": 2016, + "cited_by_count": 74 + }, + { + "year": 2015, + "cited_by_count": 37 + }, + { + "year": 2014, + "cited_by_count": 40 + }, + { + "year": 2013, + "cited_by_count": 21 + }, + { + "year": 2012, + "cited_by_count": 20 + } + ], + "updated_date": "2025-11-06T04:12:42.849631", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3116286104", + "doi": "https://doi.org/10.3390/e23010018", + "title": "Explainable AI: A Review of Machine Learning Interpretability Methods", + "display_name": "Explainable AI: A Review of Machine Learning Interpretability Methods", + "relevance_score": 3376.3457, + "publication_year": 2020, + "publication_date": "2020-12-25", + "ids": { + "openalex": "https://openalex.org/W3116286104", + "doi": "https://doi.org/10.3390/e23010018", + "mag": "3116286104", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/33375658" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5074689646", + "display_name": "Pantelis Linardatos", + "orcid": "https://orcid.org/0000-0003-1132-4724" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Pantelis Linardatos", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0003-1132-4724", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5057093696", + "display_name": "Vasilis Papastefanopoulos", + "orcid": "https://orcid.org/0000-0001-8169-1373" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Vasilis Papastefanopoulos", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0001-8169-1373", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5066370772", + "display_name": "Sotiris Kotsiantis", + "orcid": "https://orcid.org/0000-0002-2247-3082" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Sotiris Kotsiantis", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0002-2247-3082", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5074689646" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I174878644" + ], + "apc_list": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "apc_paid": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "fwci": 147.8795, + "has_fulltext": false, + "cited_by_count": 2703, + "citation_normalized_percentile": { + "value": 0.99982619, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 89, + "max": 100 + }, + "biblio": { + "volume": "23", + "issue": "1", + "first_page": "18", + "last_page": "18" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.972599983215332, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.881382167339325 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.77054762840271 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7226959466934204 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6755812764167786 + }, + { + "id": "https://openalex.org/keywords/ambiguity", + "display_name": "Ambiguity", + "score": 0.6382596492767334 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5369188189506531 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.5124835968017578 + }, + { + "id": "https://openalex.org/keywords/black-box", + "display_name": "Black box", + "score": 0.43949806690216064 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.3528066873550415 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.34925395250320435 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.10554653406143188 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.10227954387664795 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.881382167339325 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.77054762840271 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7226959466934204 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6755812764167786 + }, + { + "id": "https://openalex.org/C2780522230", + "wikidata": "https://www.wikidata.org/wiki/Q1140419", + "display_name": "Ambiguity", + "level": 2, + "score": 0.6382596492767334 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5369188189506531 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.5124835968017578 + }, + { + "id": "https://openalex.org/C94966114", + "wikidata": "https://www.wikidata.org/wiki/Q29256", + "display_name": "Black box", + "level": 2, + "score": 0.43949806690216064 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.3528066873550415 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.34925395250320435 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.10554653406143188 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.10227954387664795 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + { + "id": "pmid:33375658", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/33375658", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy (Basel, Switzerland)", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:36ca352966604ee69cce840410673de9", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/36ca352966604ee69cce840410673de9", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy, Vol 23, Iss 1, p 18 (2020)", + "raw_type": "article" + }, + { + "id": "pmh:oai:mdpi.com:/1099-4300/23/1/18/", + "is_oa": true, + "landing_page_url": "https://dx.doi.org/10.3390/e23010018", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy; Volume 23; Issue 1; Pages: 18", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:7824368", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7824368", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy (Basel)", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3116286104.pdf" + }, + "referenced_works_count": 184, + "referenced_works": [ + "https://openalex.org/W100464641", + "https://openalex.org/W273955616", + "https://openalex.org/W999207820", + "https://openalex.org/W1678356000", + "https://openalex.org/W1787224781", + "https://openalex.org/W1825675169", + "https://openalex.org/W1849277567", + "https://openalex.org/W1901616594", + "https://openalex.org/W1942214758", + "https://openalex.org/W1945616565", + "https://openalex.org/W1961345416", + "https://openalex.org/W1979362125", + "https://openalex.org/W1979769549", + "https://openalex.org/W1994080277", + "https://openalex.org/W1996796871", + "https://openalex.org/W2014352947", + "https://openalex.org/W2029767409", + "https://openalex.org/W2035363534", + "https://openalex.org/W2044639673", + "https://openalex.org/W2046945713", + "https://openalex.org/W2066238228", + "https://openalex.org/W2088765131", + "https://openalex.org/W2097246321", + "https://openalex.org/W2100960835", + "https://openalex.org/W2101589741", + "https://openalex.org/W2102636708", + "https://openalex.org/W2116572416", + "https://openalex.org/W2116666691", + "https://openalex.org/W2116984840", + "https://openalex.org/W2123045220", + "https://openalex.org/W2125283600", + "https://openalex.org/W2125847307", + "https://openalex.org/W2128272608", + "https://openalex.org/W2141200610", + "https://openalex.org/W2141755357", + "https://openalex.org/W2151868609", + "https://openalex.org/W2157928966", + "https://openalex.org/W2163605009", + "https://openalex.org/W2164878629", + "https://openalex.org/W2180612164", + "https://openalex.org/W2195388612", + "https://openalex.org/W2243397390", + "https://openalex.org/W2282821441", + "https://openalex.org/W2295107390", + "https://openalex.org/W2295598076", + "https://openalex.org/W2336525064", + "https://openalex.org/W2396394641", + "https://openalex.org/W2440159969", + "https://openalex.org/W2483215953", + "https://openalex.org/W2484189903", + "https://openalex.org/W2492294785", + "https://openalex.org/W2535873859", + "https://openalex.org/W2543927648", + "https://openalex.org/W2551974706", + "https://openalex.org/W2556096924", + "https://openalex.org/W2570685808", + "https://openalex.org/W2594475271", + "https://openalex.org/W2597603852", + "https://openalex.org/W2603766943", + "https://openalex.org/W2605409611", + "https://openalex.org/W2609368435", + "https://openalex.org/W2618851150", + "https://openalex.org/W2626639386", + "https://openalex.org/W2732560823", + "https://openalex.org/W2734421735", + "https://openalex.org/W2739220786", + "https://openalex.org/W2745565856", + "https://openalex.org/W2746600820", + "https://openalex.org/W2755655609", + "https://openalex.org/W2765424254", + "https://openalex.org/W2765793020", + "https://openalex.org/W2768894107", + "https://openalex.org/W2770312844", + "https://openalex.org/W2773022113", + "https://openalex.org/W2773497437", + "https://openalex.org/W2774644650", + "https://openalex.org/W2785699986", + "https://openalex.org/W2787955716", + "https://openalex.org/W2788199784", + "https://openalex.org/W2788403449", + "https://openalex.org/W2789160704", + "https://openalex.org/W2792942633", + "https://openalex.org/W2796215194", + "https://openalex.org/W2796885425", + "https://openalex.org/W2798312813", + "https://openalex.org/W2799194071", + "https://openalex.org/W2803831897", + "https://openalex.org/W2809136100", + "https://openalex.org/W2887252986", + "https://openalex.org/W2888078780", + "https://openalex.org/W2888421747", + "https://openalex.org/W2889210204", + "https://openalex.org/W2889252776", + "https://openalex.org/W2891503716", + "https://openalex.org/W2905526464", + "https://openalex.org/W2905810301", + "https://openalex.org/W2909878761", + "https://openalex.org/W2910705748", + "https://openalex.org/W2914598080", + "https://openalex.org/W2919115771", + "https://openalex.org/W2943646750", + "https://openalex.org/W2949128310", + "https://openalex.org/W2949197630", + "https://openalex.org/W2949200088", + "https://openalex.org/W2953911539", + "https://openalex.org/W2954503794", + "https://openalex.org/W2955782190", + "https://openalex.org/W2962718684", + "https://openalex.org/W2962772482", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962816513", + "https://openalex.org/W2962818281", + "https://openalex.org/W2962858109", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963100392", + "https://openalex.org/W2963116854", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963126845", + "https://openalex.org/W2963165363", + "https://openalex.org/W2963233086", + "https://openalex.org/W2963382180", + "https://openalex.org/W2963483561", + "https://openalex.org/W2963615251", + "https://openalex.org/W2963847595", + "https://openalex.org/W2963857521", + "https://openalex.org/W2963859254", + "https://openalex.org/W2963969878", + "https://openalex.org/W2964082701", + "https://openalex.org/W2965749257", + "https://openalex.org/W2966149470", + "https://openalex.org/W2971970905", + "https://openalex.org/W2981731882", + "https://openalex.org/W2988194011", + "https://openalex.org/W2998277219", + "https://openalex.org/W3000208741", + "https://openalex.org/W3003420231", + "https://openalex.org/W3013371788", + "https://openalex.org/W3015625436", + "https://openalex.org/W3023553115", + "https://openalex.org/W3027870051", + "https://openalex.org/W3035517615", + "https://openalex.org/W3035736465", + "https://openalex.org/W3037881545", + "https://openalex.org/W3098276446", + "https://openalex.org/W3098278632", + "https://openalex.org/W3099126561", + "https://openalex.org/W3101449015", + "https://openalex.org/W3102476541", + "https://openalex.org/W3103557498", + "https://openalex.org/W3104423855", + "https://openalex.org/W3104570147", + "https://openalex.org/W3106412272", + "https://openalex.org/W3121410165", + "https://openalex.org/W3121588992", + "https://openalex.org/W3138819813", + "https://openalex.org/W4238293282", + "https://openalex.org/W4241793634", + "https://openalex.org/W4251708881", + "https://openalex.org/W4288625073", + "https://openalex.org/W4289258088", + "https://openalex.org/W4300337452", + "https://openalex.org/W6610017368", + "https://openalex.org/W6637162671", + "https://openalex.org/W6684072790", + "https://openalex.org/W6703326205", + "https://openalex.org/W6719080892", + "https://openalex.org/W6728551298", + "https://openalex.org/W6733049761", + "https://openalex.org/W6734194636", + "https://openalex.org/W6739575509", + "https://openalex.org/W6740085662", + "https://openalex.org/W6744110554", + "https://openalex.org/W6745730051", + "https://openalex.org/W6747473890", + "https://openalex.org/W6748377460", + "https://openalex.org/W6750628419", + "https://openalex.org/W6750829902", + "https://openalex.org/W6751569023", + "https://openalex.org/W6751776086", + "https://openalex.org/W6752083044", + "https://openalex.org/W6755768460", + "https://openalex.org/W6762840784", + "https://openalex.org/W6765646913", + "https://openalex.org/W7014198846" + ], + "related_works": [ + "https://openalex.org/W2797441709", + "https://openalex.org/W2346578521", + "https://openalex.org/W4297660007", + "https://openalex.org/W4377704659", + "https://openalex.org/W2886918272", + "https://openalex.org/W4387589990", + "https://openalex.org/W2943982549", + "https://openalex.org/W3101055019", + "https://openalex.org/W2910028250", + "https://openalex.org/W4241566321" + ], + "abstract_inverted_index": { + "Recent": [ + 0 + ], + "advances": [ + 1 + ], + "in": [ + 2, + 20, + 29, + 76, + 95, + 156 + ], + "artificial": [ + 3 + ], + "intelligence": [ + 4 + ], + "(AI)": [ + 5 + ], + "have": [ + 6 + ], + "led": [ + 7 + ], + "to": [ + 8, + 61, + 73, + 152 + ], + "its": [ + 9 + ], + "widespread": [ + 10 + ], + "industrial": [ + 11 + ], + "adoption,": [ + 12 + ], + "with": [ + 13, + 108 + ], + "machine": [ + 14, + 70, + 118, + 132 + ], + "learning": [ + 15, + 71, + 119, + 133 + ], + "systems": [ + 16, + 41, + 72 + ], + "demonstrating": [ + 17 + ], + "superhuman": [ + 18 + ], + "performance": [ + 19 + ], + "a": [ + 21, + 91, + 103, + 138, + 165 + ], + "significant": [ + 22 + ], + "number": [ + 23 + ], + "of": [ + 24, + 98, + 111, + 143 + ], + "tasks.": [ + 25 + ], + "However,": [ + 26 + ], + "this": [ + 27, + 160 + ], + "surge": [ + 28 + ], + "performance,": [ + 30 + ], + "has": [ + 31, + 65, + 121 + ], + "often": [ + 32 + ], + "been": [ + 33, + 122 + ], + "achieved": [ + 34 + ], + "through": [ + 35 + ], + "increased": [ + 36 + ], + "model": [ + 37 + ], + "complexity,": [ + 38 + ], + "turning": [ + 39 + ], + "such": [ + 40, + 87 + ], + "into": [ + 42 + ], + "\"black": [ + 43 + ], + "box\"": [ + 44 + ], + "approaches": [ + 45 + ], + "and": [ + 46, + 116, + 141, + 171 + ], + "causing": [ + 47 + ], + "uncertainty": [ + 48 + ], + "regarding": [ + 49 + ], + "the": [ + 50, + 56, + 96, + 109, + 157 + ], + "way": [ + 51, + 57 + ], + "they": [ + 52, + 59 + ], + "operate": [ + 53 + ], + "and,": [ + 54 + ], + "ultimately,": [ + 55 + ], + "that": [ + 58, + 105, + 114, + 159 + ], + "come": [ + 60 + ], + "decisions.": [ + 62 + ], + "This": [ + 63, + 128 + ], + "ambiguity": [ + 64 + ], + "made": [ + 66 + ], + "it": [ + 67 + ], + "problematic": [ + 68 + ], + "for": [ + 69, + 168 + ], + "be": [ + 74, + 85 + ], + "adopted": [ + 75 + ], + "sensitive": [ + 77 + ], + "yet": [ + 78 + ], + "critical": [ + 79 + ], + "domains,": [ + 80 + ], + "where": [ + 81 + ], + "their": [ + 82, + 153 + ], + "value": [ + 83 + ], + "could": [ + 84 + ], + "immense,": [ + 86 + ], + "as": [ + 88, + 148, + 150, + 164 + ], + "healthcare.": [ + 89 + ], + "As": [ + 90 + ], + "result,": [ + 92 + ], + "scientific": [ + 93 + ], + "interest": [ + 94 + ], + "field": [ + 97, + 104 + ], + "Explainable": [ + 99 + ], + "Artificial": [ + 100 + ], + "Intelligence": [ + 101 + ], + "(XAI),": [ + 102 + ], + "is": [ + 106 + ], + "concerned": [ + 107 + ], + "development": [ + 110 + ], + "new": [ + 112 + ], + "methods": [ + 113, + 145 + ], + "explain": [ + 115 + ], + "interpret": [ + 117 + ], + "models,": [ + 120 + ], + "tremendously": [ + 123 + ], + "reignited": [ + 124 + ], + "over": [ + 125 + ], + "recent": [ + 126 + ], + "years.": [ + 127 + ], + "study": [ + 129 + ], + "focuses": [ + 130 + ], + "on": [ + 131 + ], + "interpretability": [ + 134 + ], + "methods;": [ + 135 + ], + "more": [ + 136 + ], + "specifically,": [ + 137 + ], + "literature": [ + 139 + ], + "review": [ + 140 + ], + "taxonomy": [ + 142 + ], + "these": [ + 144 + ], + "are": [ + 146 + ], + "presented,": [ + 147 + ], + "well": [ + 149 + ], + "links": [ + 151 + ], + "programming": [ + 154 + ], + "implementations,": [ + 155 + ], + "hope": [ + 158 + ], + "survey": [ + 161 + ], + "would": [ + 162 + ], + "serve": [ + 163 + ], + "reference": [ + 166 + ], + "point": [ + 167 + ], + "both": [ + 169 + ], + "theorists": [ + 170 + ], + "practitioners.": [ + 172 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 210 + }, + { + "year": 2025, + "cited_by_count": 702 + }, + { + "year": 2024, + "cited_by_count": 707 + }, + { + "year": 2023, + "cited_by_count": 591 + }, + { + "year": 2022, + "cited_by_count": 382 + }, + { + "year": 2021, + "cited_by_count": 109 + }, + { + "year": 2020, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2142334564", + "doi": "https://doi.org/10.2307/1269742", + "title": "Machine Learning, Neural and Statistical Classification", + "display_name": "Machine Learning, Neural and Statistical Classification", + "relevance_score": 3336.3496, + "publication_year": 1995, + "publication_date": "1995-11-01", + "ids": { + "openalex": "https://openalex.org/W2142334564", + "doi": "https://doi.org/10.2307/1269742", + "mag": "2142334564" + }, + "language": "en", + "primary_location": { + "id": "doi:10.2307/1269742", + "is_oa": false, + "landing_page_url": "https://doi.org/10.2307/1269742", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021483518", + "display_name": "Bill Fulkerson", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I5490798", + "display_name": "John Deere (Germany)", + "ror": "https://ror.org/02xc43e34", + "country_code": "DE", + "type": "company", + "lineage": [ + "https://openalex.org/I4210096981", + "https://openalex.org/I5490798" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Bill Fulkerson", + "raw_affiliation_strings": [ + "Deere & Company", + "University of Edinburgh U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "Deere & Company", + "institution_ids": [ + "https://openalex.org/I5490798" + ] + }, + { + "raw_affiliation_string": "University of Edinburgh U.K", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006171154", + "display_name": "D. Michie", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "D. Michie", + "raw_affiliation_strings": [ + "University of Edinburgh , U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "University of Edinburgh , U.K", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080673459", + "display_name": "D. J. Spiegelhalter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "D. J. Spiegelhalter", + "raw_affiliation_strings": [ + "Univ. Forvie Site, Cambridge, U.K.#TAB#" + ], + "affiliations": [ + { + "raw_affiliation_string": "Univ. Forvie Site, Cambridge, U.K.#TAB#", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5111533856", + "display_name": "C. C. W. Taylor", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "C. C. Taylor", + "raw_affiliation_strings": [ + "University of Leeds; U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "University of Leeds; U.K", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5021483518" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I5490798" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 121.1376, + "has_fulltext": false, + "cited_by_count": 2191, + "citation_normalized_percentile": { + "value": 0.99989156, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "37", + "issue": "4", + "first_page": "459", + "last_page": "459" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9955999851226807, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9955999851226807, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9819999933242798, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14351", + "display_name": "Statistical and Computational Modeling", + "score": 0.9731000065803528, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6783725023269653 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6460950374603271 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.638775646686554 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5508975982666016 + }, + { + "id": "https://openalex.org/keywords/statistical-learning", + "display_name": "Statistical learning", + "score": 0.4216362535953522 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6783725023269653 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6460950374603271 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.638775646686554 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5508975982666016 + }, + { + "id": "https://openalex.org/C2982736386", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Statistical learning", + "level": 2, + "score": 0.4216362535953522 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.2307/1269742", + "is_oa": false, + "landing_page_url": "https://doi.org/10.2307/1269742", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 7, + "referenced_works": [ + "https://openalex.org/W1515620500", + "https://openalex.org/W1602329118", + "https://openalex.org/W1704669313", + "https://openalex.org/W1770912791", + "https://openalex.org/W2023837194", + "https://openalex.org/W2488901271", + "https://openalex.org/W3014310718" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Survey": [ + 0 + ], + "of": [ + 1, + 8 + ], + "previous": [ + 2 + ], + "comparisons": [ + 3 + ], + "and": [ + 4, + 15 + ], + "theoretical": [ + 5 + ], + "work": [ + 6 + ], + "descriptions": [ + 7, + 11 + ], + "methods": [ + 9 + ], + "dataset": [ + 10 + ], + "criteria": [ + 12 + ], + "for": [ + 13 + ], + "comparison": [ + 14 + ], + "methodology": [ + 16 + ], + "(including": [ + 17 + ], + "validation)": [ + 18 + ], + "empirical": [ + 19 + ], + "results": [ + 20 + ], + "machine": [ + 21, + 24 + ], + "learning": [ + 22 + ], + "on": [ + 23 + ], + "learning.": [ + 25 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 17 + }, + { + "year": 2023, + "cited_by_count": 45 + }, + { + "year": 2022, + "cited_by_count": 44 + }, + { + "year": 2021, + "cited_by_count": 64 + }, + { + "year": 2020, + "cited_by_count": 70 + }, + { + "year": 2019, + "cited_by_count": 65 + }, + { + "year": 2018, + "cited_by_count": 65 + }, + { + "year": 2017, + "cited_by_count": 80 + }, + { + "year": 2016, + "cited_by_count": 58 + }, + { + "year": 2015, + "cited_by_count": 64 + }, + { + "year": 2014, + "cited_by_count": 78 + }, + { + "year": 2013, + "cited_by_count": 68 + }, + { + "year": 2012, + "cited_by_count": 84 + } + ], + "updated_date": "2026-04-04T16:13:02.066488", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2962727772", + "doi": null, + "title": "Automatic differentiation in machine learning: a survey", + "display_name": "Automatic differentiation in machine learning: a survey", + "relevance_score": 3317.6707, + "publication_year": 2015, + "publication_date": "2015-01-01", + "ids": { + "openalex": "https://openalex.org/W2962727772", + "mag": "2962727772" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5063994783", + "display_name": "Atılım Güneş Baydin", + "orcid": "https://orcid.org/0000-0001-9854-8100" + }, + "institutions": [ + { + "id": "https://openalex.org/I40120149", + "display_name": "University of Oxford", + "ror": "https://ror.org/052gg0110", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I40120149" + ] + }, + { + "id": "https://openalex.org/I4210146410", + "display_name": "Science Oxford", + "ror": "https://ror.org/04j8yhy50", + "country_code": "GB", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210146410" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Atılım Güneş Baydin", + "raw_affiliation_strings": [ + "Department of Engineering Science; University of Oxford; Oxford United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0001-9854-8100", + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering Science; University of Oxford; Oxford United Kingdom", + "institution_ids": [ + "https://openalex.org/I4210146410", + "https://openalex.org/I40120149" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009984528", + "display_name": "Barak A. Pearlmutter", + "orcid": "https://orcid.org/0000-0003-0521-4553" + }, + "institutions": [ + { + "id": "https://openalex.org/I157286207", + "display_name": "National University of Ireland, Maynooth", + "ror": "https://ror.org/048nfjm95", + "country_code": "IE", + "type": "education", + "lineage": [ + "https://openalex.org/I157286207" + ] + } + ], + "countries": [ + "IE" + ], + "is_corresponding": false, + "raw_author_name": "Barak A. Pearlmutter", + "raw_affiliation_strings": [ + "Department of Computer Science , National University of Ireland Maynooth , Maynooth, Co. Kildare, Ireland" + ], + "raw_orcid": "https://orcid.org/0000-0003-0521-4553", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , National University of Ireland Maynooth , Maynooth, Co. Kildare, Ireland", + "institution_ids": [ + "https://openalex.org/I157286207" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055832270", + "display_name": "Alexey Radul", + "orcid": "https://orcid.org/0000-0002-7251-4057" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alexey Radul", + "raw_affiliation_strings": [ + "Department of Brain and Cognitive Sciences, Massachusetts Institute of Technology, Cambridge, MA" + ], + "raw_orcid": "https://orcid.org/0000-0002-7251-4057", + "affiliations": [ + { + "raw_affiliation_string": "Department of Brain and Cognitive Sciences, Massachusetts Institute of Technology, Cambridge, MA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5079140683", + "display_name": "Jeffrey Mark Siskind", + "orcid": "https://orcid.org/0000-0002-0105-6503" + }, + "institutions": [ + { + "id": "https://openalex.org/I219193219", + "display_name": "Purdue University West Lafayette", + "ror": "https://ror.org/02dqehb95", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I219193219" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jeffrey Mark Siskind", + "raw_affiliation_strings": [ + "School of Electrical & Computer Engineering, Purdue University, West Lafayette, IN" + ], + "raw_orcid": "https://orcid.org/0000-0002-0105-6503", + "affiliations": [ + { + "raw_affiliation_string": "School of Electrical & Computer Engineering, Purdue University, West Lafayette, IN", + "institution_ids": [ + "https://openalex.org/I219193219" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5063994783" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I40120149", + "https://openalex.org/I4210146410" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 5.8829, + "has_fulltext": true, + "cited_by_count": 2097, + "citation_normalized_percentile": { + "value": 0.96990496, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 97, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9828000068664551, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.9753999710083008, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7707252502441406 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6958426833152771 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.6952723264694214 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6923137903213501 + }, + { + "id": "https://openalex.org/keywords/automatic-differentiation", + "display_name": "Automatic differentiation", + "score": 0.5773985385894775 + }, + { + "id": "https://openalex.org/keywords/differentiable-function", + "display_name": "Differentiable function", + "score": 0.5487818717956543 + }, + { + "id": "https://openalex.org/keywords/clarity", + "display_name": "CLARITY", + "score": 0.49600204825401306 + }, + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.47601065039634705 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.47393471002578735 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.4503173828125 + }, + { + "id": "https://openalex.org/keywords/active-learning", + "display_name": "Active learning (machine learning)", + "score": 0.41797730326652527 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.36606842279434204 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.18022793531417847 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.14339032769203186 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.09765636920928955 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7707252502441406 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6958426833152771 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.6952723264694214 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6923137903213501 + }, + { + "id": "https://openalex.org/C133512626", + "wikidata": "https://www.wikidata.org/wiki/Q787371", + "display_name": "Automatic differentiation", + "level": 3, + "score": 0.5773985385894775 + }, + { + "id": "https://openalex.org/C202615002", + "wikidata": "https://www.wikidata.org/wiki/Q783507", + "display_name": "Differentiable function", + "level": 2, + "score": 0.5487818717956543 + }, + { + "id": "https://openalex.org/C2777146004", + "wikidata": "https://www.wikidata.org/wiki/Q14949826", + "display_name": "CLARITY", + "level": 2, + "score": 0.49600204825401306 + }, + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.47601065039634705 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.47393471002578735 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.4503173828125 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.41797730326652527 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.36606842279434204 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.18022793531417847 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.14339032769203186 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.09765636920928955 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C55493867", + "wikidata": "https://www.wikidata.org/wiki/Q7094", + "display_name": "Biochemistry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + } + ], + "best_oa_location": { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6346593773", + "display_name": null, + "funder_award_id": "09/IN.1/I2637", + "funder_id": "https://openalex.org/F4320320847", + "funder_display_name": "Science Foundation Ireland" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320320847", + "display_name": "Science Foundation Ireland", + "ror": "https://ror.org/0271asj38" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2962727772.pdf", + "grobid_xml": "https://content.openalex.org/works/W2962727772.grobid-xml" + }, + "referenced_works_count": 165, + "referenced_works": [ + "https://openalex.org/W10127936", + "https://openalex.org/W24803201", + "https://openalex.org/W32371573", + "https://openalex.org/W54927611", + "https://openalex.org/W56900066", + "https://openalex.org/W79234129", + "https://openalex.org/W96156603", + "https://openalex.org/W114517082", + "https://openalex.org/W150071318", + "https://openalex.org/W163279865", + "https://openalex.org/W178772886", + "https://openalex.org/W183071939", + "https://openalex.org/W195465510", + "https://openalex.org/W199058730", + "https://openalex.org/W658381347", + "https://openalex.org/W1448623749", + "https://openalex.org/W1491719553", + "https://openalex.org/W1498436455", + "https://openalex.org/W1508921047", + "https://openalex.org/W1510408204", + "https://openalex.org/W1526743513", + "https://openalex.org/W1531185881", + "https://openalex.org/W1531720974", + "https://openalex.org/W1533682968", + "https://openalex.org/W1545319692", + "https://openalex.org/W1554025628", + "https://openalex.org/W1554447113", + "https://openalex.org/W1555213329", + "https://openalex.org/W1556604985", + "https://openalex.org/W1558109178", + "https://openalex.org/W1579027943", + "https://openalex.org/W1585773866", + "https://openalex.org/W1593851055", + "https://openalex.org/W1597010871", + "https://openalex.org/W1597497095", + "https://openalex.org/W1601796594", + "https://openalex.org/W1602017060", + "https://openalex.org/W1667652561", + "https://openalex.org/W1732222442", + "https://openalex.org/W1746819321", + "https://openalex.org/W1781063653", + "https://openalex.org/W1786620475", + "https://openalex.org/W1833324609", + "https://openalex.org/W1841592590", + "https://openalex.org/W1868018859", + "https://openalex.org/W1902934009", + "https://openalex.org/W1906598733", + "https://openalex.org/W1909320841", + "https://openalex.org/W1959608418", + "https://openalex.org/W1960579544", + "https://openalex.org/W1964298340", + "https://openalex.org/W1965256357", + "https://openalex.org/W1976804081", + "https://openalex.org/W1980177911", + "https://openalex.org/W1981814724", + "https://openalex.org/W1983864872", + "https://openalex.org/W1984176077", + "https://openalex.org/W1985280181", + "https://openalex.org/W1987027398", + "https://openalex.org/W1988141348", + "https://openalex.org/W1991173503", + "https://openalex.org/W1996647346", + "https://openalex.org/W1996852196", + "https://openalex.org/W1997030105", + "https://openalex.org/W1999333806", + "https://openalex.org/W2004750113", + "https://openalex.org/W2005126631", + "https://openalex.org/W2006903949", + "https://openalex.org/W2008957460", + "https://openalex.org/W2017000414", + "https://openalex.org/W2018435387", + "https://openalex.org/W2030762303", + "https://openalex.org/W2031070741", + "https://openalex.org/W2039708501", + "https://openalex.org/W2042661604", + "https://openalex.org/W2057377421", + "https://openalex.org/W2058760524", + "https://openalex.org/W2058821858", + "https://openalex.org/W2062422869", + "https://openalex.org/W2065468339", + "https://openalex.org/W2069077343", + "https://openalex.org/W2069563463", + "https://openalex.org/W2070389042", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076554018", + "https://openalex.org/W2077306381", + "https://openalex.org/W2083381683", + "https://openalex.org/W2084689793", + "https://openalex.org/W2084818100", + "https://openalex.org/W2087169336", + "https://openalex.org/W2098694378", + "https://openalex.org/W2106164382", + "https://openalex.org/W2108207895", + "https://openalex.org/W2109189215", + "https://openalex.org/W2112796928", + "https://openalex.org/W2119717200", + "https://openalex.org/W2120420045", + "https://openalex.org/W2124313187", + "https://openalex.org/W2129142203", + "https://openalex.org/W2129288307", + "https://openalex.org/W2133400152", + "https://openalex.org/W2133564696", + "https://openalex.org/W2134275125", + "https://openalex.org/W2136985729", + "https://openalex.org/W2137808436", + "https://openalex.org/W2141524150", + "https://openalex.org/W2146502635", + "https://openalex.org/W2146534684", + "https://openalex.org/W2146856863", + "https://openalex.org/W2157488230", + "https://openalex.org/W2161239884", + "https://openalex.org/W2161969291", + "https://openalex.org/W2163248562", + "https://openalex.org/W2163922914", + "https://openalex.org/W2167315686", + "https://openalex.org/W2167839676", + "https://openalex.org/W2171928131", + "https://openalex.org/W2250861254", + "https://openalex.org/W2271840356", + "https://openalex.org/W2271982975", + "https://openalex.org/W2327562811", + "https://openalex.org/W2382989034", + "https://openalex.org/W2396666011", + "https://openalex.org/W2403726878", + "https://openalex.org/W2405844906", + "https://openalex.org/W2423581336", + "https://openalex.org/W2464234964", + "https://openalex.org/W2478429860", + "https://openalex.org/W2482888308", + "https://openalex.org/W2496722619", + "https://openalex.org/W2509865812", + "https://openalex.org/W2513383847", + "https://openalex.org/W2539792571", + "https://openalex.org/W2566652804", + "https://openalex.org/W2572175727", + "https://openalex.org/W2574963492", + "https://openalex.org/W2577537660", + "https://openalex.org/W2578556340", + "https://openalex.org/W2586661897", + "https://openalex.org/W2597452529", + "https://openalex.org/W2606594511", + "https://openalex.org/W2618530766", + "https://openalex.org/W2754835109", + "https://openalex.org/W2768092088", + "https://openalex.org/W2778749116", + "https://openalex.org/W2786741601", + "https://openalex.org/W2899771611", + "https://openalex.org/W2919115771", + "https://openalex.org/W2948461586", + "https://openalex.org/W2950999850", + "https://openalex.org/W2951008357", + "https://openalex.org/W2952339051", + "https://openalex.org/W2953146438", + "https://openalex.org/W2962994101", + "https://openalex.org/W2963042536", + "https://openalex.org/W2963264829", + "https://openalex.org/W2963773578", + "https://openalex.org/W2963977107", + "https://openalex.org/W2964121744", + "https://openalex.org/W2986953278", + "https://openalex.org/W3004157836", + "https://openalex.org/W3087399931", + "https://openalex.org/W3100141945", + "https://openalex.org/W3121926921", + "https://openalex.org/W3123351260" + ], + "related_works": [ + "https://openalex.org/W3146803896", + "https://openalex.org/W3101260193", + "https://openalex.org/W3003922491", + "https://openalex.org/W2970971581", + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2899771611", + "https://openalex.org/W2899283552", + "https://openalex.org/W2803629276", + "https://openalex.org/W2749028154", + "https://openalex.org/W2745110207", + "https://openalex.org/W2402144811", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2064675550", + "https://openalex.org/W2051434435", + "https://openalex.org/W1585773866", + "https://openalex.org/W1533861849", + "https://openalex.org/W1498436455", + "https://openalex.org/W2963112935" + ], + "abstract_inverted_index": { + "Derivatives,": [ + 0 + ], + "mostly": [ + 1 + ], + "in": [ + 2, + 11, + 34, + 51, + 97 + ], + "the": [ + 3, + 72, + 84, + 98, + 114, + 119 + ], + "form": [ + 4 + ], + "of": [ + 5, + 23, + 67, + 74, + 100, + 116 + ], + "gradients": [ + 6 + ], + "and": [ + 7, + 31, + 43, + 49, + 63, + 76, + 91 + ], + "Hessians,": [ + 8 + ], + "are": [ + 9 + ], + "ubiquitous": [ + 10 + ], + "machine": [ + 12, + 54, + 77, + 120 + ], + "learning.": [ + 13 + ], + "Automatic": [ + 14 + ], + "differentiation": [ + 15 + ], + "(AD)": [ + 16 + ], + "is": [ + 17 + ], + "a": [ + 18, + 88 + ], + "technique": [ + 19 + ], + "for": [ + 20 + ], + "calculating": [ + 21 + ], + "derivatives": [ + 22 + ], + "numeric": [ + 24 + ], + "functions": [ + 25 + ], + "expressed": [ + 26 + ], + "as": [ + 27, + 37 + ], + "computer": [ + 28 + ], + "programs": [ + 29 + ], + "efficiently": [ + 30 + ], + "accurately,": [ + 32 + ], + "used": [ + 33 + ], + "fields": [ + 35 + ], + "such": [ + 36 + ], + "computational": [ + 38 + ], + "fluid": [ + 39 + ], + "dynamics,": [ + 40 + ], + "nuclear": [ + 41 + ], + "engineering,": [ + 42 + ], + "atmospheric": [ + 44 + ], + "sciences.": [ + 45 + ], + "Despite": [ + 46 + ], + "its": [ + 47 + ], + "advantages": [ + 48 + ], + "use": [ + 50, + 66, + 115 + ], + "other": [ + 52 + ], + "fields,": [ + 53 + ], + "learning": [ + 55, + 121 + ], + "practitioners": [ + 56 + ], + "have": [ + 57, + 112 + ], + "been": [ + 58 + ], + "little": [ + 59 + ], + "influenced": [ + 60 + ], + "by": [ + 61 + ], + "AD": [ + 62, + 75, + 82, + 117 + ], + "make": [ + 64, + 87 + ], + "scant": [ + 65 + ], + "available": [ + 68 + ], + "tools.": [ + 69 + ], + "We": [ + 70, + 103 + ], + "survey": [ + 71 + ], + "intersection": [ + 73 + ], + "learning,": [ + 78 + ], + "cover": [ + 79 + ], + "applications": [ + 80 + ], + "where": [ + 81 + ], + "has": [ + 83 + ], + "potential": [ + 85 + ], + "to": [ + 86, + 105 + ], + "big": [ + 89 + ], + "impact,": [ + 90 + ], + "report": [ + 92 + ], + "on": [ + 93 + ], + "some": [ + 94, + 107 + ], + "recent": [ + 95 + ], + "developments": [ + 96 + ], + "adoption": [ + 99 + ], + "this": [ + 101 + ], + "technique.": [ + 102 + ], + "aim": [ + 104 + ], + "dispel": [ + 106 + ], + "misconceptions": [ + 108 + ], + "that": [ + 109 + ], + "we": [ + 110 + ], + "contend": [ + 111 + ], + "impeded": [ + 113 + ], + "within": [ + 118 + ], + "community.": [ + 122 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 252 + }, + { + "year": 2024, + "cited_by_count": 379 + }, + { + "year": 2023, + "cited_by_count": 398 + }, + { + "year": 2022, + "cited_by_count": 312 + }, + { + "year": 2021, + "cited_by_count": 381 + }, + { + "year": 2020, + "cited_by_count": 242 + }, + { + "year": 2019, + "cited_by_count": 99 + }, + { + "year": 2018, + "cited_by_count": 24 + }, + { + "year": 2017, + "cited_by_count": 6 + }, + { + "year": 2016, + "cited_by_count": 4 + } + ], + "updated_date": "2026-05-21T09:19:25.381259", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2751318774", + "doi": "https://doi.org/10.1142/9789811201967_0001", + "title": "Introduction to Machine Learning", + "display_name": "Introduction to Machine Learning", + "relevance_score": 3261.247, + "publication_year": 2019, + "publication_date": "2019-02-27", + "ids": { + "openalex": "https://openalex.org/W2751318774", + "doi": "https://doi.org/10.1142/9789811201967_0001", + "mag": "2751318774" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1142/9789811201967_0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/9789811201967_0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210240769", + "display_name": "Series in machine perception and artificial intelligence", + "issn_l": "1793-0839", + "issn": [ + "1793-0839" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "book series" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Series in Machine Perception and Artificial Intelligence", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 45.4453, + "has_fulltext": false, + "cited_by_count": 1659, + "citation_normalized_percentile": { + "value": 0.9987236, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "1", + "last_page": "22" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.3314000070095062, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.3314000070095062, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.49732616543769836 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.354877233505249 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.49732616543769836 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.354877233505249 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1142/9789811201967_0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/9789811201967_0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210240769", + "display_name": "Series in machine perception and artificial intelligence", + "issn_l": "1793-0839", + "issn": [ + "1793-0839" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "book series" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Series in Machine Perception and Artificial Intelligence", + "raw_type": "book-chapter" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2382290278", + "https://openalex.org/W2096946506", + "https://openalex.org/W2350741829", + "https://openalex.org/W3004735627", + "https://openalex.org/W3107474891" + ], + "abstract_inverted_index": { + "The": [ + 0, + 140 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 24, + 74, + 91, + 187, + 197, + 252, + 265 + ], + "machine": [ + 3, + 25, + 81, + 92, + 198, + 266 + ], + "learning": [ + 4, + 26, + 82, + 93, + 119, + 199, + 267 + ], + "is": [ + 5, + 63 + ], + "to": [ + 6, + 9, + 16, + 36, + 60, + 86, + 136, + 171, + 224, + 254 + ], + "program": [ + 7 + ], + "computers": [ + 8 + ], + "use": [ + 10 + ], + "example": [ + 11 + ], + "data": [ + 12, + 35, + 116 + ], + "or": [ + 13 + ], + "past": [ + 14, + 33 + ], + "experience": [ + 15 + ], + "solve": [ + 17 + ], + "a": [ + 18, + 45, + 64, + 71, + 88, + 137, + 191 + ], + "given": [ + 19 + ], + "problem.": [ + 20 + ], + "Many": [ + 21 + ], + "successful": [ + 22 + ], + "applications": [ + 23 + ], + "exist": [ + 27 + ], + "already,": [ + 28 + ], + "including": [ + 29, + 104 + ], + "systems": [ + 30 + ], + "that": [ + 31, + 44, + 124 + ], + "analyze": [ + 32 + ], + "sales": [ + 34 + ], + "predict": [ + 37 + ], + "customer": [ + 38 + ], + "behavior,": [ + 39 + ], + "optimize": [ + 40 + ], + "robot": [ + 41 + ], + "behavior": [ + 42 + ], + "so": [ + 43, + 123 + ], + "task": [ + 46 + ], + "can": [ + 47, + 127, + 227 + ], + "be": [ + 48, + 228, + 251 + ], + "completed": [ + 49, + 238 + ], + "using": [ + 50 + ], + "minimum": [ + 51 + ], + "resources,": [ + 52 + ], + "and": [ + 53, + 95, + 115, + 163, + 167, + 182, + 195, + 212, + 221, + 233, + 245, + 271 + ], + "extract": [ + 54 + ], + "knowledge": [ + 55 + ], + "from": [ + 56, + 101, + 130 + ], + "bioinformatics": [ + 57 + ], + "data.": [ + 58 + ], + "Introduction": [ + 59, + 223 + ], + "Machine": [ + 61, + 225, + 272 + ], + "Learning": [ + 62, + 226, + 273 + ], + "comprehensive": [ + 65 + ], + "textbook": [ + 66 + ], + "on": [ + 67, + 177, + 193, + 204 + ], + "the": [ + 68, + 125, + 131, + 134, + 172, + 205, + 257, + 263 + ], + "subject,": [ + 69 + ], + "covering": [ + 70 + ], + "broad": [ + 72 + ], + "array": [ + 73 + ], + "topics": [ + 75, + 144 + ], + "not": [ + 76 + ], + "usually": [ + 77 + ], + "included": [ + 78 + ], + "in": [ + 79, + 133, + 190, + 240, + 256 + ], + "introductory": [ + 80 + ], + "texts.": [ + 83 + ], + "In": [ + 84 + ], + "order": [ + 85 + ], + "present": [ + 87 + ], + "unified": [ + 89 + ], + "treatment": [ + 90 + ], + "problems": [ + 94 + ], + "solutions,": [ + 96 + ], + "it": [ + 97 + ], + "discusses": [ + 98 + ], + "many": [ + 99, + 213 + ], + "methods": [ + 100 + ], + "different": [ + 102 + ], + "fields,": [ + 103 + ], + "statistics,": [ + 105 + ], + "pattern": [ + 106 + ], + "recognition,": [ + 107 + ], + "neural": [ + 108 + ], + "networks,": [ + 109 + ], + "artificial": [ + 110 + ], + "intelligence,": [ + 111 + ], + "signal": [ + 112 + ], + "processing,": [ + 113 + ], + "control,": [ + 114 + ], + "mining.": [ + 117 + ], + "All": [ + 118, + 216 + ], + "algorithms": [ + 120 + ], + "are": [ + 121, + 175, + 260 + ], + "explained": [ + 122 + ], + "student": [ + 126 + ], + "easily": [ + 128 + ], + "move": [ + 129 + ], + "equations": [ + 132 + ], + "book": [ + 135 + ], + "computer": [ + 138, + 241 + ], + "program.": [ + 139 + ], + "text": [ + 141 + ], + "covers": [ + 142 + ], + "such": [ + 143 + ], + "as": [ + 145 + ], + "supervised": [ + 146 + ], + "learning,": [ + 147 + ], + "Bayesian": [ + 148, + 183 + ], + "decision": [ + 149 + ], + "theory,": [ + 150 + ], + "parametric": [ + 151 + ], + "methods,": [ + 152, + 154 + ], + "multivariate": [ + 153 + ], + "multilayer": [ + 155 + ], + "perceptrons,": [ + 156 + ], + "local": [ + 157 + ], + "models,": [ + 158, + 161, + 181 + ], + "hidden": [ + 159 + ], + "Markov": [ + 160 + ], + "assessing": [ + 162 + ], + "comparing": [ + 164 + ], + "classification": [ + 165 + ], + "algorithms,": [ + 166 + ], + "reinforcement": [ + 168 + ], + "learning.": [ + 169 + ], + "New": [ + 170 + ], + "second": [ + 173 + ], + "edition": [ + 174 + ], + "chapters": [ + 176, + 217 + ], + "kernel": [ + 178 + ], + "machines,": [ + 179 + ], + "graphical": [ + 180 + ], + "estimation;": [ + 184 + ], + "expanded": [ + 185 + ], + "coverage": [ + 186 + ], + "statistical": [ + 188 + ], + "tests": [ + 189 + ], + "chapter": [ + 192 + ], + "design": [ + 194 + ], + "analysis": [ + 196 + ], + "experiments;": [ + 200 + ], + "case": [ + 201 + ], + "studies": [ + 202 + ], + "available": [ + 203 + ], + "Web": [ + 206 + ], + "(with": [ + 207 + ], + "downloadable": [ + 208 + ], + "results": [ + 209 + ], + "for": [ + 210 + ], + "instructors);": [ + 211 + ], + "additional": [ + 214 + ], + "exercises.": [ + 215 + ], + "have": [ + 218, + 237 + ], + "been": [ + 219 + ], + "revised": [ + 220 + ], + "updated.": [ + 222 + ], + "used": [ + 229 + ], + "by": [ + 230 + ], + "advanced": [ + 231 + ], + "undergraduates": [ + 232 + ], + "graduate": [ + 234 + ], + "students": [ + 235 + ], + "who": [ + 236, + 259 + ], + "courses": [ + 239 + ], + "programming,": [ + 242 + ], + "probability,": [ + 243 + ], + "calculus,": [ + 244 + ], + "linear": [ + 246 + ], + "algebra.": [ + 247 + ], + "It": [ + 248 + ], + "will": [ + 249 + ], + "also": [ + 250 + ], + "interest": [ + 253 + ], + "engineers": [ + 255 + ], + "field": [ + 258 + ], + "concerned": [ + 261 + ], + "with": [ + 262 + ], + "application": [ + 264 + ], + "methods.": [ + 268 + ], + "Adaptive": [ + 269 + ], + "Computation": [ + 270 + ], + "series": [ + 274 + ] + }, + "counts_by_year": [ + { + "year": 2024, + "cited_by_count": 2 + }, + { + "year": 2023, + "cited_by_count": 3 + }, + { + "year": 2022, + "cited_by_count": 6 + }, + { + "year": 2021, + "cited_by_count": 46 + }, + { + "year": 2020, + "cited_by_count": 57 + }, + { + "year": 2019, + "cited_by_count": 56 + }, + { + "year": 2018, + "cited_by_count": 50 + }, + { + "year": 2017, + "cited_by_count": 63 + }, + { + "year": 2016, + "cited_by_count": 108 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 168 + }, + { + "year": 2013, + "cited_by_count": 151 + }, + { + "year": 2012, + "cited_by_count": 140 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4205539948", + "doi": "https://doi.org/10.1093/rfs/hhaa009", + "title": "Empirical Asset Pricing via Machine Learning", + "display_name": "Empirical Asset Pricing via Machine Learning", + "relevance_score": 3166.7078, + "publication_year": 2020, + "publication_date": "2020-02-20", + "ids": { + "openalex": "https://openalex.org/W4205539948", + "doi": "https://doi.org/10.1093/rfs/hhaa009" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5025931561", + "display_name": "Shihao Gu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Shihao Gu", + "raw_affiliation_strings": [ + "Booth School of Business, University of Chicago" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Booth School of Business, University of Chicago", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101435735", + "display_name": "Bryan Kelly", + "orcid": "https://orcid.org/0000-0001-6752-822X" + }, + "institutions": [ + { + "id": "https://openalex.org/I139787848", + "display_name": "Capital University", + "ror": "https://ror.org/00jy9e726", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I139787848" + ] + }, + { + "id": "https://openalex.org/I32971472", + "display_name": "Yale University", + "ror": "https://ror.org/03v76x132", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I32971472" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Bryan Kelly", + "raw_affiliation_strings": [ + "Yale University, AQR Capital Management, and NBER" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Yale University, AQR Capital Management, and NBER", + "institution_ids": [ + "https://openalex.org/I139787848", + "https://openalex.org/I32971472" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5050253426", + "display_name": "Dacheng Xiu", + "orcid": "https://orcid.org/0000-0002-2250-0861" + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dacheng Xiu", + "raw_affiliation_strings": [ + "Booth School of Business, University of Chicago" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Booth School of Business, University of Chicago", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5025931561" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I40347166" + ], + "apc_list": { + "value": 3724, + "currency": "USD", + "value_usd": 3724 + }, + "apc_paid": null, + "fwci": 221.2533, + "has_fulltext": true, + "cited_by_count": 2188, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "33", + "issue": "5", + "first_page": "2223", + "last_page": "2273" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10047", + "display_name": "Financial Markets and Investment Strategies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10047", + "display_name": "Financial Markets and Investment Strategies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T11326", + "display_name": "Stock Market Forecasting Methods", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10282", + "display_name": "Financial Risk and Volatility Modeling", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/capital-asset-pricing-model", + "display_name": "Capital asset pricing model", + "score": 0.7436144351959229 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6426714658737183 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6057676076889038 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5858373641967773 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5564541816711426 + }, + { + "id": "https://openalex.org/keywords/volatility", + "display_name": "Volatility (finance)", + "score": 0.5285476446151733 + }, + { + "id": "https://openalex.org/keywords/market-liquidity", + "display_name": "Market liquidity", + "score": 0.519666314125061 + }, + { + "id": "https://openalex.org/keywords/econometrics", + "display_name": "Econometrics", + "score": 0.5052424073219299 + }, + { + "id": "https://openalex.org/keywords/asset", + "display_name": "Asset (computer security)", + "score": 0.485171377658844 + }, + { + "id": "https://openalex.org/keywords/trace", + "display_name": "TRACE (psycholinguistics)", + "score": 0.45744583010673523 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4424659311771393 + }, + { + "id": "https://openalex.org/keywords/economics", + "display_name": "Economics", + "score": 0.3305661678314209 + }, + { + "id": "https://openalex.org/keywords/finance", + "display_name": "Finance", + "score": 0.1892847716808319 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C181236170", + "wikidata": "https://www.wikidata.org/wiki/Q848354", + "display_name": "Capital asset pricing model", + "level": 2, + "score": 0.7436144351959229 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6426714658737183 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6057676076889038 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5858373641967773 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5564541816711426 + }, + { + "id": "https://openalex.org/C91602232", + "wikidata": "https://www.wikidata.org/wiki/Q756115", + "display_name": "Volatility (finance)", + "level": 2, + "score": 0.5285476446151733 + }, + { + "id": "https://openalex.org/C183582576", + "wikidata": "https://www.wikidata.org/wiki/Q184783", + "display_name": "Market liquidity", + "level": 2, + "score": 0.519666314125061 + }, + { + "id": "https://openalex.org/C149782125", + "wikidata": "https://www.wikidata.org/wiki/Q160039", + "display_name": "Econometrics", + "level": 1, + "score": 0.5052424073219299 + }, + { + "id": "https://openalex.org/C76178495", + "wikidata": "https://www.wikidata.org/wiki/Q4808784", + "display_name": "Asset (computer security)", + "level": 2, + "score": 0.485171377658844 + }, + { + "id": "https://openalex.org/C75291252", + "wikidata": "https://www.wikidata.org/wiki/Q1315756", + "display_name": "TRACE (psycholinguistics)", + "level": 2, + "score": 0.45744583010673523 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4424659311771393 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.3305661678314209 + }, + { + "id": "https://openalex.org/C10138342", + "wikidata": "https://www.wikidata.org/wiki/Q43015", + "display_name": "Finance", + "level": 1, + "score": 0.1892847716808319 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:RePEc:oup:revfin:v:33:y:2020:i:5:p:2223-2273.", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/10.1093/rfs/hhaa009", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W4205539948.pdf", + "grobid_xml": "https://content.openalex.org/works/W4205539948.grobid-xml" + }, + "referenced_works_count": 70, + "referenced_works": [ + "https://openalex.org/W608042232", + "https://openalex.org/W1503022246", + "https://openalex.org/W1522301498", + "https://openalex.org/W1533618852", + "https://openalex.org/W1534477342", + "https://openalex.org/W1594031697", + "https://openalex.org/W1678356000", + "https://openalex.org/W1789808336", + "https://openalex.org/W1969404656", + "https://openalex.org/W1971217947", + "https://openalex.org/W1976251851", + "https://openalex.org/W1995834279", + "https://openalex.org/W2007694684", + "https://openalex.org/W2024046085", + "https://openalex.org/W2046033161", + "https://openalex.org/W2048662624", + "https://openalex.org/W2063730763", + "https://openalex.org/W2070534370", + "https://openalex.org/W2103496339", + "https://openalex.org/W2135293965", + "https://openalex.org/W2136922672", + "https://openalex.org/W2137983211", + "https://openalex.org/W2139753118", + "https://openalex.org/W2144570112", + "https://openalex.org/W2154987621", + "https://openalex.org/W2194775991", + "https://openalex.org/W2265274622", + "https://openalex.org/W2291108100", + "https://openalex.org/W2319405822", + "https://openalex.org/W2338469198", + "https://openalex.org/W2503100348", + "https://openalex.org/W2546302380", + "https://openalex.org/W2560674852", + "https://openalex.org/W2741371467", + "https://openalex.org/W2787894218", + "https://openalex.org/W2799643291", + "https://openalex.org/W2911964244", + "https://openalex.org/W2938815980", + "https://openalex.org/W2967005703", + "https://openalex.org/W3001826040", + "https://openalex.org/W3004050393", + "https://openalex.org/W3004732066", + "https://openalex.org/W3018089439", + "https://openalex.org/W3121274430", + "https://openalex.org/W3121588992", + "https://openalex.org/W3122020290", + "https://openalex.org/W3122118888", + "https://openalex.org/W3123267500", + "https://openalex.org/W3123752263", + "https://openalex.org/W3124436545", + "https://openalex.org/W3125696988", + "https://openalex.org/W3125950889", + "https://openalex.org/W3126032681", + "https://openalex.org/W3126136988", + "https://openalex.org/W3131102529", + "https://openalex.org/W4211170237", + "https://openalex.org/W4237239309", + "https://openalex.org/W4242067316", + "https://openalex.org/W4297853882", + "https://openalex.org/W4388297464", + "https://openalex.org/W6637242042", + "https://openalex.org/W6637404493", + "https://openalex.org/W6638667902", + "https://openalex.org/W6660794422", + "https://openalex.org/W6682889407", + "https://openalex.org/W6684409620", + "https://openalex.org/W6691187937", + "https://openalex.org/W6694527737", + "https://openalex.org/W6736719330", + "https://openalex.org/W6781003217" + ], + "related_works": [ + "https://openalex.org/W2512907043", + "https://openalex.org/W4248657878", + "https://openalex.org/W1985218057", + "https://openalex.org/W4313341805", + "https://openalex.org/W2167647189", + "https://openalex.org/W4390564844", + "https://openalex.org/W2131958170", + "https://openalex.org/W2061122711", + "https://openalex.org/W2273754158", + "https://openalex.org/W4313341917" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "We": [ + 1, + 22, + 46 + ], + "perform": [ + 2 + ], + "a": [ + 3, + 80 + ], + "comparative": [ + 4 + ], + "analysis": [ + 5 + ], + "of": [ + 6, + 14, + 39, + 76 + ], + "machine": [ + 7, + 30 + ], + "learning": [ + 8, + 31 + ], + "methods": [ + 9, + 50, + 70 + ], + "for": [ + 10 + ], + "the": [ + 11, + 37, + 44, + 48, + 73, + 100, + 108, + 111 + ], + "canonical": [ + 12 + ], + "problem": [ + 13 + ], + "empirical": [ + 15 + ], + "asset": [ + 16, + 19 + ], + "pricing:": [ + 17 + ], + "measuring": [ + 18 + ], + "risk": [ + 20 + ], + "premiums.": [ + 21 + ], + "demonstrate": [ + 23 + ], + "large": [ + 24 + ], + "economic": [ + 25 + ], + "gains": [ + 26, + 59 + ], + "to": [ + 27, + 60, + 107, + 110 + ], + "investors": [ + 28 + ], + "using": [ + 29 + ], + "forecasts,": [ + 32 + ], + "in": [ + 33 + ], + "some": [ + 34 + ], + "cases": [ + 35 + ], + "doubling": [ + 36 + ], + "performance": [ + 38 + ], + "leading": [ + 40 + ], + "regression-based": [ + 41 + ], + "strategies": [ + 42 + ], + "from": [ + 43 + ], + "literature.": [ + 45 + ], + "identify": [ + 47 + ], + "best-performing": [ + 49 + ], + "(trees": [ + 51 + ], + "and": [ + 52, + 55, + 88 + ], + "neural": [ + 53 + ], + "networks)": [ + 54 + ], + "trace": [ + 56 + ], + "their": [ + 57 + ], + "predictive": [ + 58, + 78 + ], + "allowing": [ + 61 + ], + "nonlinear": [ + 62 + ], + "predictor": [ + 63 + ], + "interactions": [ + 64 + ], + "missed": [ + 65 + ], + "by": [ + 66 + ], + "other": [ + 67 + ], + "methods.": [ + 68 + ], + "All": [ + 69 + ], + "agree": [ + 71 + ], + "on": [ + 72, + 85, + 99 + ], + "same": [ + 74 + ], + "set": [ + 75, + 81 + ], + "dominant": [ + 77 + ], + "signals,": [ + 79 + ], + "that": [ + 82 + ], + "includes": [ + 83 + ], + "variations": [ + 84 + ], + "momentum,": [ + 86 + ], + "liquidity,": [ + 87 + ], + "volatility.": [ + 89 + ], + "Authors": [ + 90 + ], + "have": [ + 91 + ], + "furnished": [ + 92 + ], + "an": [ + 93 + ], + "Internet": [ + 94 + ], + "Appendix,": [ + 95 + ], + "which": [ + 96 + ], + "is": [ + 97 + ], + "available": [ + 98 + ], + "Oxford": [ + 101 + ], + "University": [ + 102 + ], + "Press": [ + 103 + ], + "Web": [ + 104 + ], + "site": [ + 105 + ], + "next": [ + 106 + ], + "link": [ + 109 + ], + "final": [ + 112 + ], + "published": [ + 113 + ], + "paper": [ + 114 + ], + "online.": [ + 115 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 261 + }, + { + "year": 2025, + "cited_by_count": 533 + }, + { + "year": 2024, + "cited_by_count": 433 + }, + { + "year": 2023, + "cited_by_count": 355 + }, + { + "year": 2022, + "cited_by_count": 246 + }, + { + "year": 2021, + "cited_by_count": 212 + }, + { + "year": 2020, + "cited_by_count": 105 + }, + { + "year": 2019, + "cited_by_count": 18 + }, + { + "year": 2018, + "cited_by_count": 13 + }, + { + "year": 2017, + "cited_by_count": 5 + }, + { + "year": 2016, + "cited_by_count": 3 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1993220166", + "doi": "https://doi.org/10.1145/1007730.1007735", + "title": "A study of the behavior of several methods for balancing machine learning training data", + "display_name": "A study of the behavior of several methods for balancing machine learning training data", + "relevance_score": 3145.3699, + "publication_year": 2004, + "publication_date": "2004-06-01", + "ids": { + "openalex": "https://openalex.org/W1993220166", + "doi": "https://doi.org/10.1145/1007730.1007735", + "mag": "1993220166" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/1007730.1007735", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1007730.1007735", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210176598", + "display_name": "ACM SIGKDD Explorations Newsletter", + "issn_l": "1931-0145", + "issn": [ + "1931-0145", + "1931-0153" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM SIGKDD Explorations Newsletter", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5102371518", + "display_name": "Gustavo E. A. P. A. Batista", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": true, + "raw_author_name": "Gustavo E. A. P. A. Batista", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5005717519", + "display_name": "Ronaldo C. Prati", + "orcid": "https://orcid.org/0000-0001-8597-4987" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": false, + "raw_author_name": "Ronaldo C. Prati", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5000813310", + "display_name": "Maria Carolina Monard", + "orcid": "https://orcid.org/0000-0001-6004-7407" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": false, + "raw_author_name": "Maria Carolina Monard", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5102371518" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210131883" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 37.4612, + "has_fulltext": false, + "cited_by_count": 4104, + "citation_normalized_percentile": { + "value": 0.99786653, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "6", + "issue": "1", + "first_page": "20", + "last_page": "29" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9883999824523926, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8465416431427002 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.7231571078300476 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7109780311584473 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6125052571296692 + }, + { + "id": "https://openalex.org/keywords/sampling", + "display_name": "Sampling (signal processing)", + "score": 0.5954932570457458 + }, + { + "id": "https://openalex.org/keywords/simple-random-sample", + "display_name": "Simple random sample", + "score": 0.5651431083679199 + }, + { + "id": "https://openalex.org/keywords/event", + "display_name": "Event (particle physics)", + "score": 0.47093668580055237 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.44805052876472473 + }, + { + "id": "https://openalex.org/keywords/simple", + "display_name": "Simple (philosophy)", + "score": 0.44138047099113464 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8465416431427002 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.7231571078300476 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7109780311584473 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6125052571296692 + }, + { + "id": "https://openalex.org/C140779682", + "wikidata": "https://www.wikidata.org/wiki/Q210868", + "display_name": "Sampling (signal processing)", + "level": 3, + "score": 0.5954932570457458 + }, + { + "id": "https://openalex.org/C20353970", + "wikidata": "https://www.wikidata.org/wiki/Q1056998", + "display_name": "Simple random sample", + "level": 3, + "score": 0.5651431083679199 + }, + { + "id": "https://openalex.org/C2779662365", + "wikidata": "https://www.wikidata.org/wiki/Q5416694", + "display_name": "Event (particle physics)", + "level": 2, + "score": 0.47093668580055237 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.44805052876472473 + }, + { + "id": "https://openalex.org/C2780586882", + "wikidata": "https://www.wikidata.org/wiki/Q7520643", + "display_name": "Simple (philosophy)", + "level": 2, + "score": 0.44138047099113464 + }, + { + "id": "https://openalex.org/C2908647359", + "wikidata": "https://www.wikidata.org/wiki/Q2625603", + "display_name": "Population", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106131492", + "wikidata": "https://www.wikidata.org/wiki/Q3072260", + "display_name": "Filter (signal processing)", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C149923435", + "wikidata": "https://www.wikidata.org/wiki/Q37732", + "display_name": "Demography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/1007730.1007735", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1007730.1007735", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210176598", + "display_name": "ACM SIGKDD Explorations Newsletter", + "issn_l": "1931-0145", + "issn": [ + "1931-0145", + "1931-0153" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM SIGKDD Explorations Newsletter", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W85350352", + "https://openalex.org/W102369970", + "https://openalex.org/W142793689", + "https://openalex.org/W1499467920", + "https://openalex.org/W1504694836", + "https://openalex.org/W1576442155", + "https://openalex.org/W1591261915", + "https://openalex.org/W1941659294", + "https://openalex.org/W1977245551", + "https://openalex.org/W1994410331", + "https://openalex.org/W2004131797", + "https://openalex.org/W2058732827", + "https://openalex.org/W2084812512", + "https://openalex.org/W2107686700", + "https://openalex.org/W2114968414", + "https://openalex.org/W2122496402", + "https://openalex.org/W2125055259", + "https://openalex.org/W2136903812", + "https://openalex.org/W2137029138", + "https://openalex.org/W2147169507", + "https://openalex.org/W2148143831", + "https://openalex.org/W2152761983", + "https://openalex.org/W2157092487", + "https://openalex.org/W2170913656", + "https://openalex.org/W2797114046", + "https://openalex.org/W4285719527" + ], + "related_works": [ + "https://openalex.org/W2370014976", + "https://openalex.org/W2350399852", + "https://openalex.org/W3047864323", + "https://openalex.org/W1036777753", + "https://openalex.org/W4379210352", + "https://openalex.org/W4238714840", + "https://openalex.org/W4362679606", + "https://openalex.org/W2994963386", + "https://openalex.org/W3004700962", + "https://openalex.org/W2088812990" + ], + "abstract_inverted_index": { + "There": [ + 0 + ], + "are": [ + 1, + 283 + ], + "several": [ + 2 + ], + "aspects": [ + 3, + 22 + ], + "that": [ + 4, + 18, + 112, + 280 + ], + "might": [ + 5 + ], + "influence": [ + 6 + ], + "the": [ + 7, + 40, + 43, + 62, + 70, + 74, + 94, + 99, + 119, + 126, + 141, + 194, + 197, + 210, + 255, + 266, + 270, + 288, + 298, + 302, + 312, + 316, + 326 + ], + "performance": [ + 8, + 120, + 261 + ], + "achieved": [ + 9 + ], + "by": [ + 10, + 93 + ], + "existing": [ + 11 + ], + "learning": [ + 12, + 63, + 122, + 133 + ], + "systems.": [ + 13, + 123 + ], + "It": [ + 14 + ], + "has": [ + 15 + ], + "been": [ + 16 + ], + "reported": [ + 17 + ], + "one": [ + 19, + 36 + ], + "of": [ + 20, + 90, + 121, + 143, + 152, + 213, + 235, + 269, + 305, + 319 + ], + "these": [ + 21, + 158, + 281 + ], + "is": [ + 23, + 50, + 246 + ], + "related": [ + 24, + 72, + 131 + ], + "to": [ + 25, + 35, + 68, + 73, + 96, + 129, + 132, + 172, + 204, + 249 + ], + "class": [ + 26, + 37, + 100, + 113, + 138, + 149, + 175 + ], + "imbalance": [ + 27, + 101, + 114 + ], + "in": [ + 28, + 31, + 42, + 52, + 103, + 140, + 170, + 182, + 209, + 301, + 315 + ], + "which": [ + 29, + 49 + ], + "examples": [ + 30, + 41, + 139 + ], + "training": [ + 32 + ], + "data": [ + 33, + 55, + 106, + 167, + 229 + ], + "belonging": [ + 34 + ], + "heavily": [ + 38 + ], + "outnumber": [ + 39 + ], + "other": [ + 44, + 144 + ], + "class.": [ + 45, + 76 + ], + "In": [ + 46, + 77, + 124 + ], + "this": [ + 47, + 78 + ], + "situation,": [ + 48 + ], + "found": [ + 51 + ], + "real": [ + 53 + ], + "world": [ + 54 + ], + "describing": [ + 56 + ], + "an": [ + 57 + ], + "infrequent": [ + 58 + ], + "but": [ + 59 + ], + "important": [ + 60 + ], + "event,": [ + 61 + ], + "system": [ + 64 + ], + "may": [ + 65 + ], + "have": [ + 66 + ], + "difficulties": [ + 67 + ], + "learn": [ + 69 + ], + "concept": [ + 71 + ], + "minority": [ + 75, + 137 + ], + "work": [ + 79 + ], + "we": [ + 80, + 263 + ], + "perform": [ + 81 + ], + "a": [ + 82, + 162, + 232, + 241 + ], + "broad": [ + 83 + ], + "experimental": [ + 84 + ], + "evaluation": [ + 85 + ], + "involving": [ + 86 + ], + "ten": [ + 87 + ], + "methods,": [ + 88, + 216 + ], + "three": [ + 89 + ], + "them": [ + 91 + ], + "proposed": [ + 92, + 154, + 215 + ], + "authors,": [ + 95 + ], + "deal": [ + 97, + 156 + ], + "with": [ + 98, + 134, + 157, + 166, + 231 + ], + "problem": [ + 102, + 127 + ], + "thirteen": [ + 104 + ], + "UCI": [ + 105 + ], + "sets.": [ + 107 + ], + "Our": [ + 108, + 177, + 277 + ], + "experiments": [ + 109, + 179 + ], + "provide": [ + 110, + 186 + ], + "evidence": [ + 111 + ], + "does": [ + 115 + ], + "not": [ + 116 + ], + "systematically": [ + 117 + ], + "hinder": [ + 118 + ], + "fact,": [ + 125 + ], + "seems": [ + 128, + 203 + ], + "be": [ + 130 + ], + "too": [ + 135 + ], + "few": [ + 136 + ], + "presence": [ + 142 + ], + "complicating": [ + 145 + ], + "factors,": [ + 146 + ], + "such": [ + 147 + ], + "as": [ + 148 + ], + "overlapping.": [ + 150 + ], + "Two": [ + 151, + 212 + ], + "our": [ + 153, + 214 + ], + "methods": [ + 155, + 169, + 185, + 192, + 257 + ], + "conditions": [ + 159, + 320 + ], + "directly,": [ + 160 + ], + "allying": [ + 161 + ], + "known": [ + 163 + ], + "over-sampling": [ + 164, + 184, + 244, + 252, + 256, + 295, + 328 + ], + "method": [ + 165 + ], + "cleaning": [ + 168 + ], + "order": [ + 171 + ], + "produce": [ + 173 + ], + "better-defined": [ + 174 + ], + "clusters.": [ + 176 + ], + "comparative": [ + 178 + ], + "show": [ + 180, + 279 + ], + "that,": [ + 181 + ], + "general,": [ + 183 + ], + "more": [ + 187, + 250, + 285 + ], + "accurate": [ + 188 + ], + "results": [ + 189, + 206, + 227, + 278 + ], + "than": [ + 190 + ], + "under-sampling": [ + 191 + ], + "considering": [ + 193 + ], + "area": [ + 195 + ], + "under": [ + 196 + ], + "ROC": [ + 198 + ], + "curve": [ + 199 + ], + "(AUC).": [ + 200 + ], + "This": [ + 201 + ], + "result": [ + 202 + ], + "contradict": [ + 205 + ], + "previously": [ + 207 + ], + "published": [ + 208 + ], + "literature.": [ + 211 + ], + "Smote": [ + 217, + 221, + 309 + ], + "+": [ + 218, + 222, + 310 + ], + "Tomek": [ + 219 + ], + "and": [ + 220, + 308 + ], + "ENN,": [ + 223 + ], + "presented": [ + 224 + ], + "very": [ + 225, + 242, + 247, + 259 + ], + "good": [ + 226, + 260 + ], + "for": [ + 228 + ], + "sets": [ + 230 + ], + "small": [ + 233 + ], + "number": [ + 234, + 304, + 318 + ], + "positive": [ + 236 + ], + "examples.": [ + 237 + ], + "Moreover,": [ + 238 + ], + "Random": [ + 239, + 294 + ], + "over-sampling,": [ + 240 + ], + "simple": [ + 243 + ], + "method,": [ + 245 + ], + "competitive": [ + 248 + ], + "complex": [ + 251, + 286 + ], + "methods.": [ + 253, + 329 + ], + "Since": [ + 254 + ], + "provided": [ + 258 + ], + "results,": [ + 262 + ], + "also": [ + 264 + ], + "measured": [ + 265 + ], + "syntactic": [ + 267 + ], + "complexity": [ + 268 + ], + "decision": [ + 271 + ], + "trees": [ + 272, + 282 + ], + "induced": [ + 273, + 290, + 306 + ], + "from": [ + 274, + 291 + ], + "over-sampled": [ + 275 + ], + "data.": [ + 276, + 293 + ], + "usually": [ + 284, + 296 + ], + "then": [ + 287 + ], + "ones": [ + 289 + ], + "original": [ + 292 + ], + "produced": [ + 297 + ], + "smallest": [ + 299, + 313 + ], + "increase": [ + 300, + 314 + ], + "mean": [ + 303, + 317 + ], + "rules": [ + 307 + ], + "ENN": [ + 311 + ], + "per": [ + 321 + ], + "rule,": [ + 322 + ], + "when": [ + 323 + ], + "compared": [ + 324 + ], + "among": [ + 325 + ], + "investigated": [ + 327 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 138 + }, + { + "year": 2025, + "cited_by_count": 463 + }, + { + "year": 2024, + "cited_by_count": 437 + }, + { + "year": 2023, + "cited_by_count": 422 + }, + { + "year": 2022, + "cited_by_count": 418 + }, + { + "year": 2021, + "cited_by_count": 366 + }, + { + "year": 2020, + "cited_by_count": 372 + }, + { + "year": 2019, + "cited_by_count": 282 + }, + { + "year": 2018, + "cited_by_count": 198 + }, + { + "year": 2017, + "cited_by_count": 148 + }, + { + "year": 2016, + "cited_by_count": 128 + }, + { + "year": 2015, + "cited_by_count": 102 + }, + { + "year": 2014, + "cited_by_count": 100 + }, + { + "year": 2013, + "cited_by_count": 103 + }, + { + "year": 2012, + "cited_by_count": 86 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2767079719", + "doi": "https://doi.org/10.1145/3133956.3133982", + "title": "Practical Secure Aggregation for Privacy-Preserving Machine Learning", + "display_name": "Practical Secure Aggregation for Privacy-Preserving Machine Learning", + "relevance_score": 3137.6895, + "publication_year": 2017, + "publication_date": "2017-10-27", + "ids": { + "openalex": "https://openalex.org/W2767079719", + "doi": "https://doi.org/10.1145/3133956.3133982", + "mag": "2767079719" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3133956.3133982", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3133956.3133982", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5011571548", + "display_name": "Keith Bonawitz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Keith Bonawitz", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5090386348", + "display_name": "Vladimir Ivanov", + "orcid": "https://orcid.org/0000-0002-2272-3504" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vladimir Ivanov", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048810237", + "display_name": "Ben Kreuter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ben Kreuter", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5042948297", + "display_name": "Antonio Marcedone", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Antonio Marcedone", + "raw_affiliation_strings": [ + "Cornell Tech & Google Inc., New York, NY, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech & Google Inc., New York, NY, USA", + "institution_ids": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5040311844", + "display_name": "H. Brendan McMahan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "H. Brendan McMahan", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5112503421", + "display_name": "Sarvar Patel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sarvar Patel", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5071710055", + "display_name": "Daniel Ramage", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Daniel Ramage", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5103065610", + "display_name": "Aaron Segal", + "orcid": "https://orcid.org/0009-0009-4015-2248" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Aaron Segal", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5030536555", + "display_name": "Karn Seth", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karn Seth", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 9, + "corresponding_author_ids": [ + "https://openalex.org/A5011571548" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 115.557, + "has_fulltext": false, + "cited_by_count": 3395, + "citation_normalized_percentile": { + "value": 0.99961175, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "1175", + "last_page": "1191" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8472366333007812 + }, + { + "id": "https://openalex.org/keywords/overhead", + "display_name": "Overhead (engineering)", + "score": 0.7010411024093628 + }, + { + "id": "https://openalex.org/keywords/protocol", + "display_name": "Protocol (science)", + "score": 0.6327217221260071 + }, + { + "id": "https://openalex.org/keywords/universal-composability", + "display_name": "Universal composability", + "score": 0.5701457858085632 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.5431879758834839 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.5169126987457275 + }, + { + "id": "https://openalex.org/keywords/aggregate", + "display_name": "Aggregate (composite)", + "score": 0.5009667873382568 + }, + { + "id": "https://openalex.org/keywords/cryptographic-protocol", + "display_name": "Cryptographic protocol", + "score": 0.39526641368865967 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.3952005207538605 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.33491313457489014 + }, + { + "id": "https://openalex.org/keywords/cryptography", + "display_name": "Cryptography", + "score": 0.27258676290512085 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.24293646216392517 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.08857136964797974 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8472366333007812 + }, + { + "id": "https://openalex.org/C2779960059", + "wikidata": "https://www.wikidata.org/wiki/Q7113681", + "display_name": "Overhead (engineering)", + "level": 2, + "score": 0.7010411024093628 + }, + { + "id": "https://openalex.org/C2780385302", + "wikidata": "https://www.wikidata.org/wiki/Q367158", + "display_name": "Protocol (science)", + "level": 3, + "score": 0.6327217221260071 + }, + { + "id": "https://openalex.org/C165751822", + "wikidata": "https://www.wikidata.org/wiki/Q7894118", + "display_name": "Universal composability", + "level": 4, + "score": 0.5701457858085632 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.5431879758834839 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.5169126987457275 + }, + { + "id": "https://openalex.org/C4679612", + "wikidata": "https://www.wikidata.org/wiki/Q866298", + "display_name": "Aggregate (composite)", + "level": 2, + "score": 0.5009667873382568 + }, + { + "id": "https://openalex.org/C33884865", + "wikidata": "https://www.wikidata.org/wiki/Q1254335", + "display_name": "Cryptographic protocol", + "level": 3, + "score": 0.39526641368865967 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.3952005207538605 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.33491313457489014 + }, + { + "id": "https://openalex.org/C178489894", + "wikidata": "https://www.wikidata.org/wiki/Q8789", + "display_name": "Cryptography", + "level": 2, + "score": 0.27258676290512085 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.24293646216392517 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.08857136964797974 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C204787440", + "wikidata": "https://www.wikidata.org/wiki/Q188504", + "display_name": "Alternative medicine", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3133956.3133982", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3133956.3133982", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "score": 0.49000000953674316, + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 56, + "referenced_works": [ + "https://openalex.org/W25045116", + "https://openalex.org/W95608104", + "https://openalex.org/W1071368427", + "https://openalex.org/W1493407996", + "https://openalex.org/W1519947574", + "https://openalex.org/W1557833142", + "https://openalex.org/W1595357546", + "https://openalex.org/W1656028867", + "https://openalex.org/W1836711297", + "https://openalex.org/W1952161176", + "https://openalex.org/W1952958290", + "https://openalex.org/W1981029888", + "https://openalex.org/W2006453614", + "https://openalex.org/W2027471022", + "https://openalex.org/W2027595342", + "https://openalex.org/W2033974828", + "https://openalex.org/W2051267297", + "https://openalex.org/W2053637704", + "https://openalex.org/W2053801139", + "https://openalex.org/W2058648304", + "https://openalex.org/W2061106457", + "https://openalex.org/W2069657084", + "https://openalex.org/W2087811006", + "https://openalex.org/W2104803737", + "https://openalex.org/W2128865076", + "https://openalex.org/W2135930857", + "https://openalex.org/W2141420453", + "https://openalex.org/W2146673169", + "https://openalex.org/W2149093588", + "https://openalex.org/W2152768255", + "https://openalex.org/W2156186849", + "https://openalex.org/W2163481970", + "https://openalex.org/W2164284862", + "https://openalex.org/W2200869402", + "https://openalex.org/W2232997092", + "https://openalex.org/W2267098117", + "https://openalex.org/W2295522738", + "https://openalex.org/W2336650964", + "https://openalex.org/W2400777838", + "https://openalex.org/W2402235285", + "https://openalex.org/W2413533038", + "https://openalex.org/W2473418344", + "https://openalex.org/W2525846285", + "https://openalex.org/W2535690855", + "https://openalex.org/W2536058570", + "https://openalex.org/W2538520193", + "https://openalex.org/W2541884796", + "https://openalex.org/W2557283755", + "https://openalex.org/W2568821124", + "https://openalex.org/W2599930814", + "https://openalex.org/W2911978475", + "https://openalex.org/W2951114885", + "https://openalex.org/W3031847131", + "https://openalex.org/W3102407811", + "https://openalex.org/W3141405531", + "https://openalex.org/W3150645827" + ], + "related_works": [ + "https://openalex.org/W1554274402", + "https://openalex.org/W2029851387", + "https://openalex.org/W4255046035", + "https://openalex.org/W2114477748", + "https://openalex.org/W37362883", + "https://openalex.org/W1554289623", + "https://openalex.org/W2384294878", + "https://openalex.org/W2989724018", + "https://openalex.org/W4315630650", + "https://openalex.org/W2115382662" + ], + "abstract_inverted_index": { + "We": [ + 0, + 62, + 95 + ], + "design": [ + 1 + ], + "a": [ + 2, + 16, + 31, + 48, + 58, + 108 + ], + "novel,": [ + 3 + ], + "communication-efficient,": [ + 4 + ], + "failure-robust": [ + 5 + ], + "protocol": [ + 6, + 14, + 68, + 101, + 132 + ], + "for": [ + 7, + 45, + 57, + 138, + 148 + ], + "secure": [ + 8, + 32 + ], + "aggregation": [ + 9 + ], + "of": [ + 10, + 22, + 66, + 88, + 99 + ], + "high-dimensional": [ + 11 + ], + "data.": [ + 12 + ], + "Our": [ + 13 + ], + "allows": [ + 15 + ], + "server": [ + 17 + ], + "to": [ + 18, + 52 + ], + "compute": [ + 19 + ], + "the": [ + 20, + 64, + 70, + 97, + 158 + ], + "sum": [ + 21 + ], + "large,": [ + 23 + ], + "user-held": [ + 24 + ], + "data": [ + 25, + 122, + 156 + ], + "vectors": [ + 26, + 153 + ], + "from": [ + 27 + ], + "mobile": [ + 28 + ], + "devices": [ + 29 + ], + "in": [ + 30, + 47, + 69, + 157 + ], + "manner": [ + 33 + ], + "(i.e.": [ + 34 + ], + "without": [ + 35 + ], + "learning": [ + 36, + 50 + ], + "each": [ + 37 + ], + "user's": [ + 38 + ], + "individual": [ + 39 + ], + "contribution),": [ + 40 + ], + "and": [ + 41, + 72, + 76, + 102, + 107, + 114, + 124, + 141, + 144, + 151 + ], + "can": [ + 42 + ], + "be": [ + 43 + ], + "used,": [ + 44 + ], + "example,": [ + 46 + ], + "federated": [ + 49 + ], + "setting,": [ + 51 + ], + "aggregate": [ + 53 + ], + "user-provided": [ + 54 + ], + "model": [ + 55 + ], + "updates": [ + 56 + ], + "deep": [ + 59 + ], + "neural": [ + 60 + ], + "network.": [ + 61 + ], + "prove": [ + 63 + ], + "security": [ + 65, + 79 + ], + "our": [ + 67, + 100, + 131 + ], + "honest-but-curious": [ + 71 + ], + "active": [ + 73 + ], + "adversary": [ + 74 + ], + "settings,": [ + 75 + ], + "show": [ + 77 + ], + "that": [ + 78, + 111 + ], + "is": [ + 80 + ], + "maintained": [ + 81 + ], + "even": [ + 82, + 119 + ], + "if": [ + 83 + ], + "an": [ + 84 + ], + "arbitrarily": [ + 85 + ], + "chosen": [ + 86 + ], + "subset": [ + 87 + ], + "users": [ + 89, + 140, + 150 + ], + "drop": [ + 90 + ], + "out": [ + 91 + ], + "at": [ + 92 + ], + "any": [ + 93 + ], + "time.": [ + 94 + ], + "evaluate": [ + 96 + ], + "efficiency": [ + 98 + ], + "show,": [ + 103 + ], + "by": [ + 104 + ], + "complexity": [ + 105 + ], + "analysis": [ + 106 + ], + "concrete": [ + 109 + ], + "implementation,": [ + 110 + ], + "its": [ + 112 + ], + "runtime": [ + 113 + ], + "communication": [ + 115, + 136 + ], + "overhead": [ + 116 + ], + "remain": [ + 117 + ], + "low": [ + 118 + ], + "on": [ + 120 + ], + "large": [ + 121 + ], + "sets": [ + 123 + ], + "client": [ + 125 + ], + "pools.": [ + 126 + ], + "For": [ + 127 + ], + "16-bit": [ + 128 + ], + "input": [ + 129 + ], + "values,": [ + 130 + ], + "offers": [ + 133 + ], + "$1.73": [ + 134 + ], + "x": [ + 135, + 146 + ], + "expansion": [ + 137, + 147 + ], + "210": [ + 139 + ], + "220-dimensional": [ + 142 + ], + "vectors,": [ + 143 + ], + "1.98": [ + 145 + ], + "214": [ + 149 + ], + "224-dimensional": [ + 152 + ], + "over": [ + 154 + ], + "sending": [ + 155 + ], + "clear.": [ + 159 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 198 + }, + { + "year": 2025, + "cited_by_count": 652 + }, + { + "year": 2024, + "cited_by_count": 595 + }, + { + "year": 2023, + "cited_by_count": 547 + }, + { + "year": 2022, + "cited_by_count": 392 + }, + { + "year": 2021, + "cited_by_count": 456 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 166 + }, + { + "year": 2018, + "cited_by_count": 46 + }, + { + "year": 2017, + "cited_by_count": 8 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3122548859", + "doi": "https://doi.org/10.1177/2053951715622512", + "title": "How the machine ‘thinks’: Understanding opacity in machine learning algorithms", + "display_name": "How the machine ‘thinks’: Understanding opacity in machine learning algorithms", + "relevance_score": 3136.3552, + "publication_year": 2016, + "publication_date": "2016-01-06", + "ids": { + "openalex": "https://openalex.org/W3122548859", + "doi": "https://doi.org/10.1177/2053951715622512", + "mag": "3122548859" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5060940190", + "display_name": "Jenna Burrell", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Jenna Burrell", + "raw_affiliation_strings": [ + "School of Information, UC-Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Information, UC-Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5060940190" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486" + ], + "apc_list": { + "value": 800, + "currency": "USD", + "value_usd": 800 + }, + "apc_paid": { + "value": 800, + "currency": "USD", + "value_usd": 800 + }, + "fwci": 172.356, + "has_fulltext": false, + "cited_by_count": 2445, + "citation_normalized_percentile": { + "value": 0.9999191, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10883", + "display_name": "Ethics and Social Impacts of AI", + "score": 0.9934999942779541, + "subfield": { + "id": "https://openalex.org/subfields/3311", + "display_name": "Safety Research" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10883", + "display_name": "Ethics and Social Impacts of AI", + "score": 0.9934999942779541, + "subfield": { + "id": "https://openalex.org/subfields/3311", + "display_name": "Safety Research" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T12519", + "display_name": "Cybercrime and Law Enforcement Studies", + "score": 0.9776999950408936, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11838", + "display_name": "Crime, Illicit Activities, and Governance", + "score": 0.9753000140190125, + "subfield": { + "id": "https://openalex.org/subfields/3312", + "display_name": "Sociology and Political Science" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7680913209915161 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7178860902786255 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6108432412147522 + }, + { + "id": "https://openalex.org/keywords/credit-card-fraud", + "display_name": "Credit card fraud", + "score": 0.5365657210350037 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.529035747051239 + }, + { + "id": "https://openalex.org/keywords/audit", + "display_name": "Audit", + "score": 0.4749186933040619 + }, + { + "id": "https://openalex.org/keywords/opacity", + "display_name": "Opacity", + "score": 0.4564440846443176 + }, + { + "id": "https://openalex.org/keywords/credit-card", + "display_name": "Credit card", + "score": 0.24632757902145386 + }, + { + "id": "https://openalex.org/keywords/economics", + "display_name": "Economics", + "score": 0.14912906289100647 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.1430377960205078 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7680913209915161 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7178860902786255 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6108432412147522 + }, + { + "id": "https://openalex.org/C2780747020", + "wikidata": "https://www.wikidata.org/wiki/Q83873", + "display_name": "Credit card fraud", + "level": 4, + "score": 0.5365657210350037 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.529035747051239 + }, + { + "id": "https://openalex.org/C199521495", + "wikidata": "https://www.wikidata.org/wiki/Q181487", + "display_name": "Audit", + "level": 2, + "score": 0.4749186933040619 + }, + { + "id": "https://openalex.org/C60056205", + "wikidata": "https://www.wikidata.org/wiki/Q691914", + "display_name": "Opacity", + "level": 2, + "score": 0.4564440846443176 + }, + { + "id": "https://openalex.org/C2983355114", + "wikidata": "https://www.wikidata.org/wiki/Q161380", + "display_name": "Credit card", + "level": 3, + "score": 0.24632757902145386 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.14912906289100647 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.1430377960205078 + }, + { + "id": "https://openalex.org/C187736073", + "wikidata": "https://www.wikidata.org/wiki/Q2920921", + "display_name": "Management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C145097563", + "wikidata": "https://www.wikidata.org/wiki/Q1148747", + "display_name": "Payment", + "level": 2, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:e24df3681a27440f95339729c7a4e28c", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/e24df3681a27440f95339729c7a4e28c", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Big Data & Society, Vol 3 (2016)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "score": 0.4399999976158142, + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3122548859.pdf" + }, + "referenced_works_count": 31, + "referenced_works": [ + "https://openalex.org/W202799293", + "https://openalex.org/W606820417", + "https://openalex.org/W1540016313", + "https://openalex.org/W1648303880", + "https://openalex.org/W1990060255", + "https://openalex.org/W2021362544", + "https://openalex.org/W2048315072", + "https://openalex.org/W2065240211", + "https://openalex.org/W2066384602", + "https://openalex.org/W2074057591", + "https://openalex.org/W2078620351", + "https://openalex.org/W2100960835", + "https://openalex.org/W2158604749", + "https://openalex.org/W2161336914", + "https://openalex.org/W2163284576", + "https://openalex.org/W2186089794", + "https://openalex.org/W2339183141", + "https://openalex.org/W2556704061", + "https://openalex.org/W2566747599", + "https://openalex.org/W2735886174", + "https://openalex.org/W2799929805", + "https://openalex.org/W2951240445", + "https://openalex.org/W3123374861", + "https://openalex.org/W3157172840", + "https://openalex.org/W4233093336", + "https://openalex.org/W4233551533", + "https://openalex.org/W4238428424", + "https://openalex.org/W4239941956", + "https://openalex.org/W4242887383", + "https://openalex.org/W4244021162", + "https://openalex.org/W4285719527" + ], + "related_works": [ + "https://openalex.org/W2161791806", + "https://openalex.org/W4366824690", + "https://openalex.org/W2613656770", + "https://openalex.org/W2482431380", + "https://openalex.org/W2073474947", + "https://openalex.org/W2082077321", + "https://openalex.org/W2053059436", + "https://openalex.org/W4313201885", + "https://openalex.org/W2401696997", + "https://openalex.org/W4243546976" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "article": [ + 1, + 113 + ], + "considers": [ + 2 + ], + "the": [ + 3, + 95, + 102, + 116, + 153 + ], + "issue": [ + 4 + ], + "of": [ + 5, + 14, + 43, + 73, + 97, + 140, + 145, + 156, + 174, + 177 + ], + "opacity": [ + 6, + 76, + 84, + 91, + 157 + ], + "as": [ + 7, + 19, + 77, + 85, + 142 + ], + "a": [ + 8, + 68, + 143, + 165, + 169, + 175 + ], + "problem": [ + 9 + ], + "for": [ + 10 + ], + "socially": [ + 11 + ], + "consequential": [ + 12 + ], + "mechanisms": [ + 13, + 42 + ], + "classification": [ + 15, + 44 + ], + "and": [ + 16, + 32, + 38, + 51, + 88, + 101, + 134, + 138, + 179 + ], + "ranking,": [ + 17 + ], + "such": [ + 18 + ], + "spam": [ + 20 + ], + "filters,": [ + 21 + ], + "credit": [ + 22, + 39 + ], + "card": [ + 23 + ], + "fraud": [ + 24 + ], + "detection,": [ + 25 + ], + "search": [ + 26 + ], + "engines,": [ + 27 + ], + "news": [ + 28 + ], + "trends,": [ + 29 + ], + "market": [ + 30 + ], + "segmentation": [ + 31 + ], + "advertising,": [ + 33 + ], + "insurance": [ + 34 + ], + "or": [ + 35, + 80 + ], + "loan": [ + 36 + ], + "qualification,": [ + 37 + ], + "scoring.": [ + 40 + ], + "These": [ + 41 + ], + "all": [ + 45 + ], + "frequently": [ + 46 + ], + "rely": [ + 47 + ], + "on": [ + 48, + 55 + ], + "computational": [ + 49 + ], + "algorithms,": [ + 50 + ], + "in": [ + 52, + 111, + 123, + 164 + ], + "many": [ + 53 + ], + "cases": [ + 54 + ], + "machine": [ + 56, + 98 + ], + "learning": [ + 57, + 99 + ], + "algorithms": [ + 58, + 100, + 117 + ], + "to": [ + 59, + 105, + 171, + 184 + ], + "do": [ + 60, + 135 + ], + "this": [ + 61, + 64, + 112 + ], + "work.": [ + 62 + ], + "In": [ + 63 + ], + "article,": [ + 65 + ], + "I": [ + 66, + 119, + 149 + ], + "draw": [ + 67 + ], + "distinction": [ + 69 + ], + "between": [ + 70 + ], + "three": [ + 71 + ], + "forms": [ + 72, + 155 + ], + "opacity:": [ + 74 + ], + "(1)": [ + 75 + ], + "intentional": [ + 78 + ], + "corporate": [ + 79 + ], + "state": [ + 81 + ], + "secrecy,": [ + 82 + ], + "(2)": [ + 83 + ], + "technical": [ + 86, + 178 + ], + "illiteracy,": [ + 87 + ], + "(3)": [ + 89 + ], + "an": [ + 90 + ], + "that": [ + 92, + 151, + 158 + ], + "arises": [ + 93 + ], + "from": [ + 94 + ], + "characteristics": [ + 96 + ], + "scale": [ + 103 + ], + "required": [ + 104 + ], + "apply": [ + 106 + ], + "them": [ + 107 + ], + "usefully.": [ + 108 + ], + "The": [ + 109 + ], + "analysis": [ + 110 + ], + "gets": [ + 114 + ], + "inside": [ + 115 + ], + "themselves.": [ + 118 + ], + "cite": [ + 120 + ], + "existing": [ + 121 + ], + "literatures": [ + 122 + ], + "computer": [ + 124 + ], + "science,": [ + 125 + ], + "known": [ + 126 + ], + "industry": [ + 127 + ], + "practices": [ + 128 + ], + "(as": [ + 129 + ], + "they": [ + 130 + ], + "are": [ + 131 + ], + "publicly": [ + 132 + ], + "presented),": [ + 133 + ], + "some": [ + 136 + ], + "testing": [ + 137 + ], + "manipulation": [ + 139 + ], + "code": [ + 141, + 147 + ], + "form": [ + 144 + ], + "lightweight": [ + 146 + ], + "audit.": [ + 148 + ], + "argue": [ + 150 + ], + "recognizing": [ + 152 + ], + "distinct": [ + 154 + ], + "may": [ + 159 + ], + "be": [ + 160 + ], + "coming": [ + 161 + ], + "into": [ + 162 + ], + "play": [ + 163 + ], + "given": [ + 166 + ], + "application": [ + 167 + ], + "is": [ + 168 + ], + "key": [ + 170 + ], + "determining": [ + 172 + ], + "which": [ + 173 + ], + "variety": [ + 176 + ], + "non-technical": [ + 180 + ], + "solutions": [ + 181 + ], + "could": [ + 182 + ], + "help": [ + 183 + ], + "prevent": [ + 185 + ], + "harm.": [ + 186 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 262 + }, + { + "year": 2025, + "cited_by_count": 414 + }, + { + "year": 2024, + "cited_by_count": 392 + }, + { + "year": 2023, + "cited_by_count": 320 + }, + { + "year": 2022, + "cited_by_count": 266 + }, + { + "year": 2021, + "cited_by_count": 272 + }, + { + "year": 2020, + "cited_by_count": 216 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 91 + }, + { + "year": 2017, + "cited_by_count": 61 + }, + { + "year": 2016, + "cited_by_count": 14 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2610886376", + "doi": "https://doi.org/10.1257/jep.31.2.87", + "title": "Machine Learning: An Applied Econometric Approach", + "display_name": "Machine Learning: An Applied Econometric Approach", + "relevance_score": 3079.0986, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2610886376", + "doi": "https://doi.org/10.1257/jep.31.2.87", + "mag": "2610886376" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5034703281", + "display_name": "Sendhil Mullainathan", + "orcid": "https://orcid.org/0000-0001-8508-4052" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Sendhil Mullainathan", + "raw_affiliation_strings": [ + "Sendhil Mullainathan is the Robert C. Waggoner Professor of Economics, Harvard University, Cambridge, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Sendhil Mullainathan is the Robert C. Waggoner Professor of Economics, Harvard University, Cambridge, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5061755779", + "display_name": "Jann Spiess", + "orcid": "https://orcid.org/0000-0002-4120-8241" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801851002", + "display_name": "Harvard University Press", + "ror": "https://ror.org/006v7bf86", + "country_code": "US", + "type": "other", + "lineage": [ + "https://openalex.org/I136199984", + "https://openalex.org/I2801851002" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jann Spiess", + "raw_affiliation_strings": [ + "Jann Spiess is a PhD candidate in Economics, Harvard University, Cambridge, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Jann Spiess is a PhD candidate in Economics, Harvard University, Cambridge, Massachusetts", + "institution_ids": [ + "https://openalex.org/I2801851002" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5034703281" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 86.1138, + "has_fulltext": false, + "cited_by_count": 1863, + "citation_normalized_percentile": { + "value": 0.99985157, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "31", + "issue": "2", + "first_page": "87", + "last_page": "106" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11963", + "display_name": "Impact of Light on Environment and Health", + "score": 0.9472000002861023, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11963", + "display_name": "Impact of Light on Environment and Health", + "score": 0.9472000002861023, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11918", + "display_name": "Forecasting Techniques and Applications", + "score": 0.9279999732971191, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T12617", + "display_name": "Energy, Environment, and Transportation Policies", + "score": 0.9222000241279602, + "subfield": { + "id": "https://openalex.org/subfields/2105", + "display_name": "Renewable Energy, Sustainability and the Environment" + }, + "field": { + "id": "https://openalex.org/fields/21", + "display_name": "Energy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.8121298551559448 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8074401617050171 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7986088991165161 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7388002872467041 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7208589911460876 + }, + { + "id": "https://openalex.org/keywords/face", + "display_name": "Face (sociological concept)", + "score": 0.47808337211608887 + }, + { + "id": "https://openalex.org/keywords/empirical-research", + "display_name": "Empirical research", + "score": 0.46658068895339966 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.11046332120895386 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.8121298551559448 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8074401617050171 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7986088991165161 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7388002872467041 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7208589911460876 + }, + { + "id": "https://openalex.org/C2779304628", + "wikidata": "https://www.wikidata.org/wiki/Q3503480", + "display_name": "Face (sociological concept)", + "level": 2, + "score": 0.47808337211608887 + }, + { + "id": "https://openalex.org/C120936955", + "wikidata": "https://www.wikidata.org/wiki/Q2155640", + "display_name": "Empirical research", + "level": 2, + "score": 0.46658068895339966 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.11046332120895386 + }, + { + "id": "https://openalex.org/C36289849", + "wikidata": "https://www.wikidata.org/wiki/Q34749", + "display_name": "Social science", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:RePEc:aea:jecper:v:31:y:2017:i:2:p:87-106", + "is_oa": false, + "landing_page_url": "https://www.aeaweb.org/articles?id=10.1257/jep.31.2.87", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/8", + "score": 0.5699999928474426, + "display_name": "Decent work and economic growth" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 36, + "referenced_works": [ + "https://openalex.org/W1964565322", + "https://openalex.org/W1982471084", + "https://openalex.org/W1982991166", + "https://openalex.org/W1995466835", + "https://openalex.org/W1999822211", + "https://openalex.org/W2012218966", + "https://openalex.org/W2021314860", + "https://openalex.org/W2023336635", + "https://openalex.org/W2080896439", + "https://openalex.org/W2081993622", + "https://openalex.org/W2086426685", + "https://openalex.org/W2105224904", + "https://openalex.org/W2120846249", + "https://openalex.org/W2124142297", + "https://openalex.org/W2133367005", + "https://openalex.org/W2133757074", + "https://openalex.org/W2138545569", + "https://openalex.org/W2150940164", + "https://openalex.org/W2155419203", + "https://openalex.org/W2163162137", + "https://openalex.org/W2165144879", + "https://openalex.org/W2173315138", + "https://openalex.org/W2203167467", + "https://openalex.org/W2305754340", + "https://openalex.org/W2371804352", + "https://openalex.org/W2513506629", + "https://openalex.org/W2513604209", + "https://openalex.org/W2528504543", + "https://openalex.org/W2546040478", + "https://openalex.org/W3102065143", + "https://openalex.org/W3121263799", + "https://openalex.org/W3123123374", + "https://openalex.org/W3125633690", + "https://openalex.org/W3125786740", + "https://openalex.org/W3126053622", + "https://openalex.org/W4238040836" + ], + "related_works": [ + "https://openalex.org/W4205140848", + "https://openalex.org/W2068663075", + "https://openalex.org/W2978678743", + "https://openalex.org/W2797837731", + "https://openalex.org/W4393677513", + "https://openalex.org/W4390832911", + "https://openalex.org/W829257147", + "https://openalex.org/W4385302116", + "https://openalex.org/W2549786917", + "https://openalex.org/W3204758414" + ], + "abstract_inverted_index": { + "Machines": [ + 0 + ], + "are": [ + 1, + 123, + 146 + ], + "increasingly": [ + 2 + ], + "doing": [ + 3 + ], + "“intelligent”": [ + 4 + ], + "things.": [ + 5 + ], + "Face": [ + 6 + ], + "recognition": [ + 7 + ], + "algorithms": [ + 8, + 122, + 145, + 171 + ], + "use": [ + 9, + 60, + 162 + ], + "a": [ + 10, + 18, + 24, + 32, + 64, + 90, + 165 + ], + "large": [ + 11 + ], + "dataset": [ + 12 + ], + "of": [ + 13, + 31, + 66, + 100, + 168 + ], + "photos": [ + 14 + ], + "labeled": [ + 15 + ], + "as": [ + 16 + ], + "having": [ + 17 + ], + "face": [ + 19, + 33 + ], + "or": [ + 20, + 136, + 149 + ], + "not": [ + 21, + 83 + ], + "to": [ + 22, + 39, + 114, + 127, + 156, + 161 + ], + "estimate": [ + 23 + ], + "function": [ + 25 + ], + "that": [ + 26, + 71, + 143 + ], + "predicts": [ + 27 + ], + "the": [ + 28, + 78, + 98, + 141, + 144 + ], + "presence": [ + 29 + ], + "y": [ + 30 + ], + "from": [ + 34 + ], + "pixels": [ + 35 + ], + "x.": [ + 36 + ], + "This": [ + 37, + 138 + ], + "similarity": [ + 38 + ], + "econometrics": [ + 40 + ], + "raises": [ + 41, + 140 + ], + "questions:": [ + 42 + ], + "How": [ + 43 + ], + "do": [ + 44 + ], + "these": [ + 45, + 170 + ], + "new": [ + 46, + 86 + ], + "empirical": [ + 47, + 55 + ], + "tools": [ + 48 + ], + "fit": [ + 49 + ], + "with": [ + 50 + ], + "what": [ + 51 + ], + "we": [ + 52, + 59 + ], + "know?": [ + 53 + ], + "As": [ + 54 + ], + "economists,": [ + 56 + ], + "how": [ + 57, + 169 + ], + "can": [ + 58, + 130, + 179, + 184 + ], + "them?": [ + 61 + ], + "We": [ + 62, + 154 + ], + "present": [ + 63 + ], + "way": [ + 65 + ], + "thinking": [ + 67 + ], + "about": [ + 68 + ], + "machine": [ + 69, + 94, + 112 + ], + "learning": [ + 70, + 82, + 95, + 113, + 121 + ], + "gives": [ + 72 + ], + "it": [ + 73, + 88 + ], + "its": [ + 74 + ], + "own": [ + 75 + ], + "place": [ + 76 + ], + "in": [ + 77, + 134 + ], + "econometric": [ + 79 + ], + "toolbox.": [ + 80 + ], + "Machine": [ + 81, + 120 + ], + "only": [ + 84 + ], + "provides": [ + 85 + ], + "tools,": [ + 87 + ], + "solves": [ + 89 + ], + "different": [ + 91 + ], + "problem.": [ + 92 + ], + "Specifically,": [ + 93 + ], + "revolves": [ + 96 + ], + "around": [ + 97, + 107 + ], + "problem": [ + 99 + ], + "prediction,": [ + 101 + ], + "while": [ + 102 + ], + "many": [ + 103 + ], + "economic": [ + 104 + ], + "applications": [ + 105 + ], + "revolve": [ + 106 + ], + "parameter": [ + 108 + ], + "estimation.": [ + 109 + ], + "So": [ + 110 + ], + "applying": [ + 111 + ], + "economics": [ + 115 + ], + "requires": [ + 116 + ], + "finding": [ + 117 + ], + "relevant": [ + 118 + ], + "tasks.": [ + 119 + ], + "now": [ + 124 + ], + "technically": [ + 125 + ], + "easy": [ + 126 + ], + "use:": [ + 128 + ], + "you": [ + 129 + ], + "download": [ + 131 + ], + "convenient": [ + 132 + ], + "packages": [ + 133 + ], + "R": [ + 135 + ], + "Python.": [ + 137 + ], + "also": [ + 139 + ], + "risk": [ + 142 + ], + "applied": [ + 147 + ], + "naively": [ + 148 + ], + "their": [ + 150 + ], + "output": [ + 151 + ], + "is": [ + 152 + ], + "misinterpreted.": [ + 153 + ], + "hope": [ + 155 + ], + "make": [ + 157 + ], + "them": [ + 158 + ], + "conceptually": [ + 159 + ], + "easier": [ + 160 + ], + "by": [ + 163 + ], + "providing": [ + 164 + ], + "crisper": [ + 166 + ], + "understanding": [ + 167 + ], + "work,": [ + 172 + ], + "where": [ + 173, + 177, + 182 + ], + "they": [ + 174, + 178, + 183 + ], + "excel,": [ + 175 + ], + "and": [ + 176 + ], + "stumble—and": [ + 180 + ], + "thus": [ + 181 + ], + "be": [ + 185 + ], + "most": [ + 186 + ], + "usefully": [ + 187 + ], + "applied.": [ + 188 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 117 + }, + { + "year": 2025, + "cited_by_count": 278 + }, + { + "year": 2024, + "cited_by_count": 224 + }, + { + "year": 2023, + "cited_by_count": 243 + }, + { + "year": 2022, + "cited_by_count": 218 + }, + { + "year": 2021, + "cited_by_count": 274 + }, + { + "year": 2020, + "cited_by_count": 191 + }, + { + "year": 2019, + "cited_by_count": 182 + }, + { + "year": 2018, + "cited_by_count": 100 + }, + { + "year": 2017, + "cited_by_count": 28 + }, + { + "year": 2016, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2968923792", + "doi": "https://doi.org/10.1038/s41524-019-0221-0", + "title": "Recent advances and applications of machine learning in solid-state materials science", + "display_name": "Recent advances and applications of machine learning in solid-state materials science", + "relevance_score": 3011.797, + "publication_year": 2019, + "publication_date": "2019-08-08", + "ids": { + "openalex": "https://openalex.org/W2968923792", + "doi": "https://doi.org/10.1038/s41524-019-0221-0", + "mag": "2968923792" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5057207447", + "display_name": "Jonathan Schmidt", + "orcid": "https://orcid.org/0000-0001-5685-6404" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Jonathan Schmidt", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": "https://orcid.org/0000-0001-5685-6404", + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013807218", + "display_name": "Mário R. G. Marques", + "orcid": "https://orcid.org/0000-0002-7420-5098" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Mário R. G. Marques", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-7420-5098", + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074073454", + "display_name": "Silvana Botti", + "orcid": "https://orcid.org/0000-0002-4920-2370" + }, + "institutions": [ + { + "id": "https://openalex.org/I76198965", + "display_name": "Friedrich Schiller University Jena", + "ror": "https://ror.org/05qpz1x62", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I76198965" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Silvana Botti", + "raw_affiliation_strings": [ + "Institut fr Festkrpertheorie und -optik, Friedrich-Schiller-Universitt Jena, Max-Wien-Platz 1, 07743 Jena, Germany", + "Institut für Festkörpertheorie und -optik, Friedrich-Schiller-Universität Jena, Max-Wien-Platz 1, 07743, Jena, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Festkrpertheorie und -optik, Friedrich-Schiller-Universitt Jena, Max-Wien-Platz 1, 07743 Jena, Germany", + "institution_ids": [ + "https://openalex.org/I76198965" + ] + }, + { + "raw_affiliation_string": "Institut für Festkörpertheorie und -optik, Friedrich-Schiller-Universität Jena, Max-Wien-Platz 1, 07743, Jena, Germany", + "institution_ids": [ + "https://openalex.org/I76198965" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5052107166", + "display_name": "Miguel A. L. Marques", + "orcid": "https://orcid.org/0000-0003-0170-8222" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Miguel A. L. Marques", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5057207447" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I68956291" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 99.7619, + "has_fulltext": true, + "cited_by_count": 2366, + "citation_normalized_percentile": { + "value": 0.99995996, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "5", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.991100013256073, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.8451576828956604 + }, + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.7814731597900391 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7652289867401123 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7290407419204712 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7001760005950928 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.5603207945823669 + }, + { + "id": "https://openalex.org/keywords/property", + "display_name": "Property (philosophy)", + "score": 0.45152583718299866 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.4503237307071686 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.08372414112091064 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.8451576828956604 + }, + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.7814731597900391 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7652289867401123 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7290407419204712 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7001760005950928 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.5603207945823669 + }, + { + "id": "https://openalex.org/C189950617", + "wikidata": "https://www.wikidata.org/wiki/Q937228", + "display_name": "Property (philosophy)", + "level": 2, + "score": 0.45152583718299866 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.4503237307071686 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.08372414112091064 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:2e9ae6991e1e44179c61e241d69e1fe2", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/2e9ae6991e1e44179c61e241d69e1fe2", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials, Vol 5, Iss 1, Pp 1-36 (2019)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2968923792.pdf", + "grobid_xml": "https://content.openalex.org/works/W2968923792.grobid-xml" + }, + "referenced_works_count": 518, + "referenced_works": [ + "https://openalex.org/W26088913", + "https://openalex.org/W145450961", + "https://openalex.org/W179824108", + "https://openalex.org/W203253523", + "https://openalex.org/W230490465", + "https://openalex.org/W327991062", + "https://openalex.org/W590077806", + "https://openalex.org/W654619586", + "https://openalex.org/W814282759", + "https://openalex.org/W1485300768", + "https://openalex.org/W1498183065", + "https://openalex.org/W1499888549", + "https://openalex.org/W1501856433", + "https://openalex.org/W1503398984", + "https://openalex.org/W1504770578", + "https://openalex.org/W1510052597", + "https://openalex.org/W1534043326", + "https://openalex.org/W1539789214", + "https://openalex.org/W1542652324", + "https://openalex.org/W1544171083", + "https://openalex.org/W1563453094", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571836963", + "https://openalex.org/W1577152309", + "https://openalex.org/W1581242383", + "https://openalex.org/W1584200143", + "https://openalex.org/W1596185547", + "https://openalex.org/W1625555899", + "https://openalex.org/W1643338536", + "https://openalex.org/W1662382123", + "https://openalex.org/W1677182931", + "https://openalex.org/W1678356000", + "https://openalex.org/W1678620623", + "https://openalex.org/W1780364926", + "https://openalex.org/W1787224781", + "https://openalex.org/W1800437104", + "https://openalex.org/W1806613374", + "https://openalex.org/W1812560530", + "https://openalex.org/W1849277567", + "https://openalex.org/W1861259131", + "https://openalex.org/W1865667476", + "https://openalex.org/W1875061881", + "https://openalex.org/W1875161738", + "https://openalex.org/W1940355499", + "https://openalex.org/W1964746686", + "https://openalex.org/W1964882117", + "https://openalex.org/W1965007242", + "https://openalex.org/W1965387924", + "https://openalex.org/W1965621008", + "https://openalex.org/W1966295044", + "https://openalex.org/W1966452023", + "https://openalex.org/W1967499431", + "https://openalex.org/W1967969088", + "https://openalex.org/W1971714101", + "https://openalex.org/W1972135189", + "https://openalex.org/W1973200549", + "https://openalex.org/W1975997599", + "https://openalex.org/W1976492731", + "https://openalex.org/W1976581079", + "https://openalex.org/W1978538703", + "https://openalex.org/W1979769287", + "https://openalex.org/W1979879584", + "https://openalex.org/W1981368803", + "https://openalex.org/W1981955214", + "https://openalex.org/W1982598895", + "https://openalex.org/W1983077902", + "https://openalex.org/W1984003326", + "https://openalex.org/W1986912357", + "https://openalex.org/W1988102749", + "https://openalex.org/W1988227526", + "https://openalex.org/W1988790447", + "https://openalex.org/W1989389325", + "https://openalex.org/W1989628244", + "https://openalex.org/W1989893427", + "https://openalex.org/W1990810992", + "https://openalex.org/W1991713655", + "https://openalex.org/W1992985800", + "https://openalex.org/W1994624373", + "https://openalex.org/W1995341919", + "https://openalex.org/W1996425351", + "https://openalex.org/W1998056920", + "https://openalex.org/W1998723350", + "https://openalex.org/W1999921067", + "https://openalex.org/W2000009216", + "https://openalex.org/W2000290731", + "https://openalex.org/W2000413114", + "https://openalex.org/W2002097322", + "https://openalex.org/W2002507631", + "https://openalex.org/W2005774952", + "https://openalex.org/W2006102096", + "https://openalex.org/W2007207351", + "https://openalex.org/W2007850701", + "https://openalex.org/W2011602276", + "https://openalex.org/W2012700578", + "https://openalex.org/W2014509568", + "https://openalex.org/W2014615332", + "https://openalex.org/W2015197254", + "https://openalex.org/W2015558379", + "https://openalex.org/W2017805851", + "https://openalex.org/W2018108526", + "https://openalex.org/W2019430858", + "https://openalex.org/W2020246947", + "https://openalex.org/W2020786104", + "https://openalex.org/W2021774695", + "https://openalex.org/W2021928136", + "https://openalex.org/W2022890839", + "https://openalex.org/W2024330948", + "https://openalex.org/W2025111634", + "https://openalex.org/W2025444507", + "https://openalex.org/W2025679679", + "https://openalex.org/W2025838043", + "https://openalex.org/W2027408247", + "https://openalex.org/W2029413789", + "https://openalex.org/W2030178277", + "https://openalex.org/W2030976617", + "https://openalex.org/W2031558918", + "https://openalex.org/W2033086537", + "https://openalex.org/W2033206800", + "https://openalex.org/W2034097448", + "https://openalex.org/W2035352360", + "https://openalex.org/W2036701191", + "https://openalex.org/W2037566781", + "https://openalex.org/W2037782625", + "https://openalex.org/W2039609876", + "https://openalex.org/W2039959185", + "https://openalex.org/W2040019593", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041726686", + "https://openalex.org/W2042492924", + "https://openalex.org/W2042640655", + "https://openalex.org/W2042877835", + "https://openalex.org/W2042958553", + "https://openalex.org/W2044375044", + "https://openalex.org/W2046598747", + "https://openalex.org/W2051740693", + "https://openalex.org/W2051801258", + "https://openalex.org/W2052523499", + "https://openalex.org/W2053011449", + "https://openalex.org/W2053962240", + "https://openalex.org/W2054057690", + "https://openalex.org/W2055529982", + "https://openalex.org/W2056132907", + "https://openalex.org/W2057562773", + "https://openalex.org/W2057767448", + "https://openalex.org/W2057858097", + "https://openalex.org/W2060410316", + "https://openalex.org/W2060558956", + "https://openalex.org/W2061179540", + "https://openalex.org/W2063007245", + "https://openalex.org/W2064675550", + "https://openalex.org/W2065586875", + "https://openalex.org/W2068231021", + "https://openalex.org/W2068972463", + "https://openalex.org/W2069483681", + "https://openalex.org/W2070043768", + "https://openalex.org/W2070931774", + "https://openalex.org/W2074497204", + "https://openalex.org/W2074681440", + "https://openalex.org/W2075245047", + "https://openalex.org/W2075545717", + "https://openalex.org/W2075894130", + "https://openalex.org/W2075937489", + "https://openalex.org/W2076118331", + "https://openalex.org/W2077562320", + "https://openalex.org/W2078016408", + "https://openalex.org/W2080321486", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081635359", + "https://openalex.org/W2083032961", + "https://openalex.org/W2083415705", + "https://openalex.org/W2083956694", + "https://openalex.org/W2084972556", + "https://openalex.org/W2085093563", + "https://openalex.org/W2085788926", + "https://openalex.org/W2086702546", + "https://openalex.org/W2086957099", + "https://openalex.org/W2087347434", + "https://openalex.org/W2087404659", + "https://openalex.org/W2087661061", + "https://openalex.org/W2088687796", + "https://openalex.org/W2088925839", + "https://openalex.org/W2090752561", + "https://openalex.org/W2092196700", + "https://openalex.org/W2092332261", + "https://openalex.org/W2093229042", + "https://openalex.org/W2093717447", + "https://openalex.org/W2094176506", + "https://openalex.org/W2095705004", + "https://openalex.org/W2097968133", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100495367", + "https://openalex.org/W2100689957", + "https://openalex.org/W2102074887", + "https://openalex.org/W2102940758", + "https://openalex.org/W2103780778", + "https://openalex.org/W2104489082", + "https://openalex.org/W2106111284", + "https://openalex.org/W2107278155", + "https://openalex.org/W2108738385", + "https://openalex.org/W2111935653", + "https://openalex.org/W2112431211", + "https://openalex.org/W2112796928", + "https://openalex.org/W2114704115", + "https://openalex.org/W2116341502", + "https://openalex.org/W2121020550", + "https://openalex.org/W2121237359", + "https://openalex.org/W2122825543", + "https://openalex.org/W2123306226", + "https://openalex.org/W2124820885", + "https://openalex.org/W2125132504", + "https://openalex.org/W2126316555", + "https://openalex.org/W2127271355", + "https://openalex.org/W2128333270", + "https://openalex.org/W2128420091", + "https://openalex.org/W2128659236", + "https://openalex.org/W2134164499", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135305876", + "https://openalex.org/W2137262074", + "https://openalex.org/W2138002307", + "https://openalex.org/W2139062161", + "https://openalex.org/W2142009706", + "https://openalex.org/W2144752499", + "https://openalex.org/W2146611938", + "https://openalex.org/W2147654806", + "https://openalex.org/W2147800946", + "https://openalex.org/W2147993766", + "https://openalex.org/W2148596493", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153483479", + "https://openalex.org/W2153693853", + "https://openalex.org/W2154560360", + "https://openalex.org/W2154579312", + "https://openalex.org/W2155155530", + "https://openalex.org/W2155927283", + "https://openalex.org/W2156267707", + "https://openalex.org/W2156387975", + "https://openalex.org/W2159357141", + "https://openalex.org/W2163224677", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2164452299", + "https://openalex.org/W2164524421", + "https://openalex.org/W2169589339", + "https://openalex.org/W2171029115", + "https://openalex.org/W2173027866", + "https://openalex.org/W2176170193", + "https://openalex.org/W2176412452", + "https://openalex.org/W2192127365", + "https://openalex.org/W2194775991", + "https://openalex.org/W2195388612", + "https://openalex.org/W2200589053", + "https://openalex.org/W2217912240", + "https://openalex.org/W2222214459", + "https://openalex.org/W2230728100", + "https://openalex.org/W2257979135", + "https://openalex.org/W2261108203", + "https://openalex.org/W2278970271", + "https://openalex.org/W2279481448", + "https://openalex.org/W2290847742", + "https://openalex.org/W2291925970", + "https://openalex.org/W2294798173", + "https://openalex.org/W2297621926", + "https://openalex.org/W2299676960", + "https://openalex.org/W2302501749", + "https://openalex.org/W2312842167", + "https://openalex.org/W2316320254", + "https://openalex.org/W2316524229", + "https://openalex.org/W2319902168", + "https://openalex.org/W2322326629", + "https://openalex.org/W2331520253", + "https://openalex.org/W2331812412", + "https://openalex.org/W2334013383", + "https://openalex.org/W2335591923", + "https://openalex.org/W2337082154", + "https://openalex.org/W2337110853", + "https://openalex.org/W2337496963", + "https://openalex.org/W2343462019", + "https://openalex.org/W2343821232", + "https://openalex.org/W2347129741", + "https://openalex.org/W2395579298", + "https://openalex.org/W2415372084", + "https://openalex.org/W2419175238", + "https://openalex.org/W2437591545", + "https://openalex.org/W2460314483", + "https://openalex.org/W2461312660", + "https://openalex.org/W2462003543", + "https://openalex.org/W2464725281", + "https://openalex.org/W2468907370", + "https://openalex.org/W2471982001", + "https://openalex.org/W2474543364", + "https://openalex.org/W2482115826", + "https://openalex.org/W2489757118", + "https://openalex.org/W2490901606", + "https://openalex.org/W2499226730", + "https://openalex.org/W2509907061", + "https://openalex.org/W2510169513", + "https://openalex.org/W2511358339", + "https://openalex.org/W2511699341", + "https://openalex.org/W2517221375", + "https://openalex.org/W2520022941", + "https://openalex.org/W2520500207", + "https://openalex.org/W2524910928", + "https://openalex.org/W2526943155", + "https://openalex.org/W2527189750", + "https://openalex.org/W2527749992", + "https://openalex.org/W2531545384", + "https://openalex.org/W2534747019", + "https://openalex.org/W2547447472", + "https://openalex.org/W2550668110", + "https://openalex.org/W2555683692", + "https://openalex.org/W2556028878", + "https://openalex.org/W2563751252", + "https://openalex.org/W2564209180", + "https://openalex.org/W2565212977", + "https://openalex.org/W2566573083", + "https://openalex.org/W2566642125", + "https://openalex.org/W2567115595", + "https://openalex.org/W2572438701", + "https://openalex.org/W2576881135", + "https://openalex.org/W2583795764", + "https://openalex.org/W2592733333", + "https://openalex.org/W2593724699", + "https://openalex.org/W2593838212", + "https://openalex.org/W2600236415", + "https://openalex.org/W2605627947", + "https://openalex.org/W2606191816", + "https://openalex.org/W2606478829", + "https://openalex.org/W2609397020", + "https://openalex.org/W2613094910", + "https://openalex.org/W2614083378", + "https://openalex.org/W2616519837", + "https://openalex.org/W2618945100", + "https://openalex.org/W2625386340", + "https://openalex.org/W2650911154", + "https://openalex.org/W2725771565", + "https://openalex.org/W2728789193", + "https://openalex.org/W2728984672", + "https://openalex.org/W2734520197", + "https://openalex.org/W2739066022", + "https://openalex.org/W2741557496", + "https://openalex.org/W2742014174", + "https://openalex.org/W2742061408", + "https://openalex.org/W2742127985", + "https://openalex.org/W2742835787", + "https://openalex.org/W2744546448", + "https://openalex.org/W2746244909", + "https://openalex.org/W2746340587", + "https://openalex.org/W2750556263", + "https://openalex.org/W2750673150", + "https://openalex.org/W2751488329", + "https://openalex.org/W2752033117", + "https://openalex.org/W2752052391", + "https://openalex.org/W2755320374", + "https://openalex.org/W2760202681", + "https://openalex.org/W2764267192", + "https://openalex.org/W2765459427", + "https://openalex.org/W2765597272", + "https://openalex.org/W2765966278", + "https://openalex.org/W2766432501", + "https://openalex.org/W2766518642", + "https://openalex.org/W2766856748", + "https://openalex.org/W2768213699", + "https://openalex.org/W2768591600", + "https://openalex.org/W2768828389", + "https://openalex.org/W2769287225", + "https://openalex.org/W2773094581", + "https://openalex.org/W2773787581", + "https://openalex.org/W2774180927", + "https://openalex.org/W2775811982", + "https://openalex.org/W2778051509", + "https://openalex.org/W2782772320", + "https://openalex.org/W2782811937", + "https://openalex.org/W2783016230", + "https://openalex.org/W2783428669", + "https://openalex.org/W2783643969", + "https://openalex.org/W2784208423", + "https://openalex.org/W2785060548", + "https://openalex.org/W2785434749", + "https://openalex.org/W2786956473", + "https://openalex.org/W2787894218", + "https://openalex.org/W2789575256", + "https://openalex.org/W2790939418", + "https://openalex.org/W2790960441", + "https://openalex.org/W2792351009", + "https://openalex.org/W2792521034", + "https://openalex.org/W2793186536", + "https://openalex.org/W2793847568", + "https://openalex.org/W2794749944", + "https://openalex.org/W2794792904", + "https://openalex.org/W2796365074", + "https://openalex.org/W2800722845", + "https://openalex.org/W2801870733", + "https://openalex.org/W2802513623", + "https://openalex.org/W2803328959", + "https://openalex.org/W2804333359", + "https://openalex.org/W2804431384", + "https://openalex.org/W2804529100", + "https://openalex.org/W2804765537", + "https://openalex.org/W2805504266", + "https://openalex.org/W2806173046", + "https://openalex.org/W2806275814", + "https://openalex.org/W2806393871", + "https://openalex.org/W2806681928", + "https://openalex.org/W2807070436", + "https://openalex.org/W2807471255", + "https://openalex.org/W2807890728", + "https://openalex.org/W2808433588", + "https://openalex.org/W2808651099", + "https://openalex.org/W2809409278", + "https://openalex.org/W2810294304", + "https://openalex.org/W2810643961", + "https://openalex.org/W2831812383", + "https://openalex.org/W2883021798", + "https://openalex.org/W2883578585", + "https://openalex.org/W2884430236", + "https://openalex.org/W2885048850", + "https://openalex.org/W2885427655", + "https://openalex.org/W2888296885", + "https://openalex.org/W2888395196", + "https://openalex.org/W2889393096", + "https://openalex.org/W2890177760", + "https://openalex.org/W2890641732", + "https://openalex.org/W2890910436", + "https://openalex.org/W2891365537", + "https://openalex.org/W2894543465", + "https://openalex.org/W2896311968", + "https://openalex.org/W2896731862", + "https://openalex.org/W2899133278", + "https://openalex.org/W2899771611", + "https://openalex.org/W2901005646", + "https://openalex.org/W2902687791", + "https://openalex.org/W2902914368", + "https://openalex.org/W2903284152", + "https://openalex.org/W2903483166", + "https://openalex.org/W2911964244", + "https://openalex.org/W2913390193", + "https://openalex.org/W2919115771", + "https://openalex.org/W2922185717", + "https://openalex.org/W2949095042", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949415003", + "https://openalex.org/W2949536823", + "https://openalex.org/W2950898568", + "https://openalex.org/W2952254971", + "https://openalex.org/W2962778515", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962858756", + "https://openalex.org/W2963073614", + "https://openalex.org/W2963169277", + "https://openalex.org/W2963470893", + "https://openalex.org/W2963613996", + "https://openalex.org/W2963657244", + "https://openalex.org/W2963807552", + "https://openalex.org/W2963923030", + "https://openalex.org/W2964332384", + "https://openalex.org/W2971890617", + "https://openalex.org/W2976720228", + "https://openalex.org/W2998779578", + "https://openalex.org/W3036192984", + "https://openalex.org/W3098179186", + "https://openalex.org/W3098181309", + "https://openalex.org/W3098539674", + "https://openalex.org/W3098905070", + "https://openalex.org/W3099030566", + "https://openalex.org/W3099108283", + "https://openalex.org/W3099152177", + "https://openalex.org/W3099236691", + "https://openalex.org/W3099563879", + "https://openalex.org/W3099756651", + "https://openalex.org/W3099803468", + "https://openalex.org/W3099950071", + "https://openalex.org/W3100015175", + "https://openalex.org/W3100157108", + "https://openalex.org/W3100559197", + "https://openalex.org/W3100710928", + "https://openalex.org/W3100824689", + "https://openalex.org/W3101510464", + "https://openalex.org/W3101568640", + "https://openalex.org/W3101728438", + "https://openalex.org/W3101883705", + "https://openalex.org/W3102449990", + "https://openalex.org/W3102617294", + "https://openalex.org/W3102656154", + "https://openalex.org/W3102797483", + "https://openalex.org/W3103128256", + "https://openalex.org/W3103297471", + "https://openalex.org/W3103421232", + "https://openalex.org/W3103584381", + "https://openalex.org/W3103699203", + "https://openalex.org/W3104257088", + "https://openalex.org/W3104644561", + "https://openalex.org/W3105187533", + "https://openalex.org/W3105535058", + "https://openalex.org/W3105658368", + "https://openalex.org/W3106384232", + "https://openalex.org/W3106419168", + "https://openalex.org/W3138819813", + "https://openalex.org/W3145506661", + "https://openalex.org/W3188900288", + "https://openalex.org/W4206212643", + "https://openalex.org/W4211049957", + "https://openalex.org/W4214765890", + "https://openalex.org/W4229646010", + "https://openalex.org/W4230189600", + "https://openalex.org/W4238812661", + "https://openalex.org/W4239664769", + "https://openalex.org/W4244412880", + "https://openalex.org/W4245176872", + "https://openalex.org/W4249528159", + "https://openalex.org/W4251461630", + "https://openalex.org/W4254688476", + "https://openalex.org/W4256669726", + "https://openalex.org/W4300263211", + "https://openalex.org/W4302799641", + "https://openalex.org/W6679121739", + "https://openalex.org/W6704559304", + "https://openalex.org/W6756040250" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W2806259446", + "https://openalex.org/W1986582023", + "https://openalex.org/W2883749686", + "https://openalex.org/W2966829450", + "https://openalex.org/W4315864862" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "One": [ + 1 + ], + "of": [ + 2, + 22, + 31, + 47, + 65, + 94, + 102, + 108, + 127, + 153, + 162, + 178 + ], + "the": [ + 3, + 10, + 66, + 92, + 100, + 106, + 125, + 146, + 160, + 164, + 175 + ], + "most": [ + 4, + 67 + ], + "exciting": [ + 5 + ], + "tools": [ + 6 + ], + "that": [ + 7, + 49 + ], + "have": [ + 8 + ], + "entered": [ + 9 + ], + "material": [ + 11 + ], + "science": [ + 12 + ], + "toolbox": [ + 13 + ], + "in": [ + 14, + 70, + 86, + 116, + 183, + 197 + ], + "recent": [ + 15, + 68 + ], + "years": [ + 16 + ], + "is": [ + 17 + ], + "machine": [ + 18, + 53, + 79, + 96, + 131, + 169 + ], + "learning.": [ + 19, + 132 + ], + "This": [ + 20 + ], + "collection": [ + 21 + ], + "statistical": [ + 23 + ], + "methods": [ + 24, + 129 + ], + "has": [ + 25 + ], + "already": [ + 26 + ], + "proved": [ + 27 + ], + "to": [ + 28, + 55, + 144 + ], + "be": [ + 29, + 142 + ], + "capable": [ + 30 + ], + "considerably": [ + 32 + ], + "speeding": [ + 33 + ], + "up": [ + 34 + ], + "both": [ + 35 + ], + "fundamental": [ + 36 + ], + "and": [ + 37, + 51, + 63, + 84, + 105, + 121, + 138, + 150, + 163, + 180, + 190 + ], + "applied": [ + 38, + 143 + ], + "research.": [ + 39 + ], + "At": [ + 40 + ], + "present,": [ + 41 + ], + "we": [ + 42, + 77, + 113, + 187 + ], + "are": [ + 43, + 158 + ], + "witnessing": [ + 44 + ], + "an": [ + 45 + ], + "explosion": [ + 46 + ], + "works": [ + 48 + ], + "develop": [ + 50 + ], + "apply": [ + 52 + ], + "learning": [ + 54, + 80, + 97, + 137, + 170 + ], + "solid-state": [ + 56 + ], + "systems.": [ + 57 + ], + "We": [ + 58, + 89, + 133, + 172 + ], + "provide": [ + 59 + ], + "a": [ + 60, + 74 + ], + "comprehensive": [ + 61 + ], + "overview": [ + 62 + ], + "analysis": [ + 64 + ], + "research": [ + 69, + 115, + 192 + ], + "this": [ + 71 + ], + "topic.": [ + 72 + ], + "As": [ + 73 + ], + "starting": [ + 75 + ], + "point,": [ + 76 + ], + "introduce": [ + 78 + ], + "principles,": [ + 81 + ], + "algorithms,": [ + 82 + ], + "descriptors,": [ + 83 + ], + "databases": [ + 85 + ], + "materials": [ + 87, + 104, + 184, + 199 + ], + "science.": [ + 88, + 185, + 200 + ], + "continue": [ + 90 + ], + "with": [ + 91 + ], + "description": [ + 93 + ], + "different": [ + 95, + 176 + ], + "approaches": [ + 98, + 123 + ], + "for": [ + 99, + 124, + 194 + ], + "discovery": [ + 101 + ], + "stable": [ + 103 + ], + "prediction": [ + 107 + ], + "their": [ + 109, + 181 + ], + "crystal": [ + 110 + ], + "structure.": [ + 111 + ], + "Then": [ + 112 + ], + "discuss": [ + 114 + ], + "numerous": [ + 117 + ], + "quantitative": [ + 118 + ], + "structure–property": [ + 119 + ], + "relationships": [ + 120 + ], + "various": [ + 122, + 195 + ], + "replacement": [ + 126 + ], + "first-principle": [ + 128 + ], + "by": [ + 130 + ], + "review": [ + 134 + ], + "how": [ + 135 + ], + "active": [ + 136 + ], + "surrogate-based": [ + 139 + ], + "optimization": [ + 140 + ], + "can": [ + 141 + ], + "improve": [ + 145 + ], + "rational": [ + 147 + ], + "design": [ + 148 + ], + "process": [ + 149 + ], + "related": [ + 151 + ], + "examples": [ + 152 + ], + "applications.": [ + 154 + ], + "Two": [ + 155 + ], + "major": [ + 156 + ], + "questions": [ + 157 + ], + "always": [ + 159 + ], + "interpretability": [ + 161, + 179 + ], + "physical": [ + 165 + ], + "understanding": [ + 166 + ], + "gained": [ + 167 + ], + "from": [ + 168 + ], + "models.": [ + 171 + ], + "consider": [ + 173 + ], + "therefore": [ + 174 + ], + "facets": [ + 177 + ], + "importance": [ + 182 + ], + "Finally,": [ + 186 + ], + "propose": [ + 188 + ], + "solutions": [ + 189 + ], + "future": [ + 191 + ], + "paths": [ + 193 + ], + "challenges": [ + 196 + ], + "computational": [ + 198 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 153 + }, + { + "year": 2025, + "cited_by_count": 356 + }, + { + "year": 2024, + "cited_by_count": 379 + }, + { + "year": 2023, + "cited_by_count": 392 + }, + { + "year": 2022, + "cited_by_count": 452 + }, + { + "year": 2021, + "cited_by_count": 400 + }, + { + "year": 2020, + "cited_by_count": 223 + }, + { + "year": 2019, + "cited_by_count": 10 + }, + { + "year": 2018, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2910705748", + "doi": "https://doi.org/10.1073/pnas.1900654116", + "title": "Definitions, methods, and applications in interpretable machine learning", + "display_name": "Definitions, methods, and applications in interpretable machine learning", + "relevance_score": 2995.7358, + "publication_year": 2019, + "publication_date": "2019-10-16", + "ids": { + "openalex": "https://openalex.org/W2910705748", + "doi": "https://doi.org/10.1073/pnas.1900654116", + "mag": "2910705748", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31619572" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5057838960", + "display_name": "William J. Murdoch", + "orcid": "https://orcid.org/0009-0009-7610-5187" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "W. James Murdoch", + "raw_affiliation_strings": [ + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017514239", + "display_name": "Chandan Singh", + "orcid": "https://orcid.org/0000-0003-0318-2340" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chandan Singh", + "raw_affiliation_strings": [ + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013534934", + "display_name": "Karl Kumbier", + "orcid": "https://orcid.org/0000-0001-6521-1173" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karl Kumbier", + "raw_affiliation_strings": [ + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029714016", + "display_name": "Reza Abbasi-Asl", + "orcid": "https://orcid.org/0000-0001-7824-4628" + }, + "institutions": [ + { + "id": "https://openalex.org/I1314596251", + "display_name": "Allen Institute for Brain Science", + "ror": "https://ror.org/00dcv1019", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1314596251", + "https://openalex.org/I4210140341" + ] + }, + { + "id": "https://openalex.org/I180670191", + "display_name": "University of California, San Francisco", + "ror": "https://ror.org/043mz5j54", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I180670191" + ] + }, + { + "id": "https://openalex.org/I4210140341", + "display_name": "Allen Institute", + "ror": "https://ror.org/03cpe7c52", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210140341" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Reza Abbasi-Asl", + "raw_affiliation_strings": [ + "Allen Institute for Brain Science, Seattle, WA 98109", + "Department of Neurology, University of California, San Francisco, CA 94158;", + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "Department of Neurology, University of California, San Francisco, CA 94158; and" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Allen Institute for Brain Science, Seattle, WA 98109", + "institution_ids": [ + "https://openalex.org/I4210140341", + "https://openalex.org/I1314596251" + ] + }, + { + "raw_affiliation_string": "Department of Neurology, University of California, San Francisco, CA 94158;", + "institution_ids": [ + "https://openalex.org/I180670191" + ] + }, + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Department of Neurology, University of California, San Francisco, CA 94158; and", + "institution_ids": [ + "https://openalex.org/I180670191" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100646137", + "display_name": "Bin Yu", + "orcid": "https://orcid.org/0000-0002-8888-4060" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Bin Yu", + "raw_affiliation_strings": [ + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5100646137" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 116.6663, + "has_fulltext": true, + "cited_by_count": 2050, + "citation_normalized_percentile": { + "value": 0.99969336, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "116", + "issue": "44", + "first_page": "22071", + "last_page": "22080" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9890999794006348, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.9390578269958496 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7489986419677734 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6651195883750916 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.6388148069381714 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6340200901031494 + }, + { + "id": "https://openalex.org/keywords/context", + "display_name": "Context (archaeology)", + "score": 0.6267019510269165 + }, + { + "id": "https://openalex.org/keywords/interpretation", + "display_name": "Interpretation (philosophy)", + "score": 0.6191895604133606 + }, + { + "id": "https://openalex.org/keywords/modularity", + "display_name": "Modularity (biology)", + "score": 0.5174987316131592 + }, + { + "id": "https://openalex.org/keywords/vocabulary", + "display_name": "Vocabulary", + "score": 0.4941387474536896 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.4534083902835846 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.411584734916687 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.9390578269958496 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7489986419677734 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6651195883750916 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.6388148069381714 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6340200901031494 + }, + { + "id": "https://openalex.org/C2779343474", + "wikidata": "https://www.wikidata.org/wiki/Q3109175", + "display_name": "Context (archaeology)", + "level": 2, + "score": 0.6267019510269165 + }, + { + "id": "https://openalex.org/C527412718", + "wikidata": "https://www.wikidata.org/wiki/Q855395", + "display_name": "Interpretation (philosophy)", + "level": 2, + "score": 0.6191895604133606 + }, + { + "id": "https://openalex.org/C2779478453", + "wikidata": "https://www.wikidata.org/wiki/Q6889748", + "display_name": "Modularity (biology)", + "level": 2, + "score": 0.5174987316131592 + }, + { + "id": "https://openalex.org/C2777601683", + "wikidata": "https://www.wikidata.org/wiki/Q6499736", + "display_name": "Vocabulary", + "level": 2, + "score": 0.4941387474536896 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.4534083902835846 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.411584734916687 + }, + { + "id": "https://openalex.org/C151730666", + "wikidata": "https://www.wikidata.org/wiki/Q7205", + "display_name": "Paleontology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C54355233", + "wikidata": "https://www.wikidata.org/wiki/Q7162", + "display_name": "Genetics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + { + "id": "pmid:31619572", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31619572", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences of the United States of America", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1901.04592", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1901.04592", + "pdf_url": "https://arxiv.org/pdf/1901.04592", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:osti.gov:1633246", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1633246", + "pdf_url": "https://www.osti.gov/servlets/purl/1633246", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:ark:/13030/qt13x9q01k", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:oai:escholarship.org/ark:/13030/qt13x9q01k", + "is_oa": false, + "landing_page_url": "https://escholarship.org/uc/item/13x9q01k", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400115", + "display_name": "eScholarship (California Digital Library)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I2801248553", + "host_organization_name": "California Digital Library", + "host_organization_lineage": [ + "https://openalex.org/I2801248553" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Proceedings of the National Academy of Sciences of the United States of America, vol 116, iss 44", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:6105936", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6825274", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "score": 0.7599999904632568, + "display_name": "Quality Education" + } + ], + "awards": [ + { + "id": "https://openalex.org/G1490606517", + "display_name": null, + "funder_award_id": "N00014-16-1-2664", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G1739869781", + "display_name": null, + "funder_award_id": "CCF-0939370", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4776703908", + "display_name": null, + "funder_award_id": "CGSD3-487534-2016", + "funder_id": "https://openalex.org/F4320334593", + "funder_display_name": "Natural Sciences and Engineering Research Council of Canada" + }, + { + "id": "https://openalex.org/G5202753860", + "display_name": "Canonical Linear Methods and Hierarchical Non-Linear Methods in High-Dimensional Statistics", + "funder_award_id": "1613002", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6244900323", + "display_name": null, + "funder_award_id": "0939370", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7379344686", + "display_name": null, + "funder_award_id": "1741340", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7501964373", + "display_name": null, + "funder_award_id": "W911NF1710005", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G8170601752", + "display_name": null, + "funder_award_id": "IIS 1741340", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G8341606209", + "display_name": null, + "funder_award_id": "DMS-1613002", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G8876996369", + "display_name": null, + "funder_award_id": "N00014", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320334593", + "display_name": "Natural Sciences and Engineering Research Council of Canada", + "ror": "https://ror.org/01h531d29" + }, + { + "id": "https://openalex.org/F4320337345", + "display_name": "Office of Naval Research", + "ror": "https://ror.org/00rk2pe57" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2910705748.pdf", + "grobid_xml": "https://content.openalex.org/works/W2910705748.grobid-xml" + }, + "referenced_works_count": 137, + "referenced_works": [ + "https://openalex.org/W11356396", + "https://openalex.org/W830575572", + "https://openalex.org/W1034019924", + "https://openalex.org/W1500693574", + "https://openalex.org/W1511986666", + "https://openalex.org/W1587026990", + "https://openalex.org/W1594031697", + "https://openalex.org/W1810028515", + "https://openalex.org/W1849277567", + "https://openalex.org/W1951216520", + "https://openalex.org/W1961953963", + "https://openalex.org/W1989968174", + "https://openalex.org/W1996796871", + "https://openalex.org/W2012712694", + "https://openalex.org/W2013511833", + "https://openalex.org/W2025341678", + "https://openalex.org/W2034637247", + "https://openalex.org/W2043175314", + "https://openalex.org/W2048231652", + "https://openalex.org/W2061939373", + "https://openalex.org/W2078977693", + "https://openalex.org/W2084341220", + "https://openalex.org/W2086396353", + "https://openalex.org/W2087448554", + "https://openalex.org/W2088286197", + "https://openalex.org/W2100960835", + "https://openalex.org/W2102636708", + "https://openalex.org/W2103780778", + "https://openalex.org/W2105464873", + "https://openalex.org/W2108384452", + "https://openalex.org/W2113882472", + "https://openalex.org/W2118022153", + "https://openalex.org/W2119858020", + "https://openalex.org/W2123045220", + "https://openalex.org/W2128659236", + "https://openalex.org/W2135046866", + "https://openalex.org/W2143481518", + "https://openalex.org/W2145860152", + "https://openalex.org/W2148694408", + "https://openalex.org/W2150165932", + "https://openalex.org/W2153332911", + "https://openalex.org/W2157355630", + "https://openalex.org/W2158196600", + "https://openalex.org/W2161969291", + "https://openalex.org/W2166163519", + "https://openalex.org/W2169053895", + "https://openalex.org/W2270785838", + "https://openalex.org/W2282821441", + "https://openalex.org/W2315452447", + "https://openalex.org/W2342249984", + "https://openalex.org/W2346578521", + "https://openalex.org/W2464516813", + "https://openalex.org/W2472803348", + "https://openalex.org/W2493343568", + "https://openalex.org/W2502949459", + "https://openalex.org/W2510508396", + "https://openalex.org/W2516809705", + "https://openalex.org/W2530010084", + "https://openalex.org/W2530395818", + "https://openalex.org/W2559655401", + "https://openalex.org/W2587529872", + "https://openalex.org/W2590082389", + "https://openalex.org/W2592895748", + "https://openalex.org/W2592929672", + "https://openalex.org/W2594633041", + "https://openalex.org/W2597603852", + "https://openalex.org/W2604526796", + "https://openalex.org/W2612690371", + "https://openalex.org/W2618851150", + "https://openalex.org/W2619351609", + "https://openalex.org/W2619444510", + "https://openalex.org/W2731142262", + "https://openalex.org/W2739349903", + "https://openalex.org/W2742591084", + "https://openalex.org/W2752194699", + "https://openalex.org/W2769421449", + "https://openalex.org/W2782630856", + "https://openalex.org/W2785184350", + "https://openalex.org/W2785760873", + "https://openalex.org/W2786715987", + "https://openalex.org/W2787070805", + "https://openalex.org/W2793165286", + "https://openalex.org/W2793277523", + "https://openalex.org/W2795431618", + "https://openalex.org/W2803354268", + "https://openalex.org/W2807015674", + "https://openalex.org/W2808315098", + "https://openalex.org/W2891612330", + "https://openalex.org/W2896089889", + "https://openalex.org/W2900404061", + "https://openalex.org/W2901939789", + "https://openalex.org/W2903768344", + "https://openalex.org/W2911964244", + "https://openalex.org/W2945800295", + "https://openalex.org/W2945976633", + "https://openalex.org/W2952354376", + "https://openalex.org/W2962772482", + "https://openalex.org/W2962862931", + "https://openalex.org/W2962883557", + "https://openalex.org/W2963016445", + "https://openalex.org/W2963029978", + "https://openalex.org/W2963233086", + "https://openalex.org/W2963382180", + "https://openalex.org/W2963424533", + "https://openalex.org/W2963715038", + "https://openalex.org/W2963798744", + "https://openalex.org/W2964118342", + "https://openalex.org/W2964159526", + "https://openalex.org/W3085162807", + "https://openalex.org/W3098232790", + "https://openalex.org/W3102564565", + "https://openalex.org/W3124792046", + "https://openalex.org/W3150635270", + "https://openalex.org/W3150893739", + "https://openalex.org/W4212774754", + "https://openalex.org/W4229494842", + "https://openalex.org/W4230605228", + "https://openalex.org/W4230742466", + "https://openalex.org/W4236697647", + "https://openalex.org/W4236965008", + "https://openalex.org/W4237723258", + "https://openalex.org/W4254687493", + "https://openalex.org/W4255332246", + "https://openalex.org/W4255405844", + "https://openalex.org/W4292023222", + "https://openalex.org/W4293861706", + "https://openalex.org/W4295313945", + "https://openalex.org/W4299408792", + "https://openalex.org/W4300756893", + "https://openalex.org/W4309520320", + "https://openalex.org/W4399576166", + "https://openalex.org/W6684823039", + "https://openalex.org/W6716358881", + "https://openalex.org/W6728551298", + "https://openalex.org/W6734194636", + "https://openalex.org/W6754669440", + "https://openalex.org/W6982728064" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W2888392564", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W2963326959", + "https://openalex.org/W4388685194", + "https://openalex.org/W4312407344", + "https://openalex.org/W2894289927" + ], + "abstract_inverted_index": { + "Machine-learning": [ + 0 + ], + "models": [ + 1, + 23 + ], + "have": [ + 2 + ], + "demonstrated": [ + 3 + ], + "great": [ + 4 + ], + "success": [ + 5 + ], + "in": [ + 6, + 90, + 189 + ], + "learning": [ + 7, + 95 + ], + "complex": [ + 8 + ], + "patterns": [ + 9 + ], + "that": [ + 10, + 211, + 219 + ], + "enable": [ + 11 + ], + "them": [ + 12 + ], + "to": [ + 13, + 21, + 28, + 48, + 78, + 83, + 126, + 131, + 168, + 229 + ], + "make": [ + 14, + 221 + ], + "predictions": [ + 15 + ], + "about": [ + 16, + 51 + ], + "unobserved": [ + 17 + ], + "data.": [ + 18 + ], + "In": [ + 19, + 56 + ], + "addition": [ + 20 + ], + "using": [ + 22 + ], + "for": [ + 24, + 104, + 114, + 206, + 224 + ], + "prediction,": [ + 25 + ], + "the": [ + 26, + 52, + 62, + 91, + 98, + 134, + 165, + 181, + 234 + ], + "ability": [ + 27 + ], + "interpret": [ + 29 + ], + "what": [ + 30, + 72 + ], + "a": [ + 31, + 127, + 141, + 216 + ], + "model": [ + 32 + ], + "has": [ + 33, + 46 + ], + "learned": [ + 34 + ], + "is": [ + 35, + 59 + ], + "receiving": [ + 36 + ], + "an": [ + 37 + ], + "increasing": [ + 38 + ], + "amount": [ + 39 + ], + "of": [ + 40, + 54, + 65, + 93, + 136, + 143, + 191, + 201, + 237 + ], + "attention.": [ + 41 + ], + "However,": [ + 42 + ], + "this": [ + 43, + 212 + ], + "increased": [ + 44 + ], + "focus": [ + 45 + ], + "led": [ + 47 + ], + "considerable": [ + 49 + ], + "confusion": [ + 50 + ], + "notion": [ + 53 + ], + "interpretability.": [ + 55, + 192 + ], + "particular,": [ + 57 + ], + "it": [ + 58, + 222 + ], + "unclear": [ + 60 + ], + "how": [ + 61, + 161 + ], + "wide": [ + 63 + ], + "array": [ + 64 + ], + "proposed": [ + 66 + ], + "interpretation": [ + 67, + 137, + 238 + ], + "methods": [ + 68, + 203 + ], + "are": [ + 69 + ], + "related": [ + 70 + ], + "and": [ + 71, + 96, + 120, + 148, + 157, + 170, + 204, + 227, + 231 + ], + "common": [ + 73, + 217 + ], + "concepts": [ + 74 + ], + "can": [ + 75, + 163 + ], + "be": [ + 76 + ], + "used": [ + 77 + ], + "evaluate": [ + 79, + 169 + ], + "them.": [ + 80 + ], + "We": [ + 81, + 209 + ], + "aim": [ + 82 + ], + "address": [ + 84 + ], + "these": [ + 85 + ], + "concerns": [ + 86 + ], + "by": [ + 87, + 186 + ], + "defining": [ + 88 + ], + "interpretability": [ + 89 + ], + "context": [ + 92 + ], + "machine": [ + 94 + ], + "introducing": [ + 97 + ], + "predictive,": [ + 99 + ], + "descriptive,": [ + 100 + ], + "relevant": [ + 101 + ], + "(PDR)": [ + 102 + ], + "framework": [ + 103, + 109, + 167 + ], + "discussing": [ + 105 + ], + "interpretations.": [ + 106 + ], + "The": [ + 107 + ], + "PDR": [ + 108, + 166 + ], + "provides": [ + 110 + ], + "3": [ + 111 + ], + "overarching": [ + 112 + ], + "desiderata": [ + 113 + ], + "evaluation:": [ + 115 + ], + "predictive": [ + 116 + ], + "accuracy,": [ + 117, + 119 + ], + "descriptive": [ + 118 + ], + "relevancy,": [ + 121 + ], + "with": [ + 122, + 152 + ], + "relevancy": [ + 123 + ], + "judged": [ + 124 + ], + "relative": [ + 125 + ], + "human": [ + 128, + 187 + ], + "audience.": [ + 129 + ], + "Moreover,": [ + 130 + ], + "help": [ + 132 + ], + "manage": [ + 133 + ], + "deluge": [ + 135 + ], + "methods,": [ + 138 + ], + "we": [ + 139, + 173, + 198 + ], + "introduce": [ + 140 + ], + "categorization": [ + 142 + ], + "existing": [ + 144, + 202 + ], + "techniques": [ + 145 + ], + "into": [ + 146 + ], + "model-based": [ + 147 + ], + "post": [ + 149 + ], + "hoc": [ + 150 + ], + "categories,": [ + 151 + ], + "subgroups": [ + 153 + ], + "including": [ + 154 + ], + "sparsity,": [ + 155 + ], + "modularity,": [ + 156 + ], + "simulatability.": [ + 158 + ], + "To": [ + 159 + ], + "demonstrate": [ + 160 + ], + "practitioners": [ + 162, + 226 + ], + "use": [ + 164 + ], + "understand": [ + 171 + ], + "interpretations,": [ + 172 + ], + "provide": [ + 174, + 215 + ], + "numerous": [ + 175 + ], + "real-world": [ + 176 + ], + "examples.": [ + 177 + ], + "These": [ + 178 + ], + "examples": [ + 179 + ], + "highlight": [ + 180 + ], + "often": [ + 182 + ], + "underappreciated": [ + 183 + ], + "role": [ + 184 + ], + "played": [ + 185 + ], + "audiences": [ + 188 + ], + "discussions": [ + 190 + ], + "Finally,": [ + 193 + ], + "based": [ + 194 + ], + "on": [ + 195 + ], + "our": [ + 196 + ], + "framework,": [ + 197 + ], + "discuss": [ + 199, + 230 + ], + "limitations": [ + 200 + ], + "directions": [ + 205 + ], + "future": [ + 207 + ], + "work.": [ + 208 + ], + "hope": [ + 210 + ], + "work": [ + 213 + ], + "will": [ + 214, + 220 + ], + "vocabulary": [ + 218 + ], + "easier": [ + 223 + ], + "both": [ + 225 + ], + "researchers": [ + 228 + ], + "choose": [ + 232 + ], + "from": [ + 233 + ], + "full": [ + 235 + ], + "range": [ + 236 + ], + "methods.": [ + 239 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 135 + }, + { + "year": 2025, + "cited_by_count": 357 + }, + { + "year": 2024, + "cited_by_count": 384 + }, + { + "year": 2023, + "cited_by_count": 375 + }, + { + "year": 2022, + "cited_by_count": 317 + }, + { + "year": 2021, + "cited_by_count": 280 + }, + { + "year": 2020, + "cited_by_count": 161 + }, + { + "year": 2019, + "cited_by_count": 38 + }, + { + "year": 2018, + "cited_by_count": 2 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2342408547", + "doi": "https://doi.org/10.1109/comst.2015.2494502", + "title": "A Survey of Data Mining and Machine Learning Methods for Cyber Security Intrusion Detection", + "display_name": "A Survey of Data Mining and Machine Learning Methods for Cyber Security Intrusion Detection", + "relevance_score": 2986.594, + "publication_year": 2015, + "publication_date": "2015-10-26", + "ids": { + "openalex": "https://openalex.org/W2342408547", + "doi": "https://doi.org/10.1109/comst.2015.2494502", + "mag": "2342408547" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/comst.2015.2494502", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/comst.2015.2494502", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S23688054", + "display_name": "IEEE Communications Surveys & Tutorials", + "issn_l": "1553-877X", + "issn": [ + "1553-877X", + "2373-745X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Communications Surveys & Tutorials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5036462876", + "display_name": "Anna L. Buczak", + "orcid": "https://orcid.org/0000-0002-4468-7719" + }, + "institutions": [ + { + "id": "https://openalex.org/I2802946424", + "display_name": "Johns Hopkins University Applied Physics Laboratory", + "ror": "https://ror.org/029pp9z10", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I145311948", + "https://openalex.org/I2802946424" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Anna L. Buczak", + "raw_affiliation_strings": [ + "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA", + "institution_ids": [ + "https://openalex.org/I2802946424" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5103648432", + "display_name": "Erhan Guven", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I2802946424", + "display_name": "Johns Hopkins University Applied Physics Laboratory", + "ror": "https://ror.org/029pp9z10", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I145311948", + "https://openalex.org/I2802946424" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Erhan Guven", + "raw_affiliation_strings": [ + "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA", + "institution_ids": [ + "https://openalex.org/I2802946424" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5036462876" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2802946424" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 105.8915, + "has_fulltext": false, + "cited_by_count": 3024, + "citation_normalized_percentile": { + "value": 0.99986492, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "18", + "issue": "2", + "first_page": "1153", + "last_page": "1176" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9962999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9926999807357788, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8274868726730347 + }, + { + "id": "https://openalex.org/keywords/intrusion-detection-system", + "display_name": "Intrusion detection system", + "score": 0.7535451054573059 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.5479063391685486 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.5404182076454163 + }, + { + "id": "https://openalex.org/keywords/analytics", + "display_name": "Analytics", + "score": 0.47978121042251587 + }, + { + "id": "https://openalex.org/keywords/intrusion", + "display_name": "Intrusion", + "score": 0.44902172684669495 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3901662826538086 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.34739550948143005 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8274868726730347 + }, + { + "id": "https://openalex.org/C35525427", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion detection system", + "level": 2, + "score": 0.7535451054573059 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.5479063391685486 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.5404182076454163 + }, + { + "id": "https://openalex.org/C79158427", + "wikidata": "https://www.wikidata.org/wiki/Q485396", + "display_name": "Analytics", + "level": 2, + "score": 0.47978121042251587 + }, + { + "id": "https://openalex.org/C158251709", + "wikidata": "https://www.wikidata.org/wiki/Q354025", + "display_name": "Intrusion", + "level": 2, + "score": 0.44902172684669495 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3901662826538086 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.34739550948143005 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17409809", + "wikidata": "https://www.wikidata.org/wiki/Q161764", + "display_name": "Geochemistry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/comst.2015.2494502", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/comst.2015.2494502", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S23688054", + "display_name": "IEEE Communications Surveys & Tutorials", + "issn_l": "1553-877X", + "issn": [ + "1553-877X", + "2373-745X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Communications Surveys & Tutorials", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 134, + "referenced_works": [ + "https://openalex.org/W4348436", + "https://openalex.org/W6091113", + "https://openalex.org/W49546894", + "https://openalex.org/W166342712", + "https://openalex.org/W1504694836", + "https://openalex.org/W1525180324", + "https://openalex.org/W1541288193", + "https://openalex.org/W1553696291", + "https://openalex.org/W1554891714", + "https://openalex.org/W1556024794", + "https://openalex.org/W1570448133", + "https://openalex.org/W1576185228", + "https://openalex.org/W1576660662", + "https://openalex.org/W1576818901", + "https://openalex.org/W1615454278", + "https://openalex.org/W1642161394", + "https://openalex.org/W1670263352", + "https://openalex.org/W1673310716", + "https://openalex.org/W1755360231", + "https://openalex.org/W1777713421", + "https://openalex.org/W1856750239", + "https://openalex.org/W1884606608", + "https://openalex.org/W1937068078", + "https://openalex.org/W1952056635", + "https://openalex.org/W1954903228", + "https://openalex.org/W1966809779", + "https://openalex.org/W1971751469", + "https://openalex.org/W1971784203", + "https://openalex.org/W1975791498", + "https://openalex.org/W1978779053", + "https://openalex.org/W1979877030", + "https://openalex.org/W1986334900", + "https://openalex.org/W1988741337", + "https://openalex.org/W1991237739", + "https://openalex.org/W1993717606", + "https://openalex.org/W1999427165", + "https://openalex.org/W2002016471", + "https://openalex.org/W2014712522", + "https://openalex.org/W2017528992", + "https://openalex.org/W2030553727", + "https://openalex.org/W2033626294", + "https://openalex.org/W2036959577", + "https://openalex.org/W2038819341", + "https://openalex.org/W2040870580", + "https://openalex.org/W2049633694", + "https://openalex.org/W2066664409", + "https://openalex.org/W2071221494", + "https://openalex.org/W2076384720", + "https://openalex.org/W2076526693", + "https://openalex.org/W2077574412", + "https://openalex.org/W2081707439", + "https://openalex.org/W2082550445", + "https://openalex.org/W2091576221", + "https://openalex.org/W2094138658", + "https://openalex.org/W2096118443", + "https://openalex.org/W2099940443", + "https://openalex.org/W2100024153", + "https://openalex.org/W2100537916", + "https://openalex.org/W2102201073", + "https://openalex.org/W2104593144", + "https://openalex.org/W2112076978", + "https://openalex.org/W2112090702", + "https://openalex.org/W2114996745", + "https://openalex.org/W2117707191", + "https://openalex.org/W2123619513", + "https://openalex.org/W2124261333", + "https://openalex.org/W2125055259", + "https://openalex.org/W2129018774", + "https://openalex.org/W2129879631", + "https://openalex.org/W2133941447", + "https://openalex.org/W2133990480", + "https://openalex.org/W2137983211", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139669429", + "https://openalex.org/W2142384583", + "https://openalex.org/W2142889610", + "https://openalex.org/W2143893259", + "https://openalex.org/W2145052282", + "https://openalex.org/W2146082061", + "https://openalex.org/W2149706766", + "https://openalex.org/W2152195021", + "https://openalex.org/W2154929945", + "https://openalex.org/W2156909104", + "https://openalex.org/W2158454296", + "https://openalex.org/W2160598920", + "https://openalex.org/W2161302205", + "https://openalex.org/W2164576874", + "https://openalex.org/W2166275707", + "https://openalex.org/W2166559705", + "https://openalex.org/W2167917621", + "https://openalex.org/W2169654335", + "https://openalex.org/W2169768310", + "https://openalex.org/W2171331105", + "https://openalex.org/W2173213060", + "https://openalex.org/W2188268519", + "https://openalex.org/W2203709713", + "https://openalex.org/W2319660501", + "https://openalex.org/W2502697733", + "https://openalex.org/W2802348331", + "https://openalex.org/W2911964244", + "https://openalex.org/W2912565176", + "https://openalex.org/W3099514962", + "https://openalex.org/W3141738472", + "https://openalex.org/W3146803896", + "https://openalex.org/W3150719513", + "https://openalex.org/W3211952227", + "https://openalex.org/W4211007335", + "https://openalex.org/W4211064163", + "https://openalex.org/W4213332169", + "https://openalex.org/W4231918628", + "https://openalex.org/W4232872328", + "https://openalex.org/W4236137412", + "https://openalex.org/W4249991499", + "https://openalex.org/W4250857377", + "https://openalex.org/W4256360777", + "https://openalex.org/W4285719527", + "https://openalex.org/W4299670631", + "https://openalex.org/W6600247753", + "https://openalex.org/W6601962654", + "https://openalex.org/W6633310491", + "https://openalex.org/W6633402183", + "https://openalex.org/W6636895364", + "https://openalex.org/W6637131181", + "https://openalex.org/W6639223989", + "https://openalex.org/W6674887505", + "https://openalex.org/W6676769703", + "https://openalex.org/W6677572458", + "https://openalex.org/W6678524815", + "https://openalex.org/W6683882235", + "https://openalex.org/W6684325336", + "https://openalex.org/W6684920382", + "https://openalex.org/W6686806119", + "https://openalex.org/W6724329653", + "https://openalex.org/W7048738093" + ], + "related_works": [ + "https://openalex.org/W2357468538", + "https://openalex.org/W2085384747", + "https://openalex.org/W1577110157", + "https://openalex.org/W2106071040", + "https://openalex.org/W2088166309", + "https://openalex.org/W4312133475", + "https://openalex.org/W4238976562", + "https://openalex.org/W2276587472", + "https://openalex.org/W1835907303", + "https://openalex.org/W2133389611" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "survey": [ + 1, + 7 + ], + "paper": [ + 2 + ], + "describes": [ + 3 + ], + "a": [ + 4, + 99 + ], + "focused": [ + 5 + ], + "literature": [ + 6 + ], + "of": [ + 8, + 22, + 28, + 38, + 43, + 76, + 82 + ], + "machine": [ + 9 + ], + "learning": [ + 10 + ], + "(ML)": [ + 11 + ], + "and": [ + 12, + 54, + 92 + ], + "data": [ + 13, + 57, + 67 + ], + "mining": [ + 14 + ], + "(DM)": [ + 15 + ], + "methods": [ + 16 + ], + "for": [ + 17, + 84, + 87 + ], + "cyber": [ + 18, + 66, + 88 + ], + "analytics": [ + 19 + ], + "in": [ + 20, + 61, + 70 + ], + "support": [ + 21 + ], + "intrusion": [ + 23 + ], + "detection.": [ + 24 + ], + "Short": [ + 25 + ], + "tutorial": [ + 26 + ], + "descriptions": [ + 27 + ], + "each": [ + 29, + 49 + ], + "ML/DM": [ + 30, + 62, + 71, + 77, + 86 + ], + "method": [ + 31, + 50, + 101 + ], + "are": [ + 32, + 58, + 72, + 102 + ], + "provided.": [ + 33, + 103 + ], + "Based": [ + 34 + ], + "on": [ + 35, + 95 + ], + "the": [ + 36, + 41 + ], + "number": [ + 37 + ], + "citations": [ + 39 + ], + "or": [ + 40 + ], + "relevance": [ + 42 + ], + "an": [ + 44 + ], + "emerging": [ + 45 + ], + "method,": [ + 46 + ], + "papers": [ + 47 + ], + "representing": [ + 48 + ], + "were": [ + 51 + ], + "identified,": [ + 52 + ], + "read,": [ + 53 + ], + "summarized.": [ + 55 + ], + "Because": [ + 56 + ], + "so": [ + 59 + ], + "important": [ + 60 + ], + "approaches,": [ + 63 + ], + "some": [ + 64, + 93 + ], + "well-known": [ + 65 + ], + "sets": [ + 68 + ], + "used": [ + 69 + ], + "described.": [ + 73 + ], + "The": [ + 74 + ], + "complexity": [ + 75 + ], + "algorithms": [ + 78 + ], + "is": [ + 79, + 90 + ], + "addressed,": [ + 80 + ], + "discussion": [ + 81 + ], + "challenges": [ + 83 + ], + "using": [ + 85 + ], + "security": [ + 89 + ], + "presented,": [ + 91 + ], + "recommendations": [ + 94 + ], + "when": [ + 96 + ], + "to": [ + 97 + ], + "use": [ + 98 + ], + "given": [ + 100 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 140 + }, + { + "year": 2025, + "cited_by_count": 371 + }, + { + "year": 2024, + "cited_by_count": 303 + }, + { + "year": 2023, + "cited_by_count": 326 + }, + { + "year": 2022, + "cited_by_count": 408 + }, + { + "year": 2021, + "cited_by_count": 454 + }, + { + "year": 2020, + "cited_by_count": 402 + }, + { + "year": 2019, + "cited_by_count": 317 + }, + { + "year": 2018, + "cited_by_count": 219 + }, + { + "year": 2017, + "cited_by_count": 72 + }, + { + "year": 2016, + "cited_by_count": 10 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4213308398", + "doi": "https://doi.org/10.1007/978-3-030-05318-5", + "title": "Automated Machine Learning", + "display_name": "Automated Machine Learning", + "relevance_score": 2930.7764, + "publication_year": 2019, + "publication_date": "2019-01-01", + "ids": { + "openalex": "https://openalex.org/W4213308398", + "doi": "https://doi.org/10.1007/978-3-030-05318-5" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "hybrid", + "oa_url": "https://doi.org/10.1007/978-3-030-05318-5", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5031002895", + "display_name": "Frank Hutter", + "orcid": "https://orcid.org/0000-0002-2037-3694" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Frank Hutter", + "raw_affiliation_strings": [ + "Department of Computer Science, University of Freiburg, Freiburg, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of Freiburg, Freiburg, Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032997049", + "display_name": "Lars Kotthoff", + "orcid": "https://orcid.org/0000-0003-4635-6873" + }, + "institutions": [ + { + "id": "https://openalex.org/I12834331", + "display_name": "University of Wyoming", + "ror": "https://ror.org/01485tq96", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12834331" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lars Kotthoff", + "raw_affiliation_strings": [ + "University of Wyoming, Laramie, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Wyoming, Laramie, USA", + "institution_ids": [ + "https://openalex.org/I12834331" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016794035", + "display_name": "Joaquin Vanschoren", + "orcid": "https://orcid.org/0000-0001-7044-9805" + }, + "institutions": [ + { + "id": "https://openalex.org/I83019370", + "display_name": "Eindhoven University of Technology", + "ror": "https://ror.org/02c2kyt77", + "country_code": "NL", + "type": "education", + "lineage": [ + "https://openalex.org/I83019370" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Joaquin Vanschoren", + "raw_affiliation_strings": [ + "Eindhoven University of Technology, Eindhoven, The Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Eindhoven University of Technology, Eindhoven, The Netherlands", + "institution_ids": [ + "https://openalex.org/I83019370" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5031002895" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161046081" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 76.3906, + "has_fulltext": true, + "cited_by_count": 1379, + "citation_normalized_percentile": { + "value": 0.99947479, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.32330000400543213, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.32330000400543213, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6049460172653198 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5378867983818054 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4316948652267456 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6049460172653198 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5378867983818054 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4316948652267456 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + { + "id": "pmh:tue:oai:pure.tue.nl:publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "is_oa": true, + "landing_page_url": "https://research.tue.nl/nl/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "pdf_url": "https://research.tue.nl/nl/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "source": { + "id": "https://openalex.org/S4306401843", + "display_name": "Data Archiving and Networked Services (DANS)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1322597698", + "host_organization_name": "Royal Netherlands Academy of Arts and Sciences", + "host_organization_lineage": [ + "https://openalex.org/I1322597698" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "public-domain", + "license_id": "https://openalex.org/licenses/public-domain", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "info:eu-repo/semantics/book" + }, + { + "id": "pmh:oai:doab-books:43691", + "is_oa": true, + "landing_page_url": "http://www.oapen.org/download/?type=document&docid=1007149", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400539", + "display_name": "Directory of Open access Books (OAPEN Foundation)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "book" + }, + { + "id": "pmh:oai:pure.tue.nl:publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "is_oa": false, + "landing_page_url": "https://research.tue.nl/en/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922641", + "display_name": "TU/e Research Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6636476603", + "display_name": "Data-Driven Methods for Modelling and Optimizing the Empirical Performance of Deep Neural Networks", + "funder_award_id": "716721", + "funder_id": "https://openalex.org/F4320320300", + "funder_display_name": "European Commission" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320313934", + "display_name": "Institut national de recherche en informatique et en automatique (INRIA)", + "ror": "https://ror.org/02kvxyf05" + }, + { + "id": "https://openalex.org/F4320315803", + "display_name": "Centres de Recerca de Catalunya", + "ror": null + }, + { + "id": "https://openalex.org/F4320320300", + "display_name": "European Commission", + "ror": "https://ror.org/00k4n6c32" + }, + { + "id": "https://openalex.org/F4320320879", + "display_name": "Deutsche Forschungsgemeinschaft", + "ror": "https://ror.org/018mejw64" + }, + { + "id": "https://openalex.org/F4320321505", + "display_name": "Generalitat de Catalunya", + "ror": "https://ror.org/01bg62x04" + }, + { + "id": "https://openalex.org/F4320334593", + "display_name": "Natural Sciences and Engineering Research Council of Canada", + "ror": "https://ror.org/01h531d29" + }, + { + "id": "https://openalex.org/F4320336677", + "display_name": "BrainLinks-BrainTools", + "ror": null + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 463, + "referenced_works": [ + "https://openalex.org/W6908809", + "https://openalex.org/W24696228", + "https://openalex.org/W28412257", + "https://openalex.org/W41730657", + "https://openalex.org/W54639073", + "https://openalex.org/W60686164", + "https://openalex.org/W62188234", + "https://openalex.org/W76131926", + "https://openalex.org/W76331760", + "https://openalex.org/W85803853", + "https://openalex.org/W100047375", + "https://openalex.org/W114730584", + "https://openalex.org/W116375701", + "https://openalex.org/W122178443", + "https://openalex.org/W135104305", + "https://openalex.org/W138547447", + "https://openalex.org/W145519053", + "https://openalex.org/W148859753", + "https://openalex.org/W172742023", + "https://openalex.org/W174542576", + "https://openalex.org/W192975702", + "https://openalex.org/W198580638", + "https://openalex.org/W202805564", + "https://openalex.org/W202978992", + "https://openalex.org/W358897728", + "https://openalex.org/W603776396", + "https://openalex.org/W1165382972", + "https://openalex.org/W1471542436", + "https://openalex.org/W1480330138", + "https://openalex.org/W1484746829", + "https://openalex.org/W1488960379", + "https://openalex.org/W1491420040", + "https://openalex.org/W1494192115", + "https://openalex.org/W1494580925", + "https://openalex.org/W1500302649", + "https://openalex.org/W1501110974", + "https://openalex.org/W1503705371", + "https://openalex.org/W1507030697", + "https://openalex.org/W1512747601", + "https://openalex.org/W1516621661", + "https://openalex.org/W1519451279", + "https://openalex.org/W1520992199", + "https://openalex.org/W1522301498", + "https://openalex.org/W1528411633", + "https://openalex.org/W1533803232", + "https://openalex.org/W1534069108", + "https://openalex.org/W1534477342", + "https://openalex.org/W1535039099", + "https://openalex.org/W1539741229", + "https://openalex.org/W1542791059", + "https://openalex.org/W1543201103", + "https://openalex.org/W1549223806", + "https://openalex.org/W1556753024", + "https://openalex.org/W1565746575", + "https://openalex.org/W1568834902", + "https://openalex.org/W1569757501", + "https://openalex.org/W1575029535", + "https://openalex.org/W1575661061", + "https://openalex.org/W1577932924", + "https://openalex.org/W1581066146", + "https://openalex.org/W1588486985", + "https://openalex.org/W1588628884", + "https://openalex.org/W1588959569", + "https://openalex.org/W1589492330", + "https://openalex.org/W1593343777", + "https://openalex.org/W1598052524", + "https://openalex.org/W1601795611", + "https://openalex.org/W1604262624", + "https://openalex.org/W1631708156", + "https://openalex.org/W1638732406", + "https://openalex.org/W1640798781", + "https://openalex.org/W1647221522", + "https://openalex.org/W1661871015", + "https://openalex.org/W1663203009", + "https://openalex.org/W1663583528", + "https://openalex.org/W1678356000", + "https://openalex.org/W1680392829", + "https://openalex.org/W1690919088", + "https://openalex.org/W1701825639", + "https://openalex.org/W1758907577", + "https://openalex.org/W1763644767", + "https://openalex.org/W1840091437", + "https://openalex.org/W1868018859", + "https://openalex.org/W1880189740", + "https://openalex.org/W1886872224", + "https://openalex.org/W1922017469", + "https://openalex.org/W1925428099", + "https://openalex.org/W1925504357", + "https://openalex.org/W1935590542", + "https://openalex.org/W1965555277", + "https://openalex.org/W1968634175", + "https://openalex.org/W1969163824", + "https://openalex.org/W1971713783", + "https://openalex.org/W1973229481", + "https://openalex.org/W1979769287", + "https://openalex.org/W1980264541", + "https://openalex.org/W1981903823", + "https://openalex.org/W1984557319", + "https://openalex.org/W1985995090", + "https://openalex.org/W1986490585", + "https://openalex.org/W1986543815", + "https://openalex.org/W1986929000", + "https://openalex.org/W1989048657", + "https://openalex.org/W1994197834", + "https://openalex.org/W1994326354", + "https://openalex.org/W2001485654", + "https://openalex.org/W2040730773", + "https://openalex.org/W2040884411", + "https://openalex.org/W2048430744", + "https://openalex.org/W2050310928", + "https://openalex.org/W2051346631", + "https://openalex.org/W2056224615", + "https://openalex.org/W2057261601", + "https://openalex.org/W2062118960", + "https://openalex.org/W2062227835", + "https://openalex.org/W2064186732", + "https://openalex.org/W2074702228", + "https://openalex.org/W2074724805", + "https://openalex.org/W2078885513", + "https://openalex.org/W2083542829", + "https://openalex.org/W2084136177", + "https://openalex.org/W2084150578", + "https://openalex.org/W2087817842", + "https://openalex.org/W2089213632", + "https://openalex.org/W2089217417", + "https://openalex.org/W2090136295", + "https://openalex.org/W2091118421", + "https://openalex.org/W2095655959", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096863518", + "https://openalex.org/W2097998348", + "https://openalex.org/W2099201756", + "https://openalex.org/W2101234009", + "https://openalex.org/W2101341561", + "https://openalex.org/W2102770307", + "https://openalex.org/W2105031846", + "https://openalex.org/W2106411961", + "https://openalex.org/W2106614481", + "https://openalex.org/W2107853397", + "https://openalex.org/W2108626634", + "https://openalex.org/W2109042184", + "https://openalex.org/W2109346685", + "https://openalex.org/W2111935653", + "https://openalex.org/W2112204321", + "https://openalex.org/W2112364454", + "https://openalex.org/W2113145584", + "https://openalex.org/W2113207845", + "https://openalex.org/W2113584252", + "https://openalex.org/W2115733720", + "https://openalex.org/W2115763804", + "https://openalex.org/W2116882733", + "https://openalex.org/W2117539524", + "https://openalex.org/W2118789407", + "https://openalex.org/W2119814172", + "https://openalex.org/W2120420045", + "https://openalex.org/W2122053572", + "https://openalex.org/W2122379760", + "https://openalex.org/W2122776323", + "https://openalex.org/W2123395972", + "https://openalex.org/W2123649031", + "https://openalex.org/W2124022122", + "https://openalex.org/W2124290836", + "https://openalex.org/W2124802506", + "https://openalex.org/W2125849100", + "https://openalex.org/W2125877832", + "https://openalex.org/W2126204609", + "https://openalex.org/W2126559945", + "https://openalex.org/W2126964466", + "https://openalex.org/W2127416213", + "https://openalex.org/W2129458072", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131241448", + "https://openalex.org/W2131822674", + "https://openalex.org/W2133418613", + "https://openalex.org/W2133958955", + "https://openalex.org/W2136139971", + "https://openalex.org/W2136636278", + "https://openalex.org/W2137825550", + "https://openalex.org/W2138784882", + "https://openalex.org/W2139805416", + "https://openalex.org/W2141125852", + "https://openalex.org/W2141408223", + "https://openalex.org/W2142334564", + "https://openalex.org/W2142959074", + "https://openalex.org/W2143104527", + "https://openalex.org/W2144656844", + "https://openalex.org/W2144752499", + "https://openalex.org/W2144981148", + "https://openalex.org/W2145287260", + "https://openalex.org/W2145339207", + "https://openalex.org/W2145955992", + "https://openalex.org/W2146502635", + "https://openalex.org/W2149731329", + "https://openalex.org/W2150446468", + "https://openalex.org/W2152589362", + "https://openalex.org/W2153667946", + "https://openalex.org/W2154776925", + "https://openalex.org/W2155853132", + "https://openalex.org/W2156417353", + "https://openalex.org/W2157069634", + "https://openalex.org/W2160644528", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2165607334", + "https://openalex.org/W2165698076", + "https://openalex.org/W2165962877", + "https://openalex.org/W2166107799", + "https://openalex.org/W2168175751", + "https://openalex.org/W2168939893", + "https://openalex.org/W2171033594", + "https://openalex.org/W2171658832", + "https://openalex.org/W2181956361", + "https://openalex.org/W2182070128", + "https://openalex.org/W2182361439", + "https://openalex.org/W2183341477", + "https://openalex.org/W2183704914", + "https://openalex.org/W2186013251", + "https://openalex.org/W2189149359", + "https://openalex.org/W2192203593", + "https://openalex.org/W2194775991", + "https://openalex.org/W2200000192", + "https://openalex.org/W2210969396", + "https://openalex.org/W2226783037", + "https://openalex.org/W2234598170", + "https://openalex.org/W2234898963", + "https://openalex.org/W2249362929", + "https://openalex.org/W2250178193", + "https://openalex.org/W2257979135", + "https://openalex.org/W2266822037", + "https://openalex.org/W2270245739", + "https://openalex.org/W2271971987", + "https://openalex.org/W2282339125", + "https://openalex.org/W2295598076", + "https://openalex.org/W2295739661", + "https://openalex.org/W2309832917", + "https://openalex.org/W2317747985", + "https://openalex.org/W2344075909", + "https://openalex.org/W2346138280", + "https://openalex.org/W2346573293", + "https://openalex.org/W2368061054", + "https://openalex.org/W2384495648", + "https://openalex.org/W2395916875", + "https://openalex.org/W2396466031", + "https://openalex.org/W2396961612", + "https://openalex.org/W2397115702", + "https://openalex.org/W2399500811", + "https://openalex.org/W2399851305", + "https://openalex.org/W2400084313", + "https://openalex.org/W2407014344", + "https://openalex.org/W2407212869", + "https://openalex.org/W2418011751", + "https://openalex.org/W2465345967", + "https://openalex.org/W2467110937", + "https://openalex.org/W2472819217", + "https://openalex.org/W2474440862", + "https://openalex.org/W2486444208", + "https://openalex.org/W2504108613", + "https://openalex.org/W2522203492", + "https://openalex.org/W2531409750", + "https://openalex.org/W2549852851", + "https://openalex.org/W2551342063", + "https://openalex.org/W2553303224", + "https://openalex.org/W2555886487", + "https://openalex.org/W2556372419", + "https://openalex.org/W2556522401", + "https://openalex.org/W2560674852", + "https://openalex.org/W2563364594", + "https://openalex.org/W2571670780", + "https://openalex.org/W2578206533", + "https://openalex.org/W2580087858", + "https://openalex.org/W2585240214", + "https://openalex.org/W2587014634", + "https://openalex.org/W2588803499", + "https://openalex.org/W2593649365", + "https://openalex.org/W2593649546", + "https://openalex.org/W2594475271", + "https://openalex.org/W2596367596", + "https://openalex.org/W2601450892", + "https://openalex.org/W2604763608", + "https://openalex.org/W2604766410", + "https://openalex.org/W2608595939", + "https://openalex.org/W2608702473", + "https://openalex.org/W2610817424", + "https://openalex.org/W2613868844", + "https://openalex.org/W2616180702", + "https://openalex.org/W2616619952", + "https://openalex.org/W2618530766", + "https://openalex.org/W2619184049", + "https://openalex.org/W2620641980", + "https://openalex.org/W2620689287", + "https://openalex.org/W2622730215", + "https://openalex.org/W2623091261", + "https://openalex.org/W2624086852", + "https://openalex.org/W2624473996", + "https://openalex.org/W2626984672", + "https://openalex.org/W2725660645", + "https://openalex.org/W2728797307", + "https://openalex.org/W2734383650", + "https://openalex.org/W2740438624", + "https://openalex.org/W2741261073", + "https://openalex.org/W2741430497", + "https://openalex.org/W2746314669", + "https://openalex.org/W2748513770", + "https://openalex.org/W2751836095", + "https://openalex.org/W2752331852", + "https://openalex.org/W2752852504", + "https://openalex.org/W2753160622", + "https://openalex.org/W2753433947", + "https://openalex.org/W2756085244", + "https://openalex.org/W2765407302", + "https://openalex.org/W2768408766", + "https://openalex.org/W2769653148", + "https://openalex.org/W2769743674", + "https://openalex.org/W2772089072", + "https://openalex.org/W2773108397", + "https://openalex.org/W2773706593", + "https://openalex.org/W2774246732", + "https://openalex.org/W2775233965", + "https://openalex.org/W2777138789", + "https://openalex.org/W2777539043", + "https://openalex.org/W2778618317", + "https://openalex.org/W2778633128", + "https://openalex.org/W2778749116", + "https://openalex.org/W2780562800", + "https://openalex.org/W2782093256", + "https://openalex.org/W2783201493", + "https://openalex.org/W2784287478", + "https://openalex.org/W2785444061", + "https://openalex.org/W2785494456", + "https://openalex.org/W2787035179", + "https://openalex.org/W2787189300", + "https://openalex.org/W2787501667", + "https://openalex.org/W2788079077", + "https://openalex.org/W2788110787", + "https://openalex.org/W2788853733", + "https://openalex.org/W2789487674", + "https://openalex.org/W2793670633", + "https://openalex.org/W2793695846", + "https://openalex.org/W2794356495", + "https://openalex.org/W2796265726", + "https://openalex.org/W2803311163", + "https://openalex.org/W2803435037", + "https://openalex.org/W2804534929", + "https://openalex.org/W2808938483", + "https://openalex.org/W2809054435", + "https://openalex.org/W2809880372", + "https://openalex.org/W2809899846", + "https://openalex.org/W2818275232", + "https://openalex.org/W2826306652", + "https://openalex.org/W2884528674", + "https://openalex.org/W2885311373", + "https://openalex.org/W2885487916", + "https://openalex.org/W2885820039", + "https://openalex.org/W2886200920", + "https://openalex.org/W2887612286", + "https://openalex.org/W2889130221", + "https://openalex.org/W2899771611", + "https://openalex.org/W2902994895", + "https://openalex.org/W2903995489", + "https://openalex.org/W2911090636", + "https://openalex.org/W2913566062", + "https://openalex.org/W2913668833", + "https://openalex.org/W2914694469", + "https://openalex.org/W2947123069", + "https://openalex.org/W2949264490", + "https://openalex.org/W2950277768", + "https://openalex.org/W2950326163", + "https://openalex.org/W2950330175", + "https://openalex.org/W2950680102", + "https://openalex.org/W2950731343", + "https://openalex.org/W2951104886", + "https://openalex.org/W2951775784", + "https://openalex.org/W2952074906", + "https://openalex.org/W2952125132", + "https://openalex.org/W2953384591", + "https://openalex.org/W2963216850", + "https://openalex.org/W2963263347", + "https://openalex.org/W2963305465", + "https://openalex.org/W2963341924", + "https://openalex.org/W2963446712", + "https://openalex.org/W2963474950", + "https://openalex.org/W2963565814", + "https://openalex.org/W2963628712", + "https://openalex.org/W2963775850", + "https://openalex.org/W2963778169", + "https://openalex.org/W2963815651", + "https://openalex.org/W2963821229", + "https://openalex.org/W2963840672", + "https://openalex.org/W2963905884", + "https://openalex.org/W2964025389", + "https://openalex.org/W2964029277", + "https://openalex.org/W2964054038", + "https://openalex.org/W2964081807", + "https://openalex.org/W2964137095", + "https://openalex.org/W2965658867", + "https://openalex.org/W2997644599", + "https://openalex.org/W3000180494", + "https://openalex.org/W3006551545", + "https://openalex.org/W3023169168", + "https://openalex.org/W3026324026", + "https://openalex.org/W3035219538", + "https://openalex.org/W3043188097", + "https://openalex.org/W3099343340", + "https://openalex.org/W3099934359", + "https://openalex.org/W3100055683", + "https://openalex.org/W3102978735", + "https://openalex.org/W3118608800", + "https://openalex.org/W3120740533", + "https://openalex.org/W3122943284", + "https://openalex.org/W3124229194", + "https://openalex.org/W3195149063", + "https://openalex.org/W4205687621", + "https://openalex.org/W4211049957", + "https://openalex.org/W4226503094", + "https://openalex.org/W4232158517", + "https://openalex.org/W4233965824", + "https://openalex.org/W4234228486", + "https://openalex.org/W4237910115", + "https://openalex.org/W4239181501", + "https://openalex.org/W4243562335", + "https://openalex.org/W4246635279", + "https://openalex.org/W4247950230", + "https://openalex.org/W4250224875", + "https://openalex.org/W4255491615", + "https://openalex.org/W4289752289", + "https://openalex.org/W4289763996", + "https://openalex.org/W4293407356", + "https://openalex.org/W4293407536", + "https://openalex.org/W4293870975", + "https://openalex.org/W4294375521", + "https://openalex.org/W4294646197", + "https://openalex.org/W4295185264", + "https://openalex.org/W4295292688", + "https://openalex.org/W4295727797", + "https://openalex.org/W4297670622", + "https://openalex.org/W4297733768", + "https://openalex.org/W4297778814", + "https://openalex.org/W4297800546", + "https://openalex.org/W4297803580", + "https://openalex.org/W4297917482", + "https://openalex.org/W4298052809", + "https://openalex.org/W4298342842", + "https://openalex.org/W4298826872", + "https://openalex.org/W4299518610", + "https://openalex.org/W4300001399", + "https://openalex.org/W4300197707", + "https://openalex.org/W4300427683", + "https://openalex.org/W4300687381", + "https://openalex.org/W4300687870", + "https://openalex.org/W4300716136", + "https://openalex.org/W4300799480", + "https://openalex.org/W4300971732", + "https://openalex.org/W4301181331", + "https://openalex.org/W4301260059", + "https://openalex.org/W4302594429", + "https://openalex.org/W4302768905", + "https://openalex.org/W4302793682", + "https://openalex.org/W4303633609", + "https://openalex.org/W4313169793", + "https://openalex.org/W4324106947", + "https://openalex.org/W4387808640", + "https://openalex.org/W4394633966", + "https://openalex.org/W4394672493" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "open": [ + 1 + ], + "access": [ + 2 + ], + "book": [ + 3 + ], + "gives": [ + 4 + ], + "the": [ + 5, + 29 + ], + "first": [ + 6, + 30 + ], + "comprehensive": [ + 7 + ], + "overview": [ + 8 + ], + "of": [ + 9, + 19, + 33 + ], + "general": [ + 10 + ], + "methods": [ + 11 + ], + "in": [ + 12 + ], + "Automatic": [ + 13 + ], + "Machine": [ + 14 + ], + "Learning,": [ + 15 + ], + "AutoML,": [ + 16 + ], + "collects": [ + 17 + ], + "descriptions": [ + 18 + ], + "existing": [ + 20 + ], + "AutoML": [ + 21, + 34 + ], + "systems": [ + 22 + ], + "based": [ + 23 + ], + "on": [ + 24 + ], + "these": [ + 25 + ], + "methods,": [ + 26 + ], + "and": [ + 27 + ], + "discusses": [ + 28 + ], + "international": [ + 31 + ], + "challenge": [ + 32 + ], + "systems.": [ + 35 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 78 + }, + { + "year": 2025, + "cited_by_count": 270 + }, + { + "year": 2024, + "cited_by_count": 240 + }, + { + "year": 2023, + "cited_by_count": 230 + }, + { + "year": 2022, + "cited_by_count": 223 + }, + { + "year": 2021, + "cited_by_count": 212 + }, + { + "year": 2020, + "cited_by_count": 107 + }, + { + "year": 2019, + "cited_by_count": 19 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2022-02-24T00:00:00" + }, + { + "id": "https://openalex.org/W2168029744", + "doi": "https://doi.org/10.1214/009053607000000677", + "title": "Kernel methods in machine learning", + "display_name": "Kernel methods in machine learning", + "relevance_score": 2928.1125, + "publication_year": 2008, + "publication_date": "2008-05-26", + "ids": { + "openalex": "https://openalex.org/W2168029744", + "doi": "https://doi.org/10.1214/009053607000000677", + "mag": "2168029744" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Thomas Hofmann", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I42894916", + "display_name": "Data61", + "ror": "https://ror.org/03q397159", + "country_code": "AU", + "type": "other", + "lineage": [ + "https://openalex.org/I1292875679", + "https://openalex.org/I2801453606", + "https://openalex.org/I42894916", + "https://openalex.org/I4387156119" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "Thomas Hofmann", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "institution_ids": [ + "https://openalex.org/I42894916" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Bernhard Schölkopf", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Bernhard Schölkopf", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Alexander J. Smola", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I42894916", + "display_name": "Data61", + "ror": "https://ror.org/03q397159", + "country_code": "AU", + "type": "other", + "lineage": [ + "https://openalex.org/I1292875679", + "https://openalex.org/I2801453606", + "https://openalex.org/I42894916", + "https://openalex.org/I4387156119" + ] + }, + { + "id": "https://openalex.org/I4210112925", + "display_name": "Max Planck Institute for Biological Cybernetics", + "ror": "https://ror.org/026nmvv73", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ] + } + ], + "countries": [ + "AU", + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Alexander J. Smola", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TBINGEN GERMANY" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "institution_ids": [ + "https://openalex.org/I42894916" + ] + }, + { + "raw_affiliation_string": "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TBINGEN GERMANY", + "institution_ids": [ + "https://openalex.org/I4210112925" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I42894916" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 26.4332, + "has_fulltext": true, + "cited_by_count": 1588, + "citation_normalized_percentile": { + "value": 0.99597728, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "36", + "issue": "3", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.2791999876499176, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.2791999876499176, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.27090001106262207, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.1281999945640564, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.7440000176429749 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.5529999732971191 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.5508999824523926 + }, + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.48159998655319214 + }, + { + "id": "https://openalex.org/keywords/binary-classification", + "display_name": "Binary classification", + "score": 0.45410001277923584 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4406000077724457 + }, + { + "id": "https://openalex.org/keywords/kernel-embedding-of-distributions", + "display_name": "Kernel embedding of distributions", + "score": 0.43630000948905945 + }, + { + "id": "https://openalex.org/keywords/representer-theorem", + "display_name": "Representer theorem", + "score": 0.42590001225471497 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.34369999170303345 + }, + { + "id": "https://openalex.org/keywords/radial-basis-function-kernel", + "display_name": "Radial basis function kernel", + "score": 0.34049999713897705 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.7440000176429749 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6704999804496765 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6018999814987183 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.5529999732971191 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.5508999824523926 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5184000134468079 + }, + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.48159998655319214 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.46219998598098755 + }, + { + "id": "https://openalex.org/C66905080", + "wikidata": "https://www.wikidata.org/wiki/Q17005494", + "display_name": "Binary classification", + "level": 3, + "score": 0.45410001277923584 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4406000077724457 + }, + { + "id": "https://openalex.org/C134517425", + "wikidata": "https://www.wikidata.org/wiki/Q16000131", + "display_name": "Kernel embedding of distributions", + "level": 4, + "score": 0.43630000948905945 + }, + { + "id": "https://openalex.org/C172623408", + "wikidata": "https://www.wikidata.org/wiki/Q7314263", + "display_name": "Representer theorem", + "level": 5, + "score": 0.42590001225471497 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.34369999170303345 + }, + { + "id": "https://openalex.org/C75866337", + "wikidata": "https://www.wikidata.org/wiki/Q7280263", + "display_name": "Radial basis function kernel", + "level": 4, + "score": 0.34049999713897705 + }, + { + "id": "https://openalex.org/C140417398", + "wikidata": "https://www.wikidata.org/wiki/Q16933942", + "display_name": "Tree kernel", + "level": 5, + "score": 0.3375000059604645 + }, + { + "id": "https://openalex.org/C58973888", + "wikidata": "https://www.wikidata.org/wiki/Q1041418", + "display_name": "Semi-supervised learning", + "level": 2, + "score": 0.32499998807907104 + }, + { + "id": "https://openalex.org/C14036430", + "wikidata": "https://www.wikidata.org/wiki/Q3736076", + "display_name": "Function (biology)", + "level": 2, + "score": 0.3230000138282776 + }, + { + "id": "https://openalex.org/C22367795", + "wikidata": "https://www.wikidata.org/wiki/Q7625208", + "display_name": "Structured prediction", + "level": 2, + "score": 0.3158000111579895 + }, + { + "id": "https://openalex.org/C160446489", + "wikidata": "https://www.wikidata.org/wiki/Q7226642", + "display_name": "Polynomial kernel", + "level": 4, + "score": 0.3151000142097473 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.31119999289512634 + }, + { + "id": "https://openalex.org/C65660741", + "wikidata": "https://www.wikidata.org/wiki/Q3952743", + "display_name": "Score", + "level": 2, + "score": 0.3109000027179718 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.30809998512268066 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.2989000082015991 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.295199990272522 + }, + { + "id": "https://openalex.org/C158622935", + "wikidata": "https://www.wikidata.org/wiki/Q660848", + "display_name": "Nonlinear system", + "level": 2, + "score": 0.28299999237060547 + }, + { + "id": "https://openalex.org/C48372109", + "wikidata": "https://www.wikidata.org/wiki/Q3913", + "display_name": "Binary number", + "level": 2, + "score": 0.27970001101493835 + }, + { + "id": "https://openalex.org/C51632099", + "wikidata": "https://www.wikidata.org/wiki/Q3985153", + "display_name": "Training set", + "level": 2, + "score": 0.2784000039100647 + }, + { + "id": "https://openalex.org/C2780428219", + "wikidata": "https://www.wikidata.org/wiki/Q16952335", + "display_name": "Cover (algebra)", + "level": 2, + "score": 0.27799999713897705 + }, + { + "id": "https://openalex.org/C115051666", + "wikidata": "https://www.wikidata.org/wiki/Q6522493", + "display_name": "Ranging", + "level": 2, + "score": 0.2750999927520752 + }, + { + "id": "https://openalex.org/C136389625", + "wikidata": "https://www.wikidata.org/wiki/Q334384", + "display_name": "Supervised learning", + "level": 3, + "score": 0.27230000495910645 + }, + { + "id": "https://openalex.org/C21080849", + "wikidata": "https://www.wikidata.org/wiki/Q13611879", + "display_name": "Data point", + "level": 2, + "score": 0.26989999413490295 + }, + { + "id": "https://openalex.org/C2778572836", + "wikidata": "https://www.wikidata.org/wiki/Q380933", + "display_name": "Space (punctuation)", + "level": 2, + "score": 0.25369998812675476 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:math/0701907", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/math/0701907", + "pdf_url": "https://arxiv.org/pdf/math/0701907", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:CULeuclid:euclid.aos/1211819561", + "is_oa": false, + "landing_page_url": "http://projecteuclid.org/euclid.aos/1211819561", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400787", + "display_name": "Project Euclid (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:openresearch-repository.anu.edu.au:1885/100161", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/1885/100161", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402539", + "display_name": "ANU Open Research (Australian National University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I118347636", + "host_organization_name": "Australian National University", + "host_organization_lineage": [ + "https://openalex.org/I118347636" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annals of Statistics", + "raw_type": "Journal article" + } + ], + "best_oa_location": { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320310369", + "display_name": "National ICT Australia", + "ror": "https://ror.org/03q397159" + }, + { + "id": "https://openalex.org/F4320315885", + "display_name": "Australian Government", + "ror": "https://ror.org/0314h5y94" + }, + { + "id": "https://openalex.org/F4320328470", + "display_name": "Mathematisches Forschungsinstitut Oberwolfach", + "ror": "https://ror.org/001zbj766" + }, + { + "id": "https://openalex.org/F4320334704", + "display_name": "Australian Research Council", + "ror": "https://ror.org/05mmh0f86" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2168029744.pdf", + "grobid_xml": "https://content.openalex.org/works/W2168029744.grobid-xml" + }, + "referenced_works_count": 116, + "referenced_works": [ + "https://openalex.org/W14071851", + "https://openalex.org/W56743589", + "https://openalex.org/W179694669", + "https://openalex.org/W1490266132", + "https://openalex.org/W1496189301", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512098439", + "https://openalex.org/W1526146785", + "https://openalex.org/W1526729636", + "https://openalex.org/W1542652324", + "https://openalex.org/W1549656520", + "https://openalex.org/W1550988992", + "https://openalex.org/W1560729174", + "https://openalex.org/W1575431606", + "https://openalex.org/W1578255497", + "https://openalex.org/W1587744656", + "https://openalex.org/W1596052433", + "https://openalex.org/W1604293137", + "https://openalex.org/W1638081485", + "https://openalex.org/W1647376582", + "https://openalex.org/W1719651905", + "https://openalex.org/W1774304772", + "https://openalex.org/W1835509607", + "https://openalex.org/W1899157803", + "https://openalex.org/W1966347620", + "https://openalex.org/W1968934255", + "https://openalex.org/W1975077471", + "https://openalex.org/W1982032418", + "https://openalex.org/W1986931325", + "https://openalex.org/W1989408439", + "https://openalex.org/W1990534247", + "https://openalex.org/W1991200719", + "https://openalex.org/W1992236290", + "https://openalex.org/W1992666150", + "https://openalex.org/W1995558350", + "https://openalex.org/W1998438337", + "https://openalex.org/W1999486090", + "https://openalex.org/W2001792610", + "https://openalex.org/W2002806284", + "https://openalex.org/W2007154098", + "https://openalex.org/W2008400752", + "https://openalex.org/W2009511046", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015904350", + "https://openalex.org/W2018582985", + "https://openalex.org/W2020816856", + "https://openalex.org/W2025341678", + "https://openalex.org/W2051381803", + "https://openalex.org/W2060591526", + "https://openalex.org/W2064976291", + "https://openalex.org/W2070771761", + "https://openalex.org/W2075887074", + "https://openalex.org/W2082100828", + "https://openalex.org/W2082612735", + "https://openalex.org/W2083780577", + "https://openalex.org/W2086404575", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092182929", + "https://openalex.org/W2098385651", + "https://openalex.org/W2101276256", + "https://openalex.org/W2103657184", + "https://openalex.org/W2104128541", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106353560", + "https://openalex.org/W2108153239", + "https://openalex.org/W2112076978", + "https://openalex.org/W2114281975", + "https://openalex.org/W2119647652", + "https://openalex.org/W2120340025", + "https://openalex.org/W2121127625", + "https://openalex.org/W2123606421", + "https://openalex.org/W2123737232", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2125053431", + "https://openalex.org/W2127713198", + "https://openalex.org/W2131479089", + "https://openalex.org/W2132637896", + "https://openalex.org/W2132870739", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135498906", + "https://openalex.org/W2139686264", + "https://openalex.org/W2140095548", + "https://openalex.org/W2141224867", + "https://openalex.org/W2141407058", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144068644", + "https://openalex.org/W2148018895", + "https://openalex.org/W2151949149", + "https://openalex.org/W2156515921", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2159737176", + "https://openalex.org/W2161920802", + "https://openalex.org/W2162836072", + "https://openalex.org/W2164943005", + "https://openalex.org/W2169945149", + "https://openalex.org/W2408196097", + "https://openalex.org/W2554813760", + "https://openalex.org/W2795528501", + "https://openalex.org/W2988119488", + "https://openalex.org/W2994982620", + "https://openalex.org/W4210636998", + "https://openalex.org/W4232576706", + "https://openalex.org/W4234698323", + "https://openalex.org/W4238284510", + "https://openalex.org/W4238957295", + "https://openalex.org/W4239510810", + "https://openalex.org/W4246066915", + "https://openalex.org/W4247545571", + "https://openalex.org/W4249925659", + "https://openalex.org/W4251085907", + "https://openalex.org/W4251115686", + "https://openalex.org/W4298876635", + "https://openalex.org/W4396738453" + ], + "related_works": [], + "abstract_inverted_index": { + "We": [ + 0, + 77 + ], + "review": [ + 1 + ], + "machine": [ + 2 + ], + "learning": [ + 3, + 12, + 52 + ], + "methods": [ + 4, + 10, + 90 + ], + "employing": [ + 5 + ], + "positive": [ + 6 + ], + "definite": [ + 7 + ], + "kernels.": [ + 8 + ], + "These": [ + 9 + ], + "formulate": [ + 11 + ], + "and": [ + 13, + 49 + ], + "estimation": [ + 14, + 92 + ], + "problems": [ + 15 + ], + "in": [ + 16, + 31, + 37 + ], + "a": [ + 17, + 34, + 79 + ], + "reproducing": [ + 18 + ], + "kernel": [ + 19 + ], + "Hilbert": [ + 20 + ], + "space": [ + 21 + ], + "(RKHS)": [ + 22 + ], + "of": [ + 23, + 33, + 40, + 45, + 51, + 62, + 82 + ], + "functions": [ + 24, + 68, + 72 + ], + "defined": [ + 25, + 73 + ], + "on": [ + 26, + 74 + ], + "the": [ + 27, + 43, + 47, + 56 + ], + "data": [ + 28 + ], + "domain,": [ + 29 + ], + "expanded": [ + 30 + ], + "terms": [ + 32 + ], + "kernel.": [ + 35 + ], + "Working": [ + 36 + ], + "linear": [ + 38 + ], + "spaces": [ + 39 + ], + "function": [ + 41 + ], + "has": [ + 42 + ], + "benefit": [ + 44 + ], + "facilitating": [ + 46 + ], + "construction": [ + 48 + ], + "analysis": [ + 50 + ], + "algorithms": [ + 53 + ], + "while": [ + 54 + ], + "at": [ + 55 + ], + "same": [ + 57 + ], + "time": [ + 58 + ], + "allowing": [ + 59 + ], + "large": [ + 60 + ], + "classes": [ + 61 + ], + "functions.": [ + 63 + ], + "The": [ + 64 + ], + "latter": [ + 65 + ], + "include": [ + 66 + ], + "nonlinear": [ + 67 + ], + "as": [ + 69, + 71 + ], + "well": [ + 70 + ], + "nonvectorial": [ + 75 + ], + "data.": [ + 76, + 95 + ], + "cover": [ + 78 + ], + "wide": [ + 80 + ], + "range": [ + 81 + ], + "methods,": [ + 83 + ], + "ranging": [ + 84 + ], + "from": [ + 85 + ], + "binary": [ + 86 + ], + "classifiers": [ + 87 + ], + "to": [ + 88 + ], + "sophisticated": [ + 89 + ], + "for": [ + 91 + ], + "with": [ + 93 + ], + "structured": [ + 94 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 37 + }, + { + "year": 2025, + "cited_by_count": 119 + }, + { + "year": 2024, + "cited_by_count": 144 + }, + { + "year": 2023, + "cited_by_count": 146 + }, + { + "year": 2022, + "cited_by_count": 169 + }, + { + "year": 2021, + "cited_by_count": 146 + }, + { + "year": 2020, + "cited_by_count": 163 + }, + { + "year": 2019, + "cited_by_count": 122 + }, + { + "year": 2018, + "cited_by_count": 99 + }, + { + "year": 2017, + "cited_by_count": 100 + }, + { + "year": 2016, + "cited_by_count": 81 + }, + { + "year": 2015, + "cited_by_count": 60 + }, + { + "year": 2014, + "cited_by_count": 67 + }, + { + "year": 2013, + "cited_by_count": 48 + }, + { + "year": 2012, + "cited_by_count": 41 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2951278869", + "doi": "https://doi.org/10.48550/arxiv.cs/0205070", + "title": "Thumbs up? Sentiment Classification using Machine Learning Techniques", + "display_name": "Thumbs up? Sentiment Classification using Machine Learning Techniques", + "relevance_score": 2912.426, + "publication_year": 2002, + "publication_date": "2002-05-28", + "ids": { + "openalex": "https://openalex.org/W2951278869", + "doi": "https://doi.org/10.48550/arxiv.cs/0205070", + "mag": "2951278869" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/cs/0205070", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101799605", + "display_name": "Bo Pang", + "orcid": "https://orcid.org/0000-0003-4521-6369" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Pang, Bo", + "raw_affiliation_strings": [ + "[Cornell Univ., Ithaca, NY]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Cornell Univ., Ithaca, NY]", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5076876084", + "display_name": "Lillian Lee", + "orcid": "https://orcid.org/0000-0003-4770-1712" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lee, Lillian", + "raw_affiliation_strings": [ + "[Cornell Univ., Ithaca, NY]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Cornell Univ., Ithaca, NY]", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5010223683", + "display_name": "Shivakumar Vaithyanathan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210085935", + "display_name": "IBM Research - Almaden", + "ror": "https://ror.org/005w8dd04", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1341412227", + "https://openalex.org/I4210085935", + "https://openalex.org/I4210114115" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vaithyanathan, Shivakumar", + "raw_affiliation_strings": [ + "IBM Almaden Research Center, San Jose´, CA#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IBM Almaden Research Center, San Jose´, CA#TAB#", + "institution_ids": [ + "https://openalex.org/I4210085935" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5101799605" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I205783295" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 2213, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10664", + "display_name": "Sentiment Analysis and Opinion Mining", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10664", + "display_name": "Sentiment Analysis and Opinion Mining", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10028", + "display_name": "Topic Modeling", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/naive-bayes-classifier", + "display_name": "Naive Bayes classifier", + "score": 0.7803267240524292 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7159409523010254 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.7090805172920227 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7036598324775696 + }, + { + "id": "https://openalex.org/keywords/sentiment-analysis", + "display_name": "Sentiment analysis", + "score": 0.6854574084281921 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6812595129013062 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6556271314620972 + }, + { + "id": "https://openalex.org/keywords/principle-of-maximum-entropy", + "display_name": "Principle of maximum entropy", + "score": 0.6111433506011963 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.4346766471862793 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C52001869", + "wikidata": "https://www.wikidata.org/wiki/Q812530", + "display_name": "Naive Bayes classifier", + "level": 3, + "score": 0.7803267240524292 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7159409523010254 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.7090805172920227 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7036598324775696 + }, + { + "id": "https://openalex.org/C66402592", + "wikidata": "https://www.wikidata.org/wiki/Q2271421", + "display_name": "Sentiment analysis", + "level": 2, + "score": 0.6854574084281921 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6812595129013062 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6556271314620972 + }, + { + "id": "https://openalex.org/C9679016", + "wikidata": "https://www.wikidata.org/wiki/Q1417473", + "display_name": "Principle of maximum entropy", + "level": 2, + "score": 0.6111433506011963 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.4346766471862793 + } + ], + "mesh": [], + "locations_count": 8, + "locations": [ + { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.115.7478", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.115.7478", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/people/pabo/papers/sentiment.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.17.9562", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.17.9562", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/home/llee/papers/sentiment.ps", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.224.2133", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.224.2133", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.columbia.edu/%7Ejulia/papers/pangetal02.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.3.1972", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.3.1972", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://acl.ldc.upenn.edu/W/W02/W02-1011.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.342.8489", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.342.8489", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://arxiv.org/pdf/cs/0205070v1.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.93.8755", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.8755", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/home/llee/papers/sentiment.pdf", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.cs/0205070", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.cs/0205070", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "score": 0.6100000143051147, + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 21, + "referenced_works": [ + "https://openalex.org/W94749751", + "https://openalex.org/W123043039", + "https://openalex.org/W159417085", + "https://openalex.org/W204713426", + "https://openalex.org/W1547032355", + "https://openalex.org/W1550206324", + "https://openalex.org/W1576520375", + "https://openalex.org/W1924689489", + "https://openalex.org/W1998442272", + "https://openalex.org/W2038201841", + "https://openalex.org/W2048374711", + "https://openalex.org/W2066590388", + "https://openalex.org/W2086042358", + "https://openalex.org/W2093585241", + "https://openalex.org/W2096175520", + "https://openalex.org/W2149684865", + "https://openalex.org/W2163306339", + "https://openalex.org/W2787893582", + "https://openalex.org/W2949696181", + "https://openalex.org/W3146306708", + "https://openalex.org/W3151392175" + ], + "related_works": [ + "https://openalex.org/W2165912799", + "https://openalex.org/W2735662278", + "https://openalex.org/W2382615723", + "https://openalex.org/W4311804456", + "https://openalex.org/W1987484445", + "https://openalex.org/W2623658258", + "https://openalex.org/W2143413548", + "https://openalex.org/W1969219540", + "https://openalex.org/W2370459448", + "https://openalex.org/W3021501837" + ], + "abstract_inverted_index": { + "We": [ + 0, + 69 + ], + "consider": [ + 1 + ], + "the": [ + 2, + 40, + 76 + ], + "problem": [ + 3, + 79 + ], + "of": [ + 4 + ], + "classifying": [ + 5 + ], + "documents": [ + 6 + ], + "not": [ + 7, + 57 + ], + "by": [ + 8, + 11, + 71 + ], + "topic,": [ + 9 + ], + "but": [ + 10 + ], + "overall": [ + 12 + ], + "sentiment,": [ + 13 + ], + "e.g.,": [ + 14 + ], + "determining": [ + 15 + ], + "whether": [ + 16 + ], + "a": [ + 17 + ], + "review": [ + 18 + ], + "is": [ + 19 + ], + "positive": [ + 20 + ], + "or": [ + 21 + ], + "negative.": [ + 22 + ], + "Using": [ + 23 + ], + "movie": [ + 24 + ], + "reviews": [ + 25 + ], + "as": [ + 26, + 59, + 64 + ], + "data,": [ + 27 + ], + "we": [ + 28, + 45 + ], + "find": [ + 29 + ], + "that": [ + 30, + 74 + ], + "standard": [ + 31 + ], + "machine": [ + 32, + 42 + ], + "learning": [ + 33, + 43 + ], + "techniques": [ + 34 + ], + "definitively": [ + 35 + ], + "outperform": [ + 36 + ], + "human-produced": [ + 37 + ], + "baselines.": [ + 38 + ], + "However,": [ + 39 + ], + "three": [ + 41 + ], + "methods": [ + 44 + ], + "employed": [ + 46 + ], + "(Naive": [ + 47 + ], + "Bayes,": [ + 48 + ], + "maximum": [ + 49 + ], + "entropy": [ + 50 + ], + "classification,": [ + 51 + ], + "and": [ + 52 + ], + "support": [ + 53 + ], + "vector": [ + 54 + ], + "machines)": [ + 55 + ], + "do": [ + 56 + ], + "perform": [ + 58 + ], + "well": [ + 60 + ], + "on": [ + 61, + 65 + ], + "sentiment": [ + 62, + 77 + ], + "classification": [ + 63, + 78 + ], + "traditional": [ + 66 + ], + "topic-based": [ + 67 + ], + "categorization.": [ + 68 + ], + "conclude": [ + 70 + ], + "examining": [ + 72 + ], + "factors": [ + 73 + ], + "make": [ + 75 + ], + "more": [ + 80 + ], + "challenging.": [ + 81 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 36 + }, + { + "year": 2024, + "cited_by_count": 80 + }, + { + "year": 2023, + "cited_by_count": 125 + }, + { + "year": 2022, + "cited_by_count": 143 + }, + { + "year": 2021, + "cited_by_count": 182 + }, + { + "year": 2020, + "cited_by_count": 197 + }, + { + "year": 2019, + "cited_by_count": 212 + }, + { + "year": 2018, + "cited_by_count": 230 + }, + { + "year": 2017, + "cited_by_count": 222 + }, + { + "year": 2016, + "cited_by_count": 184 + }, + { + "year": 2015, + "cited_by_count": 154 + }, + { + "year": 2014, + "cited_by_count": 131 + }, + { + "year": 2013, + "cited_by_count": 61 + }, + { + "year": 2012, + "cited_by_count": 44 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2104489082", + "doi": "https://doi.org/10.1103/physrevlett.108.058301", + "title": "Fast and Accurate Modeling of Molecular Atomization Energies with Machine Learning", + "display_name": "Fast and Accurate Modeling of Molecular Atomization Energies with Machine Learning", + "relevance_score": 2889.4575, + "publication_year": 2012, + "publication_date": "2012-01-31", + "ids": { + "openalex": "https://openalex.org/W2104489082", + "doi": "https://doi.org/10.1103/physrevlett.108.058301", + "mag": "2104489082", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/22400967" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/physrevlett.108.058301", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.108.058301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1109.2618", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5020780798", + "display_name": "Matthias Rupp", + "orcid": "https://orcid.org/0000-0002-2934-2958" + }, + "institutions": [ + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Matthias Rupp", + "raw_affiliation_strings": [ + "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "Machine Learning Group, Technical University of Berlin", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026929463", + "display_name": "Alexandre Tkatchenko", + "orcid": "https://orcid.org/0000-0002-1012-4854" + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I2800875726", + "display_name": "Fritz Haber Institute of the Max Planck Society", + "ror": "https://ror.org/03k9qs827", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I2800875726" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alexandre Tkatchenko", + "raw_affiliation_strings": [ + "Fritz-Haber-Institut der Max-Planck-Gesellschaft, 14195 Berlin, Germany", + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Theory, Fritz Haber Institute, Max Planck Society", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Fritz-Haber-Institut der Max-Planck-Gesellschaft, 14195 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Theory, Fritz Haber Institute, Max Planck Society", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107838719", + "display_name": "Klaus‐Robert Müller", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Klaus-Robert Müller", + "raw_affiliation_strings": [ + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "Machine Learning Group, Technical University of Berlin", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088793872", + "display_name": "O. Anatole von Lilienfeld", + "orcid": "https://orcid.org/0000-0001-7419-0466" + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I1282105669", + "display_name": "Argonne National Laboratory", + "ror": "https://ror.org/05gvnxz63", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1282105669", + "https://openalex.org/I1330989302", + "https://openalex.org/I39565521", + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "O. Anatole von Lilienfeld", + "raw_affiliation_strings": [ + "Argonne Leadership Computing Facility, Argonne National Laboratory, Argonne, Illinois 60439, USA", + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Argonne Leadership Computing Facility, Argonne National Laboratory", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Argonne Leadership Computing Facility, Argonne National Laboratory, Argonne, Illinois 60439, USA", + "institution_ids": [ + "https://openalex.org/I1282105669" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Argonne Leadership Computing Facility, Argonne National Laboratory", + "institution_ids": [ + "https://openalex.org/I1282105669" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5020780798" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161318765", + "https://openalex.org/I4577782" + ], + "apc_list": { + "value": 3750, + "currency": "USD", + "value_usd": 3750 + }, + "apc_paid": null, + "fwci": 13.8904, + "has_fulltext": false, + "cited_by_count": 2377, + "citation_normalized_percentile": { + "value": 0.99412296, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "108", + "issue": "5", + "first_page": "058301", + "last_page": "058301" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10002", + "display_name": "Advanced Chemical Physics Studies", + "score": 0.9954000115394592, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9923999905586243, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.4200275242328644 + }, + { + "id": "https://openalex.org/keywords/statistical-physics", + "display_name": "Statistical physics", + "score": 0.3693031072616577 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.28881940245628357 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.4200275242328644 + }, + { + "id": "https://openalex.org/C121864883", + "wikidata": "https://www.wikidata.org/wiki/Q677916", + "display_name": "Statistical physics", + "level": 1, + "score": 0.3693031072616577 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.28881940245628357 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1103/physrevlett.108.058301", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.108.058301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + { + "id": "pmid:22400967", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/22400967", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical review letters", + "raw_type": null + }, + { + "id": "pmh:oai:edoc.unibas.ch:43360", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401836", + "display_name": "edoc (University of Basel)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1850255", + "host_organization_name": "University of Basel", + "host_organization_lineage": [ + "https://openalex.org/I1850255" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "acceptedVersion", + "is_accepted": true, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + }, + { + "id": "pmh:oai:arXiv.org:1109.2618", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1109.2618", + "pdf_url": "https://arxiv.org/pdf/1109.2618", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:orbilu.uni.lu:10993/25176", + "is_oa": true, + "landing_page_url": "http://orbilu.uni.lu/handle/10993/25176", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401815", + "display_name": "Open Repository and Bibliography (University of Luxembourg)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I186903577", + "host_organization_name": "University of Luxembourg", + "host_organization_lineage": [ + "https://openalex.org/I186903577" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-sa", + "license_id": "https://openalex.org/licenses/cc-by-nc-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PHYSICAL REVIEW LETTERS, 108(5). ONE PHYSICS ELLIPSE, COLLEGE PK, MD 20740-3844 USA: AMER PHYSICAL SOC (2012).", + "raw_type": null + }, + { + "id": "pmh:oai:osti.gov:1099077", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1099077", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1500966", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-000F-C6EF-A", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Physical Review Letters", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1109.2618", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1109.2618", + "pdf_url": "https://arxiv.org/pdf/1109.2618", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/7", + "score": 0.8700000047683716, + "display_name": "Affordable and clean energy" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320306084", + "display_name": "U.S. Department of Energy", + "ror": "https://ror.org/01bj3aw27" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 41, + "referenced_works": [ + "https://openalex.org/W1480376833", + "https://openalex.org/W1522205938", + "https://openalex.org/W1544445790", + "https://openalex.org/W1545231783", + "https://openalex.org/W1548618691", + "https://openalex.org/W1554944419", + "https://openalex.org/W1975997599", + "https://openalex.org/W1978538703", + "https://openalex.org/W1979408061", + "https://openalex.org/W1982598895", + "https://openalex.org/W1987236926", + "https://openalex.org/W1988636074", + "https://openalex.org/W1998317125", + "https://openalex.org/W1998848097", + "https://openalex.org/W2000500972", + "https://openalex.org/W2000957843", + "https://openalex.org/W2016819003", + "https://openalex.org/W2017891892", + "https://openalex.org/W2022080248", + "https://openalex.org/W2023390323", + "https://openalex.org/W2023466796", + "https://openalex.org/W2025444507", + "https://openalex.org/W2030976617", + "https://openalex.org/W2037761619", + "https://openalex.org/W2038617772", + "https://openalex.org/W2049961577", + "https://openalex.org/W2059401145", + "https://openalex.org/W2075930604", + "https://openalex.org/W2083415705", + "https://openalex.org/W2108995755", + "https://openalex.org/W2130437470", + "https://openalex.org/W2143981217", + "https://openalex.org/W2148424525", + "https://openalex.org/W2151571625", + "https://openalex.org/W2153693853", + "https://openalex.org/W2171033594", + "https://openalex.org/W2206840988", + "https://openalex.org/W2230728100", + "https://openalex.org/W2787894218", + "https://openalex.org/W3119651796", + "https://openalex.org/W4242320552" + ], + "related_works": [ + "https://openalex.org/W4391375266", + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W4391913857", + "https://openalex.org/W2358668433", + "https://openalex.org/W4396701345", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W4396696052" + ], + "abstract_inverted_index": { + "We": [ + 0 + ], + "introduce": [ + 1 + ], + "a": [ + 2, + 11, + 36, + 69 + ], + "machine": [ + 3 + ], + "learning": [ + 4 + ], + "model": [ + 5 + ], + "to": [ + 6, + 51 + ], + "predict": [ + 7 + ], + "atomization": [ + 8, + 52, + 84 + ], + "energies": [ + 9, + 53 + ], + "of": [ + 10, + 14, + 27, + 41, + 73, + 82 + ], + "diverse": [ + 12 + ], + "set": [ + 13 + ], + "organic": [ + 15, + 66 + ], + "molecules,": [ + 16 + ], + "based": [ + 17 + ], + "on": [ + 18, + 48 + ], + "nuclear": [ + 19 + ], + "charges": [ + 20 + ], + "and": [ + 21, + 49 + ], + "atomic": [ + 22 + ], + "positions": [ + 23 + ], + "only.": [ + 24 + ], + "The": [ + 25 + ], + "problem": [ + 26, + 40 + ], + "solving": [ + 28 + ], + "the": [ + 29, + 80 + ], + "molecular": [ + 30, + 83 + ], + "Schrödinger": [ + 31 + ], + "equation": [ + 32 + ], + "is": [ + 33, + 77 + ], + "mapped": [ + 34 + ], + "onto": [ + 35 + ], + "nonlinear": [ + 37 + ], + "statistical": [ + 38 + ], + "regression": [ + 39 + ], + "reduced": [ + 42 + ], + "complexity.": [ + 43 + ], + "Regression": [ + 44 + ], + "models": [ + 45 + ], + "are": [ + 46 + ], + "trained": [ + 47 + ], + "compared": [ + 50 + ], + "computed": [ + 54 + ], + "with": [ + 55 + ], + "hybrid": [ + 56 + ], + "density-functional": [ + 57 + ], + "theory.": [ + 58 + ], + "Cross": [ + 59 + ], + "validation": [ + 60 + ], + "over": [ + 61 + ], + "more": [ + 62 + ], + "than": [ + 63 + ], + "seven": [ + 64 + ], + "thousand": [ + 65 + ], + "molecules": [ + 67 + ], + "yields": [ + 68 + ], + "mean": [ + 70 + ], + "absolute": [ + 71 + ], + "error": [ + 72 + ], + "∼10": [ + 74 + ], + "kcal/mol.": [ + 75 + ], + "Applicability": [ + 76 + ], + "demonstrated": [ + 78 + ], + "for": [ + 79 + ], + "prediction": [ + 81 + ], + "potential": [ + 85 + ], + "energy": [ + 86 + ], + "curves.": [ + 87 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 66 + }, + { + "year": 2025, + "cited_by_count": 222 + }, + { + "year": 2024, + "cited_by_count": 270 + }, + { + "year": 2023, + "cited_by_count": 256 + }, + { + "year": 2022, + "cited_by_count": 238 + }, + { + "year": 2021, + "cited_by_count": 346 + }, + { + "year": 2020, + "cited_by_count": 362 + }, + { + "year": 2019, + "cited_by_count": 205 + }, + { + "year": 2018, + "cited_by_count": 182 + }, + { + "year": 2017, + "cited_by_count": 95 + }, + { + "year": 2016, + "cited_by_count": 41 + }, + { + "year": 2015, + "cited_by_count": 33 + }, + { + "year": 2014, + "cited_by_count": 25 + }, + { + "year": 2013, + "cited_by_count": 25 + }, + { + "year": 2012, + "cited_by_count": 9 + } + ], + "updated_date": "2026-05-26T13:28:51.108037", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1590183771", + "doi": "https://doi.org/10.1017/cbo9780511804779", + "title": "Bayesian Reasoning and Machine Learning", + "display_name": "Bayesian Reasoning and Machine Learning", + "relevance_score": 2856.6394, + "publication_year": 2012, + "publication_date": "2012-06-05", + "ids": { + "openalex": "https://openalex.org/W1590183771", + "doi": "https://doi.org/10.1017/cbo9780511804779", + "mag": "1590183771" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9780511804779", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511804779", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101763101", + "display_name": "David Barber", + "orcid": "https://orcid.org/0000-0003-2163-2982" + }, + "institutions": [ + { + "id": "https://openalex.org/I2800173700", + "display_name": "UCL Australia", + "ror": "https://ror.org/024atcf19", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I2800173700" + ] + }, + { + "id": "https://openalex.org/I45129253", + "display_name": "University College London", + "ror": "https://ror.org/02jx3x895", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I124357947", + "https://openalex.org/I45129253" + ] + } + ], + "countries": [ + "AU", + "GB" + ], + "is_corresponding": true, + "raw_author_name": "David Barber", + "raw_affiliation_strings": [ + "University College London", + "University college London" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University College London", + "institution_ids": [ + "https://openalex.org/I45129253" + ] + }, + { + "raw_affiliation_string": "University college London", + "institution_ids": [ + "https://openalex.org/I2800173700" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5101763101" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2800173700", + "https://openalex.org/I45129253" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 16.0361, + "has_fulltext": false, + "cited_by_count": 1650, + "citation_normalized_percentile": { + "value": 0.99438202, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.3961000144481659, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.3961000144481659, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.38089999556541443, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.8341989517211914 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6473276615142822 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.49235260486602783 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3714091181755066 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3704102039337158 + }, + { + "id": "https://openalex.org/keywords/human–computer-interaction", + "display_name": "Human–computer interaction", + "score": 0.3456208109855652 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.16564661264419556 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.8341989517211914 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6473276615142822 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.49235260486602783 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3714091181755066 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3704102039337158 + }, + { + "id": "https://openalex.org/C107457646", + "wikidata": "https://www.wikidata.org/wiki/Q207434", + "display_name": "Human–computer interaction", + "level": 1, + "score": 0.3456208109855652 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.16564661264419556 + } + ], + "mesh": [], + "locations_count": 10, + "locations": [ + { + "id": "doi:10.1017/cbo9780511804779", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511804779", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.232.8159", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.232.8159", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/270212.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.365.5529", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.365.5529", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/180613.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.369.3646", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.369.3646", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/090310.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.649.4333", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.649.4333", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/250214.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.696.6905", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.696.6905", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/240415.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.5862", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.5862", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/181115.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-024811811", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=024811811&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-035597209", + "is_oa": false, + "landing_page_url": "http://www.cs.ucl.ac.uk/staff/d.barber/brml/", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:1495251", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1495251", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/9", + "score": 0.41999998688697815, + "display_name": "Industry, innovation and infrastructure" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4286629047", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1 + ], + "methods": [ + 2, + 46 + ], + "extract": [ + 3 + ], + "value": [ + 4 + ], + "from": [ + 5, + 90 + ], + "vast": [ + 6 + ], + "data": [ + 7 + ], + "sets": [ + 8 + ], + "quickly": [ + 9 + ], + "and": [ + 10, + 33, + 36, + 73, + 82, + 85, + 113, + 125, + 130, + 140 + ], + "with": [ + 11, + 63, + 76 + ], + "modest": [ + 12, + 64 + ], + "resources.": [ + 13 + ], + "They": [ + 14 + ], + "are": [ + 15, + 132, + 146 + ], + "established": [ + 16 + ], + "tools": [ + 17 + ], + "in": [ + 18, + 79, + 134 + ], + "a": [ + 19, + 106, + 143 + ], + "wide": [ + 20 + ], + "range": [ + 21 + ], + "of": [ + 22, + 50, + 99, + 108 + ], + "industrial": [ + 23 + ], + "applications,": [ + 24 + ], + "including": [ + 25, + 142 + ], + "search": [ + 26 + ], + "engines,": [ + 27 + ], + "DNA": [ + 28 + ], + "sequencing,": [ + 29 + ], + "stock": [ + 30 + ], + "market": [ + 31 + ], + "analysis,": [ + 32 + ], + "robot": [ + 34 + ], + "locomotion,": [ + 35 + ], + "their": [ + 37, + 48 + ], + "use": [ + 38 + ], + "is": [ + 39, + 68 + ], + "spreading": [ + 40 + ], + "rapidly.": [ + 41 + ], + "People": [ + 42 + ], + "who": [ + 43 + ], + "know": [ + 44 + ], + "the": [ + 45, + 97, + 120 + ], + "have": [ + 47 + ], + "choice": [ + 49 + ], + "rewarding": [ + 51 + ], + "jobs.": [ + 52 + ], + "This": [ + 53 + ], + "hands-on": [ + 54 + ], + "text": [ + 55 + ], + "opens": [ + 56 + ], + "these": [ + 57 + ], + "opportunities": [ + 58 + ], + "to": [ + 59, + 93 + ], + "computer": [ + 60, + 128 + ], + "science": [ + 61 + ], + "students": [ + 62, + 75, + 139 + ], + "mathematical": [ + 65 + ], + "backgrounds.": [ + 66 + ], + "It": [ + 67 + ], + "designed": [ + 69 + ], + "for": [ + 70, + 119, + 138 + ], + "final-year": [ + 71 + ], + "undergraduates": [ + 72 + ], + "master's": [ + 74 + ], + "limited": [ + 77 + ], + "background": [ + 78 + ], + "linear": [ + 80 + ], + "algebra": [ + 81 + ], + "calculus.": [ + 83 + ], + "Comprehensive": [ + 84 + ], + "coherent,": [ + 86 + ], + "it": [ + 87 + ], + "develops": [ + 88 + ], + "everything": [ + 89 + ], + "basic": [ + 91 + ], + "reasoning": [ + 92 + ], + "advanced": [ + 94 + ], + "techniques": [ + 95 + ], + "within": [ + 96 + ], + "framework": [ + 98 + ], + "graphical": [ + 100 + ], + "models.": [ + 101 + ], + "Students": [ + 102 + ], + "learn": [ + 103 + ], + "more": [ + 104 + ], + "than": [ + 105 + ], + "menu": [ + 107 + ], + "techniques,": [ + 109 + ], + "they": [ + 110 + ], + "develop": [ + 111 + ], + "analytical": [ + 112 + ], + "problem-solving": [ + 114 + ], + "skills": [ + 115 + ], + "that": [ + 116 + ], + "equip": [ + 117 + ], + "them": [ + 118 + ], + "real": [ + 121 + ], + "world.": [ + 122 + ], + "Numerous": [ + 123 + ], + "examples": [ + 124 + ], + "exercises,": [ + 126 + ], + "both": [ + 127 + ], + "based": [ + 129 + ], + "theoretical,": [ + 131 + ], + "included": [ + 133 + ], + "every": [ + 135 + ], + "chapter.": [ + 136 + ], + "Resources": [ + 137 + ], + "instructors,": [ + 141 + ], + "MATLAB": [ + 144 + ], + "toolbox,": [ + 145 + ], + "available": [ + 147 + ], + "online.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 18 + }, + { + "year": 2025, + "cited_by_count": 95 + }, + { + "year": 2024, + "cited_by_count": 101 + }, + { + "year": 2023, + "cited_by_count": 93 + }, + { + "year": 2022, + "cited_by_count": 124 + }, + { + "year": 2021, + "cited_by_count": 135 + }, + { + "year": 2020, + "cited_by_count": 193 + }, + { + "year": 2019, + "cited_by_count": 172 + }, + { + "year": 2018, + "cited_by_count": 141 + }, + { + "year": 2017, + "cited_by_count": 132 + }, + { + "year": 2016, + "cited_by_count": 126 + }, + { + "year": 2015, + "cited_by_count": 110 + }, + { + "year": 2014, + "cited_by_count": 100 + }, + { + "year": 2013, + "cited_by_count": 73 + }, + { + "year": 2012, + "cited_by_count": 22 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3123436326", + "doi": "https://doi.org/10.1111/ectj.12097", + "title": "Double/debiased machine learning for treatment and structural parameters", + "display_name": "Double/debiased machine learning for treatment and structural parameters", + "relevance_score": 2840.0427, + "publication_year": 2017, + "publication_date": "2017-06-24", + "ids": { + "openalex": "https://openalex.org/W3123436326", + "doi": "https://doi.org/10.1111/ectj.12097", + "mag": "3123436326" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5068383641", + "display_name": "Victor Chernozhukov", + "orcid": "https://orcid.org/0000-0002-3250-6714" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Victor Chernozhukov", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110738906", + "display_name": "Denis Chetverikov", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Denis Chetverikov", + "raw_affiliation_strings": [ + "University of California Los Angeles, 315 Portola Plaza, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of California Los Angeles, 315 Portola Plaza, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050184772", + "display_name": "Mert Demirer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mert Demirer", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015565298", + "display_name": "Esther Duflo", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Esther Duflo", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5086970490", + "display_name": "Christian Hansen", + "orcid": "https://orcid.org/0009-0006-8123-1039" + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christian Hansen", + "raw_affiliation_strings": [ + "University of Chicago, 5807 S. Woodlawn Ave., Chicago, IL 60637, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Chicago, 5807 S. Woodlawn Ave., Chicago, IL 60637, USA", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5113931380", + "display_name": "Whitney K. Newey", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Whitney Newey", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5079863455", + "display_name": "James M. Robins", + "orcid": "https://orcid.org/0000-0001-6609-209X" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "James Robins", + "raw_affiliation_strings": [ + "Harvard University, 677 Huntington Avenue, Boston, MA 02115, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Harvard University, 677 Huntington Avenue, Boston, MA 02115, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5068383641" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I63966007" + ], + "apc_list": { + "value": 3099, + "currency": "GBP", + "value_usd": 3801 + }, + "apc_paid": null, + "fwci": 49.5776, + "has_fulltext": false, + "cited_by_count": 2395, + "citation_normalized_percentile": { + "value": 0.99897025, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "21", + "issue": "1", + "first_page": "C1", + "last_page": "C68" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9990000128746033, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9990000128746033, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10845", + "display_name": "Advanced Causal Inference Techniques", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10243", + "display_name": "Statistical Methods and Bayesian Inference", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/overfitting", + "display_name": "Overfitting", + "score": 0.9195612668991089 + }, + { + "id": "https://openalex.org/keywords/estimator", + "display_name": "Estimator", + "score": 0.8237652778625488 + }, + { + "id": "https://openalex.org/keywords/nuisance-parameter", + "display_name": "Nuisance parameter", + "score": 0.6137700080871582 + }, + { + "id": "https://openalex.org/keywords/regularization", + "display_name": "Regularization (linguistics)", + "score": 0.611305832862854 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.5675204992294312 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.3928169012069702 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.37074944376945496 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3280455470085144 + }, + { + "id": "https://openalex.org/keywords/applied-mathematics", + "display_name": "Applied mathematics", + "score": 0.3253978490829468 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3153572082519531 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1361507773399353 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C22019652", + "wikidata": "https://www.wikidata.org/wiki/Q331309", + "display_name": "Overfitting", + "level": 3, + "score": 0.9195612668991089 + }, + { + "id": "https://openalex.org/C185429906", + "wikidata": "https://www.wikidata.org/wiki/Q1130160", + "display_name": "Estimator", + "level": 2, + "score": 0.8237652778625488 + }, + { + "id": "https://openalex.org/C194531419", + "wikidata": "https://www.wikidata.org/wiki/Q17104825", + "display_name": "Nuisance parameter", + "level": 3, + "score": 0.6137700080871582 + }, + { + "id": "https://openalex.org/C2776135515", + "wikidata": "https://www.wikidata.org/wiki/Q17143721", + "display_name": "Regularization (linguistics)", + "level": 2, + "score": 0.611305832862854 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.5675204992294312 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.3928169012069702 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.37074944376945496 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3280455470085144 + }, + { + "id": "https://openalex.org/C28826006", + "wikidata": "https://www.wikidata.org/wiki/Q33521", + "display_name": "Applied mathematics", + "level": 1, + "score": 0.3253978490829468 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3153572082519531 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1361507773399353 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6556031174", + "display_name": null, + "funder_award_id": "ES/I034021/1", + "funder_id": "https://openalex.org/F4320334630", + "funder_display_name": "Economic and Social Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320334630", + "display_name": "Economic and Social Research Council", + "ror": "https://ror.org/03n0ht308" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 94, + "referenced_works": [ + "https://openalex.org/W67506904", + "https://openalex.org/W81897278", + "https://openalex.org/W620038288", + "https://openalex.org/W1460189015", + "https://openalex.org/W1520595697", + "https://openalex.org/W1548939571", + "https://openalex.org/W1556388863", + "https://openalex.org/W1656622334", + "https://openalex.org/W1730512236", + "https://openalex.org/W1886275324", + "https://openalex.org/W1963509555", + "https://openalex.org/W1963874316", + "https://openalex.org/W1977675844", + "https://openalex.org/W1981809679", + "https://openalex.org/W1984547044", + "https://openalex.org/W1988734172", + "https://openalex.org/W2000008805", + "https://openalex.org/W2014373672", + "https://openalex.org/W2018543390", + "https://openalex.org/W2022450888", + "https://openalex.org/W2028995298", + "https://openalex.org/W2045640115", + "https://openalex.org/W2046977371", + "https://openalex.org/W2051507405", + "https://openalex.org/W2058248640", + "https://openalex.org/W2062579211", + "https://openalex.org/W2069119359", + "https://openalex.org/W2074523758", + "https://openalex.org/W2078411132", + "https://openalex.org/W2078658856", + "https://openalex.org/W2079597004", + "https://openalex.org/W2086426685", + "https://openalex.org/W2088093133", + "https://openalex.org/W2098895596", + "https://openalex.org/W2099730522", + "https://openalex.org/W2100532505", + "https://openalex.org/W2101746104", + "https://openalex.org/W2104780889", + "https://openalex.org/W2111162388", + "https://openalex.org/W2116581043", + "https://openalex.org/W2120846249", + "https://openalex.org/W2128235479", + "https://openalex.org/W2129086422", + "https://openalex.org/W2143966988", + "https://openalex.org/W2148119495", + "https://openalex.org/W2148596757", + "https://openalex.org/W2150291618", + "https://openalex.org/W2152001792", + "https://openalex.org/W2163162137", + "https://openalex.org/W2171443468", + "https://openalex.org/W2217990278", + "https://openalex.org/W2244523147", + "https://openalex.org/W2308122693", + "https://openalex.org/W2315960178", + "https://openalex.org/W2345898006", + "https://openalex.org/W2398799638", + "https://openalex.org/W2409903755", + "https://openalex.org/W2463468932", + "https://openalex.org/W2478927095", + "https://openalex.org/W2557116807", + "https://openalex.org/W2751382287", + "https://openalex.org/W2765398882", + "https://openalex.org/W2886798606", + "https://openalex.org/W2949148940", + "https://openalex.org/W2950845368", + "https://openalex.org/W2952150717", + "https://openalex.org/W2952248799", + "https://openalex.org/W2962952631", + "https://openalex.org/W2963278901", + "https://openalex.org/W3098302339", + "https://openalex.org/W3099550161", + "https://openalex.org/W3099718522", + "https://openalex.org/W3103221895", + "https://openalex.org/W3121832289", + "https://openalex.org/W3122193054", + "https://openalex.org/W3123233440", + "https://openalex.org/W3123785084", + "https://openalex.org/W3124166904", + "https://openalex.org/W3125188740", + "https://openalex.org/W3125441349", + "https://openalex.org/W3125657517", + "https://openalex.org/W3150893739", + "https://openalex.org/W3207136162", + "https://openalex.org/W4233056867", + "https://openalex.org/W4235461144", + "https://openalex.org/W4240967689", + "https://openalex.org/W4247571494", + "https://openalex.org/W4248240383", + "https://openalex.org/W4300220092", + "https://openalex.org/W4301106181", + "https://openalex.org/W6679265385", + "https://openalex.org/W6802843838", + "https://openalex.org/W6982782312", + "https://openalex.org/W7014881647" + ], + "related_works": [ + "https://openalex.org/W4362597605", + "https://openalex.org/W1574414179", + "https://openalex.org/W4245953108", + "https://openalex.org/W1977619534", + "https://openalex.org/W2236763869", + "https://openalex.org/W2097626286", + "https://openalex.org/W4293568347", + "https://openalex.org/W2808230936", + "https://openalex.org/W2023659367", + "https://openalex.org/W2600353266" + ], + "abstract_inverted_index": { + "We": [ + 0, + 21, + 149, + 205, + 217, + 301 + ], + "revisit": [ + 1 + ], + "the": [ + 2, + 14, + 24, + 36, + 46, + 59, + 135, + 146, + 152, + 162, + 207, + 230, + 267, + 279, + 303, + 314, + 320, + 334, + 351, + 356, + 361, + 369, + 388 + ], + "classic": [ + 3 + ], + "semi‐parametric": [ + 4 + ], + "problem": [ + 5 + ], + "of": [ + 6, + 16, + 45, + 61, + 114, + 124, + 154, + 161, + 164, + 196, + 203, + 210, + 229, + 244, + 252, + 269, + 273, + 298, + 313, + 390 + ], + "inference": [ + 7 + ], + "on": [ + 8, + 159, + 259, + 336, + 360 + ], + "a": [ + 9, + 109, + 270, + 325, + 341 + ], + "low‐dimensional": [ + 10 + ], + "parameter": [ + 11, + 47, + 163, + 232, + 323 + ], + "θ0": [ + 12, + 115, + 166 + ], + "in": [ + 13, + 75, + 97, + 105, + 112, + 134, + 226, + 324, + 340, + 374, + 392 + ], + "presence": [ + 15 + ], + "high‐dimensional": [ + 17, + 34, + 78 + ], + "nuisance": [ + 18, + 188, + 280 + ], + "parameters": [ + 19, + 189 + ], + "η0.": [ + 20 + ], + "depart": [ + 22 + ], + "from": [ + 23 + ], + "classical": [ + 25 + ], + "setting": [ + 26 + ], + "by": [ + 27, + 84, + 119, + 170, + 306 + ], + "allowing": [ + 28 + ], + "for": [ + 29, + 49, + 129, + 277 + ], + "η0": [ + 30, + 107, + 125 + ], + "to": [ + 31, + 73, + 87, + 139, + 187, + 190, + 309, + 318, + 332, + 349, + 367, + 381 + ], + "be": [ + 32, + 140, + 168 + ], + "so": [ + 33 + ], + "that": [ + 35, + 42, + 116, + 151, + 181, + 219, + 224 + ], + "traditional": [ + 37 + ], + "assumptions": [ + 38 + ], + "(e.g.": [ + 39 + ], + "Donsker": [ + 40 + ], + "properties)": [ + 41 + ], + "limit": [ + 43 + ], + "complexity": [ + 44 + ], + "space": [ + 48 + ], + "this": [ + 50 + ], + "object": [ + 51 + ], + "break": [ + 52 + ], + "down.": [ + 53 + ], + "To": [ + 54 + ], + "estimate": [ + 55, + 191 + ], + "η0,": [ + 56 + ], + "we": [ + 57, + 385 + ], + "consider": [ + 58 + ], + "use": [ + 60, + 195, + 268, + 389 + ], + "statistical": [ + 62, + 250 + ], + "or": [ + 63, + 213 + ], + "machine": [ + 64 + ], + "learning": [ + 65 + ], + "(ML)": [ + 66 + ], + "methods,": [ + 67 + ], + "which": [ + 68, + 198, + 241, + 264 + ], + "are": [ + 69, + 117, + 235 + ], + "particularly": [ + 70 + ], + "well": [ + 71, + 83 + ], + "suited": [ + 72 + ], + "estimation": [ + 74, + 160 + ], + "modern,": [ + 76 + ], + "very": [ + 77 + ], + "cases.": [ + 79 + ], + "ML": [ + 80, + 122, + 215, + 275 + ], + "methods": [ + 81, + 211, + 276 + ], + "perform": [ + 82 + ], + "employing": [ + 85 + ], + "regularization": [ + 86, + 93, + 101, + 155 + ], + "reduce": [ + 88 + ], + "variance": [ + 89 + ], + "and": [ + 90, + 103, + 157, + 234, + 238, + 256, + 293, + 296, + 355 + ], + "trading": [ + 91 + ], + "off": [ + 92 + ], + "bias": [ + 94, + 102, + 111, + 132, + 156 + ], + "with": [ + 95, + 185 + ], + "overfitting": [ + 96, + 104, + 158 + ], + "practice.": [ + 98 + ], + "However,": [ + 99 + ], + "both": [ + 100 + ], + "estimating": [ + 106, + 127, + 278 + ], + "cause": [ + 108 + ], + "heavy": [ + 110 + ], + "estimators": [ + 113, + 123, + 223 + ], + "obtained": [ + 118 + ], + "naively": [ + 120 + ], + "plugging": [ + 121 + ], + "into": [ + 126 + ], + "equations": [ + 128 + ], + "θ0.": [ + 130 + ], + "This": [ + 131 + ], + "results": [ + 133 + ], + "naive": [ + 136 + ], + "estimator": [ + 137 + ], + "failing": [ + 138 + ], + "N−1/2": [ + 141 + ], + "consistent,": [ + 142 + ], + "where": [ + 143 + ], + "N": [ + 144 + ], + "is": [ + 145, + 254 + ], + "sample": [ + 147 + ], + "size.": [ + 148 + ], + "show": [ + 150 + ], + "impact": [ + 153 + ], + "interest": [ + 165 + ], + "can": [ + 167 + ], + "removed": [ + 169 + ], + "using": [ + 171, + 178 + ], + "two": [ + 172 + ], + "simple,": [ + 173 + ], + "yet": [ + 174 + ], + "critical,": [ + 175 + ], + "ingredients:": [ + 176 + ], + "(1)": [ + 177 + ], + "Neyman‐orthogonal": [ + 179 + ], + "moments/scores": [ + 180 + ], + "have": [ + 182 + ], + "reduced": [ + 183 + ], + "sensitivity": [ + 184 + ], + "respect": [ + 186 + ], + "θ0;": [ + 192 + ], + "(2)": [ + 193 + ], + "making": [ + 194 + ], + "cross‐fitting,": [ + 197 + ], + "provides": [ + 199 + ], + "an": [ + 200, + 227, + 337, + 375 + ], + "efficient": [ + 201 + ], + "form": [ + 202 + ], + "data‐splitting.": [ + 204 + ], + "call": [ + 206 + ], + "resulting": [ + 208 + ], + "set": [ + 209 + ], + "double": [ + 212 + ], + "debiased": [ + 214 + ], + "(DML).": [ + 216 + ], + "verify": [ + 218 + ], + "DML": [ + 220, + 253, + 316, + 330, + 347, + 365, + 391 + ], + "delivers": [ + 221 + ], + "point": [ + 222 + ], + "concentrate": [ + 225 + ], + "N−1/2‐neighbourhood": [ + 228 + ], + "true": [ + 231 + ], + "values": [ + 233 + ], + "approximately": [ + 236 + ], + "unbiased": [ + 237 + ], + "normally": [ + 239 + ], + "distributed,": [ + 240 + ], + "allows": [ + 242 + ], + "construction": [ + 243 + ], + "valid": [ + 245 + ], + "confidence": [ + 246 + ], + "statements.": [ + 247 + ], + "The": [ + 248 + ], + "generic": [ + 249 + ], + "theory": [ + 251, + 305 + ], + "elementary": [ + 255 + ], + "simultaneously": [ + 257 + ], + "relies": [ + 258 + ], + "only": [ + 260 + ], + "weak": [ + 261 + ], + "theoretical": [ + 262, + 311, + 383 + ], + "requirements,": [ + 263 + ], + "will": [ + 265 + ], + "admit": [ + 266 + ], + "broad": [ + 271 + ], + "array": [ + 272 + ], + "modern": [ + 274 + ], + "parameters,": [ + 281 + ], + "such": [ + 282 + ], + "as": [ + 283 + ], + "random": [ + 284 + ], + "forests,": [ + 285 + ], + "lasso,": [ + 286 + ], + "ridge,": [ + 287 + ], + "deep": [ + 288 + ], + "neural": [ + 289 + ], + "nets,": [ + 290 + ], + "boosted": [ + 291 + ], + "trees,": [ + 292 + ], + "various": [ + 294 + ], + "hybrids": [ + 295 + ], + "ensembles": [ + 297 + ], + "these": [ + 299, + 382 + ], + "methods.": [ + 300 + ], + "illustrate": [ + 302, + 387 + ], + "general": [ + 304 + ], + "applying": [ + 307 + ], + "it": [ + 308 + ], + "provide": [ + 310 + ], + "properties": [ + 312 + ], + "following:": [ + 315 + ], + "applied": [ + 317, + 331, + 348, + 366 + ], + "learn": [ + 319, + 333, + 350, + 368 + ], + "main": [ + 321 + ], + "regression": [ + 322, + 328 + ], + "partially": [ + 326, + 342 + ], + "linear": [ + 327, + 343 + ], + "model;": [ + 329, + 346 + ], + "coefficient": [ + 335 + ], + "endogenous": [ + 338 + ], + "variable": [ + 339 + ], + "instrumental": [ + 344, + 376 + ], + "variables": [ + 345, + 377 + ], + "average": [ + 352, + 357, + 371 + ], + "treatment": [ + 353, + 358, + 372 + ], + "effect": [ + 354, + 359, + 373 + ], + "treated": [ + 362 + ], + "under": [ + 363 + ], + "unconfoundedness;": [ + 364 + ], + "local": [ + 370 + ], + "setting.": [ + 378 + ], + "In": [ + 379 + ], + "addition": [ + 380 + ], + "applications,": [ + 384 + ], + "also": [ + 386 + ], + "three": [ + 393 + ], + "empirical": [ + 394 + ], + "examples.": [ + 395 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 409 + }, + { + "year": 2025, + "cited_by_count": 714 + }, + { + "year": 2024, + "cited_by_count": 427 + }, + { + "year": 2023, + "cited_by_count": 257 + }, + { + "year": 2022, + "cited_by_count": 210 + }, + { + "year": 2021, + "cited_by_count": 172 + }, + { + "year": 2020, + "cited_by_count": 112 + }, + { + "year": 2019, + "cited_by_count": 70 + }, + { + "year": 2018, + "cited_by_count": 18 + }, + { + "year": 2017, + "cited_by_count": 5 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2048266589", + "doi": "https://doi.org/10.1109/micro.2014.58", + "title": "DaDianNao: A Machine-Learning Supercomputer", + "display_name": "DaDianNao: A Machine-Learning Supercomputer", + "relevance_score": 2835.6885, + "publication_year": 2014, + "publication_date": "2014-12-01", + "ids": { + "openalex": "https://openalex.org/W2048266589", + "doi": "https://doi.org/10.1109/micro.2014.58", + "mag": "2048266589" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/micro.2014.58", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/micro.2014.58", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2014 47th Annual IEEE/ACM International Symposium on Microarchitecture", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5036492388", + "display_name": "Yunji Chen", + "orcid": "https://orcid.org/0000-0003-3925-5185" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Yunji Chen", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101630043", + "display_name": "Tao Luo", + "orcid": "https://orcid.org/0000-0002-3415-3676" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tao Luo", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China", + "University of CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + }, + { + "raw_affiliation_string": "University of CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5033237869", + "display_name": "Shaoli Liu", + "orcid": "https://orcid.org/0000-0001-7197-8805" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shaoli Liu", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101498177", + "display_name": "Shijin Zhang", + "orcid": "https://orcid.org/0000-0001-5141-3188" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shijin Zhang", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100836264", + "display_name": "Liqiang He", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I2722730", + "display_name": "Inner Mongolia University", + "ror": "https://ror.org/0106qb496", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I2722730" + ] + }, + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "CN", + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Liqiang He", + "raw_affiliation_strings": [ + "Inner Mongolia University, China", + "Inria, Scalay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Inner Mongolia University, China", + "institution_ids": [ + "https://openalex.org/I2722730" + ] + }, + { + "raw_affiliation_string": "Inria, Scalay, France", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100404643", + "display_name": "Jia Wang", + "orcid": "https://orcid.org/0000-0002-3165-7051" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jia Wang", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100435321", + "display_name": "Ling Li", + "orcid": "https://orcid.org/0000-0001-8877-9052" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ling Li", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5109886311", + "display_name": "Tianshi Chen", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tianshi Chen", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100628169", + "display_name": "Zhiwei Xu", + "orcid": "https://orcid.org/0000-0002-1480-7265" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhiwei Xu", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101738013", + "display_name": "Ninghui Sun", + "orcid": "https://orcid.org/0000-0002-1953-1392" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ninghui Sun", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5040252809", + "display_name": "Olivier Temam", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Olivier Temam", + "raw_affiliation_strings": [ + "Inria, Scalay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Inria, Scalay, France", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 11, + "corresponding_author_ids": [ + "https://openalex.org/A5036492388" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 66.2387, + "has_fulltext": false, + "cited_by_count": 1500, + "citation_normalized_percentile": { + "value": 0.99931381, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "609", + "last_page": "622" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8650738000869751 + }, + { + "id": "https://openalex.org/keywords/supercomputer", + "display_name": "Supercomputer", + "score": 0.6421846747398376 + }, + { + "id": "https://openalex.org/keywords/memory-footprint", + "display_name": "Memory footprint", + "score": 0.6217308640480042 + }, + { + "id": "https://openalex.org/keywords/convolutional-neural-network", + "display_name": "Convolutional neural network", + "score": 0.6212705373764038 + }, + { + "id": "https://openalex.org/keywords/speedup", + "display_name": "Speedup", + "score": 0.6080182790756226 + }, + { + "id": "https://openalex.org/keywords/parallel-computing", + "display_name": "Parallel computing", + "score": 0.5330008268356323 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5072109699249268 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.507047176361084 + }, + { + "id": "https://openalex.org/keywords/memory-bandwidth", + "display_name": "Memory bandwidth", + "score": 0.5065058469772339 + }, + { + "id": "https://openalex.org/keywords/bandwidth", + "display_name": "Bandwidth (computing)", + "score": 0.4705035388469696 + }, + { + "id": "https://openalex.org/keywords/auxiliary-memory", + "display_name": "Auxiliary memory", + "score": 0.46236518025398254 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.44564568996429443 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3841804265975952 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.34958434104919434 + }, + { + "id": "https://openalex.org/keywords/computer-engineering", + "display_name": "Computer engineering", + "score": 0.32731860876083374 + }, + { + "id": "https://openalex.org/keywords/computer-hardware", + "display_name": "Computer hardware", + "score": 0.21425938606262207 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.1414709985256195 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.13462954759597778 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8650738000869751 + }, + { + "id": "https://openalex.org/C83283714", + "wikidata": "https://www.wikidata.org/wiki/Q121117", + "display_name": "Supercomputer", + "level": 2, + "score": 0.6421846747398376 + }, + { + "id": "https://openalex.org/C74912251", + "wikidata": "https://www.wikidata.org/wiki/Q6815727", + "display_name": "Memory footprint", + "level": 2, + "score": 0.6217308640480042 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.6212705373764038 + }, + { + "id": "https://openalex.org/C68339613", + "wikidata": "https://www.wikidata.org/wiki/Q1549489", + "display_name": "Speedup", + "level": 2, + "score": 0.6080182790756226 + }, + { + "id": "https://openalex.org/C173608175", + "wikidata": "https://www.wikidata.org/wiki/Q232661", + "display_name": "Parallel computing", + "level": 1, + "score": 0.5330008268356323 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5072109699249268 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.507047176361084 + }, + { + "id": "https://openalex.org/C188045654", + "wikidata": "https://www.wikidata.org/wiki/Q17148339", + "display_name": "Memory bandwidth", + "level": 2, + "score": 0.5065058469772339 + }, + { + "id": "https://openalex.org/C2776257435", + "wikidata": "https://www.wikidata.org/wiki/Q1576430", + "display_name": "Bandwidth (computing)", + "level": 2, + "score": 0.4705035388469696 + }, + { + "id": "https://openalex.org/C82687282", + "wikidata": "https://www.wikidata.org/wiki/Q66221", + "display_name": "Auxiliary memory", + "level": 2, + "score": 0.46236518025398254 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.44564568996429443 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3841804265975952 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.34958434104919434 + }, + { + "id": "https://openalex.org/C113775141", + "wikidata": "https://www.wikidata.org/wiki/Q428691", + "display_name": "Computer engineering", + "level": 1, + "score": 0.32731860876083374 + }, + { + "id": "https://openalex.org/C9390403", + "wikidata": "https://www.wikidata.org/wiki/Q3966", + "display_name": "Computer hardware", + "level": 1, + "score": 0.21425938606262207 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.1414709985256195 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.13462954759597778 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/micro.2014.58", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/micro.2014.58", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2014 47th Annual IEEE/ACM International Symposium on Microarchitecture", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/7", + "score": 0.7099999785423279, + "display_name": "Affordable and clean energy" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 61, + "referenced_works": [ + "https://openalex.org/W160318044", + "https://openalex.org/W587794757", + "https://openalex.org/W1501077214", + "https://openalex.org/W1964471912", + "https://openalex.org/W1987117608", + "https://openalex.org/W1994197834", + "https://openalex.org/W2006312753", + "https://openalex.org/W2010238453", + "https://openalex.org/W2024139303", + "https://openalex.org/W2038061869", + "https://openalex.org/W2043607059", + "https://openalex.org/W2056137328", + "https://openalex.org/W2062227835", + "https://openalex.org/W2071709160", + "https://openalex.org/W2077505860", + "https://openalex.org/W2082444966", + "https://openalex.org/W2089064077", + "https://openalex.org/W2098335003", + "https://openalex.org/W2102543317", + "https://openalex.org/W2107994122", + "https://openalex.org/W2108598243", + "https://openalex.org/W2109492604", + "https://openalex.org/W2111932160", + "https://openalex.org/W2112796928", + "https://openalex.org/W2116267755", + "https://openalex.org/W2120480077", + "https://openalex.org/W2121458485", + "https://openalex.org/W2125203716", + "https://openalex.org/W2128785632", + "https://openalex.org/W2136189984", + "https://openalex.org/W2136262589", + "https://openalex.org/W2141125852", + "https://openalex.org/W2148461049", + "https://openalex.org/W2148605318", + "https://openalex.org/W2152839228", + "https://openalex.org/W2155377787", + "https://openalex.org/W2162390675", + "https://openalex.org/W2163605009", + "https://openalex.org/W2168231600", + "https://openalex.org/W2169875292", + "https://openalex.org/W2187230075", + "https://openalex.org/W2252268321", + "https://openalex.org/W2253807446", + "https://openalex.org/W2467255337", + "https://openalex.org/W2504108613", + "https://openalex.org/W2546302380", + "https://openalex.org/W2963217749", + "https://openalex.org/W3151762208", + "https://openalex.org/W4232280717", + "https://openalex.org/W4239072543", + "https://openalex.org/W6617368339", + "https://openalex.org/W6651700774", + "https://openalex.org/W6673621702", + "https://openalex.org/W6676297131", + "https://openalex.org/W6678242812", + "https://openalex.org/W6680450716", + "https://openalex.org/W6681813608", + "https://openalex.org/W6683722107", + "https://openalex.org/W6684191040", + "https://openalex.org/W6684859321", + "https://openalex.org/W6691441656" + ], + "related_works": [ + "https://openalex.org/W4289827464", + "https://openalex.org/W4376647684", + "https://openalex.org/W4221139464", + "https://openalex.org/W4386302689", + "https://openalex.org/W2068996722", + "https://openalex.org/W4200309432", + "https://openalex.org/W3193699965", + "https://openalex.org/W4319917399", + "https://openalex.org/W2909779890", + "https://openalex.org/W2398743891" + ], + "abstract_inverted_index": { + "Many": [ + 0 + ], + "companies": [ + 1 + ], + "are": [ + 2, + 11, + 33, + 43 + ], + "deploying": [ + 3 + ], + "services,": [ + 4 + ], + "either": [ + 5 + ], + "for": [ + 6, + 17, + 185 + ], + "consumers": [ + 7 + ], + "or": [ + 8 + ], + "industry,": [ + 9 + ], + "which": [ + 10, + 42, + 62, + 70, + 127 + ], + "largely": [ + 12 + ], + "based": [ + 13 + ], + "on": [ + 14, + 84, + 102, + 155, + 183 + ], + "machine-learning": [ + 15, + 31, + 147 + ], + "algorithms": [ + 16, + 32 + ], + "sophisticated": [ + 18 + ], + "processing": [ + 19 + ], + "of": [ + 20, + 23, + 54, + 100, + 105, + 158, + 172, + 204 + ], + "large": [ + 21 + ], + "amounts": [ + 22 + ], + "data.": [ + 24 + ], + "The": [ + 25 + ], + "state-of-the-art": [ + 26 + ], + "and": [ + 27, + 35, + 40, + 49, + 89, + 123, + 177, + 197, + 207 + ], + "most": [ + 28 + ], + "popular": [ + 29 + ], + "such": [ + 30 + ], + "Convolutional": [ + 34 + ], + "Deep": [ + 36 + ], + "Neural": [ + 37 + ], + "Networks": [ + 38 + ], + "(CNNs": [ + 39 + ], + "DNNs),": [ + 41 + ], + "known": [ + 44, + 161 + ], + "to": [ + 45, + 119, + 168, + 194 + ], + "be": [ + 46 + ], + "both": [ + 47 + ], + "computationally": [ + 48 + ], + "memory": [ + 50, + 74, + 79, + 91 + ], + "intensive.": [ + 51 + ], + "A": [ + 52 + ], + "number": [ + 53 + ], + "neural": [ + 55, + 162 + ], + "network": [ + 56, + 163 + ], + "accelerators": [ + 57 + ], + "have": [ + 58 + ], + "been": [ + 59 + ], + "recently": [ + 60 + ], + "proposed": [ + 61 + ], + "can": [ + 63, + 117, + 128 + ], + "offer": [ + 64 + ], + "high": [ + 65, + 120 + ], + "computational": [ + 66, + 208 + ], + "capacity/area": [ + 67 + ], + "ratio,": [ + 68 + ], + "but": [ + 69 + ], + "remain": [ + 71 + ], + "hampered": [ + 72 + ], + "by": [ + 73, + 82, + 181 + ], + "accesses.": [ + 75 + ], + "However,": [ + 76 + ], + "unlike": [ + 77 + ], + "the": [ + 78, + 87, + 98, + 101, + 113, + 159, + 179, + 191, + 195 + ], + "wall": [ + 80 + ], + "faced": [ + 81 + ], + "processors": [ + 83 + ], + "general-purpose": [ + 85 + ], + "workloads,": [ + 86 + ], + "CNNs": [ + 88 + ], + "DNNs": [ + 90 + ], + "footprint,": [ + 92 + ], + "while": [ + 93 + ], + "large,": [ + 94 + ], + "is": [ + 95, + 166 + ], + "not": [ + 96 + ], + "beyond": [ + 97 + ], + "capability": [ + 99 + ], + "chip": [ + 103 + ], + "storage": [ + 104, + 206 + ], + "a": [ + 106, + 135, + 144, + 156, + 170, + 175, + 186, + 202 + ], + "multi-chip": [ + 107, + 146 + ], + "system.": [ + 108, + 188 + ], + "This": [ + 109 + ], + "property,": [ + 110 + ], + "combined": [ + 111 + ], + "with": [ + 112, + 210 + ], + "CNN/DNN": [ + 114 + ], + "algorithmic": [ + 115 + ], + "characteristics,": [ + 116 + ], + "lead": [ + 118 + ], + "internal": [ + 121 + ], + "bandwidth": [ + 122 + ], + "low": [ + 124 + ], + "external": [ + 125 + ], + "communications,": [ + 126 + ], + "in": [ + 129 + ], + "turn": [ + 130 + ], + "enable": [ + 131 + ], + "high-degree": [ + 132 + ], + "parallelism": [ + 133 + ], + "at": [ + 134, + 199 + ], + "reasonable": [ + 136 + ], + "area": [ + 137 + ], + "cost.": [ + 138 + ], + "In": [ + 139 + ], + "this": [ + 140 + ], + "article,": [ + 141 + ], + "we": [ + 142 + ], + "introduce": [ + 143 + ], + "custom": [ + 145, + 205 + ], + "architecture": [ + 148 + ], + "along": [ + 149 + ], + "those": [ + 150 + ], + "lines.": [ + 151 + ], + "We": [ + 152, + 189 + ], + "show": [ + 153 + ], + "that,": [ + 154 + ], + "subset": [ + 157 + ], + "largest": [ + 160 + ], + "layers,": [ + 164 + ], + "it": [ + 165 + ], + "possible": [ + 167 + ], + "achieve": [ + 169 + ], + "speedup": [ + 171 + ], + "450.65x": [ + 173 + ], + "over": [ + 174 + ], + "GPU,": [ + 176 + ], + "reduce": [ + 178 + ], + "energy": [ + 180 + ], + "150.31x": [ + 182 + ], + "average": [ + 184 + ], + "64-chip": [ + 187 + ], + "implement": [ + 190 + ], + "node": [ + 192 + ], + "down": [ + 193 + ], + "place": [ + 196 + ], + "route": [ + 198 + ], + "28nm,": [ + 200 + ], + "containing": [ + 201 + ], + "combination": [ + 203 + ], + "units,": [ + 209 + ], + "industry-grade": [ + 211 + ], + "interconnects.": [ + 212 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 14 + }, + { + "year": 2025, + "cited_by_count": 45 + }, + { + "year": 2024, + "cited_by_count": 74 + }, + { + "year": 2023, + "cited_by_count": 98 + }, + { + "year": 2022, + "cited_by_count": 139 + }, + { + "year": 2021, + "cited_by_count": 189 + }, + { + "year": 2020, + "cited_by_count": 234 + }, + { + "year": 2019, + "cited_by_count": 207 + }, + { + "year": 2018, + "cited_by_count": 232 + }, + { + "year": 2017, + "cited_by_count": 148 + }, + { + "year": 2016, + "cited_by_count": 93 + }, + { + "year": 2015, + "cited_by_count": 24 + }, + { + "year": 2014, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2964303497", + "doi": "https://doi.org/10.3390/electronics8080832", + "title": "Machine Learning Interpretability: A Survey on Methods and Metrics", + "display_name": "Machine Learning Interpretability: A Survey on Methods and Metrics", + "relevance_score": 2830.8088, + "publication_year": 2019, + "publication_date": "2019-07-26", + "ids": { + "openalex": "https://openalex.org/W2964303497", + "doi": "https://doi.org/10.3390/electronics8080832", + "mag": "2964303497" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5102720670", + "display_name": "Diogo V. Carvalho", + "orcid": "https://orcid.org/0000-0002-2349-4117" + }, + "institutions": [ + { + "id": "https://openalex.org/I182534213", + "display_name": "Universidade do Porto", + "ror": "https://ror.org/043pwc612", + "country_code": "PT", + "type": "education", + "lineage": [ + "https://openalex.org/I182534213" + ] + } + ], + "countries": [ + "PT" + ], + "is_corresponding": true, + "raw_author_name": "Diogo V. Carvalho", + "raw_affiliation_strings": [ + "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal" + ], + "raw_orcid": "https://orcid.org/0000-0002-2349-4117", + "affiliations": [ + { + "raw_affiliation_string": "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I182534213" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5102355791", + "display_name": "Eduardo M. Pereira", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Eduardo M. Pereira", + "raw_affiliation_strings": [ + "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5013827007", + "display_name": "Jaime S. Cardoso", + "orcid": "https://orcid.org/0000-0002-3760-2473" + }, + "institutions": [ + { + "id": "https://openalex.org/I182534213", + "display_name": "Universidade do Porto", + "ror": "https://ror.org/043pwc612", + "country_code": "PT", + "type": "education", + "lineage": [ + "https://openalex.org/I182534213" + ] + }, + { + "id": "https://openalex.org/I4210166615", + "display_name": "INESC TEC", + "ror": "https://ror.org/05fa8ka61", + "country_code": "PT", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210125590", + "https://openalex.org/I4210166615" + ] + } + ], + "countries": [ + "PT" + ], + "is_corresponding": false, + "raw_author_name": "Jaime S. Cardoso", + "raw_affiliation_strings": [ + "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "INESC TEC, Dr. Roberto Frias Street, 4200-465 Porto, Portugal" + ], + "raw_orcid": "https://orcid.org/0000-0002-3760-2473", + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I182534213" + ] + }, + { + "raw_affiliation_string": "INESC TEC, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I4210166615" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5102720670" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I182534213" + ], + "apc_list": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "apc_paid": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "fwci": 90.6976, + "has_fulltext": true, + "cited_by_count": 1743, + "citation_normalized_percentile": { + "value": 0.9995324, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "8", + "issue": "8", + "first_page": "832", + "last_page": "832" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9767000079154968, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.9701313972473145 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.659199059009552 + }, + { + "id": "https://openalex.org/keywords/meaning", + "display_name": "Meaning (existential)", + "score": 0.6587560772895813 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6230239272117615 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5974628925323486 + }, + { + "id": "https://openalex.org/keywords/audit", + "display_name": "Audit", + "score": 0.5879456400871277 + }, + { + "id": "https://openalex.org/keywords/quality", + "display_name": "Quality (philosophy)", + "score": 0.5633484125137329 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.5597485899925232 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5310136675834656 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.4038145840167999 + }, + { + "id": "https://openalex.org/keywords/knowledge-management", + "display_name": "Knowledge management", + "score": 0.35610130429267883 + }, + { + "id": "https://openalex.org/keywords/risk-analysis", + "display_name": "Risk analysis (engineering)", + "score": 0.35108682513237 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.14015191793441772 + }, + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.12852543592453003 + }, + { + "id": "https://openalex.org/keywords/epistemology", + "display_name": "Epistemology", + "score": 0.08962225914001465 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.9701313972473145 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.659199059009552 + }, + { + "id": "https://openalex.org/C2780876879", + "wikidata": "https://www.wikidata.org/wiki/Q3054749", + "display_name": "Meaning (existential)", + "level": 2, + "score": 0.6587560772895813 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6230239272117615 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5974628925323486 + }, + { + "id": "https://openalex.org/C199521495", + "wikidata": "https://www.wikidata.org/wiki/Q181487", + "display_name": "Audit", + "level": 2, + "score": 0.5879456400871277 + }, + { + "id": "https://openalex.org/C2779530757", + "wikidata": "https://www.wikidata.org/wiki/Q1207505", + "display_name": "Quality (philosophy)", + "level": 2, + "score": 0.5633484125137329 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.5597485899925232 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5310136675834656 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.4038145840167999 + }, + { + "id": "https://openalex.org/C56739046", + "wikidata": "https://www.wikidata.org/wiki/Q192060", + "display_name": "Knowledge management", + "level": 1, + "score": 0.35610130429267883 + }, + { + "id": "https://openalex.org/C112930515", + "wikidata": "https://www.wikidata.org/wiki/Q4389547", + "display_name": "Risk analysis (engineering)", + "level": 1, + "score": 0.35108682513237 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.14015191793441772 + }, + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.12852543592453003 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.08962225914001465 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C187736073", + "wikidata": "https://www.wikidata.org/wiki/Q2920921", + "display_name": "Management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C542102704", + "wikidata": "https://www.wikidata.org/wiki/Q183257", + "display_name": "Psychotherapist", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:45fdfd3de6ed423b85a89d6e8d758b60", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/45fdfd3de6ed423b85a89d6e8d758b60", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Electronics, Vol 8, Iss 8, p 832 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:mdpi.com:/2079-9292/8/8/832/", + "is_oa": true, + "landing_page_url": "http://dx.doi.org/10.3390/electronics8080832", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Electronics", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "score": 0.7200000286102295, + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2964303497.pdf", + "grobid_xml": "https://content.openalex.org/works/W2964303497.grobid-xml" + }, + "referenced_works_count": 113, + "referenced_works": [ + "https://openalex.org/W17854248", + "https://openalex.org/W1516436026", + "https://openalex.org/W1537462412", + "https://openalex.org/W1585983533", + "https://openalex.org/W1678356000", + "https://openalex.org/W1821462560", + "https://openalex.org/W1968340857", + "https://openalex.org/W1971996841", + "https://openalex.org/W1977556410", + "https://openalex.org/W2026905436", + "https://openalex.org/W2048231652", + "https://openalex.org/W2063046703", + "https://openalex.org/W2073838543", + "https://openalex.org/W2075585362", + "https://openalex.org/W2084341220", + "https://openalex.org/W2096434649", + "https://openalex.org/W2123045220", + "https://openalex.org/W2125847307", + "https://openalex.org/W2130485404", + "https://openalex.org/W2134584261", + "https://openalex.org/W2134598164", + "https://openalex.org/W2149033360", + "https://openalex.org/W2187089797", + "https://openalex.org/W2194775991", + "https://openalex.org/W2195388612", + "https://openalex.org/W2198766081", + "https://openalex.org/W2232104438", + "https://openalex.org/W2282821441", + "https://openalex.org/W2319794630", + "https://openalex.org/W2367397349", + "https://openalex.org/W2467510144", + "https://openalex.org/W2528204193", + "https://openalex.org/W2551974706", + "https://openalex.org/W2564414379", + "https://openalex.org/W2587529872", + "https://openalex.org/W2594475271", + "https://openalex.org/W2607223307", + "https://openalex.org/W2617799811", + "https://openalex.org/W2618851150", + "https://openalex.org/W2626639386", + "https://openalex.org/W2732547613", + "https://openalex.org/W2744283806", + "https://openalex.org/W2744365997", + "https://openalex.org/W2762409054", + "https://openalex.org/W2762968537", + "https://openalex.org/W2765308317", + "https://openalex.org/W2769421449", + "https://openalex.org/W2769506033", + "https://openalex.org/W2781844902", + "https://openalex.org/W2787752464", + "https://openalex.org/W2788403449", + "https://openalex.org/W2791469229", + "https://openalex.org/W2794596673", + "https://openalex.org/W2795530988", + "https://openalex.org/W2795807997", + "https://openalex.org/W2796215194", + "https://openalex.org/W2796885425", + "https://openalex.org/W2804657206", + "https://openalex.org/W2806259446", + "https://openalex.org/W2807015674", + "https://openalex.org/W2807124908", + "https://openalex.org/W2810487289", + "https://openalex.org/W2886614482", + "https://openalex.org/W2887189984", + "https://openalex.org/W2891503716", + "https://openalex.org/W2894881080", + "https://openalex.org/W2898027682", + "https://openalex.org/W2901939789", + "https://openalex.org/W2902011388", + "https://openalex.org/W2902255491", + "https://openalex.org/W2907871166", + "https://openalex.org/W2917767525", + "https://openalex.org/W2920246635", + "https://openalex.org/W2927351257", + "https://openalex.org/W2947113669", + "https://openalex.org/W2949197630", + "https://openalex.org/W2949706042", + "https://openalex.org/W2950538796", + "https://openalex.org/W2951264787", + "https://openalex.org/W2952467640", + "https://openalex.org/W2962689739", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962858109", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963483561", + "https://openalex.org/W2963660754", + "https://openalex.org/W2963847595", + "https://openalex.org/W2964112969", + "https://openalex.org/W2964244352", + "https://openalex.org/W2965595588", + "https://openalex.org/W2979481854", + "https://openalex.org/W2979997102", + "https://openalex.org/W2982560934", + "https://openalex.org/W3023058184", + "https://openalex.org/W3098278632", + "https://openalex.org/W3104119469", + "https://openalex.org/W3124443940", + "https://openalex.org/W3128452405", + "https://openalex.org/W4206534706", + "https://openalex.org/W4226065182", + "https://openalex.org/W4231827019", + "https://openalex.org/W4298082496", + "https://openalex.org/W4399636541", + "https://openalex.org/W6644682428", + "https://openalex.org/W6728551298", + "https://openalex.org/W6744393810", + "https://openalex.org/W6745730051", + "https://openalex.org/W6749553640", + "https://openalex.org/W6755687963", + "https://openalex.org/W6757984148", + "https://openalex.org/W6790587931", + "https://openalex.org/W6809680140" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W2888392564", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W2963326959", + "https://openalex.org/W4388685194", + "https://openalex.org/W4312407344", + "https://openalex.org/W2894289927" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 96, + 177 + ], + "systems": [ + 2, + 40 + ], + "are": [ + 3, + 52, + 145 + ], + "becoming": [ + 4 + ], + "increasingly": [ + 5 + ], + "ubiquitous.": [ + 6 + ], + "These": [ + 7 + ], + "systems’s": [ + 8 + ], + "adoption": [ + 9 + ], + "has": [ + 10, + 106 + ], + "been": [ + 11 + ], + "expanding,": [ + 12 + ], + "accelerating": [ + 13 + ], + "the": [ + 14, + 55, + 63, + 77, + 85, + 88, + 122, + 127, + 141, + 146, + 152, + 168, + 172, + 182, + 187 + ], + "shift": [ + 15 + ], + "towards": [ + 16 + ], + "a": [ + 17, + 165, + 193 + ], + "more": [ + 18 + ], + "algorithmic": [ + 19 + ], + "society,": [ + 20 + ], + "meaning": [ + 21, + 45 + ], + "that": [ + 22 + ], + "algorithmically": [ + 23 + ], + "informed": [ + 24 + ], + "decisions": [ + 25, + 82 + ], + "have": [ + 26, + 75 + ], + "greater": [ + 27 + ], + "potential": [ + 28 + ], + "for": [ + 29, + 87, + 98 + ], + "significant": [ + 30 + ], + "social": [ + 31 + ], + "impact.": [ + 32 + ], + "However,": [ + 33, + 126 + ], + "most": [ + 34, + 147 + ], + "of": [ + 35, + 81, + 129, + 154, + 159, + 167, + 171, + 205 + ], + "these": [ + 36, + 130 + ], + "accurate": [ + 37 + ], + "decision": [ + 38 + ], + "support": [ + 39 + ], + "remain": [ + 41 + ], + "complex": [ + 42 + ], + "black": [ + 43 + ], + "boxes,": [ + 44 + ], + "their": [ + 46, + 66 + ], + "internal": [ + 47 + ], + "logic": [ + 48 + ], + "and": [ + 49, + 57, + 71, + 79, + 93, + 111, + 118, + 185, + 190 + ], + "inner": [ + 50 + ], + "workings": [ + 51 + ], + "hidden": [ + 53 + ], + "to": [ + 54, + 90, + 139, + 150, + 163, + 201 + ], + "user": [ + 56 + ], + "even": [ + 58 + ], + "experts": [ + 59 + ], + "cannot": [ + 60 + ], + "fully": [ + 61 + ], + "understand": [ + 62 + ], + "rationale": [ + 64 + ], + "behind": [ + 65 + ], + "predictions.": [ + 67 + ], + "Moreover,": [ + 68 + ], + "new": [ + 69 + ], + "regulations": [ + 70 + ], + "highly": [ + 72 + ], + "regulated": [ + 73 + ], + "domains": [ + 74 + ], + "made": [ + 76 + ], + "audit": [ + 78 + ], + "verifiability": [ + 80 + ], + "mandatory,": [ + 83 + ], + "increasing": [ + 84 + ], + "demand": [ + 86 + ], + "ability": [ + 89 + ], + "question,": [ + 91 + ], + "understand,": [ + 92 + ], + "trust": [ + 94 + ], + "machine": [ + 95, + 176 + ], + "systems,": [ + 97 + ], + "which": [ + 99 + ], + "interpretability": [ + 100, + 109, + 178 + ], + "is": [ + 101, + 134, + 162, + 197 + ], + "indispensable.": [ + 102 + ], + "The": [ + 103, + 157 + ], + "research": [ + 104, + 173 + ], + "community": [ + 105 + ], + "recognized": [ + 107 + ], + "this": [ + 108, + 160, + 208 + ], + "problem": [ + 110 + ], + "focused": [ + 112 + ], + "on": [ + 113, + 137, + 175, + 181, + 186, + 207 + ], + "developing": [ + 114 + ], + "both": [ + 115 + ], + "interpretable": [ + 116 + ], + "models": [ + 117 + ], + "explanation": [ + 119, + 142 + ], + "methods": [ + 120, + 131, + 189 + ], + "over": [ + 121 + ], + "past": [ + 123 + ], + "few": [ + 124 + ], + "years.": [ + 125 + ], + "emergence": [ + 128 + ], + "shows": [ + 132 + ], + "there": [ + 133 + ], + "no": [ + 135 + ], + "consensus": [ + 136 + ], + "how": [ + 138 + ], + "assess": [ + 140, + 151 + ], + "quality.": [ + 143 + ], + "Which": [ + 144 + ], + "suitable": [ + 148 + ], + "metrics": [ + 149 + ], + "quality": [ + 153 + ], + "an": [ + 155 + ], + "explanation?": [ + 156 + ], + "aim": [ + 158 + ], + "article": [ + 161 + ], + "provide": [ + 164 + ], + "review": [ + 166, + 196 + ], + "current": [ + 169 + ], + "state": [ + 170 + ], + "field": [ + 174 + ], + "while": [ + 179 + ], + "focusing": [ + 180 + ], + "societal": [ + 183 + ], + "impact": [ + 184 + ], + "developed": [ + 188 + ], + "metrics.": [ + 191 + ], + "Furthermore,": [ + 192 + ], + "complete": [ + 194 + ], + "literature": [ + 195 + ], + "presented": [ + 198 + ], + "in": [ + 199 + ], + "order": [ + 200 + ], + "identify": [ + 202 + ], + "future": [ + 203 + ], + "directions": [ + 204 + ], + "work": [ + 206 + ], + "field.": [ + 209 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 102 + }, + { + "year": 2025, + "cited_by_count": 348 + }, + { + "year": 2024, + "cited_by_count": 347 + }, + { + "year": 2023, + "cited_by_count": 324 + }, + { + "year": 2022, + "cited_by_count": 294 + }, + { + "year": 2021, + "cited_by_count": 226 + }, + { + "year": 2020, + "cited_by_count": 97 + }, + { + "year": 2019, + "cited_by_count": 4 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1563088657", + "doi": "https://doi.org/10.1017/cbo9780511801389", + "title": "An Introduction to Support Vector Machines and Other Kernel-based Learning Methods", + "display_name": "An Introduction to Support Vector Machines and Other Kernel-based Learning Methods", + "relevance_score": 2829.632, + "publication_year": 2000, + "publication_date": "2000-03-23", + "ids": { + "openalex": "https://openalex.org/W1563088657", + "doi": "https://doi.org/10.1017/cbo9780511801389", + "mag": "1563088657" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9780511801389", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511801389", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5083307694", + "display_name": "Nello Cristianini", + "orcid": "https://orcid.org/0000-0001-7740-0449" + }, + "institutions": [ + { + "id": "https://openalex.org/I36234482", + "display_name": "University of Bristol", + "ror": "https://ror.org/0524sp257", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I36234482" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Nello Cristianini", + "raw_affiliation_strings": [ + "University of Bristol" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Bristol", + "institution_ids": [ + "https://openalex.org/I36234482" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5047980012", + "display_name": "John Shawe‐Taylor", + "orcid": "https://orcid.org/0000-0002-2030-0073" + }, + "institutions": [ + { + "id": "https://openalex.org/I184558857", + "display_name": "Royal Holloway University of London", + "ror": "https://ror.org/04g2vpn86", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I124357947", + "https://openalex.org/I184558857" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "John Shawe-Taylor", + "raw_affiliation_strings": [ + "Royal Holloway, University of London", + "†Royal Holloway, University of London" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Royal Holloway, University of London", + "institution_ids": [ + "https://openalex.org/I184558857" + ] + }, + { + "raw_affiliation_string": "†Royal Holloway, University of London", + "institution_ids": [ + "https://openalex.org/I184558857" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5083307694" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I36234482" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 129.5763, + "has_fulltext": false, + "cited_by_count": 13869, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.5723999738693237, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.5723999738693237, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.5425999760627747, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.4860999882221222, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7553318738937378 + }, + { + "id": "https://openalex.org/keywords/grasp", + "display_name": "GRASP", + "score": 0.6769353151321411 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6746301651000977 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.6089456677436829 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5675321817398071 + }, + { + "id": "https://openalex.org/keywords/statistical-learning-theory", + "display_name": "Statistical learning theory", + "score": 0.5189080834388733 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5127816796302795 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5107676982879639 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.45903491973876953 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.4535565972328186 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3457496166229248 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.2609504163265228 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.09729310870170593 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7553318738937378 + }, + { + "id": "https://openalex.org/C171268870", + "wikidata": "https://www.wikidata.org/wiki/Q1486676", + "display_name": "GRASP", + "level": 2, + "score": 0.6769353151321411 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6746301651000977 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.6089456677436829 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5675321817398071 + }, + { + "id": "https://openalex.org/C2779915298", + "wikidata": "https://www.wikidata.org/wiki/Q7604400", + "display_name": "Statistical learning theory", + "level": 3, + "score": 0.5189080834388733 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5127816796302795 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5107676982879639 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.45903491973876953 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.4535565972328186 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3457496166229248 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.2609504163265228 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.09729310870170593 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C114614502", + "wikidata": "https://www.wikidata.org/wiki/Q76592", + "display_name": "Combinatorics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 11, + "locations": [ + { + "id": "doi:10.1017/cbo9780511801389", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511801389", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-008832996", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-014827826", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=014827826&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-018922583", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=018922583&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-019935426", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=019935426&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028388686", + "is_oa": false, + "landing_page_url": "http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=510940", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-029352050", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/CBO9780511801389", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:bibliotecavirtualdefensa.es:671734", + "is_oa": false, + "landing_page_url": "https://bibliotecavirtual.defensa.gob.es/BVMDefensa/es/consulta/registro.do?id=671734", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196928", + "display_name": "Virtual Defense Library (Ministerio de Defensa)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210162908", + "host_organization_name": "Ministerio de Defensa", + "host_organization_lineage": [ + "https://openalex.org/I4210162908" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Libros" + }, + { + "id": "pmh:oai:cds.cern.ch:735638", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/735638", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:eprints.ucl.ac.uk.OAI2:1377602", + "is_oa": false, + "landing_page_url": "http://discovery.ucl.ac.uk/1377602/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400024", + "display_name": "UCL Discovery (University College London)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I45129253", + "host_organization_name": "University College London", + "host_organization_lineage": [ + "https://openalex.org/I45129253" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": " Cambridge University Press (2010) ", + "raw_type": "Book" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:51488", + "is_oa": false, + "landing_page_url": "http://infoscience.epfl.ch/record/51488", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400488", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "score": 0.7699999809265137, + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2369526193", + "https://openalex.org/W2394142199", + "https://openalex.org/W2382810153", + "https://openalex.org/W3013091747", + "https://openalex.org/W2389264710", + "https://openalex.org/W2186819599", + "https://openalex.org/W2367955905", + "https://openalex.org/W2385435757", + "https://openalex.org/W2371052470", + "https://openalex.org/W2535735882" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "is": [ + 1, + 100 + ], + "the": [ + 2, + 49, + 61, + 74, + 82, + 98, + 125 + ], + "first": [ + 3 + ], + "comprehensive": [ + 4 + ], + "introduction": [ + 5 + ], + "to": [ + 6, + 105, + 135 + ], + "Support": [ + 7 + ], + "Vector": [ + 8 + ], + "Machines": [ + 9 + ], + "(SVMs),": [ + 10 + ], + "a": [ + 11, + 78 + ], + "generation": [ + 12 + ], + "learning": [ + 13, + 21, + 54 + ], + "system": [ + 14 + ], + "based": [ + 15 + ], + "on": [ + 16 + ], + "recent": [ + 17 + ], + "advances": [ + 18 + ], + "in": [ + 19, + 27, + 92 + ], + "statistical": [ + 20 + ], + "theory.": [ + 22 + ], + "SVMs": [ + 23 + ], + "deliver": [ + 24 + ], + "state-of-the-art": [ + 25 + ], + "performance": [ + 26 + ], + "real-world": [ + 28 + ], + "applications": [ + 29 + ], + "such": [ + 30 + ], + "as": [ + 31, + 46 + ], + "text": [ + 32 + ], + "categorisation,": [ + 33 + ], + "hand-written": [ + 34 + ], + "character": [ + 35 + ], + "recognition,": [ + 36 + ], + "image": [ + 37 + ], + "classification,": [ + 38 + ], + "biosequences": [ + 39 + ], + "analysis,": [ + 40 + ], + "etc.,": [ + 41 + ], + "and": [ + 42, + 55, + 65, + 84, + 94, + 102, + 108, + 127, + 140 + ], + "are": [ + 43, + 89 + ], + "now": [ + 44 + ], + "established": [ + 45 + ], + "one": [ + 47 + ], + "of": [ + 48, + 81 + ], + "standard": [ + 50 + ], + "tools": [ + 51 + ], + "for": [ + 52, + 77, + 121 + ], + "machine": [ + 53 + ], + "data": [ + 56 + ], + "mining.": [ + 57 + ], + "Students": [ + 58 + ], + "will": [ + 59, + 69, + 132 + ], + "find": [ + 60 + ], + "book": [ + 62, + 126 + ], + "both": [ + 63 + ], + "stimulating": [ + 64 + ], + "accessible,": [ + 66 + ], + "while": [ + 67, + 97 + ], + "practitioners": [ + 68, + 134 + ], + "be": [ + 70 + ], + "guided": [ + 71 + ], + "smoothly": [ + 72 + ], + "through": [ + 73 + ], + "material": [ + 75 + ], + "required": [ + 76 + ], + "good": [ + 79 + ], + "grasp": [ + 80 + ], + "theory": [ + 83 + ], + "its": [ + 85, + 128 + ], + "applications.": [ + 86 + ], + "The": [ + 87 + ], + "concepts": [ + 88 + ], + "introduced": [ + 90 + ], + "gradually": [ + 91 + ], + "accessible": [ + 93 + ], + "self-contained": [ + 95 + ], + "stages,": [ + 96 + ], + "presentation": [ + 99 + ], + "rigorous": [ + 101 + ], + "thorough.": [ + 103 + ], + "Pointers": [ + 104 + ], + "relevant": [ + 106 + ], + "literature": [ + 107 + ], + "web": [ + 109, + 130 + ], + "sites": [ + 110 + ], + "containing": [ + 111 + ], + "software": [ + 112 + ], + "ensure": [ + 113 + ], + "that": [ + 114 + ], + "it": [ + 115 + ], + "forms": [ + 116 + ], + "an": [ + 117 + ], + "ideal": [ + 118 + ], + "starting": [ + 119 + ], + "point": [ + 120 + ], + "further": [ + 122 + ], + "study.": [ + 123 + ], + "Equally,": [ + 124 + ], + "associated": [ + 129 + ], + "site": [ + 131 + ], + "guide": [ + 133 + ], + "updated": [ + 136 + ], + "literature,": [ + 137 + ], + "new": [ + 138 + ], + "applications,": [ + 139 + ], + "on-line": [ + 141 + ], + "software.": [ + 142 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 73 + }, + { + "year": 2025, + "cited_by_count": 254 + }, + { + "year": 2024, + "cited_by_count": 299 + }, + { + "year": 2023, + "cited_by_count": 361 + }, + { + "year": 2022, + "cited_by_count": 432 + }, + { + "year": 2021, + "cited_by_count": 589 + }, + { + "year": 2020, + "cited_by_count": 597 + }, + { + "year": 2019, + "cited_by_count": 618 + }, + { + "year": 2018, + "cited_by_count": 618 + }, + { + "year": 2017, + "cited_by_count": 622 + }, + { + "year": 2016, + "cited_by_count": 654 + }, + { + "year": 2015, + "cited_by_count": 750 + }, + { + "year": 2014, + "cited_by_count": 767 + }, + { + "year": 2013, + "cited_by_count": 738 + }, + { + "year": 2012, + "cited_by_count": 765 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2798701005", + "doi": "https://doi.org/10.1126/science.aat8084", + "title": "All-optical machine learning using diffractive deep neural networks", + "display_name": "All-optical machine learning using diffractive deep neural networks", + "relevance_score": 2813.5137, + "publication_year": 2018, + "publication_date": "2018-07-26", + "ids": { + "openalex": "https://openalex.org/W2798701005", + "doi": "https://doi.org/10.1126/science.aat8084", + "mag": "2798701005", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30049787" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1126/science.aat8084", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aat8084", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1804.08711", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Xing Lin", + "orcid": "https://orcid.org/0000-0002-5560-7286" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xing Lin", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-5560-7286", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5058629781", + "display_name": "Yair Rivenson", + "orcid": "https://orcid.org/0000-0003-1132-0715" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yair Rivenson", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043009217", + "display_name": "Nezih Tolga Yardimci", + "orcid": "https://orcid.org/0000-0002-3623-5835" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Nezih T. Yardimci", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-3623-5835", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107809600", + "display_name": "Muhammed Veli", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Muhammed Veli", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069743536", + "display_name": "Yi Luo", + "orcid": "https://orcid.org/0000-0001-9442-547X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yi Luo", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003547576", + "display_name": "Mona Jarrahi", + "orcid": "https://orcid.org/0000-0001-9514-555X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mona Jarrahi", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016207990", + "display_name": "Aydogan Özcan", + "orcid": "https://orcid.org/0000-0002-0717-683X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Aydogan Ozcan", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "Department of Surgery, David Geffen School of Medicine, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0717-683X", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, David Geffen School of Medicine, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5016207990" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 92.9115, + "has_fulltext": false, + "cited_by_count": 2399, + "citation_normalized_percentile": { + "value": 0.99953229, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "361", + "issue": "6406", + "first_page": "1004", + "last_page": "1008" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12611", + "display_name": "Neural Networks and Reservoir Computing", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12611", + "display_name": "Neural Networks and Reservoir Computing", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10299", + "display_name": "Photonic and Optical Devices", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10232", + "display_name": "Optical Network Technologies", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7860591411590576 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.7775610685348511 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6655349731445312 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5838559865951538 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.48495984077453613 + }, + { + "id": "https://openalex.org/keywords/lithography", + "display_name": "Lithography", + "score": 0.41517090797424316 + }, + { + "id": "https://openalex.org/keywords/deep-neural-networks", + "display_name": "Deep neural networks", + "score": 0.4102061092853546 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.3880327045917511 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.3523845970630646 + }, + { + "id": "https://openalex.org/keywords/computer-vision", + "display_name": "Computer vision", + "score": 0.330812931060791 + }, + { + "id": "https://openalex.org/keywords/materials-science", + "display_name": "Materials science", + "score": 0.10253027081489563 + }, + { + "id": "https://openalex.org/keywords/optoelectronics", + "display_name": "Optoelectronics", + "score": 0.09713014960289001 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7860591411590576 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.7775610685348511 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6655349731445312 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5838559865951538 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.48495984077453613 + }, + { + "id": "https://openalex.org/C204223013", + "wikidata": "https://www.wikidata.org/wiki/Q133036", + "display_name": "Lithography", + "level": 2, + "score": 0.41517090797424316 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.4102061092853546 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.3880327045917511 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.3523845970630646 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.330812931060791 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.10253027081489563 + }, + { + "id": "https://openalex.org/C49040817", + "wikidata": "https://www.wikidata.org/wiki/Q193091", + "display_name": "Optoelectronics", + "level": 1, + "score": 0.09713014960289001 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1126/science.aat8084", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aat8084", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:30049787", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30049787", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science (New York, N.Y.)", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1804.08711", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1804.08711", + "pdf_url": "https://arxiv.org/pdf/1804.08711", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1804.08711", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1804.08711", + "pdf_url": "https://arxiv.org/pdf/1804.08711", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320306082", + "display_name": "Howard Hughes Medical Institute", + "ror": "https://ror.org/006w34k90" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 48, + "referenced_works": [ + "https://openalex.org/W1569530544", + "https://openalex.org/W1965702053", + "https://openalex.org/W1983348509", + "https://openalex.org/W1988583365", + "https://openalex.org/W1992642990", + "https://openalex.org/W1999001021", + "https://openalex.org/W2027029957", + "https://openalex.org/W2028891317", + "https://openalex.org/W2029316659", + "https://openalex.org/W2031557272", + "https://openalex.org/W2049431120", + "https://openalex.org/W2082093743", + "https://openalex.org/W2087322350", + "https://openalex.org/W2092056230", + "https://openalex.org/W2095705004", + "https://openalex.org/W2112796928", + "https://openalex.org/W2124188012", + "https://openalex.org/W2126442445", + "https://openalex.org/W2133665775", + "https://openalex.org/W2141125852", + "https://openalex.org/W2143612262", + "https://openalex.org/W2152537098", + "https://openalex.org/W2157331557", + "https://openalex.org/W2172174689", + "https://openalex.org/W2249493152", + "https://openalex.org/W2257979135", + "https://openalex.org/W2405496089", + "https://openalex.org/W2415475836", + "https://openalex.org/W2574952845", + "https://openalex.org/W2592929672", + "https://openalex.org/W2593966629", + "https://openalex.org/W2604272474", + "https://openalex.org/W2604388535", + "https://openalex.org/W2612688942", + "https://openalex.org/W2614949728", + "https://openalex.org/W2625634735", + "https://openalex.org/W2752849906", + "https://openalex.org/W2754141582", + "https://openalex.org/W2774993480", + "https://openalex.org/W2786808700", + "https://openalex.org/W2919115771", + "https://openalex.org/W3100115611", + "https://openalex.org/W3100420029", + "https://openalex.org/W3106459670", + "https://openalex.org/W3149029883", + "https://openalex.org/W4211228099", + "https://openalex.org/W4236965008", + "https://openalex.org/W4246799416" + ], + "related_works": [ + "https://openalex.org/W4375867731", + "https://openalex.org/W2611989081", + "https://openalex.org/W2731899572", + "https://openalex.org/W4377865163", + "https://openalex.org/W3193857078", + "https://openalex.org/W2888956734", + "https://openalex.org/W3000197790", + "https://openalex.org/W4315865067", + "https://openalex.org/W2979433843", + "https://openalex.org/W3208304128" + ], + "abstract_inverted_index": { + "All-optical": [ + 0 + ], + "deep": [ + 1 + ], + "learning": [ + 2, + 4, + 42 + ], + "Deep": [ + 3 + ], + "uses": [ + 5, + 44 + ], + "multilayered": [ + 6, + 27 + ], + "artificial": [ + 7, + 69 + ], + "neural": [ + 8, + 28, + 70 + ], + "networks": [ + 9, + 29 + ], + "to": [ + 10, + 67, + 76 + ], + "learn": [ + 11 + ], + "digitally": [ + 12 + ], + "from": [ + 13 + ], + "large": [ + 14 + ], + "datasets.": [ + 15 + ], + "It": [ + 16 + ], + "then": [ + 17 + ], + "performs": [ + 18 + ], + "advanced": [ + 19 + ], + "identification": [ + 20 + ], + "and": [ + 21, + 52 + ], + "classification": [ + 22 + ], + "tasks.": [ + 23 + ], + "To": [ + 24 + ], + "date,": [ + 25 + ], + "these": [ + 26 + ], + "have": [ + 30 + ], + "been": [ + 31 + ], + "implemented": [ + 32 + ], + "on": [ + 33 + ], + "a": [ + 34 + ], + "computer.": [ + 35 + ], + "Lin": [ + 36 + ], + "et": [ + 37 + ], + "al.": [ + 38 + ], + "demonstrate": [ + 39 + ], + "all-optical": [ + 40 + ], + "machine": [ + 41 + ], + "that": [ + 43, + 48, + 72 + ], + "passive": [ + 45 + ], + "optical": [ + 46, + 64 + ], + "components": [ + 47 + ], + "can": [ + 49, + 73 + ], + "be": [ + 50, + 74 + ], + "patterned": [ + 51 + ], + "fabricated": [ + 53 + ], + "with": [ + 54 + ], + "3D-printing.": [ + 55 + ], + "Their": [ + 56 + ], + "hardware": [ + 57 + ], + "approach": [ + 58 + ], + "comprises": [ + 59 + ], + "stacked": [ + 60 + ], + "layers": [ + 61 + ], + "of": [ + 62, + 83 + ], + "diffractive": [ + 63 + ], + "elements": [ + 65 + ], + "analogous": [ + 66 + ], + "an": [ + 68 + ], + "network": [ + 71 + ], + "trained": [ + 75 + ], + "execute": [ + 77 + ], + "complex": [ + 78 + ], + "functions": [ + 79 + ], + "at": [ + 80 + ], + "the": [ + 81 + ], + "speed": [ + 82 + ], + "light.": [ + 84 + ], + "Science": [ + 85 + ], + ",": [ + 86 + ], + "this": [ + 87 + ], + "issue": [ + 88 + ], + "p.": [ + 89 + ], + "1004": [ + 90 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 177 + }, + { + "year": 2025, + "cited_by_count": 519 + }, + { + "year": 2024, + "cited_by_count": 459 + }, + { + "year": 2023, + "cited_by_count": 367 + }, + { + "year": 2022, + "cited_by_count": 328 + }, + { + "year": 2021, + "cited_by_count": 253 + }, + { + "year": 2020, + "cited_by_count": 164 + }, + { + "year": 2019, + "cited_by_count": 113 + }, + { + "year": 2018, + "cited_by_count": 19 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2601810315", + "doi": "https://doi.org/10.1093/bioinformatics/btx180", + "title": "Trainable Weka Segmentation: a machine learning tool for microscopy pixel classification", + "display_name": "Trainable Weka Segmentation: a machine learning tool for microscopy pixel classification", + "relevance_score": 2796.275, + "publication_year": 2017, + "publication_date": "2017-03-28", + "ids": { + "openalex": "https://openalex.org/W2601810315", + "doi": "https://doi.org/10.1093/bioinformatics/btx180", + "mag": "2601810315", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28369169" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1093/bioinformatics/btx180", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1093/bioinformatics/btx180", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S52395412", + "display_name": "Bioinformatics", + "issn_l": "1367-4803", + "issn": [ + "1367-4803", + "1367-4811" + ], + "is_oa": false, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021284069", + "display_name": "Ignacio Arganda‐Carreras", + "orcid": "https://orcid.org/0000-0003-0229-5722" + }, + "institutions": [ + { + "id": "https://openalex.org/I110594554", + "display_name": "Ikerbasque", + "ror": "https://ror.org/01cc3fy72", + "country_code": "ES", + "type": "other", + "lineage": [ + "https://openalex.org/I110594554" + ] + }, + { + "id": "https://openalex.org/I169108374", + "display_name": "University of the Basque Country", + "ror": "https://ror.org/000xsnr85", + "country_code": "ES", + "type": "education", + "lineage": [ + "https://openalex.org/I169108374" + ] + }, + { + "id": "https://openalex.org/I47686490", + "display_name": "Donostia International Physics Center", + "ror": "https://ror.org/02e24yw40", + "country_code": "ES", + "type": "other", + "lineage": [ + "https://openalex.org/I47686490" + ] + } + ], + "countries": [ + "ES" + ], + "is_corresponding": true, + "raw_author_name": "Ignacio Arganda-Carreras", + "raw_affiliation_strings": [ + "Computer Science and Artificial Intelligence Department, Basque Country University, San Sebastian, Spain", + "Donostia International Physics Center, San Sebastian, Spain", + "Ikerbasque, Basque Foundation for Science, Bilbao, Spain" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Computer Science and Artificial Intelligence Department, Basque Country University, San Sebastian, Spain", + "institution_ids": [ + "https://openalex.org/I169108374" + ] + }, + { + "raw_affiliation_string": "Donostia International Physics Center, San Sebastian, Spain", + "institution_ids": [ + "https://openalex.org/I47686490" + ] + }, + { + "raw_affiliation_string": "Ikerbasque, Basque Foundation for Science, Bilbao, Spain", + "institution_ids": [ + "https://openalex.org/I110594554" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055757900", + "display_name": "Verena Kaynig", + "orcid": "https://orcid.org/0000-0002-3520-0577" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Verena Kaynig", + "raw_affiliation_strings": [ + "Harvard John A. Paulson School of Engineering and Applied Sciences, Harvard University, Cambridge, MA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Harvard John A. Paulson School of Engineering and Applied Sciences, Harvard University, Cambridge, MA, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078540488", + "display_name": "Curtis Rueden", + "orcid": "https://orcid.org/0000-0001-7055-6707" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Curtis Rueden", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5010413374", + "display_name": "Kevin W. Eliceiri", + "orcid": "https://orcid.org/0000-0001-8678-670X" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kevin W Eliceiri", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050085853", + "display_name": "Johannes Schindelin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Johannes Schindelin", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5042603640", + "display_name": "Albert Cardona", + "orcid": "https://orcid.org/0000-0003-4941-6536" + }, + "institutions": [ + { + "id": "https://openalex.org/I1344073410", + "display_name": "Howard Hughes Medical Institute", + "ror": "https://ror.org/006w34k90", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1344073410" + ] + }, + { + "id": "https://openalex.org/I195573530", + "display_name": "Janelia Research Campus", + "ror": "https://ror.org/013sk6x84", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1344073410", + "https://openalex.org/I195573530" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Albert Cardona", + "raw_affiliation_strings": [ + "Howard Hughes Medical Institute, Janelia Research Campus, Ashburn, VA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Howard Hughes Medical Institute, Janelia Research Campus, Ashburn, VA, USA", + "institution_ids": [ + "https://openalex.org/I195573530", + "https://openalex.org/I1344073410" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5044273339", + "display_name": "H. Sebastian Seung", + "orcid": "https://orcid.org/0000-0002-8591-6733" + }, + "institutions": [ + { + "id": "https://openalex.org/I20089843", + "display_name": "Princeton University", + "ror": "https://ror.org/00hx57361", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I20089843" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "H Sebastian Seung", + "raw_affiliation_strings": [ + "Neuroscience Institute and Computer Science Department, Princeton University, NJ, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Neuroscience Institute and Computer Science Department, Princeton University, NJ, USA", + "institution_ids": [ + "https://openalex.org/I20089843" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5021284069" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I110594554", + "https://openalex.org/I169108374", + "https://openalex.org/I47686490" + ], + "apc_list": { + "value": 3618, + "currency": "USD", + "value_usd": 3618 + }, + "apc_paid": null, + "fwci": 95.3558, + "has_fulltext": false, + "cited_by_count": 2460, + "citation_normalized_percentile": { + "value": 0.99909297, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "33", + "issue": "15", + "first_page": "2424", + "last_page": "2426" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10857", + "display_name": "Advanced Electron Microscopy Techniques and Applications", + "score": 0.6383000016212463, + "subfield": { + "id": "https://openalex.org/subfields/1315", + "display_name": "Structural Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10857", + "display_name": "Advanced Electron Microscopy Techniques and Applications", + "score": 0.6383000016212463, + "subfield": { + "id": "https://openalex.org/subfields/1315", + "display_name": "Structural Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12859", + "display_name": "Cell Image Analysis Techniques", + "score": 0.22310000658035278, + "subfield": { + "id": "https://openalex.org/subfields/1304", + "display_name": "Biophysics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T13937", + "display_name": "Genetics, Bioinformatics, and Biomedical Research", + "score": 0.02419999986886978, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8189126253128052 + }, + { + "id": "https://openalex.org/keywords/segmentation", + "display_name": "Segmentation", + "score": 0.7295361757278442 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.678537905216217 + }, + { + "id": "https://openalex.org/keywords/pipeline", + "display_name": "Pipeline (software)", + "score": 0.6693797707557678 + }, + { + "id": "https://openalex.org/keywords/bottleneck", + "display_name": "Bottleneck", + "score": 0.6350745558738708 + }, + { + "id": "https://openalex.org/keywords/cluster-analysis", + "display_name": "Cluster analysis", + "score": 0.6211010813713074 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.51936274766922 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.5177275538444519 + }, + { + "id": "https://openalex.org/keywords/pixel", + "display_name": "Pixel", + "score": 0.5061234831809998 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.48226505517959595 + }, + { + "id": "https://openalex.org/keywords/image-segmentation", + "display_name": "Image segmentation", + "score": 0.480505108833313 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.4530463218688965 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3784646987915039 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3474346399307251 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8189126253128052 + }, + { + "id": "https://openalex.org/C89600930", + "wikidata": "https://www.wikidata.org/wiki/Q1423946", + "display_name": "Segmentation", + "level": 2, + "score": 0.7295361757278442 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.678537905216217 + }, + { + "id": "https://openalex.org/C43521106", + "wikidata": "https://www.wikidata.org/wiki/Q2165493", + "display_name": "Pipeline (software)", + "level": 2, + "score": 0.6693797707557678 + }, + { + "id": "https://openalex.org/C2780513914", + "wikidata": "https://www.wikidata.org/wiki/Q18210350", + "display_name": "Bottleneck", + "level": 2, + "score": 0.6350745558738708 + }, + { + "id": "https://openalex.org/C73555534", + "wikidata": "https://www.wikidata.org/wiki/Q622825", + "display_name": "Cluster analysis", + "level": 2, + "score": 0.6211010813713074 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.51936274766922 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.5177275538444519 + }, + { + "id": "https://openalex.org/C160633673", + "wikidata": "https://www.wikidata.org/wiki/Q355198", + "display_name": "Pixel", + "level": 2, + "score": 0.5061234831809998 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.48226505517959595 + }, + { + "id": "https://openalex.org/C124504099", + "wikidata": "https://www.wikidata.org/wiki/Q56933", + "display_name": "Image segmentation", + "level": 3, + "score": 0.480505108833313 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.4530463218688965 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3784646987915039 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3474346399307251 + }, + { + "id": "https://openalex.org/C149635348", + "wikidata": "https://www.wikidata.org/wiki/Q193040", + "display_name": "Embedded system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1093/bioinformatics/btx180", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1093/bioinformatics/btx180", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S52395412", + "display_name": "Bioinformatics", + "issn_l": "1367-4803", + "issn": [ + "1367-4803", + "1367-4811" + ], + "is_oa": false, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics", + "raw_type": "journal-article" + }, + { + "id": "pmid:28369169", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28369169", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics (Oxford, England)", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W2121469024", + "https://openalex.org/W2133990480", + "https://openalex.org/W2167279371", + "https://openalex.org/W2234666690", + "https://openalex.org/W2468870810", + "https://openalex.org/W2483966273" + ], + "related_works": [ + "https://openalex.org/W2595172197", + "https://openalex.org/W2084856301", + "https://openalex.org/W2127970246", + "https://openalex.org/W2885125400", + "https://openalex.org/W1989889224", + "https://openalex.org/W4382618745", + "https://openalex.org/W1973775000", + "https://openalex.org/W2748922771", + "https://openalex.org/W1987128138", + "https://openalex.org/W2743976221" + ], + "abstract_inverted_index": { + "SUMMARY:": [ + 0 + ], + "State-of-the-art": [ + 1 + ], + "light": [ + 2 + ], + "and": [ + 3, + 29, + 68, + 84 + ], + "electron": [ + 4 + ], + "microscopes": [ + 5 + ], + "are": [ + 6, + 123 + ], + "capable": [ + 7 + ], + "of": [ + 8, + 23, + 59, + 106, + 112 + ], + "acquiring": [ + 9 + ], + "large": [ + 10 + ], + "image": [ + 11, + 91, + 109 + ], + "datasets,": [ + 12 + ], + "but": [ + 13 + ], + "quantitatively": [ + 14 + ], + "evaluating": [ + 15 + ], + "the": [ + 16, + 35, + 45, + 70, + 107 + ], + "data": [ + 17, + 72, + 122 + ], + "often": [ + 18, + 30 + ], + "involves": [ + 19 + ], + "manually": [ + 20 + ], + "annotating": [ + 21 + ], + "structures": [ + 22 + ], + "interest.": [ + 24 + ], + "This": [ + 25 + ], + "process": [ + 26 + ], + "is": [ + 27, + 99 + ], + "time-consuming": [ + 28 + ], + "a": [ + 31, + 50, + 56, + 66 + ], + "major": [ + 32 + ], + "bottleneck": [ + 33 + ], + "in": [ + 34, + 62 + ], + "evaluation": [ + 36 + ], + "pipeline.": [ + 37 + ], + "To": [ + 38 + ], + "overcome": [ + 39 + ], + "this": [ + 40 + ], + "problem,": [ + 41 + ], + "we": [ + 42 + ], + "have": [ + 43 + ], + "introduced": [ + 44 + ], + "Trainable": [ + 46 + ], + "Weka": [ + 47 + ], + "Segmentation": [ + 48 + ], + "(TWS),": [ + 49 + ], + "machine": [ + 51 + ], + "learning": [ + 52, + 81 + ], + "tool": [ + 53 + ], + "that": [ + 54 + ], + "leverages": [ + 55 + ], + "limited": [ + 57 + ], + "number": [ + 58 + ], + "manual": [ + 60 + ], + "annotations": [ + 61 + ], + "order": [ + 63 + ], + "to": [ + 64, + 88 + ], + "train": [ + 65 + ], + "classifier": [ + 67 + ], + "segment": [ + 69 + ], + "remaining": [ + 71 + ], + "automatically.": [ + 73 + ], + "In": [ + 74 + ], + "addition,": [ + 75 + ], + "TWS": [ + 76, + 98 + ], + "can": [ + 77, + 85 + ], + "provide": [ + 78 + ], + "unsupervised": [ + 79 + ], + "segmentation": [ + 80 + ], + "schemes": [ + 82 + ], + "(clustering)": [ + 83 + ], + "be": [ + 86 + ], + "customized": [ + 87 + ], + "employ": [ + 89 + ], + "user-designed": [ + 90 + ], + "features": [ + 92 + ], + "or": [ + 93 + ], + "classifiers.": [ + 94 + ], + "AVAILABILITY": [ + 95 + ], + "AND": [ + 96 + ], + "IMPLEMENTATION:": [ + 97 + ], + "distributed": [ + 100 + ], + "as": [ + 101, + 104 + ], + "open-source": [ + 102 + ], + "software": [ + 103 + ], + "part": [ + 105 + ], + "Fiji": [ + 108 + ], + "processing": [ + 110 + ], + "distribution": [ + 111 + ], + "ImageJ": [ + 113 + ], + "at": [ + 114, + 125 + ], + "http://imagej.net/Trainable_Weka_Segmentation": [ + 115 + ], + ".": [ + 116 + ], + "CONTACT:": [ + 117 + ], + "ignacio.arganda@ehu.eus.": [ + 118 + ], + "SUPPLEMENTARY": [ + 119 + ], + "INFORMATION:": [ + 120 + ], + "Supplementary": [ + 121 + ], + "available": [ + 124 + ], + "Bioinformatics": [ + 126 + ], + "online.": [ + 127 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 133 + }, + { + "year": 2025, + "cited_by_count": 361 + }, + { + "year": 2024, + "cited_by_count": 372 + }, + { + "year": 2023, + "cited_by_count": 329 + }, + { + "year": 2022, + "cited_by_count": 363 + }, + { + "year": 2021, + "cited_by_count": 343 + }, + { + "year": 2020, + "cited_by_count": 238 + }, + { + "year": 2019, + "cited_by_count": 175 + }, + { + "year": 2018, + "cited_by_count": 106 + }, + { + "year": 2017, + "cited_by_count": 34 + }, + { + "year": 2016, + "cited_by_count": 3 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1994005439", + "doi": "https://doi.org/10.1142/s0129065704001899", + "title": "GAUSSIAN PROCESSES FOR MACHINE LEARNING", + "display_name": "GAUSSIAN PROCESSES FOR MACHINE LEARNING", + "relevance_score": 2793.3652, + "publication_year": 2004, + "publication_date": "2004-04-01", + "ids": { + "openalex": "https://openalex.org/W1994005439", + "doi": "https://doi.org/10.1142/s0129065704001899", + "mag": "1994005439", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/15112367" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1142/s0129065704001899", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/s0129065704001899", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S197665576", + "display_name": "International Journal of Neural Systems", + "issn_l": "0129-0657", + "issn": [ + "0129-0657", + "1793-6462" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Neural Systems", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "http://infoscience.epfl.ch/record/161301", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110779848", + "display_name": "Matthias Seeger", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + }, + { + "id": "https://openalex.org/I98677209", + "display_name": "University of Edinburgh", + "ror": "https://ror.org/01nrxwf90", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I98677209" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "MATTHIAS SEEGER", + "raw_affiliation_strings": [ + "Department of EECS, University of California at Berkeley, 485 Soda Hall, Berkeley CA 94720-1776, USA", + "Previously at: Institute for Adaptive and Neural Computation,\r\nUniversity of Edinburgh, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of EECS, University of California at Berkeley, 485 Soda Hall, Berkeley CA 94720-1776, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Previously at: Institute for Adaptive and Neural Computation,\r\nUniversity of Edinburgh, UK", + "institution_ids": [ + "https://openalex.org/I98677209" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110779848" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486", + "https://openalex.org/I98677209" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 23.1235, + "has_fulltext": false, + "cited_by_count": 1401, + "citation_normalized_percentile": { + "value": 0.99493809, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "14", + "issue": "02", + "first_page": "69", + "last_page": "106" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10848", + "display_name": "Advanced Multi-Objective Optimization Algorithms", + "score": 0.9833999872207642, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9825999736785889, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7189816236495972 + }, + { + "id": "https://openalex.org/keywords/gaussian-process", + "display_name": "Gaussian process", + "score": 0.6900824308395386 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6533682346343994 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5732190608978271 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4565224051475525 + }, + { + "id": "https://openalex.org/keywords/smoothing", + "display_name": "Smoothing", + "score": 0.4471099376678467 + }, + { + "id": "https://openalex.org/keywords/gaussian", + "display_name": "Gaussian", + "score": 0.4403120279312134 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.43361324071884155 + }, + { + "id": "https://openalex.org/keywords/kriging", + "display_name": "Kriging", + "score": 0.4239123463630676 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.41445812582969666 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7189816236495972 + }, + { + "id": "https://openalex.org/C61326573", + "wikidata": "https://www.wikidata.org/wiki/Q1496376", + "display_name": "Gaussian process", + "level": 3, + "score": 0.6900824308395386 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6533682346343994 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5732190608978271 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4565224051475525 + }, + { + "id": "https://openalex.org/C3770464", + "wikidata": "https://www.wikidata.org/wiki/Q775963", + "display_name": "Smoothing", + "level": 2, + "score": 0.4471099376678467 + }, + { + "id": "https://openalex.org/C163716315", + "wikidata": "https://www.wikidata.org/wiki/Q901177", + "display_name": "Gaussian", + "level": 2, + "score": 0.4403120279312134 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.43361324071884155 + }, + { + "id": "https://openalex.org/C81692654", + "wikidata": "https://www.wikidata.org/wiki/Q225926", + "display_name": "Kriging", + "level": 2, + "score": 0.4239123463630676 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.41445812582969666 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1142/s0129065704001899", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/s0129065704001899", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S197665576", + "display_name": "International Journal of Neural Systems", + "issn_l": "0129-0657", + "issn": [ + "0129-0657", + "1793-6462" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Neural Systems", + "raw_type": "journal-article" + }, + { + "id": "pmid:15112367", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/15112367", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International journal of neural systems", + "raw_type": null + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.330.2529", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.330.2529", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://math.iit.edu/pipermail/meshfree-methods-seminar/attachments/20061124/26d0a64a/attachment-0001.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.4.4097", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.4.4097", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/papers/upload_4618_bayesgp-tut.ps.gz", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.71.1079", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.71.1079", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kyb.tuebingen.mpg.de/bs/people/seeger/papers/bayesgp-tut.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:161301", + "is_oa": true, + "landing_page_url": "http://infoscience.epfl.ch/record/161301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:infoscience.tind.io:161301", + "is_oa": true, + "landing_page_url": "https://infoscience.epfl.ch/handle/20.500.14299/61727", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "research article" + } + ], + "best_oa_location": { + "id": "pmh:oai:infoscience.epfl.ch:161301", + "is_oa": true, + "landing_page_url": "http://infoscience.epfl.ch/record/161301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "score": 0.6100000143051147, + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 83, + "referenced_works": [ + "https://openalex.org/W55912154", + "https://openalex.org/W102828713", + "https://openalex.org/W174371023", + "https://openalex.org/W197497516", + "https://openalex.org/W1505937442", + "https://openalex.org/W1511160855", + "https://openalex.org/W1512098439", + "https://openalex.org/W1515272691", + "https://openalex.org/W1528905581", + "https://openalex.org/W1549656520", + "https://openalex.org/W1556890730", + "https://openalex.org/W1567512734", + "https://openalex.org/W1568586753", + "https://openalex.org/W1576213419", + "https://openalex.org/W1580334350", + "https://openalex.org/W1604938182", + "https://openalex.org/W1618905105", + "https://openalex.org/W1647250361", + "https://openalex.org/W1654787807", + "https://openalex.org/W1657213141", + "https://openalex.org/W1746680969", + "https://openalex.org/W1859781365", + "https://openalex.org/W1976625337", + "https://openalex.org/W1986280275", + "https://openalex.org/W2001141328", + "https://openalex.org/W2002355073", + "https://openalex.org/W2007154098", + "https://openalex.org/W2024697317", + "https://openalex.org/W2038610163", + "https://openalex.org/W2040870580", + "https://openalex.org/W2053186076", + "https://openalex.org/W2056099894", + "https://openalex.org/W2056894411", + "https://openalex.org/W2065540158", + "https://openalex.org/W2072555316", + "https://openalex.org/W2082100828", + "https://openalex.org/W2085877024", + "https://openalex.org/W2094435468", + "https://openalex.org/W2098626000", + "https://openalex.org/W2100136038", + "https://openalex.org/W2104533781", + "https://openalex.org/W2115438515", + "https://openalex.org/W2117063635", + "https://openalex.org/W2117670920", + "https://openalex.org/W2123152930", + "https://openalex.org/W2129564505", + "https://openalex.org/W2129869373", + "https://openalex.org/W2137956165", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139999468", + "https://openalex.org/W2141274633", + "https://openalex.org/W2141800987", + "https://openalex.org/W2143022286", + "https://openalex.org/W2143956139", + "https://openalex.org/W2146766088", + "https://openalex.org/W2158122241", + "https://openalex.org/W2161023163", + "https://openalex.org/W2161813919", + "https://openalex.org/W2168022998", + "https://openalex.org/W2168464387", + "https://openalex.org/W2169178495", + "https://openalex.org/W2170120409", + "https://openalex.org/W2293192529", + "https://openalex.org/W2296319761", + "https://openalex.org/W2330005588", + "https://openalex.org/W2331182131", + "https://openalex.org/W2408196097", + "https://openalex.org/W2492794003", + "https://openalex.org/W2496675188", + "https://openalex.org/W2579190672", + "https://openalex.org/W2801490189", + "https://openalex.org/W2890351024", + "https://openalex.org/W2904816695", + "https://openalex.org/W2999905431", + "https://openalex.org/W3023786531", + "https://openalex.org/W3148924112", + "https://openalex.org/W4210310779", + "https://openalex.org/W4245531751", + "https://openalex.org/W4285719527", + "https://openalex.org/W4298876635", + "https://openalex.org/W4299551157", + "https://openalex.org/W4302114916", + "https://openalex.org/W4388297583" + ], + "related_works": [ + "https://openalex.org/W3195168932", + "https://openalex.org/W1996541855", + "https://openalex.org/W2081545345", + "https://openalex.org/W2063381173", + "https://openalex.org/W4316658362", + "https://openalex.org/W2348223921", + "https://openalex.org/W2318821300", + "https://openalex.org/W4321260833", + "https://openalex.org/W2972324047", + "https://openalex.org/W2563155481" + ], + "abstract_inverted_index": { + "Gaussian": [ + 0, + 8, + 51, + 89 + ], + "processes": [ + 1, + 52 + ], + "(GPs)": [ + 2 + ], + "are": [ + 3, + 43, + 92, + 102, + 175, + 227 + ], + "natural": [ + 4 + ], + "generalisations": [ + 5 + ], + "of": [ + 6, + 26, + 32, + 40, + 105, + 129, + 147, + 158, + 194 + ], + "multivariate": [ + 7 + ], + "random": [ + 9 + ], + "variables": [ + 10 + ], + "to": [ + 11, + 28, + 50, + 71, + 95, + 178, + 191, + 197, + 201, + 206, + 223 + ], + "infinite": [ + 12 + ], + "(countably": [ + 13 + ], + "or": [ + 14 + ], + "continuous)": [ + 15 + ], + "index": [ + 16 + ], + "sets.": [ + 17 + ], + "GPs": [ + 18, + 166, + 195 + ], + "have": [ + 19, + 86 + ], + "been": [ + 20, + 87, + 153 + ], + "applied": [ + 21 + ], + "in": [ + 22, + 64, + 82, + 131, + 211 + ], + "a": [ + 23, + 29, + 54, + 115, + 218 + ], + "large": [ + 24, + 168 + ], + "number": [ + 25 + ], + "fields": [ + 27 + ], + "diverse": [ + 30 + ], + "range": [ + 31 + ], + "ends,": [ + 33 + ], + "and": [ + 34, + 78, + 110, + 134, + 169, + 200 + ], + "very": [ + 35, + 118 + ], + "many": [ + 36 + ], + "deep": [ + 37, + 172 + ], + "theoretical": [ + 38 + ], + "analyses": [ + 39 + ], + "various": [ + 41 + ], + "properties": [ + 42 + ], + "available.": [ + 44 + ], + "This": [ + 45 + ], + "paper": [ + 46 + ], + "gives": [ + 47 + ], + "an": [ + 48 + ], + "introduction": [ + 49, + 157 + ], + "on": [ + 53, + 61, + 165, + 217 + ], + "fairly": [ + 55 + ], + "elementary": [ + 56 + ], + "level": [ + 57 + ], + "with": [ + 58 + ], + "special": [ + 59 + ], + "emphasis": [ + 60 + ], + "characteristics": [ + 62, + 193 + ], + "relevant": [ + 63, + 196 + ], + "machine": [ + 65, + 98, + 182, + 198 + ], + "learning.": [ + 66 + ], + "It": [ + 67 + ], + "draws": [ + 68 + ], + "explicit": [ + 69 + ], + "connections": [ + 70, + 205 + ], + "branches": [ + 72 + ], + "such": [ + 73 + ], + "as": [ + 74, + 140 + ], + "spline": [ + 75 + ], + "smoothing": [ + 76 + ], + "models": [ + 77, + 91 + ], + "support": [ + 79 + ], + "vector": [ + 80 + ], + "machines": [ + 81 + ], + "which": [ + 83, + 125, + 174 + ], + "similar": [ + 84 + ], + "ideas": [ + 85 + ], + "investigated.": [ + 88 + ], + "process": [ + 90 + ], + "routinely": [ + 93 + ], + "used": [ + 94 + ], + "solve": [ + 96 + ], + "hard": [ + 97 + ], + "learning": [ + 99, + 183, + 199 + ], + "problems.": [ + 100, + 143 + ], + "They": [ + 101 + ], + "attractive": [ + 103 + ], + "because": [ + 104 + ], + "their": [ + 106 + ], + "flexible": [ + 107 + ], + "non-parametric": [ + 108 + ], + "nature": [ + 109 + ], + "computational": [ + 111, + 149 + ], + "simplicity.": [ + 112 + ], + "Treated": [ + 113 + ], + "within": [ + 114 + ], + "Bayesian": [ + 116 + ], + "framework,": [ + 117 + ], + "powerful": [ + 119 + ], + "statistical": [ + 120 + ], + "methods": [ + 121 + ], + "can": [ + 122 + ], + "be": [ + 123 + ], + "implemented": [ + 124 + ], + "offer": [ + 126 + ], + "valid": [ + 127 + ], + "estimates": [ + 128 + ], + "uncertainties": [ + 130 + ], + "our": [ + 132 + ], + "predictions": [ + 133 + ], + "generic": [ + 135, + 159 + ], + "model": [ + 136 + ], + "selection": [ + 137 + ], + "procedures": [ + 138 + ], + "cast": [ + 139 + ], + "nonlinear": [ + 141 + ], + "optimization": [ + 142 + ], + "Their": [ + 144 + ], + "main": [ + 145 + ], + "drawback": [ + 146 + ], + "heavy": [ + 148 + ], + "scaling": [ + 150 + ], + "has": [ + 151 + ], + "recently": [ + 152 + ], + "alleviated": [ + 154 + ], + "by": [ + 155 + ], + "the": [ + 156, + 212 + ], + "sparse": [ + 160 + ], + "approximations.13,78,31": [ + 161 + ], + "The": [ + 162 + ], + "mathematical": [ + 163 + ], + "literature": [ + 164 + ], + "is": [ + 167, + 216 + ], + "often": [ + 170 + ], + "uses": [ + 171 + ], + "concepts": [ + 173 + ], + "not": [ + 176 + ], + "required": [ + 177 + ], + "fully": [ + 179 + ], + "understand": [ + 180 + ], + "most": [ + 181 + ], + "applications.": [ + 184 + ], + "In": [ + 185 + ], + "this": [ + 186 + ], + "tutorial": [ + 187 + ], + "paper,": [ + 188 + ], + "we": [ + 189 + ], + "aim": [ + 190 + ], + "present": [ + 192 + ], + "show": [ + 202 + ], + "up": [ + 203 + ], + "precise": [ + 204 + ], + "other": [ + 207 + ], + "\"kernel": [ + 208 + ], + "machines\"": [ + 209 + ], + "popular": [ + 210 + ], + "community.": [ + 213 + ], + "Our": [ + 214 + ], + "focus": [ + 215 + ], + "simple": [ + 219 + ], + "presentation,": [ + 220 + ], + "but": [ + 221 + ], + "references": [ + 222 + ], + "more": [ + 224 + ], + "detailed": [ + 225 + ], + "sources": [ + 226 + ], + "provided.": [ + 228 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 88 + }, + { + "year": 2025, + "cited_by_count": 263 + }, + { + "year": 2024, + "cited_by_count": 218 + }, + { + "year": 2023, + "cited_by_count": 156 + }, + { + "year": 2022, + "cited_by_count": 104 + }, + { + "year": 2021, + "cited_by_count": 100 + }, + { + "year": 2020, + "cited_by_count": 85 + }, + { + "year": 2019, + "cited_by_count": 72 + }, + { + "year": 2018, + "cited_by_count": 44 + }, + { + "year": 2017, + "cited_by_count": 25 + }, + { + "year": 2016, + "cited_by_count": 29 + }, + { + "year": 2015, + "cited_by_count": 20 + }, + { + "year": 2014, + "cited_by_count": 25 + }, + { + "year": 2013, + "cited_by_count": 26 + }, + { + "year": 2012, + "cited_by_count": 18 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2162651021", + "doi": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "title": "Dataset Shift in Machine Learning", + "display_name": "Dataset Shift in Machine Learning", + "relevance_score": 2784.3486, + "publication_year": 2008, + "publication_date": "2008-12-12", + "ids": { + "openalex": "https://openalex.org/W2162651021", + "doi": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "mag": "2162651021" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/9780262170055.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 9.3591, + "has_fulltext": false, + "cited_by_count": 1510, + "citation_normalized_percentile": { + "value": 0.97485493, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T14470", + "display_name": "Advanced Data Processing Techniques", + "score": 0.7767999768257141, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T14470", + "display_name": "Advanced Data Processing Techniques", + "score": 0.7767999768257141, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.664900004863739, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.659500002861023, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7328447103500366 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7292178273200989 + }, + { + "id": "https://openalex.org/keywords/covariate", + "display_name": "Covariate", + "score": 0.7273201942443848 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5872174501419067 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.5522041320800781 + }, + { + "id": "https://openalex.org/keywords/paradigm-shift", + "display_name": "Paradigm shift", + "score": 0.4949187636375427 + }, + { + "id": "https://openalex.org/keywords/filter", + "display_name": "Filter (signal processing)", + "score": 0.4474133849143982 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7328447103500366 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7292178273200989 + }, + { + "id": "https://openalex.org/C119043178", + "wikidata": "https://www.wikidata.org/wiki/Q320723", + "display_name": "Covariate", + "level": 2, + "score": 0.7273201942443848 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5872174501419067 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.5522041320800781 + }, + { + "id": "https://openalex.org/C43540301", + "wikidata": "https://www.wikidata.org/wiki/Q689971", + "display_name": "Paradigm shift", + "level": 2, + "score": 0.4949187636375427 + }, + { + "id": "https://openalex.org/C106131492", + "wikidata": "https://www.wikidata.org/wiki/Q3072260", + "display_name": "Filter (signal processing)", + "level": 2, + "score": 0.4474133849143982 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.7551/mitpress/9780262170055.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "score": 0.6000000238418579, + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320315885", + "display_name": "Australian Government", + "ror": "https://ror.org/0314h5y94" + }, + { + "id": "https://openalex.org/F4320320879", + "display_name": "Deutsche Forschungsgemeinschaft", + "ror": "https://ror.org/018mejw64" + }, + { + "id": "https://openalex.org/F4320320912", + "display_name": "Ministry of Education, Culture, Sports, Science and Technology", + "ror": "https://ror.org/048rj2z13" + }, + { + "id": "https://openalex.org/F4320321114", + "display_name": "Bundesministerium für Bildung und Forschung", + "ror": "https://ror.org/04pz7b180" + }, + { + "id": "https://openalex.org/F4320321999", + "display_name": "Lundbeckfonden", + "ror": "https://ror.org/03hz8wd80" + }, + { + "id": "https://openalex.org/F4320327918", + "display_name": "H. Lundbeck A/S", + "ror": null + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 154, + "referenced_works": [ + "https://openalex.org/W3805906", + "https://openalex.org/W73527130", + "https://openalex.org/W167016754", + "https://openalex.org/W189742998", + "https://openalex.org/W335134183", + "https://openalex.org/W1493044792", + "https://openalex.org/W1506588750", + "https://openalex.org/W1512098439", + "https://openalex.org/W1513525398", + "https://openalex.org/W1519342765", + "https://openalex.org/W1520168181", + "https://openalex.org/W1523843467", + "https://openalex.org/W1548614216", + "https://openalex.org/W1551909886", + "https://openalex.org/W1563644419", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571895365", + "https://openalex.org/W1571917377", + "https://openalex.org/W1574539612", + "https://openalex.org/W1594031697", + "https://openalex.org/W1601787291", + "https://openalex.org/W1603576850", + "https://openalex.org/W1605619629", + "https://openalex.org/W1618393386", + "https://openalex.org/W1667072054", + "https://openalex.org/W1941659294", + "https://openalex.org/W1963661053", + "https://openalex.org/W1977245551", + "https://openalex.org/W1981428463", + "https://openalex.org/W1983055206", + "https://openalex.org/W1986250339", + "https://openalex.org/W1990645294", + "https://openalex.org/W1991907403", + "https://openalex.org/W1998438337", + "https://openalex.org/W2002355073", + "https://openalex.org/W2005688170", + "https://openalex.org/W2007406620", + "https://openalex.org/W2010102461", + "https://openalex.org/W2012712694", + "https://openalex.org/W2015932775", + "https://openalex.org/W2018770010", + "https://openalex.org/W2023063828", + "https://openalex.org/W2024689521", + "https://openalex.org/W2029030476", + "https://openalex.org/W2032536435", + "https://openalex.org/W2034368206", + "https://openalex.org/W2036043322", + "https://openalex.org/W2036902495", + "https://openalex.org/W2054658115", + "https://openalex.org/W2059575958", + "https://openalex.org/W2070845047", + "https://openalex.org/W2073042726", + "https://openalex.org/W2076428552", + "https://openalex.org/W2081850149", + "https://openalex.org/W2093064776", + "https://openalex.org/W2097839764", + "https://openalex.org/W2098949458", + "https://openalex.org/W2100247797", + "https://openalex.org/W2100600008", + "https://openalex.org/W2101974476", + "https://openalex.org/W2103851188", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105842272", + "https://openalex.org/W2107996537", + "https://openalex.org/W2109033052", + "https://openalex.org/W2112081648", + "https://openalex.org/W2112483442", + "https://openalex.org/W2113530803", + "https://openalex.org/W2113679101", + "https://openalex.org/W2114338449", + "https://openalex.org/W2115305054", + "https://openalex.org/W2117063635", + "https://openalex.org/W2120217353", + "https://openalex.org/W2121909644", + "https://openalex.org/W2123157895", + "https://openalex.org/W2125865219", + "https://openalex.org/W2125993116", + "https://openalex.org/W2127816222", + "https://openalex.org/W2129851978", + "https://openalex.org/W2130031702", + "https://openalex.org/W2131479143", + "https://openalex.org/W2131953535", + "https://openalex.org/W2132870739", + "https://openalex.org/W2134169350", + "https://openalex.org/W2135498906", + "https://openalex.org/W2137346077", + "https://openalex.org/W2137557016", + "https://openalex.org/W2138805882", + "https://openalex.org/W2139122730", + "https://openalex.org/W2139823104", + "https://openalex.org/W2142992973", + "https://openalex.org/W2143033696", + "https://openalex.org/W2145295623", + "https://openalex.org/W2146395300", + "https://openalex.org/W2148143831", + "https://openalex.org/W2148603752", + "https://openalex.org/W2148924730", + "https://openalex.org/W2150388061", + "https://openalex.org/W2150884987", + "https://openalex.org/W2152859659", + "https://openalex.org/W2154455818", + "https://openalex.org/W2158108973", + "https://openalex.org/W2158754421", + "https://openalex.org/W2159400887", + "https://openalex.org/W2161920802", + "https://openalex.org/W2163194396", + "https://openalex.org/W2164161365", + "https://openalex.org/W2167328503", + "https://openalex.org/W2168175751", + "https://openalex.org/W2168561598", + "https://openalex.org/W2168639902", + "https://openalex.org/W2168741590", + "https://openalex.org/W2169075655", + "https://openalex.org/W2169338892", + "https://openalex.org/W2169384781", + "https://openalex.org/W2170580685", + "https://openalex.org/W2171033594", + "https://openalex.org/W2171343216", + "https://openalex.org/W2171388464", + "https://openalex.org/W2215815030", + "https://openalex.org/W2255883267", + "https://openalex.org/W2293768274", + "https://openalex.org/W2435251607", + "https://openalex.org/W2525109755", + "https://openalex.org/W2590957573", + "https://openalex.org/W2796372757", + "https://openalex.org/W2903718010", + "https://openalex.org/W2989661724", + "https://openalex.org/W3098372638", + "https://openalex.org/W3103871524", + "https://openalex.org/W3104240813", + "https://openalex.org/W4211049957", + "https://openalex.org/W4211204663", + "https://openalex.org/W4229633200", + "https://openalex.org/W4230946174", + "https://openalex.org/W4231510805", + "https://openalex.org/W4233216783", + "https://openalex.org/W4233413206", + "https://openalex.org/W4236188916", + "https://openalex.org/W4239047110", + "https://openalex.org/W4239390603", + "https://openalex.org/W4248721357", + "https://openalex.org/W4250182547", + "https://openalex.org/W4250224875", + "https://openalex.org/W4252262440", + "https://openalex.org/W4253064820", + "https://openalex.org/W4256544418", + "https://openalex.org/W4299515571", + "https://openalex.org/W4300093168", + "https://openalex.org/W4301436980", + "https://openalex.org/W4310299640", + "https://openalex.org/W4310738704", + "https://openalex.org/W4379510236", + "https://openalex.org/W4388297464" + ], + "related_works": [ + "https://openalex.org/W2985746494", + "https://openalex.org/W4206042385", + "https://openalex.org/W2511384863", + "https://openalex.org/W2080773131", + "https://openalex.org/W2096089271", + "https://openalex.org/W2923628599", + "https://openalex.org/W2014100433", + "https://openalex.org/W2051519658", + "https://openalex.org/W2002304499", + "https://openalex.org/W2994787386" + ], + "abstract_inverted_index": { + "An": [ + 0 + ], + "overview": [ + 1, + 159 + ], + "of": [ + 2, + 44, + 59, + 90, + 135, + 160, + 200 + ], + "recent": [ + 3 + ], + "efforts": [ + 4, + 162 + ], + "in": [ + 5, + 35, + 73, + 111, + 148, + 184 + ], + "the": [ + 6, + 41, + 65, + 81, + 88, + 91, + 114, + 116, + 127, + 131, + 149, + 179 + ], + "machine": [ + 7, + 150 + ], + "learning": [ + 8, + 137, + 151 + ], + "community": [ + 9, + 152 + ], + "to": [ + 10, + 87, + 106, + 130, + 163, + 178, + 186 + ], + "deal": [ + 11, + 164 + ], + "with": [ + 12, + 165 + ], + "dataset": [ + 13, + 60, + 141, + 166, + 182, + 201 + ], + "and": [ + 14, + 21, + 24, + 46, + 51, + 125, + 138, + 167, + 175, + 194, + 202, + 208, + 211 + ], + "covariate": [ + 15, + 168, + 203, + 215 + ], + "shift,": [ + 16, + 55, + 61 + ], + "which": [ + 17, + 103 + ], + "occurs": [ + 18, + 39, + 62 + ], + "when": [ + 19, + 40, + 63 + ], + "test": [ + 20, + 52 + ], + "training": [ + 22, + 50, + 95 + ], + "inputs": [ + 23, + 45 + ], + "outputs": [ + 25, + 47 + ], + "have": [ + 26 + ], + "different": [ + 27 + ], + "distributions.": [ + 28 + ], + "Dataset": [ + 29, + 69 + ], + "shift": [ + 30, + 70, + 142, + 183, + 204 + ], + "is": [ + 31, + 71, + 99 + ], + "a": [ + 32, + 56, + 173 + ], + "common": [ + 33 + ], + "problem": [ + 34 + ], + "predictive": [ + 36 + ], + "modeling": [ + 37 + ], + "that": [ + 38, + 109 + ], + "joint": [ + 42 + ], + "distribution": [ + 43, + 67 + ], + "differs": [ + 48, + 110 + ], + "between": [ + 49 + ], + "stages.": [ + 53 + ], + "Covariate": [ + 54 + ], + "particular": [ + 57 + ], + "case": [ + 58 + ], + "only": [ + 64 + ], + "input": [ + 66 + ], + "changes.": [ + 68 + ], + "present": [ + 72, + 212 + ], + "most": [ + 74 + ], + "practical": [ + 75 + ], + "applications,": [ + 76 + ], + "for": [ + 77, + 214 + ], + "reasons": [ + 78 + ], + "ranging": [ + 79 + ], + "from": [ + 80, + 113 + ], + "bias": [ + 82 + ], + "introduced": [ + 83 + ], + "by": [ + 84 + ], + "experimental": [ + 85 + ], + "design": [ + 86 + ], + "irreproducibility": [ + 89 + ], + "testing": [ + 92 + ], + "conditions": [ + 93 + ], + "at": [ + 94 + ], + "time.": [ + 96 + ], + "(An": [ + 97 + ], + "example": [ + 98 + ], + "-email": [ + 100 + ], + "spam": [ + 101, + 108, + 115 + ], + "filtering,": [ + 102 + ], + "may": [ + 104 + ], + "fail": [ + 105 + ], + "recognize": [ + 107 + ], + "form": [ + 112 + ], + "automatic": [ + 117 + ], + "filter": [ + 118 + ], + "has": [ + 119, + 143 + ], + "been": [ + 120 + ], + "built": [ + 121 + ], + "on.)": [ + 122 + ], + "Despite": [ + 123 + ], + "this,": [ + 124 + ], + "despite": [ + 126 + ], + "attention": [ + 128, + 147 + ], + "given": [ + 129 + ], + "apparently": [ + 132 + ], + "similar": [ + 133 + ], + "problems": [ + 134 + ], + "semi-supervised": [ + 136, + 195 + ], + "active": [ + 139, + 192 + ], + "learning,": [ + 140, + 188, + 191, + 193, + 196 + ], + "received": [ + 144 + ], + "relatively": [ + 145 + ], + "little": [ + 146 + ], + "until": [ + 153 + ], + "recently.": [ + 154 + ], + "This": [ + 155 + ], + "volume": [ + 156 + ], + "offers": [ + 157 + ], + "an": [ + 158 + ], + "current": [ + 161 + ], + "shift.": [ + 169, + 216 + ], + "The": [ + 170 + ], + "chapters": [ + 171 + ], + "offer": [ + 172 + ], + "mathematical": [ + 174 + ], + "philosophical": [ + 176 + ], + "introduction": [ + 177 + ], + "problem,": [ + 180 + ], + "place": [ + 181 + ], + "relationship": [ + 185 + ], + "transfer": [ + 187 + ], + "transduction,": [ + 189 + ], + "local": [ + 190 + ], + "provide": [ + 197 + ], + "theoretical": [ + 198 + ], + "views": [ + 199 + ], + "(including": [ + 205 + ], + "decision": [ + 206 + ], + "theoretic": [ + 207 + ], + "Bayesian": [ + 209 + ], + "perspectives),": [ + 210 + ], + "algorithms": [ + 213 + ], + "Contributors": [ + 217 + ], + "Shai": [ + 218 + ], + "Ben-David,": [ + 219 + ], + "Steffen": [ + 220 + ], + "Bickel,": [ + 221 + ], + "Karsten": [ + 222 + ], + "Borgwardt,": [ + 223 + ], + "Michael": [ + 224 + ], + "Brückner,": [ + 225 + ], + "David": [ + 226 + ], + "Corfield,": [ + 227 + ], + "Amir": [ + 228 + ], + "Globerson,": [ + 229 + ], + "Arthur": [ + 230 + ], + "Gretton,": [ + 231 + ], + "Lars": [ + 232 + ], + "Kai": [ + 233 + ], + "Hansen,": [ + 234 + ], + "Matthias": [ + 235 + ], + "Hein,": [ + 236 + ], + "Jiayuan": [ + 237 + ], + "Huang,": [ + 238 + ], + "Choon": [ + 239 + ], + "Hui": [ + 240 + ], + "Teo,": [ + 241 + ], + "Takafumi": [ + 242 + ], + "Kanamori,": [ + 243 + ], + "Klaus-Robert": [ + 244 + ], + "Müller,": [ + 245 + ], + "Sam": [ + 246 + ], + "Roweis,": [ + 247 + ], + "Neil": [ + 248 + ], + "Rubens,": [ + 249 + ], + "Tobias": [ + 250 + ], + "Scheffer,": [ + 251 + ], + "Marcel": [ + 252 + ], + "Schmittfull,": [ + 253 + ], + "Bernhard": [ + 254 + ], + "Schölkopf": [ + 255 + ], + "Hidetoshi": [ + 256 + ], + "Shimodaira,": [ + 257 + ], + "Alex": [ + 258 + ], + "Smola,": [ + 259 + ], + "Amos": [ + 260 + ], + "Storkey,": [ + 261 + ], + "Masashi": [ + 262 + ], + "Sugiyama": [ + 263 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 37 + }, + { + "year": 2025, + "cited_by_count": 109 + }, + { + "year": 2024, + "cited_by_count": 165 + }, + { + "year": 2023, + "cited_by_count": 146 + }, + { + "year": 2022, + "cited_by_count": 133 + }, + { + "year": 2021, + "cited_by_count": 231 + }, + { + "year": 2020, + "cited_by_count": 204 + }, + { + "year": 2019, + "cited_by_count": 127 + }, + { + "year": 2018, + "cited_by_count": 54 + }, + { + "year": 2017, + "cited_by_count": 33 + }, + { + "year": 2016, + "cited_by_count": 35 + }, + { + "year": 2015, + "cited_by_count": 55 + }, + { + "year": 2014, + "cited_by_count": 36 + }, + { + "year": 2013, + "cited_by_count": 44 + }, + { + "year": 2012, + "cited_by_count": 29 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2793927960", + "doi": "https://doi.org/10.1080/01431161.2018.1433343", + "title": "Implementation of machine-learning classification in remote sensing: an applied review", + "display_name": "Implementation of machine-learning classification in remote sensing: an applied review", + "relevance_score": 2761.8186, + "publication_year": 2018, + "publication_date": "2018-02-02", + "ids": { + "openalex": "https://openalex.org/W2793927960", + "doi": "https://doi.org/10.1080/01431161.2018.1433343", + "mag": "2793927960" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5085820343", + "display_name": "Aaron E. Maxwell", + "orcid": "https://orcid.org/0000-0002-4412-5599" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Aaron E. Maxwell", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5091637832", + "display_name": "Timothy A. Warner", + "orcid": "https://orcid.org/0000-0002-0414-9748" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Timothy A. Warner", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0414-9748", + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100386844", + "display_name": "Fang Fang", + "orcid": "https://orcid.org/0000-0001-7541-189X" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Fang Fang", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": "https://orcid.org/0000-0001-7541-189X", + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5085820343" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I12097938" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 113.7823, + "has_fulltext": false, + "cited_by_count": 1906, + "citation_normalized_percentile": { + "value": 0.99988623, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "39", + "issue": "9", + "first_page": "2784", + "last_page": "2817" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10689", + "display_name": "Remote-Sensing Image Classification", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10689", + "display_name": "Remote-Sensing Image Classification", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10111", + "display_name": "Remote Sensing in Agriculture", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/2303", + "display_name": "Ecology" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11659", + "display_name": "Advanced Image Fusion Techniques", + "score": 0.9749000072479248, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7877681255340576 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7791492342948914 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7248809337615967 + }, + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.5729610323905945 + }, + { + "id": "https://openalex.org/keywords/dimensionality-reduction", + "display_name": "Dimensionality reduction", + "score": 0.5524418354034424 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.5341089963912964 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5322451591491699 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.514393150806427 + }, + { + "id": "https://openalex.org/keywords/curse-of-dimensionality", + "display_name": "Curse of dimensionality", + "score": 0.5014984607696533 + }, + { + "id": "https://openalex.org/keywords/key", + "display_name": "Key (lock)", + "score": 0.4978461265563965 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.4418962001800537 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.41856345534324646 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.33177950978279114 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7877681255340576 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7791492342948914 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7248809337615967 + }, + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.5729610323905945 + }, + { + "id": "https://openalex.org/C70518039", + "wikidata": "https://www.wikidata.org/wiki/Q16000077", + "display_name": "Dimensionality reduction", + "level": 2, + "score": 0.5524418354034424 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.5341089963912964 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5322451591491699 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.514393150806427 + }, + { + "id": "https://openalex.org/C111030470", + "wikidata": "https://www.wikidata.org/wiki/Q1430460", + "display_name": "Curse of dimensionality", + "level": 2, + "score": 0.5014984607696533 + }, + { + "id": "https://openalex.org/C26517878", + "wikidata": "https://www.wikidata.org/wiki/Q228039", + "display_name": "Key (lock)", + "level": 2, + "score": 0.4978461265563965 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.4418962001800537 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.41856345534324646 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.33177950978279114 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/15", + "score": 0.4000000059604645, + "display_name": "Life in Land" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 118, + "referenced_works": [ + "https://openalex.org/W130347124", + "https://openalex.org/W1585128438", + "https://openalex.org/W1802207720", + "https://openalex.org/W1950365613", + "https://openalex.org/W1971271947", + "https://openalex.org/W1978034823", + "https://openalex.org/W1980547211", + "https://openalex.org/W1981755063", + "https://openalex.org/W1985258161", + "https://openalex.org/W1988790447", + "https://openalex.org/W1989344766", + "https://openalex.org/W1989428365", + "https://openalex.org/W1990653740", + "https://openalex.org/W1991856651", + "https://openalex.org/W1996777760", + "https://openalex.org/W1997478538", + "https://openalex.org/W1998351672", + "https://openalex.org/W2008469107", + "https://openalex.org/W2010479838", + "https://openalex.org/W2011287807", + "https://openalex.org/W2012136488", + "https://openalex.org/W2017212187", + "https://openalex.org/W2021314208", + "https://openalex.org/W2022156723", + "https://openalex.org/W2029316659", + "https://openalex.org/W2030025097", + "https://openalex.org/W2030825546", + "https://openalex.org/W2033388392", + "https://openalex.org/W2035419249", + "https://openalex.org/W2035466979", + "https://openalex.org/W2035549557", + "https://openalex.org/W2038951852", + "https://openalex.org/W2039067795", + "https://openalex.org/W2046113982", + "https://openalex.org/W2050830693", + "https://openalex.org/W2063907334", + "https://openalex.org/W2065800647", + "https://openalex.org/W2067983477", + "https://openalex.org/W2074112114", + "https://openalex.org/W2076656703", + "https://openalex.org/W2078619499", + "https://openalex.org/W2080401607", + "https://openalex.org/W2081620141", + "https://openalex.org/W2082081125", + "https://openalex.org/W2082874195", + "https://openalex.org/W2086567813", + "https://openalex.org/W2087016914", + "https://openalex.org/W2088891335", + "https://openalex.org/W2098057602", + "https://openalex.org/W2100711113", + "https://openalex.org/W2101051003", + "https://openalex.org/W2109826612", + "https://openalex.org/W2112076978", + "https://openalex.org/W2118978333", + "https://openalex.org/W2119479037", + "https://openalex.org/W2122111042", + "https://openalex.org/W2124624125", + "https://openalex.org/W2124706543", + "https://openalex.org/W2130269771", + "https://openalex.org/W2130695501", + "https://openalex.org/W2132424470", + "https://openalex.org/W2134721717", + "https://openalex.org/W2136251662", + "https://openalex.org/W2139086914", + "https://openalex.org/W2139211176", + "https://openalex.org/W2140181255", + "https://openalex.org/W2140950054", + "https://openalex.org/W2143481518", + "https://openalex.org/W2145862305", + "https://openalex.org/W2146884399", + "https://openalex.org/W2148143831", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153534417", + "https://openalex.org/W2154506590", + "https://openalex.org/W2155632266", + "https://openalex.org/W2156665896", + "https://openalex.org/W2156909104", + "https://openalex.org/W2162421262", + "https://openalex.org/W2166307050", + "https://openalex.org/W2168809519", + "https://openalex.org/W2171058578", + "https://openalex.org/W2172009270", + "https://openalex.org/W2197595524", + "https://openalex.org/W2229291734", + "https://openalex.org/W2261059368", + "https://openalex.org/W2316813349", + "https://openalex.org/W2330853572", + "https://openalex.org/W2397914484", + "https://openalex.org/W2407655494", + "https://openalex.org/W2412588858", + "https://openalex.org/W2504658994", + "https://openalex.org/W2508058002", + "https://openalex.org/W2539651710", + "https://openalex.org/W2582743722", + "https://openalex.org/W2589780155", + "https://openalex.org/W2603834682", + "https://openalex.org/W2612451460", + "https://openalex.org/W2752696298", + "https://openalex.org/W2911964244", + "https://openalex.org/W3015384695", + "https://openalex.org/W3087967325", + "https://openalex.org/W3102027041", + "https://openalex.org/W3104925044", + "https://openalex.org/W3105578466", + "https://openalex.org/W3207342693", + "https://openalex.org/W4236137412", + "https://openalex.org/W4239510810", + "https://openalex.org/W4245066279", + "https://openalex.org/W4246090800", + "https://openalex.org/W4285719527", + "https://openalex.org/W4300402905", + "https://openalex.org/W4399569501", + "https://openalex.org/W4399570248", + "https://openalex.org/W4399575362", + "https://openalex.org/W6769764061", + "https://openalex.org/W6869234452", + "https://openalex.org/W6869284810", + "https://openalex.org/W6869666549" + ], + "related_works": [ + "https://openalex.org/W4321636153", + "https://openalex.org/W4377964522", + "https://openalex.org/W3195168932", + "https://openalex.org/W4386072274", + "https://openalex.org/W4386123260", + "https://openalex.org/W4383535405", + "https://openalex.org/W4381414210", + "https://openalex.org/W4384345534", + "https://openalex.org/W4308191010", + "https://openalex.org/W3034132578" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 18, + 62 + ], + "offers": [ + 2 + ], + "the": [ + 3, + 20, + 45, + 70, + 96 + ], + "potential": [ + 4 + ], + "for": [ + 5 + ], + "effective": [ + 6 + ], + "and": [ + 7, + 28, + 44, + 89, + 106, + 111, + 113 + ], + "efficient": [ + 8 + ], + "classification": [ + 9, + 40, + 123 + ], + "of": [ + 10, + 16, + 25, + 60, + 74, + 98 + ], + "remotely": [ + 11, + 128 + ], + "sensed": [ + 12, + 129 + ], + "imagery.": [ + 13 + ], + "The": [ + 14 + ], + "strengths": [ + 15 + ], + "machine": [ + 17, + 61 + ], + "include": [ + 19, + 95 + ], + "capacity": [ + 21 + ], + "to": [ + 22, + 29, + 124 + ], + "handle": [ + 23 + ], + "data": [ + 24, + 101, + 130 + ], + "high": [ + 26 + ], + "dimensionality": [ + 27 + ], + "map": [ + 30 + ], + "classes": [ + 31 + ], + "with": [ + 32 + ], + "very": [ + 33 + ], + "complex": [ + 34 + ], + "characteristics.": [ + 35 + ], + "Nevertheless,": [ + 36 + ], + "implementing": [ + 37 + ], + "a": [ + 38 + ], + "machine-learning": [ + 39, + 122 + ], + "is": [ + 41 + ], + "not": [ + 42 + ], + "straightforward,": [ + 43 + ], + "literature": [ + 46 + ], + "provides": [ + 47, + 57 + ], + "conflicting": [ + 48 + ], + "advice": [ + 49 + ], + "regarding": [ + 50 + ], + "many": [ + 51 + ], + "key": [ + 52 + ], + "issues.": [ + 53 + ], + "This": [ + 54 + ], + "article": [ + 55 + ], + "therefore": [ + 56 + ], + "an": [ + 58, + 64 + ], + "overview": [ + 59 + ], + "from": [ + 63 + ], + "applied": [ + 65 + ], + "perspective.": [ + 66 + ], + "We": [ + 67, + 116 + ], + "focus": [ + 68 + ], + "on": [ + 69 + ], + "relatively": [ + 71 + ], + "mature": [ + 72 + ], + "methods": [ + 73 + ], + "support": [ + 75 + ], + "vector": [ + 76 + ], + "machines,": [ + 77 + ], + "single": [ + 78 + ], + "decision": [ + 79 + ], + "trees": [ + 80 + ], + "(DTs),": [ + 81 + ], + "Random": [ + 82 + ], + "Forests,": [ + 83 + ], + "boosted": [ + 84 + ], + "DTs,": [ + 85 + ], + "artificial": [ + 86 + ], + "neural": [ + 87 + ], + "networks,": [ + 88 + ], + "k-nearest": [ + 90 + ], + "neighbours": [ + 91 + ], + "(k-NN).": [ + 92 + ], + "Issues": [ + 93 + ], + "considered": [ + 94 + ], + "choice": [ + 97 + ], + "algorithm,": [ + 99 + ], + "training": [ + 100 + ], + "requirements,": [ + 102 + ], + "user-defined": [ + 103 + ], + "parameter": [ + 104 + ], + "selection": [ + 105 + ], + "optimization,": [ + 107 + ], + "feature": [ + 108 + ], + "space": [ + 109 + ], + "impacts": [ + 110 + ], + "reduction,": [ + 112 + ], + "computational": [ + 114 + ], + "costs.": [ + 115 + ], + "illustrate": [ + 117 + ], + "these": [ + 118 + ], + "issues": [ + 119 + ], + "through": [ + 120 + ], + "applying": [ + 121 + ], + "two": [ + 125 + ], + "publically": [ + 126 + ], + "available": [ + 127 + ], + "sets.": [ + 131 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 129 + }, + { + "year": 2025, + "cited_by_count": 290 + }, + { + "year": 2024, + "cited_by_count": 312 + }, + { + "year": 2023, + "cited_by_count": 319 + }, + { + "year": 2022, + "cited_by_count": 312 + }, + { + "year": 2021, + "cited_by_count": 257 + }, + { + "year": 2020, + "cited_by_count": 168 + }, + { + "year": 2019, + "cited_by_count": 101 + }, + { + "year": 2018, + "cited_by_count": 18 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2095577883", + "doi": "https://doi.org/10.1145/2046684.2046692", + "title": "Adversarial machine learning", + "display_name": "Adversarial machine learning", + "relevance_score": 2752.6821, + "publication_year": 2011, + "publication_date": "2011-10-21", + "ids": { + "openalex": "https://openalex.org/W2095577883", + "doi": "https://doi.org/10.1145/2046684.2046692", + "mag": "2095577883" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/2046684.2046692", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2046684.2046692", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 4th ACM workshop on Security and artificial intelligence", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5082878554", + "display_name": "Ling Huang", + "orcid": "https://orcid.org/0000-0001-5089-4637" + }, + "institutions": [ + { + "id": "https://openalex.org/I1343180700", + "display_name": "Intel (United States)", + "ror": "https://ror.org/01ek73717", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1343180700" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Ling Huang", + "raw_affiliation_strings": [ + "Intel Labs Berkeley, Berkeley, CA, USA", + "Intel Labs. Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Intel Labs Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I1343180700" + ] + }, + { + "raw_affiliation_string": "Intel Labs. Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I1343180700" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017381278", + "display_name": "Anthony D. Joseph", + "orcid": "https://orcid.org/0000-0002-6798-9664" + }, + "institutions": [ + { + "id": "https://openalex.org/I134446601", + "display_name": "Berkeley College", + "ror": "https://ror.org/02xewxa75", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I134446601" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Anthony D. Joseph", + "raw_affiliation_strings": [ + "UC Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "UC Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I134446601", + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108249434", + "display_name": "Blaine Nelson", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I8087733", + "display_name": "University of Tübingen", + "ror": "https://ror.org/03a1kwz48", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I8087733" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Blaine Nelson", + "raw_affiliation_strings": [ + "University of Tubingen, Tubingen, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Tubingen, Tubingen, Germany", + "institution_ids": [ + "https://openalex.org/I8087733" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078824132", + "display_name": "Benjamin I. P. Rubinstein", + "orcid": "https://orcid.org/0000-0002-2947-6980" + }, + "institutions": [ + { + "id": "https://openalex.org/I1290206253", + "display_name": "Microsoft (United States)", + "ror": "https://ror.org/00d0nc645", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Benjamin I.P. Rubinstein", + "raw_affiliation_strings": [ + "Microsoft, Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Microsoft, Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5113907559", + "display_name": "J. D. Tygar", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + }, + { + "id": "https://openalex.org/I134446601", + "display_name": "Berkeley College", + "ror": "https://ror.org/02xewxa75", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I134446601" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "J. D. Tygar", + "raw_affiliation_strings": [ + "UC Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "UC Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I134446601", + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5082878554" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1343180700" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 21.0993, + "has_fulltext": false, + "cited_by_count": 1193, + "citation_normalized_percentile": { + "value": 0.99439489, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "43", + "last_page": "58" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.9305077195167542 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.8575477004051208 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8086425065994263 + }, + { + "id": "https://openalex.org/keywords/adversarial-machine-learning", + "display_name": "Adversarial machine learning", + "score": 0.802598774433136 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6763424873352051 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6334288716316223 + }, + { + "id": "https://openalex.org/keywords/evasion", + "display_name": "Evasion (ethics)", + "score": 0.5196555852890015 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.451160728931427 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.28231871128082275 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.9305077195167542 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.8575477004051208 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8086425065994263 + }, + { + "id": "https://openalex.org/C2778403875", + "wikidata": "https://www.wikidata.org/wiki/Q20312394", + "display_name": "Adversarial machine learning", + "level": 3, + "score": 0.802598774433136 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6763424873352051 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6334288716316223 + }, + { + "id": "https://openalex.org/C2781251061", + "wikidata": "https://www.wikidata.org/wiki/Q5416089", + "display_name": "Evasion (ethics)", + "level": 3, + "score": 0.5196555852890015 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.451160728931427 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.28231871128082275 + }, + { + "id": "https://openalex.org/C8891405", + "wikidata": "https://www.wikidata.org/wiki/Q1059", + "display_name": "Immune system", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C203014093", + "wikidata": "https://www.wikidata.org/wiki/Q101929", + "display_name": "Immunology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1145/2046684.2046692", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2046684.2046692", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 4th ACM workshop on Security and artificial intelligence", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.310.771", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.310.771", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.berkeley.edu/~tygar/papers/SML2/Adversarial_AISEC.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.360.168", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.360.168", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://blaine-nelson.com/research/pubs/Huang-Joseph-AISec-2011.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/16", + "score": 0.7599999904632568, + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 203, + "referenced_works": [ + "https://openalex.org/W3805906", + "https://openalex.org/W10423024", + "https://openalex.org/W20093842", + "https://openalex.org/W34732858", + "https://openalex.org/W73527130", + "https://openalex.org/W83087001", + "https://openalex.org/W104201263", + "https://openalex.org/W114599062", + "https://openalex.org/W123634342", + "https://openalex.org/W149129625", + "https://openalex.org/W155995321", + "https://openalex.org/W162878246", + "https://openalex.org/W190013992", + "https://openalex.org/W301116043", + "https://openalex.org/W630188293", + "https://openalex.org/W1484507384", + "https://openalex.org/W1492810482", + "https://openalex.org/W1506806321", + "https://openalex.org/W1510073064", + "https://openalex.org/W1513231349", + "https://openalex.org/W1514940655", + "https://openalex.org/W1516506771", + "https://openalex.org/W1520723331", + "https://openalex.org/W1524581953", + "https://openalex.org/W1526402451", + "https://openalex.org/W1543155826", + "https://openalex.org/W1552056088", + "https://openalex.org/W1554944419", + "https://openalex.org/W1560724230", + "https://openalex.org/W1562491895", + "https://openalex.org/W1563088657", + "https://openalex.org/W1564947197", + "https://openalex.org/W1570425181", + "https://openalex.org/W1570963478", + "https://openalex.org/W1579838312", + "https://openalex.org/W1584516405", + "https://openalex.org/W1589713274", + "https://openalex.org/W1590452455", + "https://openalex.org/W1591480890", + "https://openalex.org/W1599976521", + "https://openalex.org/W1601740268", + "https://openalex.org/W1602011302", + "https://openalex.org/W1605925311", + "https://openalex.org/W1609770379", + "https://openalex.org/W1663973292", + "https://openalex.org/W1787843065", + "https://openalex.org/W1851403712", + "https://openalex.org/W1859580326", + "https://openalex.org/W1873763122", + "https://openalex.org/W1941427975", + "https://openalex.org/W1949459993", + "https://openalex.org/W1962340579", + "https://openalex.org/W1964964840", + "https://openalex.org/W1968439359", + "https://openalex.org/W1968998685", + "https://openalex.org/W1979486458", + "https://openalex.org/W1984068197", + "https://openalex.org/W1984350393", + "https://openalex.org/W1984643937", + "https://openalex.org/W1985987493", + "https://openalex.org/W1987845271", + "https://openalex.org/W1989499832", + "https://openalex.org/W1989702938", + "https://openalex.org/W1992244412", + "https://openalex.org/W1993116423", + "https://openalex.org/W1996360405", + "https://openalex.org/W1999935041", + "https://openalex.org/W2005299943", + "https://openalex.org/W2007562169", + "https://openalex.org/W2007657822", + "https://openalex.org/W2010523825", + "https://openalex.org/W2012712694", + "https://openalex.org/W2013936649", + "https://openalex.org/W2015904350", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020764470", + "https://openalex.org/W2022097286", + "https://openalex.org/W2031415694", + "https://openalex.org/W2032247543", + "https://openalex.org/W2040228409", + "https://openalex.org/W2044180609", + "https://openalex.org/W2045796390", + "https://openalex.org/W2046692379", + "https://openalex.org/W2052740976", + "https://openalex.org/W2056099894", + "https://openalex.org/W2058496912", + "https://openalex.org/W2076798318", + "https://openalex.org/W2077217970", + "https://openalex.org/W2078950386", + "https://openalex.org/W2081357650", + "https://openalex.org/W2086437504", + "https://openalex.org/W2088846575", + "https://openalex.org/W2091915792", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096633407", + "https://openalex.org/W2097272254", + "https://openalex.org/W2097895487", + "https://openalex.org/W2099362736", + "https://openalex.org/W2100454174", + "https://openalex.org/W2100779981", + "https://openalex.org/W2106129384", + "https://openalex.org/W2106318612", + "https://openalex.org/W2107968098", + "https://openalex.org/W2108077794", + "https://openalex.org/W2108214308", + "https://openalex.org/W2108601876", + "https://openalex.org/W2108807072", + "https://openalex.org/W2109300365", + "https://openalex.org/W2109394932", + "https://openalex.org/W2110868467", + "https://openalex.org/W2112380340", + "https://openalex.org/W2113741278", + "https://openalex.org/W2114296159", + "https://openalex.org/W2116108199", + "https://openalex.org/W2118931532", + "https://openalex.org/W2119874464", + "https://openalex.org/W2120617515", + "https://openalex.org/W2120665430", + "https://openalex.org/W2120806354", + "https://openalex.org/W2122290076", + "https://openalex.org/W2123449924", + "https://openalex.org/W2123733729", + "https://openalex.org/W2123820077", + "https://openalex.org/W2124612670", + "https://openalex.org/W2124765629", + "https://openalex.org/W2125109784", + "https://openalex.org/W2125908420", + "https://openalex.org/W2127577941", + "https://openalex.org/W2129104108", + "https://openalex.org/W2129860818", + "https://openalex.org/W2130789388", + "https://openalex.org/W2134063365", + "https://openalex.org/W2134167315", + "https://openalex.org/W2135143063", + "https://openalex.org/W2135930857", + "https://openalex.org/W2136114025", + "https://openalex.org/W2137207609", + "https://openalex.org/W2137786570", + "https://openalex.org/W2138263042", + "https://openalex.org/W2138865266", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139709458", + "https://openalex.org/W2141902405", + "https://openalex.org/W2142069714", + "https://openalex.org/W2143521632", + "https://openalex.org/W2144902422", + "https://openalex.org/W2144936818", + "https://openalex.org/W2147487384", + "https://openalex.org/W2149721097", + "https://openalex.org/W2151238122", + "https://openalex.org/W2151298633", + "https://openalex.org/W2151773168", + "https://openalex.org/W2156186849", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157578436", + "https://openalex.org/W2159024459", + "https://openalex.org/W2159675343", + "https://openalex.org/W2160495867", + "https://openalex.org/W2162379889", + "https://openalex.org/W2162552722", + "https://openalex.org/W2162737890", + "https://openalex.org/W2164210932", + "https://openalex.org/W2165239860", + "https://openalex.org/W2166858086", + "https://openalex.org/W2167529272", + "https://openalex.org/W2169300738", + "https://openalex.org/W2169570643", + "https://openalex.org/W2169623711", + "https://openalex.org/W2170005069", + "https://openalex.org/W2170204206", + "https://openalex.org/W2171074980", + "https://openalex.org/W2171604933", + "https://openalex.org/W2293322640", + "https://openalex.org/W2293634425", + "https://openalex.org/W2293768274", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2296452361", + "https://openalex.org/W2341535507", + "https://openalex.org/W2489822048", + "https://openalex.org/W2791732920", + "https://openalex.org/W2898916015", + "https://openalex.org/W2911978475", + "https://openalex.org/W2949506549", + "https://openalex.org/W2951987509", + "https://openalex.org/W2953223940", + "https://openalex.org/W2962974509", + "https://openalex.org/W2963774574", + "https://openalex.org/W2964020133", + "https://openalex.org/W3013501781", + "https://openalex.org/W3124370832", + "https://openalex.org/W3136767761", + "https://openalex.org/W3145128584", + "https://openalex.org/W4212863985", + "https://openalex.org/W4285719527", + "https://openalex.org/W6629510986", + "https://openalex.org/W6636283022", + "https://openalex.org/W6674632866", + "https://openalex.org/W6676639149", + "https://openalex.org/W6684819249", + "https://openalex.org/W6738852829", + "https://openalex.org/W6766076356", + "https://openalex.org/W7052421801" + ], + "related_works": [ + "https://openalex.org/W4320018150", + "https://openalex.org/W4239582170", + "https://openalex.org/W3048732067", + "https://openalex.org/W2918664383", + "https://openalex.org/W106056076", + "https://openalex.org/W4320855730", + "https://openalex.org/W4383468834", + "https://openalex.org/W2135200719", + "https://openalex.org/W4283221438", + "https://openalex.org/W2900159906" + ], + "abstract_inverted_index": { + "In": [ + 0, + 31 + ], + "this": [ + 1, + 32 + ], + "paper": [ + 2 + ], + "(expanded": [ + 3 + ], + "from": [ + 4 + ], + "an": [ + 5, + 13, + 28, + 51, + 59, + 66 + ], + "invited": [ + 6 + ], + "talk": [ + 7 + ], + "at": [ + 8 + ], + "AISEC": [ + 9 + ], + "2010),": [ + 10 + ], + "we": [ + 11 + ], + "discuss": [ + 12, + 46, + 84, + 93 + ], + "emerging": [ + 14 + ], + "field": [ + 15 + ], + "of": [ + 16, + 22, + 65 + ], + "study:": [ + 17 + ], + "adversarial": [ + 18, + 29 + ], + "machine": [ + 19, + 24, + 43, + 81 + ], + "learning---the": [ + 20 + ], + "study": [ + 21 + ], + "effective": [ + 23 + ], + "learning": [ + 25, + 44, + 82, + 95 + ], + "techniques": [ + 26 + ], + "against": [ + 27, + 41, + 86 + ], + "opponent.": [ + 30 + ], + "paper,": [ + 33 + ], + "we:": [ + 34 + ], + "give": [ + 35 + ], + "a": [ + 36 + ], + "taxonomy": [ + 37 + ], + "for": [ + 38, + 57 + ], + "classifying": [ + 39 + ], + "attacks": [ + 40 + ], + "online": [ + 42 + ], + "algorithms;": [ + 45, + 83 + ], + "application-specific": [ + 47 + ], + "factors": [ + 48 + ], + "that": [ + 49 + ], + "limit": [ + 50 + ], + "adversary's": [ + 52, + 60, + 67 + ], + "capabilities;": [ + 53, + 61 + ], + "introduce": [ + 54, + 88 + ], + "two": [ + 55 + ], + "models": [ + 56 + ], + "modeling": [ + 58 + ], + "explore": [ + 62, + 78 + ], + "the": [ + 63, + 70, + 89 + ], + "limits": [ + 64 + ], + "knowledge": [ + 68 + ], + "about": [ + 69 + ], + "algorithm,": [ + 71 + ], + "feature": [ + 72 + ], + "space,": [ + 73 + ], + "training,": [ + 74 + ], + "and": [ + 75, + 92 + ], + "input": [ + 76 + ], + "data;": [ + 77 + ], + "vulnerabilities": [ + 79 + ], + "in": [ + 80 + ], + "countermeasures": [ + 85 + ], + "attacks;": [ + 87 + ], + "evasion": [ + 90 + ], + "challenge;": [ + 91 + ], + "privacy-preserving": [ + 94 + ], + "techniques.": [ + 96 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 17 + }, + { + "year": 2025, + "cited_by_count": 65 + }, + { + "year": 2024, + "cited_by_count": 82 + }, + { + "year": 2023, + "cited_by_count": 88 + }, + { + "year": 2022, + "cited_by_count": 92 + }, + { + "year": 2021, + "cited_by_count": 192 + }, + { + "year": 2020, + "cited_by_count": 173 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 138 + }, + { + "year": 2017, + "cited_by_count": 88 + }, + { + "year": 2016, + "cited_by_count": 42 + }, + { + "year": 2015, + "cited_by_count": 32 + }, + { + "year": 2014, + "cited_by_count": 32 + }, + { + "year": 2013, + "cited_by_count": 10 + }, + { + "year": 2012, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3101749733", + "doi": null, + "title": "KERNEL METHODS IN MACHINE LEARNING", + "display_name": "KERNEL METHODS IN MACHINE LEARNING", + "relevance_score": 2733.9714, + "publication_year": 2008, + "publication_date": "2008-01-01", + "ids": { + "openalex": "https://openalex.org/W3101749733", + "mag": "3101749733" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.160.8616", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.160.8616", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/publications/pdfs/0701907.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Hofmann, T.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Hofmann, T.", + "raw_affiliation_strings": [ + "Department Empirical Inference, Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia" + ], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Schölkopf, B.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Schölkopf, B.", + "raw_affiliation_strings": [ + "Department Empirical Inference, Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "DARMSTADT UNIVERSITY OF TECHNOLOGY DEPARTMENT OF COMPUTER SCIENCE DARMSTADT GERMANY" + ], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Smola, A.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Smola, A.", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TÜBINGEN GERMANY" + ], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 80.3261, + "has_fulltext": false, + "cited_by_count": 1404, + "citation_normalized_percentile": { + "value": 0.99968237, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11236", + "display_name": "Control Systems and Identification", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11236", + "display_name": "Control Systems and Identification", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9959999918937683, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.9235234260559082 + }, + { + "id": "https://openalex.org/keywords/kernel-embedding-of-distributions", + "display_name": "Kernel embedding of distributions", + "score": 0.661546528339386 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.6241254806518555 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.6204042434692383 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5763845443725586 + }, + { + "id": "https://openalex.org/keywords/tree-kernel", + "display_name": "Tree kernel", + "score": 0.5457028150558472 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5348400473594666 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5333948731422424 + }, + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.5198448300361633 + }, + { + "id": "https://openalex.org/keywords/binary-classification", + "display_name": "Binary classification", + "score": 0.5161064863204956 + }, + { + "id": "https://openalex.org/keywords/radial-basis-function-kernel", + "display_name": "Radial basis function kernel", + "score": 0.51426762342453 + }, + { + "id": "https://openalex.org/keywords/representer-theorem", + "display_name": "Representer theorem", + "score": 0.5071642398834229 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.46649500727653503 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.46594440937042236 + }, + { + "id": "https://openalex.org/keywords/polynomial-kernel", + "display_name": "Polynomial kernel", + "score": 0.41850125789642334 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.3844338357448578 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.2444586455821991 + }, + { + "id": "https://openalex.org/keywords/discrete-mathematics", + "display_name": "Discrete mathematics", + "score": 0.09967216849327087 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.9235234260559082 + }, + { + "id": "https://openalex.org/C134517425", + "wikidata": "https://www.wikidata.org/wiki/Q16000131", + "display_name": "Kernel embedding of distributions", + "level": 4, + "score": 0.661546528339386 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.6241254806518555 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.6204042434692383 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5763845443725586 + }, + { + "id": "https://openalex.org/C140417398", + "wikidata": "https://www.wikidata.org/wiki/Q16933942", + "display_name": "Tree kernel", + "level": 5, + "score": 0.5457028150558472 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5348400473594666 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5333948731422424 + }, + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.5198448300361633 + }, + { + "id": "https://openalex.org/C66905080", + "wikidata": "https://www.wikidata.org/wiki/Q17005494", + "display_name": "Binary classification", + "level": 3, + "score": 0.5161064863204956 + }, + { + "id": "https://openalex.org/C75866337", + "wikidata": "https://www.wikidata.org/wiki/Q7280263", + "display_name": "Radial basis function kernel", + "level": 4, + "score": 0.51426762342453 + }, + { + "id": "https://openalex.org/C172623408", + "wikidata": "https://www.wikidata.org/wiki/Q7314263", + "display_name": "Representer theorem", + "level": 5, + "score": 0.5071642398834229 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.46649500727653503 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.46594440937042236 + }, + { + "id": "https://openalex.org/C160446489", + "wikidata": "https://www.wikidata.org/wiki/Q7226642", + "display_name": "Polynomial kernel", + "level": 4, + "score": 0.41850125789642334 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.3844338357448578 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.2444586455821991 + }, + { + "id": "https://openalex.org/C118615104", + "wikidata": "https://www.wikidata.org/wiki/Q121416", + "display_name": "Discrete mathematics", + "level": 1, + "score": 0.09967216849327087 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.160.8616", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.160.8616", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/publications/pdfs/0701907.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.680.2403", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.680.2403", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://alex.smola.org/papers/2008/HofSchSmo08.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:edoc.mpg.de:419905", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/419905", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annals of Statistics, v.36, 1171-1220 (2008)", + "raw_type": "Article" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1789855", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-C8CF-6", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "The Annals of Statistics", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 186, + "referenced_works": [ + "https://openalex.org/W14071851", + "https://openalex.org/W56743589", + "https://openalex.org/W100063776", + "https://openalex.org/W111380827", + "https://openalex.org/W147273232", + "https://openalex.org/W168447211", + "https://openalex.org/W179694669", + "https://openalex.org/W633772442", + "https://openalex.org/W854322902", + "https://openalex.org/W1486164486", + "https://openalex.org/W1490266132", + "https://openalex.org/W1496189301", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512098439", + "https://openalex.org/W1515020792", + "https://openalex.org/W1526146785", + "https://openalex.org/W1526729636", + "https://openalex.org/W1528905581", + "https://openalex.org/W1530699444", + "https://openalex.org/W1542652324", + "https://openalex.org/W1548802052", + "https://openalex.org/W1549656520", + "https://openalex.org/W1550988992", + "https://openalex.org/W1560729174", + "https://openalex.org/W1575431606", + "https://openalex.org/W1578255497", + "https://openalex.org/W1587744656", + "https://openalex.org/W1588401315", + "https://openalex.org/W1588424744", + "https://openalex.org/W1596052433", + "https://openalex.org/W1601740268", + "https://openalex.org/W1604293137", + "https://openalex.org/W1604792744", + "https://openalex.org/W1638081485", + "https://openalex.org/W1647376582", + "https://openalex.org/W1719651905", + "https://openalex.org/W1746819321", + "https://openalex.org/W1774304772", + "https://openalex.org/W1835509607", + "https://openalex.org/W1899157803", + "https://openalex.org/W1964724001", + "https://openalex.org/W1966347620", + "https://openalex.org/W1968934255", + "https://openalex.org/W1975077471", + "https://openalex.org/W1982032418", + "https://openalex.org/W1986280275", + "https://openalex.org/W1986931325", + "https://openalex.org/W1989408439", + "https://openalex.org/W1990534247", + "https://openalex.org/W1991200719", + "https://openalex.org/W1992236290", + "https://openalex.org/W1992666150", + "https://openalex.org/W1995558350", + "https://openalex.org/W1998438337", + "https://openalex.org/W1999486090", + "https://openalex.org/W2001792610", + "https://openalex.org/W2002806284", + "https://openalex.org/W2007154098", + "https://openalex.org/W2008400752", + "https://openalex.org/W2009511046", + "https://openalex.org/W2012383820", + "https://openalex.org/W2014158063", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015904350", + "https://openalex.org/W2017753243", + "https://openalex.org/W2018582985", + "https://openalex.org/W2020816856", + "https://openalex.org/W2025341678", + "https://openalex.org/W2029538739", + "https://openalex.org/W2038798255", + "https://openalex.org/W2041797434", + "https://openalex.org/W2047028564", + "https://openalex.org/W2051381803", + "https://openalex.org/W2060591526", + "https://openalex.org/W2064976291", + "https://openalex.org/W2070771761", + "https://openalex.org/W2072640386", + "https://openalex.org/W2075887074", + "https://openalex.org/W2077658674", + "https://openalex.org/W2082100828", + "https://openalex.org/W2082612735", + "https://openalex.org/W2083780577", + "https://openalex.org/W2086404575", + "https://openalex.org/W2086726221", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092182929", + "https://openalex.org/W2094212611", + "https://openalex.org/W2098385651", + "https://openalex.org/W2101276256", + "https://openalex.org/W2103194807", + "https://openalex.org/W2103657184", + "https://openalex.org/W2104128541", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106353560", + "https://openalex.org/W2108153239", + "https://openalex.org/W2112076978", + "https://openalex.org/W2114281975", + "https://openalex.org/W2118712128", + "https://openalex.org/W2119647652", + "https://openalex.org/W2119821739", + "https://openalex.org/W2120340025", + "https://openalex.org/W2121921208", + "https://openalex.org/W2123606421", + "https://openalex.org/W2123737232", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2125053431", + "https://openalex.org/W2127713198", + "https://openalex.org/W2131479089", + "https://openalex.org/W2132637896", + "https://openalex.org/W2132870739", + "https://openalex.org/W2134407776", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135498906", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139686264", + "https://openalex.org/W2140095548", + "https://openalex.org/W2141224867", + "https://openalex.org/W2141407058", + "https://openalex.org/W2142387771", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144068644", + "https://openalex.org/W2146766088", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148018895", + "https://openalex.org/W2148603752", + "https://openalex.org/W2149166361", + "https://openalex.org/W2149607218", + "https://openalex.org/W2151949149", + "https://openalex.org/W2156515921", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2159737176", + "https://openalex.org/W2160842254", + "https://openalex.org/W2161920802", + "https://openalex.org/W2162836072", + "https://openalex.org/W2164943005", + "https://openalex.org/W2167826316", + "https://openalex.org/W2169945149", + "https://openalex.org/W2314709380", + "https://openalex.org/W2408196097", + "https://openalex.org/W2498775949", + "https://openalex.org/W2554813760", + "https://openalex.org/W2579923771", + "https://openalex.org/W2595056910", + "https://openalex.org/W2795528501", + "https://openalex.org/W2798510847", + "https://openalex.org/W2798766386", + "https://openalex.org/W2976840617", + "https://openalex.org/W2988119488", + "https://openalex.org/W2994982620", + "https://openalex.org/W3004533406", + "https://openalex.org/W3012317737", + "https://openalex.org/W3015736691", + "https://openalex.org/W3021452258", + "https://openalex.org/W3023786531", + "https://openalex.org/W3119651796", + "https://openalex.org/W3145143011", + "https://openalex.org/W4210636998", + "https://openalex.org/W4211049957", + "https://openalex.org/W4211083646", + "https://openalex.org/W4229758204", + "https://openalex.org/W4232576706", + "https://openalex.org/W4234698323", + "https://openalex.org/W4235236043", + "https://openalex.org/W4237723258", + "https://openalex.org/W4237951138", + "https://openalex.org/W4238284510", + "https://openalex.org/W4238957295", + "https://openalex.org/W4239510810", + "https://openalex.org/W4240579122", + "https://openalex.org/W4246066915", + "https://openalex.org/W4247545571", + "https://openalex.org/W4249925659", + "https://openalex.org/W4251085907", + "https://openalex.org/W4251115686", + "https://openalex.org/W4255455317", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293052541", + "https://openalex.org/W4298876635", + "https://openalex.org/W4302591315", + "https://openalex.org/W4376453320", + "https://openalex.org/W4396738453" + ], + "related_works": [ + "https://openalex.org/W3013206934", + "https://openalex.org/W3100948281", + "https://openalex.org/W4311138679", + "https://openalex.org/W3123056048", + "https://openalex.org/W1983263273", + "https://openalex.org/W4247446331", + "https://openalex.org/W1836142315", + "https://openalex.org/W4294351650", + "https://openalex.org/W4243330733", + "https://openalex.org/W177392165" + ], + "abstract_inverted_index": { + "We": [ + 0, + 77 + ], + "review": [ + 1 + ], + "machine": [ + 2 + ], + "learning": [ + 3, + 12, + 52 + ], + "methods": [ + 4, + 10, + 90 + ], + "employing": [ + 5 + ], + "positive": [ + 6 + ], + "definite": [ + 7 + ], + "kernels.": [ + 8 + ], + "These": [ + 9 + ], + "formulate": [ + 11 + ], + "and": [ + 13, + 49 + ], + "estimation": [ + 14, + 92 + ], + "problems": [ + 15 + ], + "in": [ + 16, + 31, + 37 + ], + "a": [ + 17, + 34, + 79 + ], + "reproducing": [ + 18 + ], + "kernel": [ + 19 + ], + "Hilbert": [ + 20 + ], + "space": [ + 21 + ], + "(RKHS)": [ + 22 + ], + "of": [ + 23, + 33, + 40, + 45, + 51, + 62, + 82 + ], + "functions": [ + 24, + 68, + 72 + ], + "defined": [ + 25, + 73 + ], + "on": [ + 26, + 74 + ], + "the": [ + 27, + 43, + 47, + 56 + ], + "data": [ + 28 + ], + "domain,": [ + 29 + ], + "expanded": [ + 30 + ], + "terms": [ + 32 + ], + "kernel.": [ + 35 + ], + "Working": [ + 36 + ], + "linear": [ + 38 + ], + "spaces": [ + 39 + ], + "function": [ + 41 + ], + "has": [ + 42 + ], + "benefit": [ + 44 + ], + "facilitating": [ + 46 + ], + "construction": [ + 48 + ], + "analysis": [ + 50 + ], + "algorithms": [ + 53 + ], + "while": [ + 54 + ], + "at": [ + 55 + ], + "same": [ + 57 + ], + "time": [ + 58 + ], + "allowing": [ + 59 + ], + "large": [ + 60 + ], + "classes": [ + 61 + ], + "functions.": [ + 63 + ], + "The": [ + 64 + ], + "latter": [ + 65 + ], + "include": [ + 66 + ], + "nonlinear": [ + 67 + ], + "as": [ + 69, + 71 + ], + "well": [ + 70 + ], + "nonvectorial": [ + 75 + ], + "data.": [ + 76, + 95 + ], + "cover": [ + 78 + ], + "wide": [ + 80 + ], + "range": [ + 81 + ], + "methods,": [ + 83 + ], + "ranging": [ + 84 + ], + "from": [ + 85 + ], + "binary": [ + 86 + ], + "classifiers": [ + 87 + ], + "to": [ + 88 + ], + "sophisticated": [ + 89 + ], + "for": [ + 91 + ], + "with": [ + 93 + ], + "structured": [ + 94 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 22 + }, + { + "year": 2023, + "cited_by_count": 32 + }, + { + "year": 2022, + "cited_by_count": 53 + }, + { + "year": 2021, + "cited_by_count": 181 + }, + { + "year": 2020, + "cited_by_count": 192 + }, + { + "year": 2019, + "cited_by_count": 152 + }, + { + "year": 2018, + "cited_by_count": 126 + }, + { + "year": 2017, + "cited_by_count": 119 + }, + { + "year": 2016, + "cited_by_count": 94 + }, + { + "year": 2015, + "cited_by_count": 86 + }, + { + "year": 2014, + "cited_by_count": 101 + }, + { + "year": 2013, + "cited_by_count": 81 + }, + { + "year": 2012, + "cited_by_count": 57 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2701059868", + "doi": "https://doi.org/10.1109/sp.2017.12", + "title": "SecureML: A System for Scalable Privacy-Preserving Machine Learning", + "display_name": "SecureML: A System for Scalable Privacy-Preserving Machine Learning", + "relevance_score": 2683.66, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2701059868", + "doi": "https://doi.org/10.1109/sp.2017.12", + "mag": "2701059868" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2017.12", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.12", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5001493977", + "display_name": "Payman Mohassel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I164956901", + "display_name": "Visa (United Kingdom)", + "ror": "https://ror.org/05syhdw25", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I164956901", + "https://openalex.org/I4210148469" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Payman Mohassel", + "raw_affiliation_strings": [ + "Visa Research" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Visa Research", + "institution_ids": [ + "https://openalex.org/I164956901" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100434296", + "display_name": "Yupeng Zhang", + "orcid": "https://orcid.org/0000-0003-0378-3146" + }, + "institutions": [ + { + "id": "https://openalex.org/I66946132", + "display_name": "University of Maryland, College Park", + "ror": "https://ror.org/047s2c258", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I66946132" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yupeng Zhang", + "raw_affiliation_strings": [ + "University of Maryland" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Maryland", + "institution_ids": [ + "https://openalex.org/I66946132" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5001493977" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I164956901" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 109.4959, + "has_fulltext": false, + "cited_by_count": 1840, + "citation_normalized_percentile": { + "value": 0.99954846, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "19", + "last_page": "38" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8628431558609009 + }, + { + "id": "https://openalex.org/keywords/softmax-function", + "display_name": "Softmax function", + "score": 0.6727948188781738 + }, + { + "id": "https://openalex.org/keywords/scalability", + "display_name": "Scalability", + "score": 0.639832079410553 + }, + { + "id": "https://openalex.org/keywords/server", + "display_name": "Server", + "score": 0.6201728582382202 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5722167491912842 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5273305177688599 + }, + { + "id": "https://openalex.org/keywords/information-privacy", + "display_name": "Information privacy", + "score": 0.4981374740600586 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.49659615755081177 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.4761010408401489 + }, + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.47118237614631653 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.4711809456348419 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.36041098833084106 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.1726815104484558 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.15583673119544983 + }, + { + "id": "https://openalex.org/keywords/database", + "display_name": "Database", + "score": 0.1493930220603943 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8628431558609009 + }, + { + "id": "https://openalex.org/C188441871", + "wikidata": "https://www.wikidata.org/wiki/Q7554146", + "display_name": "Softmax function", + "level": 3, + "score": 0.6727948188781738 + }, + { + "id": "https://openalex.org/C48044578", + "wikidata": "https://www.wikidata.org/wiki/Q727490", + "display_name": "Scalability", + "level": 2, + "score": 0.639832079410553 + }, + { + "id": "https://openalex.org/C93996380", + "wikidata": "https://www.wikidata.org/wiki/Q44127", + "display_name": "Server", + "level": 2, + "score": 0.6201728582382202 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5722167491912842 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5273305177688599 + }, + { + "id": "https://openalex.org/C123201435", + "wikidata": "https://www.wikidata.org/wiki/Q456632", + "display_name": "Information privacy", + "level": 2, + "score": 0.4981374740600586 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.49659615755081177 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.4761010408401489 + }, + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.47118237614631653 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.4711809456348419 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.36041098833084106 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.1726815104484558 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.15583673119544983 + }, + { + "id": "https://openalex.org/C77088390", + "wikidata": "https://www.wikidata.org/wiki/Q8513", + "display_name": "Database", + "level": 1, + "score": 0.1493930220603943 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/sp.2017.12", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.12", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 49, + "referenced_works": [ + "https://openalex.org/W34785529", + "https://openalex.org/W173953576", + "https://openalex.org/W374828532", + "https://openalex.org/W1480225633", + "https://openalex.org/W1499934958", + "https://openalex.org/W1510952750", + "https://openalex.org/W1528076390", + "https://openalex.org/W1608459536", + "https://openalex.org/W1826277484", + "https://openalex.org/W1968265138", + "https://openalex.org/W1969009977", + "https://openalex.org/W1971991172", + "https://openalex.org/W1985511977", + "https://openalex.org/W2009733253", + "https://openalex.org/W2019891719", + "https://openalex.org/W2053637704", + "https://openalex.org/W2083026317", + "https://openalex.org/W2088339831", + "https://openalex.org/W2106217851", + "https://openalex.org/W2112340198", + "https://openalex.org/W2112380340", + "https://openalex.org/W2129548234", + "https://openalex.org/W2132172731", + "https://openalex.org/W2134340933", + "https://openalex.org/W2145029920", + "https://openalex.org/W2149603017", + "https://openalex.org/W2152799677", + "https://openalex.org/W2167094273", + "https://openalex.org/W2167236842", + "https://openalex.org/W2170696315", + "https://openalex.org/W2171033594", + "https://openalex.org/W2295292576", + "https://openalex.org/W2435473771", + "https://openalex.org/W2473418344", + "https://openalex.org/W2963759574", + "https://openalex.org/W3029558105", + "https://openalex.org/W3030849327", + "https://openalex.org/W3141585064", + "https://openalex.org/W3185488408", + "https://openalex.org/W4248358572", + "https://openalex.org/W6601427463", + "https://openalex.org/W6612902754", + "https://openalex.org/W6631628602", + "https://openalex.org/W6663928093", + "https://openalex.org/W6676639149", + "https://openalex.org/W6679568130", + "https://openalex.org/W6681017033", + "https://openalex.org/W6682557032", + "https://openalex.org/W6778583135" + ], + "related_works": [ + "https://openalex.org/W4386603768", + "https://openalex.org/W2950475743", + "https://openalex.org/W4283819496", + "https://openalex.org/W4315785049", + "https://openalex.org/W3015792155", + "https://openalex.org/W3021529903", + "https://openalex.org/W3118286710", + "https://openalex.org/W2937906318", + "https://openalex.org/W4225929918", + "https://openalex.org/W3095450733" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 58 + ], + "is": [ + 2 + ], + "widely": [ + 3 + ], + "used": [ + 4 + ], + "in": [ + 5, + 77, + 140 + ], + "practice": [ + 6 + ], + "to": [ + 7, + 109, + 122, + 133, + 170 + ], + "produce": [ + 8 + ], + "predictive": [ + 9 + ], + "models": [ + 10, + 22, + 95 + ], + "for": [ + 11, + 54, + 59, + 161, + 187 + ], + "applications": [ + 12 + ], + "such": [ + 13, + 125 + ], + "as": [ + 14, + 126 + ], + "image": [ + 15 + ], + "processing,": [ + 16 + ], + "speech": [ + 17 + ], + "and": [ + 18, + 51, + 64, + 118, + 128, + 165, + 168 + ], + "text": [ + 19 + ], + "recognition.": [ + 20 + ], + "These": [ + 21 + ], + "are": [ + 23, + 131, + 148 + ], + "more": [ + 24 + ], + "accurate": [ + 25 + ], + "when": [ + 26 + ], + "trained": [ + 27 + ], + "on": [ + 28, + 96, + 114 + ], + "large": [ + 29 + ], + "amount": [ + 30 + ], + "of": [ + 31, + 151, + 157, + 172, + 177 + ], + "data": [ + 32, + 40, + 82, + 87, + 99, + 173 + ], + "collected": [ + 33 + ], + "from": [ + 34 + ], + "different": [ + 35 + ], + "sources.": [ + 36 + ], + "However,": [ + 37 + ], + "the": [ + 38, + 69, + 78, + 97, + 155, + 158, + 182 + ], + "massive": [ + 39 + ], + "collection": [ + 41 + ], + "raises": [ + 42 + ], + "privacy": [ + 43, + 55, + 162, + 184 + ], + "concerns.": [ + 44 + ], + "In": [ + 45 + ], + "this": [ + 46 + ], + "paper,": [ + 47 + ], + "we": [ + 48 + ], + "present": [ + 49 + ], + "new": [ + 50, + 107 + ], + "efficient": [ + 52 + ], + "protocols": [ + 53, + 75, + 147 + ], + "preserving": [ + 56, + 163, + 185 + ], + "machine": [ + 57 + ], + "linear": [ + 60, + 164 + ], + "regression,": [ + 61 + ], + "logistic": [ + 62, + 166 + ], + "regression": [ + 63 + ], + "neural": [ + 65, + 189 + ], + "network": [ + 66 + ], + "training": [ + 67, + 188 + ], + "using": [ + 68, + 100 + ], + "stochastic": [ + 70 + ], + "gradient": [ + 71 + ], + "descent": [ + 72 + ], + "method.": [ + 73 + ], + "Our": [ + 74, + 142 + ], + "fall": [ + 76 + ], + "two-server": [ + 79 + ], + "model": [ + 80 + ], + "where": [ + 81 + ], + "owners": [ + 83 + ], + "distribute": [ + 84 + ], + "their": [ + 85 + ], + "private": [ + 86 + ], + "among": [ + 88 + ], + "two": [ + 89 + ], + "non-colluding": [ + 90 + ], + "servers": [ + 91 + ], + "who": [ + 92 + ], + "train": [ + 93 + ], + "various": [ + 94 + ], + "joint": [ + 98 + ], + "secure": [ + 101, + 111 + ], + "two-party": [ + 102 + ], + "computation": [ + 103 + ], + "(2PC).": [ + 104 + ], + "We": [ + 105, + 136, + 179 + ], + "develop": [ + 106 + ], + "techniques": [ + 108 + ], + "support": [ + 110 + ], + "arithmetic": [ + 112 + ], + "operations": [ + 113 + ], + "shared": [ + 115 + ], + "decimal": [ + 116 + ], + "numbers,": [ + 117 + ], + "propose": [ + 119 + ], + "MPC-friendly": [ + 120 + ], + "alternatives": [ + 121 + ], + "non-linear": [ + 123 + ], + "functions": [ + 124 + ], + "sigmoid": [ + 127 + ], + "softmax": [ + 129 + ], + "that": [ + 130, + 145 + ], + "superior": [ + 132 + ], + "prior": [ + 134 + ], + "work.": [ + 135 + ], + "implement": [ + 137, + 181 + ], + "our": [ + 138, + 146 + ], + "system": [ + 139, + 186 + ], + "C++.": [ + 141 + ], + "experiments": [ + 143 + ], + "validate": [ + 144 + ], + "several": [ + 149 + ], + "orders": [ + 150 + ], + "magnitude": [ + 152 + ], + "faster": [ + 153 + ], + "than": [ + 154 + ], + "state": [ + 156 + ], + "art": [ + 159 + ], + "implementations": [ + 160 + ], + "regressions,": [ + 167 + ], + "scale": [ + 169 + ], + "millions": [ + 171 + ], + "samples": [ + 174 + ], + "with": [ + 175 + ], + "thousands": [ + 176 + ], + "features.": [ + 178 + ], + "also": [ + 180 + ], + "first": [ + 183 + ], + "networks.": [ + 190 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 32 + }, + { + "year": 2025, + "cited_by_count": 250 + }, + { + "year": 2024, + "cited_by_count": 273 + }, + { + "year": 2023, + "cited_by_count": 261 + }, + { + "year": 2022, + "cited_by_count": 233 + }, + { + "year": 2021, + "cited_by_count": 265 + }, + { + "year": 2020, + "cited_by_count": 274 + }, + { + "year": 2019, + "cited_by_count": 158 + }, + { + "year": 2018, + "cited_by_count": 85 + }, + { + "year": 2017, + "cited_by_count": 9 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1944672", + "doi": null, + "title": "Foundations of Machine Learning", + "display_name": "Foundations of Machine Learning", + "relevance_score": 2672.102, + "publication_year": 2012, + "publication_date": "2012-08-17", + "ids": { + "openalex": "https://openalex.org/W1944672", + "mag": "1944672" + }, + "language": "nl", + "primary_location": { + "id": "mag:1944672", + "is_oa": false, + "landing_page_url": "http://ci.nii.ac.jp/ncid/BB10313921", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210197683", + "display_name": "Medical Entomology and Zoology", + "issn_l": "0424-7086", + "issn": [ + "0424-7086", + "2185-5609" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319750", + "host_organization_name": "Japan Society of Medical Entomology and Zoology", + "host_organization_lineage": [ + "https://openalex.org/P4310319750" + ], + "host_organization_lineage_names": [ + "Japan Society of Medical Entomology and Zoology" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Nederlands tijdschrift voor geneeskunde", + "raw_type": null + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058849006", + "display_name": "Mehryar Mohri", + "orcid": "https://orcid.org/0000-0002-3987-9847" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Mehryar Mohri", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-3987-9847", + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089765894", + "display_name": "Afshin Rostamizadeh", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I57206974", + "display_name": "New York University", + "ror": "https://ror.org/0190ak572", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I57206974" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Afshin Rostamizadeh", + "raw_affiliation_strings": [ + "University of California at Berkeley", + "New York University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of California at Berkeley", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "New York University", + "institution_ids": [ + "https://openalex.org/I57206974" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5029768722", + "display_name": "Ameet Talwalkar", + "orcid": "https://orcid.org/0000-0001-6650-1893" + }, + "institutions": [ + { + "id": "https://openalex.org/I57206974", + "display_name": "New York University", + "ror": "https://ror.org/0190ak572", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I57206974" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ameet Talwalkar", + "raw_affiliation_strings": [ + "New York University", + "University of California at Berkeley" + ], + "raw_orcid": "https://orcid.org/0000-0001-6650-1893", + "affiliations": [ + { + "raw_affiliation_string": "New York University", + "institution_ids": [ + "https://openalex.org/I57206974" + ] + }, + { + "raw_affiliation_string": "University of California at Berkeley", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5058849006" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 27.6943, + "has_fulltext": false, + "cited_by_count": 1162, + "citation_normalized_percentile": { + "value": 0.99691086, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "135", + "issue": "43", + "first_page": "2040", + "last_page": "2040" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mathematical-proof", + "display_name": "Mathematical proof", + "score": 0.7428677678108215 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6456596851348877 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5522527098655701 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.5323909521102905 + }, + { + "id": "https://openalex.org/keywords/ranking", + "display_name": "Ranking (information retrieval)", + "score": 0.5272710919380188 + }, + { + "id": "https://openalex.org/keywords/key", + "display_name": "Key (lock)", + "score": 0.45580342411994934 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4148377478122711 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.38723039627075195 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.22637265920639038 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.15077513456344604 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C108710211", + "wikidata": "https://www.wikidata.org/wiki/Q11538", + "display_name": "Mathematical proof", + "level": 2, + "score": 0.7428677678108215 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6456596851348877 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5522527098655701 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.5323909521102905 + }, + { + "id": "https://openalex.org/C189430467", + "wikidata": "https://www.wikidata.org/wiki/Q7293293", + "display_name": "Ranking (information retrieval)", + "level": 2, + "score": 0.5272710919380188 + }, + { + "id": "https://openalex.org/C26517878", + "wikidata": "https://www.wikidata.org/wiki/Q228039", + "display_name": "Key (lock)", + "level": 2, + "score": 0.45580342411994934 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4148377478122711 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.38723039627075195 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.22637265920639038 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.15077513456344604 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "mag:1944672", + "is_oa": false, + "landing_page_url": "http://ci.nii.ac.jp/ncid/BB10313921", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210197683", + "display_name": "Medical Entomology and Zoology", + "issn_l": "0424-7086", + "issn": [ + "0424-7086", + "2185-5609" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319750", + "host_organization_name": "Japan Society of Medical Entomology and Zoology", + "host_organization_lineage": [ + "https://openalex.org/P4310319750" + ], + "host_organization_lineage_names": [ + "Japan Society of Medical Entomology and Zoology" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Nederlands tijdschrift voor geneeskunde", + "raw_type": null + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-025293082", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=025293082&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-030647834", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=030647834&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-033761252", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:2150131", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2150131", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402194", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2640216", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2640216", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "score": 0.7599999904632568, + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 208, + "referenced_works": [ + "https://openalex.org/W2169610", + "https://openalex.org/W29925583", + "https://openalex.org/W32198084", + "https://openalex.org/W82544137", + "https://openalex.org/W100063776", + "https://openalex.org/W180686687", + "https://openalex.org/W198244778", + "https://openalex.org/W214995755", + "https://openalex.org/W1034819515", + "https://openalex.org/W1502981577", + "https://openalex.org/W1504694836", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512798900", + "https://openalex.org/W1514324498", + "https://openalex.org/W1515891729", + "https://openalex.org/W1520252399", + "https://openalex.org/W1526146785", + "https://openalex.org/W1527117384", + "https://openalex.org/W1527666879", + "https://openalex.org/W1528905581", + "https://openalex.org/W1532246502", + "https://openalex.org/W1532945940", + "https://openalex.org/W1534694010", + "https://openalex.org/W1535810436", + "https://openalex.org/W1536719366", + "https://openalex.org/W1538170657", + "https://openalex.org/W1538240903", + "https://openalex.org/W1539246860", + "https://openalex.org/W1539833865", + "https://openalex.org/W1540007258", + "https://openalex.org/W1540155273", + "https://openalex.org/W1542886316", + "https://openalex.org/W1544896713", + "https://openalex.org/W1545148916", + "https://openalex.org/W1546372806", + "https://openalex.org/W1546851689", + "https://openalex.org/W1546961578", + "https://openalex.org/W1553313034", + "https://openalex.org/W1563736811", + "https://openalex.org/W1569296262", + "https://openalex.org/W1570963478", + "https://openalex.org/W1575130722", + "https://openalex.org/W1576213419", + "https://openalex.org/W1579534531", + "https://openalex.org/W1584815367", + "https://openalex.org/W1605498412", + "https://openalex.org/W1605688901", + "https://openalex.org/W1606751204", + "https://openalex.org/W1608733719", + "https://openalex.org/W1614597761", + "https://openalex.org/W1629199664", + "https://openalex.org/W1676820704", + "https://openalex.org/W1678356000", + "https://openalex.org/W1755117326", + "https://openalex.org/W1848067327", + "https://openalex.org/W1892809886", + "https://openalex.org/W1918179283", + "https://openalex.org/W1963858753", + "https://openalex.org/W1966347620", + "https://openalex.org/W1967684610", + "https://openalex.org/W1969005071", + "https://openalex.org/W1971361630", + "https://openalex.org/W1979675141", + "https://openalex.org/W1979711143", + "https://openalex.org/W1983739894", + "https://openalex.org/W1984901446", + "https://openalex.org/W1985077192", + "https://openalex.org/W1985554184", + "https://openalex.org/W1985949731", + "https://openalex.org/W1986446408", + "https://openalex.org/W1988790447", + "https://openalex.org/W1990876436", + "https://openalex.org/W1994592916", + "https://openalex.org/W1994616650", + "https://openalex.org/W1998167411", + "https://openalex.org/W1999678910", + "https://openalex.org/W2001141328", + "https://openalex.org/W2002089154", + "https://openalex.org/W2002644653", + "https://openalex.org/W2003680476", + "https://openalex.org/W2005306124", + "https://openalex.org/W2008740515", + "https://openalex.org/W2009797711", + "https://openalex.org/W2010029425", + "https://openalex.org/W2015904350", + "https://openalex.org/W2017031328", + "https://openalex.org/W2017603160", + "https://openalex.org/W2018706164", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020913456", + "https://openalex.org/W2024046085", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030189596", + "https://openalex.org/W2032210760", + "https://openalex.org/W2033547792", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041613709", + "https://openalex.org/W2041615247", + "https://openalex.org/W2044654734", + "https://openalex.org/W2045291344", + "https://openalex.org/W2047028564", + "https://openalex.org/W2047221353", + "https://openalex.org/W2047278710", + "https://openalex.org/W2050570613", + "https://openalex.org/W2051669046", + "https://openalex.org/W2051834357", + "https://openalex.org/W2053186076", + "https://openalex.org/W2053463056", + "https://openalex.org/W2055186664", + "https://openalex.org/W2058239479", + "https://openalex.org/W2063978378", + "https://openalex.org/W2068871408", + "https://openalex.org/W2070534370", + "https://openalex.org/W2073242866", + "https://openalex.org/W2074010768", + "https://openalex.org/W2075567596", + "https://openalex.org/W2081230843", + "https://openalex.org/W2081281113", + "https://openalex.org/W2084544490", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2088658556", + "https://openalex.org/W2092074494", + "https://openalex.org/W2092386826", + "https://openalex.org/W2093717447", + "https://openalex.org/W2093825590", + "https://openalex.org/W2097160297", + "https://openalex.org/W2097477220", + "https://openalex.org/W2099968818", + "https://openalex.org/W2101276256", + "https://openalex.org/W2102011767", + "https://openalex.org/W2103012681", + "https://openalex.org/W2104364170", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105732805", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106491486", + "https://openalex.org/W2106887613", + "https://openalex.org/W2107890099", + "https://openalex.org/W2108263314", + "https://openalex.org/W2109339818", + "https://openalex.org/W2111233787", + "https://openalex.org/W2111355007", + "https://openalex.org/W2111365067", + "https://openalex.org/W2117341272", + "https://openalex.org/W2118686230", + "https://openalex.org/W2119567691", + "https://openalex.org/W2120100126", + "https://openalex.org/W2120875792", + "https://openalex.org/W2121420451", + "https://openalex.org/W2123793406", + "https://openalex.org/W2125528794", + "https://openalex.org/W2128833328", + "https://openalex.org/W2129113961", + "https://openalex.org/W2131600418", + "https://openalex.org/W2133864802", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135730283", + "https://openalex.org/W2135840513", + "https://openalex.org/W2137207609", + "https://openalex.org/W2137690105", + "https://openalex.org/W2138263042", + "https://openalex.org/W2139338362", + "https://openalex.org/W2142399242", + "https://openalex.org/W2143166796", + "https://openalex.org/W2147750403", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148825261", + "https://openalex.org/W2149706766", + "https://openalex.org/W2154104389", + "https://openalex.org/W2154952480", + "https://openalex.org/W2156718197", + "https://openalex.org/W2157112198", + "https://openalex.org/W2157791002", + "https://openalex.org/W2157825442", + "https://openalex.org/W2160392347", + "https://openalex.org/W2161195767", + "https://openalex.org/W2162157640", + "https://openalex.org/W2165131254", + "https://openalex.org/W2165966284", + "https://openalex.org/W2166501286", + "https://openalex.org/W2168020168", + "https://openalex.org/W2169022337", + "https://openalex.org/W2169198425", + "https://openalex.org/W2169401877", + "https://openalex.org/W2171710336", + "https://openalex.org/W2171792531", + "https://openalex.org/W2172195373", + "https://openalex.org/W2294105907", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2312609093", + "https://openalex.org/W2322150470", + "https://openalex.org/W2330274477", + "https://openalex.org/W2490901831", + "https://openalex.org/W2554813760", + "https://openalex.org/W2554958826", + "https://openalex.org/W2579923771", + "https://openalex.org/W2611627047", + "https://openalex.org/W2798579099", + "https://openalex.org/W2798766386", + "https://openalex.org/W2979473749", + "https://openalex.org/W2989661724", + "https://openalex.org/W3011120880", + "https://openalex.org/W3022552533", + "https://openalex.org/W3085162807", + "https://openalex.org/W3119651796" + ], + "related_works": [ + "https://openalex.org/W607505555", + "https://openalex.org/W3118608800", + "https://openalex.org/W2964121744", + "https://openalex.org/W2963664410", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2899606262", + "https://openalex.org/W2579923771", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2156909104", + "https://openalex.org/W2153635508", + "https://openalex.org/W2148603752", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112796928", + "https://openalex.org/W2099471712", + "https://openalex.org/W1663973292", + "https://openalex.org/W1480376833", + "https://openalex.org/W2165698076", + "https://openalex.org/W2121863487" + ], + "abstract_inverted_index": { + "Fundamental": [ + 0 + ], + "topics": [ + 1 + ], + "in": [ + 2 + ], + "machine": [ + 3 + ], + "learning": [ + 4 + ], + "are": [ + 5 + ], + "presented": [ + 6 + ], + "along": [ + 7 + ], + "with": [ + 8 + ], + "theoretical": [ + 9 + ], + "and": [ + 10, + 16 + ], + "conceptual": [ + 11 + ], + "tools": [ + 12 + ], + "for": [ + 13 + ], + "the": [ + 14 + ], + "discussion": [ + 15 + ], + "proof": [ + 17 + ], + "of": [ + 18 + ], + "algorithms.": [ + 19 + ] + }, + "counts_by_year": [ + { + "year": 2024, + "cited_by_count": 2 + }, + { + "year": 2023, + "cited_by_count": 10 + }, + { + "year": 2022, + "cited_by_count": 23 + }, + { + "year": 2021, + "cited_by_count": 260 + }, + { + "year": 2020, + "cited_by_count": 251 + }, + { + "year": 2019, + "cited_by_count": 183 + }, + { + "year": 2018, + "cited_by_count": 112 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 74 + }, + { + "year": 2015, + "cited_by_count": 103 + }, + { + "year": 2014, + "cited_by_count": 62 + }, + { + "year": 2013, + "cited_by_count": 15 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2025-10-10T17:16:08.811792", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2792946961", + "doi": "https://doi.org/10.1103/physrevlett.122.040504", + "title": "Quantum Machine Learning in Feature Hilbert Spaces", + "display_name": "Quantum Machine Learning in Feature Hilbert Spaces", + "relevance_score": 2668.3115, + "publication_year": 2019, + "publication_date": "2019-02-01", + "ids": { + "openalex": "https://openalex.org/W2792946961", + "doi": "https://doi.org/10.1103/physrevlett.122.040504", + "mag": "2792946961", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30768345" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/physrevlett.122.040504", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.122.040504", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1803.07128", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5073832417", + "display_name": "Maria Schuld", + "orcid": "https://orcid.org/0000-0001-8626-168X" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210150097", + "display_name": "Xanadu Quantum Technologies (Canada)", + "ror": "https://ror.org/05qj0n416", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I4210150097" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada", + "institution_ids": [ + "https://openalex.org/I4210150097" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5073500091", + "display_name": "Nathan Killoran", + "orcid": "https://orcid.org/0009-0004-5021-7467" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210150097", + "display_name": "Xanadu Quantum Technologies (Canada)", + "ror": "https://ror.org/05qj0n416", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I4210150097" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Nathan Killoran", + "raw_affiliation_strings": [ + "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada", + "institution_ids": [ + "https://openalex.org/I4210150097" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5073832417" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210150097" + ], + "apc_list": { + "value": 3750, + "currency": "USD", + "value_usd": 3750 + }, + "apc_paid": null, + "fwci": 72.85, + "has_fulltext": false, + "cited_by_count": 1615, + "citation_normalized_percentile": { + "value": 0.99930244, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "122", + "issue": "4", + "first_page": "040504", + "last_page": "040504" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10020", + "display_name": "Quantum Information and Cryptography", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10622", + "display_name": "Quantum Mechanics and Applications", + "score": 0.9937000274658203, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.6511375904083252 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.6377810835838318 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6225951313972473 + }, + { + "id": "https://openalex.org/keywords/quantum-computer", + "display_name": "Quantum computer", + "score": 0.5806344747543335 + }, + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.5536273717880249 + }, + { + "id": "https://openalex.org/keywords/quantum-machine-learning", + "display_name": "Quantum machine learning", + "score": 0.5515050888061523 + }, + { + "id": "https://openalex.org/keywords/quantum-state", + "display_name": "Quantum state", + "score": 0.5443233847618103 + }, + { + "id": "https://openalex.org/keywords/feature-vector", + "display_name": "Feature vector", + "score": 0.5191175937652588 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.5189794898033142 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5174089670181274 + }, + { + "id": "https://openalex.org/keywords/quantum-algorithm", + "display_name": "Quantum algorithm", + "score": 0.5012130737304688 + }, + { + "id": "https://openalex.org/keywords/quantum-information", + "display_name": "Quantum information", + "score": 0.49098876118659973 + }, + { + "id": "https://openalex.org/keywords/povm", + "display_name": "POVM", + "score": 0.48033323884010315 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.45647674798965454 + }, + { + "id": "https://openalex.org/keywords/quantum-process", + "display_name": "Quantum process", + "score": 0.4484074115753174 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.43805402517318726 + }, + { + "id": "https://openalex.org/keywords/quantum", + "display_name": "Quantum", + "score": 0.4299362897872925 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.4142104983329773 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4032990038394928 + }, + { + "id": "https://openalex.org/keywords/quantum-operation", + "display_name": "Quantum operation", + "score": 0.39918798208236694 + }, + { + "id": "https://openalex.org/keywords/open-quantum-system", + "display_name": "Open quantum system", + "score": 0.36664798855781555 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2376301884651184 + }, + { + "id": "https://openalex.org/keywords/quantum-mechanics", + "display_name": "Quantum mechanics", + "score": 0.23471912741661072 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.20437106490135193 + }, + { + "id": "https://openalex.org/keywords/quantum-dynamics", + "display_name": "Quantum dynamics", + "score": 0.17022734880447388 + }, + { + "id": "https://openalex.org/keywords/pure-mathematics", + "display_name": "Pure mathematics", + "score": 0.16131508350372314 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.6511375904083252 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.6377810835838318 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6225951313972473 + }, + { + "id": "https://openalex.org/C58053490", + "wikidata": "https://www.wikidata.org/wiki/Q176555", + "display_name": "Quantum computer", + "level": 3, + "score": 0.5806344747543335 + }, + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.5536273717880249 + }, + { + "id": "https://openalex.org/C2779094486", + "wikidata": "https://www.wikidata.org/wiki/Q18811578", + "display_name": "Quantum machine learning", + "level": 4, + "score": 0.5515050888061523 + }, + { + "id": "https://openalex.org/C15706264", + "wikidata": "https://www.wikidata.org/wiki/Q230883", + "display_name": "Quantum state", + "level": 3, + "score": 0.5443233847618103 + }, + { + "id": "https://openalex.org/C83665646", + "wikidata": "https://www.wikidata.org/wiki/Q42139305", + "display_name": "Feature vector", + "level": 2, + "score": 0.5191175937652588 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.5189794898033142 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5174089670181274 + }, + { + "id": "https://openalex.org/C137019171", + "wikidata": "https://www.wikidata.org/wiki/Q2623817", + "display_name": "Quantum algorithm", + "level": 3, + "score": 0.5012130737304688 + }, + { + "id": "https://openalex.org/C169699857", + "wikidata": "https://www.wikidata.org/wiki/Q2122243", + "display_name": "Quantum information", + "level": 3, + "score": 0.49098876118659973 + }, + { + "id": "https://openalex.org/C179957908", + "wikidata": "https://www.wikidata.org/wiki/Q907206", + "display_name": "POVM", + "level": 5, + "score": 0.48033323884010315 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.45647674798965454 + }, + { + "id": "https://openalex.org/C11255438", + "wikidata": "https://www.wikidata.org/wiki/Q7269085", + "display_name": "Quantum process", + "level": 4, + "score": 0.4484074115753174 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.43805402517318726 + }, + { + "id": "https://openalex.org/C84114770", + "wikidata": "https://www.wikidata.org/wiki/Q46344", + "display_name": "Quantum", + "level": 2, + "score": 0.4299362897872925 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.4142104983329773 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4032990038394928 + }, + { + "id": "https://openalex.org/C43682372", + "wikidata": "https://www.wikidata.org/wiki/Q7269080", + "display_name": "Quantum operation", + "level": 4, + "score": 0.39918798208236694 + }, + { + "id": "https://openalex.org/C190474826", + "wikidata": "https://www.wikidata.org/wiki/Q2495111", + "display_name": "Open quantum system", + "level": 3, + "score": 0.36664798855781555 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2376301884651184 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.23471912741661072 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.20437106490135193 + }, + { + "id": "https://openalex.org/C15184713", + "wikidata": "https://www.wikidata.org/wiki/Q7269042", + "display_name": "Quantum dynamics", + "level": 3, + "score": 0.17022734880447388 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.16131508350372314 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1103/physrevlett.122.040504", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.122.040504", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + { + "id": "pmid:30768345", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30768345", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical review letters", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1803.07128", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1803.07128", + "pdf_url": "https://arxiv.org/pdf/1803.07128", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1803.07128", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1803.07128", + "pdf_url": "https://arxiv.org/pdf/1803.07128", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/8", + "score": 0.5199999809265137, + "display_name": "Decent work and economic growth" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 40, + "referenced_works": [ + "https://openalex.org/W1550321157", + "https://openalex.org/W1559984405", + "https://openalex.org/W1565176583", + "https://openalex.org/W1584661976", + "https://openalex.org/W1590419653", + "https://openalex.org/W1904238065", + "https://openalex.org/W1970948459", + "https://openalex.org/W1981783889", + "https://openalex.org/W1984125696", + "https://openalex.org/W1986280275", + "https://openalex.org/W2011527952", + "https://openalex.org/W2014158063", + "https://openalex.org/W2103956991", + "https://openalex.org/W2126887346", + "https://openalex.org/W2142739935", + "https://openalex.org/W2155728415", + "https://openalex.org/W2168029744", + "https://openalex.org/W2257937122", + "https://openalex.org/W2487141439", + "https://openalex.org/W2489886790", + "https://openalex.org/W2497224462", + "https://openalex.org/W2510588772", + "https://openalex.org/W2557392572", + "https://openalex.org/W2560386163", + "https://openalex.org/W2561176579", + "https://openalex.org/W2619100667", + "https://openalex.org/W2751668559", + "https://openalex.org/W2766183519", + "https://openalex.org/W2781738013", + "https://openalex.org/W3098232754", + "https://openalex.org/W3098965398", + "https://openalex.org/W3100075333", + "https://openalex.org/W3100931082", + "https://openalex.org/W3101749733", + "https://openalex.org/W3103574448", + "https://openalex.org/W3144619878", + "https://openalex.org/W4205925775", + "https://openalex.org/W4254920206", + "https://openalex.org/W4298427462", + "https://openalex.org/W4299828299" + ], + "related_works": [ + "https://openalex.org/W2042511210", + "https://openalex.org/W2985796920", + "https://openalex.org/W4382045128", + "https://openalex.org/W4378527878", + "https://openalex.org/W4387503624", + "https://openalex.org/W4387607445", + "https://openalex.org/W4210384976", + "https://openalex.org/W4324106941", + "https://openalex.org/W85458870", + "https://openalex.org/W2010001223" + ], + "abstract_inverted_index": { + "A": [ + 0, + 79 + ], + "basic": [ + 1 + ], + "idea": [ + 2 + ], + "of": [ + 3, + 11, + 36, + 51, + 60, + 117 + ], + "quantum": [ + 4, + 52, + 65, + 76, + 80, + 103, + 112, + 118, + 150 + ], + "computing": [ + 5 + ], + "is": [ + 6 + ], + "surprisingly": [ + 7 + ], + "similar": [ + 8 + ], + "to": [ + 9, + 18, + 75, + 120 + ], + "that": [ + 10, + 72, + 156 + ], + "kernel": [ + 12, + 127, + 134 + ], + "methods": [ + 13 + ], + "in": [ + 14, + 22, + 63, + 88, + 160, + 174 + ], + "machine": [ + 15, + 53 + ], + "learning,": [ + 16 + ], + "namely,": [ + 17 + ], + "efficiently": [ + 19 + ], + "perform": [ + 20 + ], + "computations": [ + 21 + ], + "an": [ + 23 + ], + "intractably": [ + 24 + ], + "large": [ + 25 + ], + "Hilbert": [ + 26, + 77, + 161 + ], + "space.": [ + 27, + 78, + 91, + 162 + ], + "In": [ + 28, + 107, + 142 + ], + "this": [ + 29, + 37, + 89, + 94 + ], + "Letter": [ + 30 + ], + "we": [ + 31, + 96, + 146 + ], + "explore": [ + 32 + ], + "some": [ + 33 + ], + "theoretical": [ + 34 + ], + "foundations": [ + 35 + ], + "link": [ + 38 + ], + "and": [ + 39, + 178 + ], + "show": [ + 40 + ], + "how": [ + 41 + ], + "it": [ + 42 + ], + "opens": [ + 43 + ], + "up": [ + 44 + ], + "a": [ + 45, + 64, + 68, + 102, + 122, + 138, + 148, + 153, + 168, + 175 + ], + "new": [ + 46 + ], + "avenue": [ + 47 + ], + "for": [ + 48, + 100, + 105 + ], + "the": [ + 49, + 58, + 85, + 108, + 111, + 143, + 180 + ], + "design": [ + 50 + ], + "learning": [ + 54 + ], + "algorithms.": [ + 55 + ], + "We": [ + 56, + 163 + ], + "interpret": [ + 57 + ], + "process": [ + 59 + ], + "encoding": [ + 61 + ], + "inputs": [ + 62 + ], + "state": [ + 66 + ], + "as": [ + 67, + 137, + 152 + ], + "nonlinear": [ + 69 + ], + "feature": [ + 70, + 90, + 169 + ], + "map": [ + 71, + 170 + ], + "maps": [ + 73 + ], + "data": [ + 74, + 87, + 158 + ], + "computer": [ + 81 + ], + "can": [ + 82, + 128 + ], + "now": [ + 83 + ], + "analyze": [ + 84 + ], + "input": [ + 86 + ], + "Based": [ + 92 + ], + "on": [ + 93, + 172 + ], + "link,": [ + 95 + ], + "discuss": [ + 97 + ], + "two": [ + 98 + ], + "approaches": [ + 99 + ], + "building": [ + 101 + ], + "model": [ + 104, + 155 + ], + "classification.": [ + 106 + ], + "first": [ + 109 + ], + "approach,": [ + 110, + 145 + ], + "device": [ + 113 + ], + "estimates": [ + 114 + ], + "inner": [ + 115 + ], + "products": [ + 116 + ], + "states": [ + 119 + ], + "compute": [ + 121 + ], + "classically": [ + 123 + ], + "intractable": [ + 124 + ], + "kernel.": [ + 125 + ], + "The": [ + 126 + ], + "be": [ + 129 + ], + "fed": [ + 130 + ], + "into": [ + 131 + ], + "any": [ + 132 + ], + "classical": [ + 133 + ], + "method": [ + 135 + ], + "such": [ + 136 + ], + "support": [ + 139 + ], + "vector": [ + 140 + ], + "machine.": [ + 141 + ], + "second": [ + 144 + ], + "use": [ + 147 + ], + "variational": [ + 149 + ], + "circuit": [ + 151 + ], + "linear": [ + 154 + ], + "classifies": [ + 157 + ], + "explicitly": [ + 159 + ], + "illustrate": [ + 164 + ], + "these": [ + 165 + ], + "ideas": [ + 166 + ], + "with": [ + 167, + 183 + ], + "based": [ + 171 + ], + "squeezing": [ + 173 + ], + "continuous-variable": [ + 176 + ], + "system,": [ + 177 + ], + "visualize": [ + 179 + ], + "working": [ + 181 + ], + "principle": [ + 182 + ], + "two-dimensional": [ + 184 + ], + "minibenchmark": [ + 185 + ], + "datasets.": [ + 186 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 195 + }, + { + "year": 2025, + "cited_by_count": 352 + }, + { + "year": 2024, + "cited_by_count": 267 + }, + { + "year": 2023, + "cited_by_count": 290 + }, + { + "year": 2022, + "cited_by_count": 173 + }, + { + "year": 2021, + "cited_by_count": 195 + }, + { + "year": 2020, + "cited_by_count": 89 + }, + { + "year": 2019, + "cited_by_count": 45 + }, + { + "year": 2018, + "cited_by_count": 8 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2170282673", + "doi": "https://doi.org/10.1109/tpami.2008.275", + "title": "Faster and Better: A Machine Learning Approach to Corner Detection", + "display_name": "Faster and Better: A Machine Learning Approach to Corner Detection", + "relevance_score": 2664.8843, + "publication_year": 2008, + "publication_date": "2008-12-03", + "ids": { + "openalex": "https://openalex.org/W2170282673", + "doi": "https://doi.org/10.1109/tpami.2008.275", + "mag": "2170282673", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/19926902" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tpami.2008.275", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2008.275", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/0810.2434", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5076168268", + "display_name": "Edward Rosten", + "orcid": "https://orcid.org/0000-0001-8675-4230" + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "E. Rosten", + "raw_affiliation_strings": [ + "Department of Engineering, Cambridge University, Cambridge, UK. er258@cam.ac.uk" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, Cambridge University, Cambridge, UK. er258@cam.ac.uk", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004732139", + "display_name": "Reid Porter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "R. Porter", + "raw_affiliation_strings": [ + "Los Alamos National Laboratory, ISR2 Space and Remote Sensing, Los Alamos, NM, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Los Alamos National Laboratory, ISR2 Space and Remote Sensing, Los Alamos, NM, USA", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5017469047", + "display_name": "Tom Drummond", + "orcid": "https://orcid.org/0000-0001-8204-5904" + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "T. Drummond", + "raw_affiliation_strings": [ + "Department of Engineering, University of Cambridge, Cambridge, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, University of Cambridge, Cambridge, UK", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5076168268" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I241749" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 657.9673, + "has_fulltext": false, + "cited_by_count": 1833, + "citation_normalized_percentile": { + "value": 0.99997119, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "32", + "issue": "1", + "first_page": "105", + "last_page": "119" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10191", + "display_name": "Robotics and Sensor-Based Localization", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2202", + "display_name": "Aerospace Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10191", + "display_name": "Robotics and Sensor-Based Localization", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2202", + "display_name": "Aerospace Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10627", + "display_name": "Advanced Image and Video Retrieval Techniques", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10531", + "display_name": "Advanced Vision and Imaging", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/detector", + "display_name": "Detector", + "score": 0.889086127281189 + }, + { + "id": "https://openalex.org/keywords/repeatability", + "display_name": "Repeatability", + "score": 0.7754774689674377 + }, + { + "id": "https://openalex.org/keywords/frame-rate", + "display_name": "Frame rate", + "score": 0.7121055126190186 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6925737857818604 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.6610417366027832 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6580203771591187 + }, + { + "id": "https://openalex.org/keywords/scale-invariant-feature-transform", + "display_name": "Scale-invariant feature transform", + "score": 0.580880343914032 + }, + { + "id": "https://openalex.org/keywords/computer-vision", + "display_name": "Computer vision", + "score": 0.5632566809654236 + }, + { + "id": "https://openalex.org/keywords/corner-detection", + "display_name": "Corner detection", + "score": 0.5312818288803101 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5021579265594482 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.48669177293777466 + }, + { + "id": "https://openalex.org/keywords/frame", + "display_name": "Frame (networking)", + "score": 0.47642096877098083 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.41832929849624634 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.24135944247245789 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.16702711582183838 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.15768682956695557 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C94915269", + "wikidata": "https://www.wikidata.org/wiki/Q1834857", + "display_name": "Detector", + "level": 2, + "score": 0.889086127281189 + }, + { + "id": "https://openalex.org/C154020017", + "wikidata": "https://www.wikidata.org/wiki/Q520171", + "display_name": "Repeatability", + "level": 2, + "score": 0.7754774689674377 + }, + { + "id": "https://openalex.org/C3261483", + "wikidata": "https://www.wikidata.org/wiki/Q119565", + "display_name": "Frame rate", + "level": 2, + "score": 0.7121055126190186 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6925737857818604 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.6610417366027832 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6580203771591187 + }, + { + "id": "https://openalex.org/C61265191", + "wikidata": "https://www.wikidata.org/wiki/Q767770", + "display_name": "Scale-invariant feature transform", + "level": 3, + "score": 0.580880343914032 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.5632566809654236 + }, + { + "id": "https://openalex.org/C39499422", + "wikidata": "https://www.wikidata.org/wiki/Q697320", + "display_name": "Corner detection", + "level": 3, + "score": 0.5312818288803101 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5021579265594482 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.48669177293777466 + }, + { + "id": "https://openalex.org/C126042441", + "wikidata": "https://www.wikidata.org/wiki/Q1324888", + "display_name": "Frame (networking)", + "level": 2, + "score": 0.47642096877098083 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.41832929849624634 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.24135944247245789 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.16702711582183838 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.15768682956695557 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1109/tpami.2008.275", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2008.275", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + { + "id": "pmid:19926902", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/19926902", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE transactions on pattern analysis and machine intelligence", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:0810.2434", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/0810.2434", + "pdf_url": "https://arxiv.org/pdf/0810.2434", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:generic.eprints.org:332870", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/332870/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:0810.2434", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/0810.2434", + "pdf_url": "https://arxiv.org/pdf/0810.2434", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 103, + "referenced_works": [ + "https://openalex.org/W22745672", + "https://openalex.org/W1505641881", + "https://openalex.org/W1532362218", + "https://openalex.org/W1541642243", + "https://openalex.org/W1564419782", + "https://openalex.org/W1573635437", + "https://openalex.org/W1580529010", + "https://openalex.org/W1639227073", + "https://openalex.org/W1676552347", + "https://openalex.org/W1773272891", + "https://openalex.org/W1831051511", + "https://openalex.org/W1911904603", + "https://openalex.org/W1926270821", + "https://openalex.org/W1966683117", + "https://openalex.org/W1967129518", + "https://openalex.org/W1970393892", + "https://openalex.org/W1974104694", + "https://openalex.org/W1980633381", + "https://openalex.org/W1981626707", + "https://openalex.org/W1981787154", + "https://openalex.org/W1983503034", + "https://openalex.org/W1985444400", + "https://openalex.org/W1992047056", + "https://openalex.org/W1994069847", + "https://openalex.org/W1994513823", + "https://openalex.org/W2000701155", + "https://openalex.org/W2003262222", + "https://openalex.org/W2012778485", + "https://openalex.org/W2014161456", + "https://openalex.org/W2015206503", + "https://openalex.org/W2017284398", + "https://openalex.org/W2020187819", + "https://openalex.org/W2022486878", + "https://openalex.org/W2027874846", + "https://openalex.org/W2028721671", + "https://openalex.org/W2038691774", + "https://openalex.org/W2045888618", + "https://openalex.org/W2046269998", + "https://openalex.org/W2052408227", + "https://openalex.org/W2054511520", + "https://openalex.org/W2059389571", + "https://openalex.org/W2062758634", + "https://openalex.org/W2065884509", + "https://openalex.org/W2067718526", + "https://openalex.org/W2069295011", + "https://openalex.org/W2072029938", + "https://openalex.org/W2075144239", + "https://openalex.org/W2075746031", + "https://openalex.org/W2075747175", + "https://openalex.org/W2076343824", + "https://openalex.org/W2090736344", + "https://openalex.org/W2091841488", + "https://openalex.org/W2091912813", + "https://openalex.org/W2093808735", + "https://openalex.org/W2095905764", + "https://openalex.org/W2099046646", + "https://openalex.org/W2102586630", + "https://openalex.org/W2105364438", + "https://openalex.org/W2111125604", + "https://openalex.org/W2111308925", + "https://openalex.org/W2111589119", + "https://openalex.org/W2114785422", + "https://openalex.org/W2115168188", + "https://openalex.org/W2117274643", + "https://openalex.org/W2119747362", + "https://openalex.org/W2129146260", + "https://openalex.org/W2130103520", + "https://openalex.org/W2135273733", + "https://openalex.org/W2138342591", + "https://openalex.org/W2141859096", + "https://openalex.org/W2142458388", + "https://openalex.org/W2144540462", + "https://openalex.org/W2145023731", + "https://openalex.org/W2145665593", + "https://openalex.org/W2148278638", + "https://openalex.org/W2149706766", + "https://openalex.org/W2151103935", + "https://openalex.org/W2155625202", + "https://openalex.org/W2156460770", + "https://openalex.org/W2158148005", + "https://openalex.org/W2162430761", + "https://openalex.org/W2163205713", + "https://openalex.org/W2165239264", + "https://openalex.org/W2168861291", + "https://openalex.org/W2169741726", + "https://openalex.org/W2170120409", + "https://openalex.org/W2170419248", + "https://openalex.org/W2170628770", + "https://openalex.org/W2172263315", + "https://openalex.org/W2177274842", + "https://openalex.org/W2791807800", + "https://openalex.org/W2911835288", + "https://openalex.org/W2914011225", + "https://openalex.org/W2999811158", + "https://openalex.org/W3040777582", + "https://openalex.org/W4236137412", + "https://openalex.org/W4250453583", + "https://openalex.org/W6631707545", + "https://openalex.org/W6634737366", + "https://openalex.org/W6637324600", + "https://openalex.org/W6677385351", + "https://openalex.org/W6679388247", + "https://openalex.org/W6680873466" + ], + "related_works": [ + "https://openalex.org/W2054654791", + "https://openalex.org/W2039361535", + "https://openalex.org/W1985861440", + "https://openalex.org/W2344562887", + "https://openalex.org/W1566379417", + "https://openalex.org/W4232672640", + "https://openalex.org/W2102080789", + "https://openalex.org/W2350376800", + "https://openalex.org/W2122784802", + "https://openalex.org/W2372805521" + ], + "abstract_inverted_index": { + "The": [ + 0, + 20, + 43 + ], + "repeatability": [ + 1, + 21, + 155 + ], + "and": [ + 2, + 203 + ], + "efficiency": [ + 3, + 44 + ], + "of": [ + 4, + 101, + 139, + 148, + 204 + ], + "a": [ + 5, + 17, + 72, + 84, + 145, + 196 + ], + "corner": [ + 6, + 149 + ], + "detector": [ + 7, + 52, + 86, + 118, + 176, + 197 + ], + "determines": [ + 8, + 49 + ], + "how": [ + 9 + ], + "likely": [ + 10 + ], + "it": [ + 11, + 130 + ], + "is": [ + 12, + 22, + 45, + 199 + ], + "to": [ + 13, + 37, + 131, + 158 + ], + "be": [ + 14, + 132 + ], + "useful": [ + 15 + ], + "in": [ + 16, + 66, + 193 + ], + "real-world": [ + 18, + 40 + ], + "application.": [ + 19 + ], + "important": [ + 23, + 46 + ], + "because": [ + 24, + 47 + ], + "the": [ + 25, + 38, + 51, + 102, + 127, + 153, + 183 + ], + "same": [ + 26, + 39 + ], + "scene": [ + 27 + ], + "viewed": [ + 28 + ], + "from": [ + 29, + 87 + ], + "different": [ + 30 + ], + "positions": [ + 31 + ], + "should": [ + 32 + ], + "yield": [ + 33 + ], + "features": [ + 34 + ], + "which": [ + 35, + 89 + ], + "correspond": [ + 36 + ], + "3D": [ + 41, + 159 + ], + "locations.": [ + 42 + ], + "this": [ + 48, + 67, + 88 + ], + "whether": [ + 50 + ], + "combined": [ + 53 + ], + "with": [ + 54, + 136 + ], + "further": [ + 55 + ], + "processing": [ + 56, + 104 + ], + "can": [ + 57, + 90 + ], + "operate": [ + 58, + 113 + ], + "at": [ + 59, + 114 + ], + "frame": [ + 60, + 115 + ], + "rate.": [ + 61 + ], + "Three": [ + 62 + ], + "advances": [ + 63 + ], + "are": [ + 64 + ], + "described": [ + 65 + ], + "paper.": [ + 68 + ], + "First,": [ + 69 + ], + "we": [ + 70, + 82, + 125, + 142 + ], + "present": [ + 71 + ], + "new": [ + 73 + ], + "heuristic": [ + 74, + 175 + ], + "for": [ + 75, + 134, + 168 + ], + "feature": [ + 76, + 85, + 180 + ], + "detection": [ + 77 + ], + "and,": [ + 78 + ], + "using": [ + 79, + 96, + 187 + ], + "machine": [ + 80, + 188 + ], + "learning,": [ + 81 + ], + "derive": [ + 83 + ], + "fully": [ + 91 + ], + "process": [ + 92 + ], + "live": [ + 93 + ], + "PAL": [ + 94 + ], + "video": [ + 95 + ], + "less": [ + 97 + ], + "than": [ + 98 + ], + "5": [ + 99 + ], + "percent": [ + 100 + ], + "available": [ + 103 + ], + "time.": [ + 105 + ], + "By": [ + 106 + ], + "comparison,": [ + 107 + ], + "most": [ + 108 + ], + "other": [ + 109 + ], + "detectors": [ + 110, + 150 + ], + "cannot": [ + 111 + ], + "even": [ + 112 + ], + "rate": [ + 116 + ], + "(Harris": [ + 117 + ], + "115": [ + 119 + ], + "percent,": [ + 120 + ], + "SIFT": [ + 121 + ], + "195": [ + 122 + ], + "percent).": [ + 123 + ], + "Second,": [ + 124 + ], + "generalize": [ + 126 + ], + "detector,": [ + 128 + ], + "allowing": [ + 129 + ], + "optimized": [ + 133 + ], + "repeatability,": [ + 135, + 194 + ], + "little": [ + 137 + ], + "loss": [ + 138 + ], + "efficiency.": [ + 140 + ], + "Third,": [ + 141 + ], + "carry": [ + 143 + ], + "out": [ + 144 + ], + "rigorous": [ + 146 + ], + "comparison": [ + 147, + 184 + ], + "based": [ + 151 + ], + "on": [ + 152, + 170 + ], + "above": [ + 154 + ], + "criterion": [ + 156 + ], + "applied": [ + 157 + ], + "scenes.": [ + 160 + ], + "We": [ + 161 + ], + "show": [ + 162 + ], + "that,": [ + 163 + ], + "despite": [ + 164 + ], + "being": [ + 165 + ], + "principally": [ + 166 + ], + "constructed": [ + 167 + ], + "speed,": [ + 169 + ], + "these": [ + 171 + ], + "stringent": [ + 172 + ], + "tests,": [ + 173 + ], + "our": [ + 174 + ], + "significantly": [ + 177 + ], + "outperforms": [ + 178 + ], + "existing": [ + 179 + ], + "detectors.": [ + 181 + ], + "Finally,": [ + 182 + ], + "demonstrates": [ + 185 + ], + "that": [ + 186, + 198 + ], + "learning": [ + 189 + ], + "produces": [ + 190 + ], + "significant": [ + 191 + ], + "improvements": [ + 192 + ], + "yielding": [ + 195 + ], + "both": [ + 200 + ], + "very": [ + 201, + 205 + ], + "fast": [ + 202 + ], + "high": [ + 206 + ], + "quality.": [ + 207 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 15 + }, + { + "year": 2025, + "cited_by_count": 77 + }, + { + "year": 2024, + "cited_by_count": 90 + }, + { + "year": 2023, + "cited_by_count": 105 + }, + { + "year": 2022, + "cited_by_count": 124 + }, + { + "year": 2021, + "cited_by_count": 125 + }, + { + "year": 2020, + "cited_by_count": 145 + }, + { + "year": 2019, + "cited_by_count": 149 + }, + { + "year": 2018, + "cited_by_count": 159 + }, + { + "year": 2017, + "cited_by_count": 165 + }, + { + "year": 2016, + "cited_by_count": 141 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 129 + }, + { + "year": 2013, + "cited_by_count": 118 + }, + { + "year": 2012, + "cited_by_count": 68 + } + ], + "updated_date": "2026-05-25T08:39:21.599409", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2015811642", + "doi": "https://doi.org/10.1080/00107514.2014.964942", + "title": "An introduction to quantum machine learning", + "display_name": "An introduction to quantum machine learning", + "relevance_score": 2622.9817, + "publication_year": 2014, + "publication_date": "2014-10-15", + "ids": { + "openalex": "https://openalex.org/W2015811642", + "doi": "https://doi.org/10.1080/00107514.2014.964942", + "mag": "2015811642" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1080/00107514.2014.964942", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1080/00107514.2014.964942", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S161902083", + "display_name": "Contemporary Physics", + "issn_l": "0010-7514", + "issn": [ + "0010-7514", + "1366-5812" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Contemporary Physics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1409.3097", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Maria Schuld", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95023434", + "display_name": "University of KwaZulu-Natal", + "ror": "https://ror.org/04qzfn040", + "country_code": "ZA", + "type": "education", + "lineage": [ + "https://openalex.org/I95023434" + ] + } + ], + "countries": [ + "ZA" + ], + "is_corresponding": true, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa", + "institution_ids": [ + "https://openalex.org/I95023434" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Ilya Sinayskiy", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ilya Sinayskiy", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Francesco Petruccione", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Francesco Petruccione", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I95023434" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 19.4531, + "has_fulltext": false, + "cited_by_count": 1227, + "citation_normalized_percentile": { + "value": 0.99357972, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "56", + "issue": "2", + "first_page": "172", + "last_page": "185" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.817799985408783, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.817799985408783, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10622", + "display_name": "Quantum Mechanics and Applications", + "score": 0.01489999983459711, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10020", + "display_name": "Quantum Information and Cryptography", + "score": 0.011599999852478504, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/quantum-machine-learning", + "display_name": "Quantum machine learning", + "score": 0.6427000164985657 + }, + { + "id": "https://openalex.org/keywords/subroutine", + "display_name": "Subroutine", + "score": 0.6392999887466431 + }, + { + "id": "https://openalex.org/keywords/machine-translation", + "display_name": "Machine translation", + "score": 0.5587000250816345 + }, + { + "id": "https://openalex.org/keywords/quantum-computer", + "display_name": "Quantum computer", + "score": 0.5418000221252441 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5389000177383423 + }, + { + "id": "https://openalex.org/keywords/quantum", + "display_name": "Quantum", + "score": 0.49810001254081726 + }, + { + "id": "https://openalex.org/keywords/relation", + "display_name": "Relation (database)", + "score": 0.492000013589859 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.38510000705718994 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.37560001015663147 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7555999755859375 + }, + { + "id": "https://openalex.org/C2779094486", + "wikidata": "https://www.wikidata.org/wiki/Q18811578", + "display_name": "Quantum machine learning", + "level": 4, + "score": 0.6427000164985657 + }, + { + "id": "https://openalex.org/C96147967", + "wikidata": "https://www.wikidata.org/wiki/Q190686", + "display_name": "Subroutine", + "level": 2, + "score": 0.6392999887466431 + }, + { + "id": "https://openalex.org/C203005215", + "wikidata": "https://www.wikidata.org/wiki/Q79798", + "display_name": "Machine translation", + "level": 2, + "score": 0.5587000250816345 + }, + { + "id": "https://openalex.org/C58053490", + "wikidata": "https://www.wikidata.org/wiki/Q176555", + "display_name": "Quantum computer", + "level": 3, + "score": 0.5418000221252441 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5389000177383423 + }, + { + "id": "https://openalex.org/C84114770", + "wikidata": "https://www.wikidata.org/wiki/Q46344", + "display_name": "Quantum", + "level": 2, + "score": 0.49810001254081726 + }, + { + "id": "https://openalex.org/C25343380", + "wikidata": "https://www.wikidata.org/wiki/Q277521", + "display_name": "Relation (database)", + "level": 2, + "score": 0.492000013589859 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4293999969959259 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.38679999113082886 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.38510000705718994 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.37560001015663147 + }, + { + "id": "https://openalex.org/C131671149", + "wikidata": "https://www.wikidata.org/wiki/Q2703890", + "display_name": "Universal Turing machine", + "level": 4, + "score": 0.36239999532699585 + }, + { + "id": "https://openalex.org/C149364088", + "wikidata": "https://www.wikidata.org/wiki/Q185917", + "display_name": "Translation (biology)", + "level": 4, + "score": 0.3573000133037567 + }, + { + "id": "https://openalex.org/C137019171", + "wikidata": "https://www.wikidata.org/wiki/Q2623817", + "display_name": "Quantum algorithm", + "level": 3, + "score": 0.35510000586509705 + }, + { + "id": "https://openalex.org/C169699857", + "wikidata": "https://www.wikidata.org/wiki/Q2122243", + "display_name": "Quantum information", + "level": 3, + "score": 0.34360000491142273 + }, + { + "id": "https://openalex.org/C192061203", + "wikidata": "https://www.wikidata.org/wiki/Q765620", + "display_name": "Quantum Turing machine", + "level": 5, + "score": 0.33169999718666077 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.31439998745918274 + }, + { + "id": "https://openalex.org/C62641251", + "wikidata": "https://www.wikidata.org/wiki/Q7269097", + "display_name": "Quantum sort", + "level": 5, + "score": 0.31119999289512634 + }, + { + "id": "https://openalex.org/C190463098", + "wikidata": "https://www.wikidata.org/wiki/Q2081419", + "display_name": "Quantum technology", + "level": 4, + "score": 0.3100999891757965 + }, + { + "id": "https://openalex.org/C5320026", + "wikidata": "https://www.wikidata.org/wiki/Q2122216", + "display_name": "Quantum information science", + "level": 4, + "score": 0.30160000920295715 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.28349998593330383 + }, + { + "id": "https://openalex.org/C182306322", + "wikidata": "https://www.wikidata.org/wiki/Q1779371", + "display_name": "Order (exchange)", + "level": 2, + "score": 0.2777999937534332 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.2728999853134155 + }, + { + "id": "https://openalex.org/C2982832238", + "wikidata": "https://www.wikidata.org/wiki/Q5531640", + "display_name": "General purpose", + "level": 2, + "score": 0.2621999979019165 + }, + { + "id": "https://openalex.org/C2986862884", + "wikidata": "https://www.wikidata.org/wiki/Q7553", + "display_name": "Language translation", + "level": 3, + "score": 0.25360000133514404 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1080/00107514.2014.964942", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1080/00107514.2014.964942", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S161902083", + "display_name": "Contemporary Physics", + "issn_l": "0010-7514", + "issn": [ + "0010-7514", + "1366-5812" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Contemporary Physics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1409.3097", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1409.3097", + "pdf_url": "https://arxiv.org/pdf/1409.3097", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1409.3097", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1409.3097", + "pdf_url": "https://arxiv.org/pdf/1409.3097", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 44, + "referenced_works": [ + "https://openalex.org/W1485920032", + "https://openalex.org/W1490115964", + "https://openalex.org/W1492999010", + "https://openalex.org/W1498436455", + "https://openalex.org/W1514004320", + "https://openalex.org/W1581516671", + "https://openalex.org/W1804957150", + "https://openalex.org/W1942423339", + "https://openalex.org/W1968561119", + "https://openalex.org/W1971567680", + "https://openalex.org/W1979692035", + "https://openalex.org/W1980073965", + "https://openalex.org/W1987915183", + "https://openalex.org/W1990514347", + "https://openalex.org/W2008355848", + "https://openalex.org/W2010505240", + "https://openalex.org/W2019112050", + "https://openalex.org/W2020783771", + "https://openalex.org/W2030545386", + "https://openalex.org/W2031056773", + "https://openalex.org/W2034539720", + "https://openalex.org/W2037645123", + "https://openalex.org/W2038713182", + "https://openalex.org/W2040870580", + "https://openalex.org/W2044799191", + "https://openalex.org/W2055784634", + "https://openalex.org/W2061422883", + "https://openalex.org/W2064268005", + "https://openalex.org/W2076257979", + "https://openalex.org/W2089365259", + "https://openalex.org/W2095984596", + "https://openalex.org/W2103956991", + "https://openalex.org/W2111084110", + "https://openalex.org/W2121062711", + "https://openalex.org/W2122964527", + "https://openalex.org/W2124269824", + "https://openalex.org/W2125838338", + "https://openalex.org/W2133892930", + "https://openalex.org/W2136922672", + "https://openalex.org/W2138178898", + "https://openalex.org/W2990961515", + "https://openalex.org/W3022578515", + "https://openalex.org/W3037443854", + "https://openalex.org/W3037687232" + ], + "related_works": [], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 54 + ], + "algorithms": [ + 2, + 62 + ], + "learn": [ + 3 + ], + "a": [ + 4, + 68, + 86, + 115 + ], + "desired": [ + 5 + ], + "input-output": [ + 6 + ], + "relation": [ + 7 + ], + "from": [ + 8, + 58 + ], + "examples": [ + 9 + ], + "in": [ + 10, + 33, + 106 + ], + "order": [ + 11 + ], + "to": [ + 12, + 50, + 71 + ], + "interpret": [ + 13 + ], + "new": [ + 14 + ], + "inputs.": [ + 15 + ], + "This": [ + 16, + 83 + ], + "is": [ + 17 + ], + "important": [ + 18 + ], + "for": [ + 19 + ], + "tasks": [ + 20 + ], + "such": [ + 21 + ], + "as": [ + 22, + 101, + 103 + ], + "image": [ + 23 + ], + "and": [ + 24, + 110 + ], + "speech": [ + 25 + ], + "recognition": [ + 26 + ], + "or": [ + 27, + 63 + ], + "strategy": [ + 28 + ], + "optimisation,": [ + 29 + ], + "with": [ + 30 + ], + "growing": [ + 31 + ], + "applications": [ + 32 + ], + "the": [ + 34, + 38, + 72, + 78, + 90, + 99, + 112 + ], + "IT": [ + 35 + ], + "industry.": [ + 36 + ], + "In": [ + 37 + ], + "last": [ + 39 + ], + "couple": [ + 40 + ], + "of": [ + 41, + 74, + 80, + 89, + 93, + 114, + 118 + ], + "years,": [ + 42 + ], + "researchers": [ + 43 + ], + "investigated": [ + 44 + ], + "if": [ + 45 + ], + "quantum": [ + 46, + 69, + 81, + 94, + 119 + ], + "computing": [ + 47 + ], + "can": [ + 48 + ], + "help": [ + 49 + ], + "improve": [ + 51 + ], + "classical": [ + 52 + ], + "machine": [ + 53, + 95 + ], + "algorithms.": [ + 55 + ], + "Ideas": [ + 56 + ], + "range": [ + 57 + ], + "running": [ + 59 + ], + "computationally": [ + 60 + ], + "costly": [ + 61 + ], + "their": [ + 64 + ], + "subroutines": [ + 65 + ], + "efficiently": [ + 66 + ], + "on": [ + 67 + ], + "computer": [ + 70 + ], + "translation": [ + 73 + ], + "stochastic": [ + 75 + ], + "methods": [ + 76 + ], + "into": [ + 77 + ], + "language": [ + 79 + ], + "theory.": [ + 82 + ], + "contribution": [ + 84 + ], + "gives": [ + 85 + ], + "systematic": [ + 87 + ], + "overview": [ + 88 + ], + "emerging": [ + 91 + ], + "field": [ + 92 + ], + "learning.": [ + 96, + 120 + ], + "It": [ + 97 + ], + "presents": [ + 98 + ], + "approaches": [ + 100 + ], + "well": [ + 102 + ], + "technical": [ + 104 + ], + "details": [ + 105 + ], + "an": [ + 107 + ], + "accessible": [ + 108 + ], + "way,": [ + 109 + ], + "discusses": [ + 111 + ], + "potential": [ + 113 + ], + "future": [ + 116 + ], + "theory": [ + 117 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 127 + }, + { + "year": 2025, + "cited_by_count": 267 + }, + { + "year": 2024, + "cited_by_count": 218 + }, + { + "year": 2023, + "cited_by_count": 168 + }, + { + "year": 2022, + "cited_by_count": 128 + }, + { + "year": 2021, + "cited_by_count": 94 + }, + { + "year": 2020, + "cited_by_count": 82 + }, + { + "year": 2019, + "cited_by_count": 57 + }, + { + "year": 2018, + "cited_by_count": 40 + }, + { + "year": 2017, + "cited_by_count": 31 + }, + { + "year": 2016, + "cited_by_count": 11 + }, + { + "year": 2015, + "cited_by_count": 3 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2789894922", + "doi": "https://doi.org/10.1001/jama.2017.18391", + "title": "Big Data and Machine Learning in Health Care", + "display_name": "Big Data and Machine Learning in Health Care", + "relevance_score": 2616.3196, + "publication_year": 2018, + "publication_date": "2018-03-12", + "ids": { + "openalex": "https://openalex.org/W2789894922", + "doi": "https://doi.org/10.1001/jama.2017.18391", + "mag": "2789894922", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29532063" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1001/jama.2017.18391", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1001/jama.2017.18391", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S172573765", + "display_name": "JAMA", + "issn_l": "0098-7484", + "issn": [ + "0098-7484", + "1538-3598" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320259", + "host_organization_name": "American Medical Association", + "host_organization_lineage": [ + "https://openalex.org/P4310320259" + ], + "host_organization_lineage_names": [ + "American Medical Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5077007622", + "display_name": "Andrew L. Beam", + "orcid": "https://orcid.org/0000-0002-6657-2787" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Andrew L. Beam", + "raw_affiliation_strings": [ + "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088509061", + "display_name": "Isaac S. Kohane", + "orcid": "https://orcid.org/0000-0003-2192-5160" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isaac S. Kohane", + "raw_affiliation_strings": [ + "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5077007622" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 125.0749, + "has_fulltext": false, + "cited_by_count": 2107, + "citation_normalized_percentile": { + "value": 0.99976569, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "319", + "issue": "13", + "first_page": "1317", + "last_page": "1317" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10261", + "display_name": "Genetic Associations and Epidemiology", + "score": 0.9894000291824341, + "subfield": { + "id": "https://openalex.org/subfields/1311", + "display_name": "Genetics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10261", + "display_name": "Genetic Associations and Epidemiology", + "score": 0.9894000291824341, + "subfield": { + "id": "https://openalex.org/subfields/1311", + "display_name": "Genetics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9599000215530396, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9545000195503235, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.9493777751922607 + }, + { + "id": "https://openalex.org/keywords/otorhinolaryngology", + "display_name": "Otorhinolaryngology", + "score": 0.5338343977928162 + }, + { + "id": "https://openalex.org/keywords/family-medicine", + "display_name": "Family medicine", + "score": 0.5010433197021484 + }, + { + "id": "https://openalex.org/keywords/sign", + "display_name": "Sign (mathematics)", + "score": 0.4248647093772888 + }, + { + "id": "https://openalex.org/keywords/psychiatry", + "display_name": "Psychiatry", + "score": 0.32425233721733093 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.9493777751922607 + }, + { + "id": "https://openalex.org/C108516343", + "wikidata": "https://www.wikidata.org/wiki/Q189553", + "display_name": "Otorhinolaryngology", + "level": 2, + "score": 0.5338343977928162 + }, + { + "id": "https://openalex.org/C512399662", + "wikidata": "https://www.wikidata.org/wiki/Q3505712", + "display_name": "Family medicine", + "level": 1, + "score": 0.5010433197021484 + }, + { + "id": "https://openalex.org/C139676723", + "wikidata": "https://www.wikidata.org/wiki/Q1193832", + "display_name": "Sign (mathematics)", + "level": 2, + "score": 0.4248647093772888 + }, + { + "id": "https://openalex.org/C118552586", + "wikidata": "https://www.wikidata.org/wiki/Q7867", + "display_name": "Psychiatry", + "level": 1, + "score": 0.32425233721733093 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1001/jama.2017.18391", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1001/jama.2017.18391", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S172573765", + "display_name": "JAMA", + "issn_l": "0098-7484", + "issn": [ + "0098-7484", + "1538-3598" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320259", + "host_organization_name": "American Medical Association", + "host_organization_lineage": [ + "https://openalex.org/P4310320259" + ], + "host_organization_lineage_names": [ + "American Medical Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": "journal-article" + }, + { + "id": "pmid:29532063", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29532063", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W1984116324", + "https://openalex.org/W2076652359", + "https://openalex.org/W2257979135", + "https://openalex.org/W2557738935", + "https://openalex.org/W2766447205" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W2048182022", + "https://openalex.org/W2604872355" + ], + "abstract_inverted_index": { + "Our": [ + 0 + ], + "website": [ + 1 + ], + "uses": [ + 2 + ], + "cookies": [ + 3 + ], + "to": [ + 4, + 10, + 20, + 171 + ], + "enhance": [ + 5 + ], + "your": [ + 6, + 158 + ], + "experience.": [ + 7 + ], + "By": [ + 8 + ], + "continuing": [ + 9 + ], + "use": [ + 11 + ], + "our": [ + 12, + 21 + ], + "site,": [ + 13 + ], + "or": [ + 14 + ], + "clicking": [ + 15 + ], + "\"Continue,\"": [ + 16 + ], + "you": [ + 17 + ], + "are": [ + 18 + ], + "agreeing": [ + 19 + ], + "Cookie": [ + 22 + ], + "Policy": [ + 23, + 92 + ], + "|": [ + 24, + 90, + 93 + ], + "Continue": [ + 25 + ], + "JAMA": [ + 26, + 32, + 33, + 36, + 38, + 40, + 43, + 46, + 48, + 50, + 52, + 57, + 59, + 61, + 105, + 106, + 109, + 111, + 113, + 116, + 119, + 122, + 124, + 126, + 128, + 133, + 135, + 137, + 173 + ], + "HomeNew": [ + 27 + ], + "OnlineCurrent": [ + 28 + ], + "IssueFor": [ + 29 + ], + "Authors": [ + 30 + ], + "Publications": [ + 31 + ], + "Network": [ + 34, + 107 + ], + "Open": [ + 35, + 108 + ], + "Cardiology": [ + 37, + 110 + ], + "Dermatology": [ + 39, + 112 + ], + "Health": [ + 41, + 117 + ], + "Forum": [ + 42, + 114, + 118 + ], + "Internal": [ + 44, + 120 + ], + "Medicine": [ + 45, + 121 + ], + "Neurology": [ + 47, + 65, + 123, + 141 + ], + "Oncology": [ + 49, + 125 + ], + "Ophthalmology": [ + 51, + 127 + ], + "Otolaryngology–Head": [ + 53, + 129 + ], + "&": [ + 54, + 66, + 85, + 130, + 142 + ], + "Neck": [ + 55, + 131 + ], + "Surgery": [ + 56, + 62, + 132, + 138 + ], + "Pediatrics": [ + 58, + 134 + ], + "Psychiatry": [ + 60, + 67, + 136, + 143 + ], + "Archives": [ + 63, + 139 + ], + "of": [ + 64, + 88, + 140 + ], + "(1919-1959)": [ + 68 + ], + "Podcasts": [ + 69 + ], + "Clinical": [ + 70 + ], + "Reviews": [ + 71 + ], + "Editors'": [ + 72 + ], + "Summary": [ + 73 + ], + "Medical": [ + 74, + 98 + ], + "News": [ + 75 + ], + "Author": [ + 76 + ], + "Interviews": [ + 77 + ], + "More": [ + 78 + ], + "JN": [ + 79 + ], + "Learning": [ + 80 + ], + "/": [ + 81, + 83 + ], + "CMESubscribeJobsInstitutions": [ + 82 + ], + "LibrariansReprints": [ + 84 + ], + "Permissions": [ + 86 + ], + "Terms": [ + 87 + ], + "Use": [ + 89 + ], + "Privacy": [ + 91 + ], + "Accessibility": [ + 94 + ], + "Statement": [ + 95 + ], + "2023": [ + 96 + ], + "American": [ + 97 + ], + "Association.": [ + 99 + ], + "All": [ + 100, + 104 + ], + "Rights": [ + 101 + ], + "Reserved": [ + 102 + ], + "Search": [ + 103, + 145 + ], + "Archive": [ + 115 + ], + "Input": [ + 144 + ], + "Term": [ + 146 + ], + "Sign": [ + 147, + 150, + 152, + 160 + ], + "In": [ + 148, + 151, + 161 + ], + "Individual": [ + 149 + ], + "inCreate": [ + 153 + ], + "an": [ + 154 + ], + "Account": [ + 155 + ], + "Access": [ + 156 + ], + "through": [ + 157 + ], + "institution": [ + 159 + ], + "Purchase": [ + 162 + ], + "Options:": [ + 163 + ], + "Buy": [ + 164 + ], + "this": [ + 165, + 168 + ], + "article": [ + 166, + 169 + ], + "Rent": [ + 167 + ], + "Subscribe": [ + 170 + ], + "the": [ + 172 + ], + "journal": [ + 174 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 207 + }, + { + "year": 2025, + "cited_by_count": 376 + }, + { + "year": 2024, + "cited_by_count": 311 + }, + { + "year": 2023, + "cited_by_count": 274 + }, + { + "year": 2022, + "cited_by_count": 237 + }, + { + "year": 2021, + "cited_by_count": 279 + }, + { + "year": 2020, + "cited_by_count": 230 + }, + { + "year": 2019, + "cited_by_count": 133 + }, + { + "year": 2018, + "cited_by_count": 56 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2996061341", + "doi": "https://doi.org/10.1145/3359786", + "title": "Techniques for interpretable machine learning", + "display_name": "Techniques for interpretable machine learning", + "relevance_score": 2609.185, + "publication_year": 2019, + "publication_date": "2019-12-20", + "ids": { + "openalex": "https://openalex.org/W2996061341", + "doi": "https://doi.org/10.1145/3359786", + "mag": "2996061341" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3359786", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3359786", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5072191151", + "display_name": "Mengnan Du", + "orcid": "https://orcid.org/0000-0002-1614-6069" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Mengnan Du", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5007489034", + "display_name": "Ninghao Liu", + "orcid": "https://orcid.org/0000-0002-9170-2424" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ninghao Liu", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5068477431", + "display_name": "Xia Hu", + "orcid": "https://orcid.org/0000-0003-2234-3226" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xia Hu", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5072191151" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I91045830" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 84.3145, + "has_fulltext": false, + "cited_by_count": 1231, + "citation_normalized_percentile": { + "value": 0.99944809, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "63", + "issue": "1", + "first_page": "68", + "last_page": "77" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9957000017166138, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6890396475791931 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6587886810302734 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.590798556804657 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6890396475791931 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6587886810302734 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.590798556804657 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3359786", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3359786", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 41, + "referenced_works": [ + "https://openalex.org/W1514535095", + "https://openalex.org/W1787224781", + "https://openalex.org/W1932198206", + "https://openalex.org/W1945616565", + "https://openalex.org/W1951216520", + "https://openalex.org/W1996796871", + "https://openalex.org/W2026905436", + "https://openalex.org/W2102636708", + "https://openalex.org/W2123045220", + "https://openalex.org/W2128420091", + "https://openalex.org/W2133564696", + "https://openalex.org/W2169393322", + "https://openalex.org/W2253993278", + "https://openalex.org/W2292919134", + "https://openalex.org/W2295598076", + "https://openalex.org/W2418098761", + "https://openalex.org/W2516809705", + "https://openalex.org/W2559655401", + "https://openalex.org/W2594475271", + "https://openalex.org/W2606462007", + "https://openalex.org/W2612690371", + "https://openalex.org/W2764024122", + "https://openalex.org/W2765204106", + "https://openalex.org/W2785760873", + "https://openalex.org/W2788403449", + "https://openalex.org/W2796096336", + "https://openalex.org/W2809002738", + "https://openalex.org/W2809376420", + "https://openalex.org/W2810511505", + "https://openalex.org/W2907174776", + "https://openalex.org/W2914018283", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963615251", + "https://openalex.org/W3101609372", + "https://openalex.org/W3102476541", + "https://openalex.org/W3128452405", + "https://openalex.org/W4301861531", + "https://openalex.org/W6639927594", + "https://openalex.org/W6740789180", + "https://openalex.org/W6743446608", + "https://openalex.org/W6748634344" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Uncovering": [ + 0 + ], + "the": [ + 1 + ], + "mysterious": [ + 2 + ], + "ways": [ + 3 + ], + "machine": [ + 4 + ], + "learning": [ + 5 + ], + "models": [ + 6 + ], + "make": [ + 7 + ], + "decisions.": [ + 8 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 40 + }, + { + "year": 2025, + "cited_by_count": 162 + }, + { + "year": 2024, + "cited_by_count": 221 + }, + { + "year": 2023, + "cited_by_count": 223 + }, + { + "year": 2022, + "cited_by_count": 221 + }, + { + "year": 2021, + "cited_by_count": 187 + }, + { + "year": 2020, + "cited_by_count": 139 + }, + { + "year": 2019, + "cited_by_count": 34 + }, + { + "year": 2018, + "cited_by_count": 3 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2284729062", + "doi": "https://doi.org/10.1177/1745691617693393", + "title": "Choosing Prediction Over Explanation in Psychology: Lessons From Machine Learning", + "display_name": "Choosing Prediction Over Explanation in Psychology: Lessons From Machine Learning", + "relevance_score": 2585.2322, + "publication_year": 2017, + "publication_date": "2017-08-25", + "ids": { + "openalex": "https://openalex.org/W2284729062", + "doi": "https://doi.org/10.1177/1745691617693393", + "mag": "2284729062", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28841086" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1177/1745691617693393", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1177/1745691617693393", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S27228949", + "display_name": "Perspectives on Psychological Science", + "issn_l": "1745-6916", + "issn": [ + "1745-6916", + "1745-6924" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on Psychological Science", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "datacite", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5089396175", + "display_name": "Tal Yarkoni", + "orcid": "https://orcid.org/0000-0002-6558-5113" + }, + "institutions": [ + { + "id": "https://openalex.org/I86519309", + "display_name": "The University of Texas at Austin", + "ror": "https://ror.org/00hj54h04", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86519309" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Tal Yarkoni", + "raw_affiliation_strings": [ + "University of Texas at Austin" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Texas at Austin", + "institution_ids": [ + "https://openalex.org/I86519309" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5011718072", + "display_name": "Jacob Westfall", + "orcid": "https://orcid.org/0000-0001-7566-3544" + }, + "institutions": [ + { + "id": "https://openalex.org/I86519309", + "display_name": "The University of Texas at Austin", + "ror": "https://ror.org/00hj54h04", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86519309" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jacob Westfall", + "raw_affiliation_strings": [ + "University of Texas at Austin" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Texas at Austin", + "institution_ids": [ + "https://openalex.org/I86519309" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5089396175" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I86519309" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 142.2309, + "has_fulltext": false, + "cited_by_count": 1985, + "citation_normalized_percentile": { + "value": 0.99990782, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "12", + "issue": "6", + "first_page": "1100", + "last_page": "1122" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13283", + "display_name": "Mental Health Research Topics", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/3205", + "display_name": "Experimental and Cognitive Psychology" + }, + "field": { + "id": "https://openalex.org/fields/32", + "display_name": "Psychology" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13283", + "display_name": "Mental Health Research Topics", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/3205", + "display_name": "Experimental and Cognitive Psychology" + }, + "field": { + "id": "https://openalex.org/fields/32", + "display_name": "Psychology" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10315", + "display_name": "Decision-Making and Behavioral Economics", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/1800", + "display_name": "General Decision Sciences" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9757999777793884, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.6357313990592957 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.6339761018753052 + }, + { + "id": "https://openalex.org/keywords/psychological-research", + "display_name": "Psychological research", + "score": 0.623198390007019 + }, + { + "id": "https://openalex.org/keywords/mechanism", + "display_name": "Mechanism (biology)", + "score": 0.5662316679954529 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.5525527000427246 + }, + { + "id": "https://openalex.org/keywords/psychological-science", + "display_name": "Psychological science", + "score": 0.5363956689834595 + }, + { + "id": "https://openalex.org/keywords/cognitive-psychology", + "display_name": "Cognitive psychology", + "score": 0.4831187427043915 + }, + { + "id": "https://openalex.org/keywords/basic-science", + "display_name": "Basic science", + "score": 0.44798544049263 + }, + { + "id": "https://openalex.org/keywords/experimental-psychology", + "display_name": "Experimental psychology", + "score": 0.4426892101764679 + }, + { + "id": "https://openalex.org/keywords/contrast", + "display_name": "Contrast (vision)", + "score": 0.4320238530635834 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.4234526753425598 + }, + { + "id": "https://openalex.org/keywords/cognitive-science", + "display_name": "Cognitive science", + "score": 0.4131108522415161 + }, + { + "id": "https://openalex.org/keywords/epistemology", + "display_name": "Epistemology", + "score": 0.39459776878356934 + }, + { + "id": "https://openalex.org/keywords/social-psychology", + "display_name": "Social psychology", + "score": 0.30900537967681885 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.2976836562156677 + }, + { + "id": "https://openalex.org/keywords/cognition", + "display_name": "Cognition", + "score": 0.22188469767570496 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.21790143847465515 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.6357313990592957 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.6339761018753052 + }, + { + "id": "https://openalex.org/C188255311", + "wikidata": "https://www.wikidata.org/wiki/Q7256388", + "display_name": "Psychological research", + "level": 2, + "score": 0.623198390007019 + }, + { + "id": "https://openalex.org/C89611455", + "wikidata": "https://www.wikidata.org/wiki/Q6804646", + "display_name": "Mechanism (biology)", + "level": 2, + "score": 0.5662316679954529 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.5525527000427246 + }, + { + "id": "https://openalex.org/C2992048920", + "wikidata": "https://www.wikidata.org/wiki/Q7256367", + "display_name": "Psychological science", + "level": 2, + "score": 0.5363956689834595 + }, + { + "id": "https://openalex.org/C180747234", + "wikidata": "https://www.wikidata.org/wiki/Q23373", + "display_name": "Cognitive psychology", + "level": 1, + "score": 0.4831187427043915 + }, + { + "id": "https://openalex.org/C96526673", + "wikidata": "https://www.wikidata.org/wiki/Q4867047", + "display_name": "Basic science", + "level": 2, + "score": 0.44798544049263 + }, + { + "id": "https://openalex.org/C101068787", + "wikidata": "https://www.wikidata.org/wiki/Q475042", + "display_name": "Experimental psychology", + "level": 3, + "score": 0.4426892101764679 + }, + { + "id": "https://openalex.org/C2776502983", + "wikidata": "https://www.wikidata.org/wiki/Q690182", + "display_name": "Contrast (vision)", + "level": 2, + "score": 0.4320238530635834 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.4234526753425598 + }, + { + "id": "https://openalex.org/C188147891", + "wikidata": "https://www.wikidata.org/wiki/Q147638", + "display_name": "Cognitive science", + "level": 1, + "score": 0.4131108522415161 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.39459776878356934 + }, + { + "id": "https://openalex.org/C77805123", + "wikidata": "https://www.wikidata.org/wiki/Q161272", + "display_name": "Social psychology", + "level": 1, + "score": 0.30900537967681885 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.2976836562156677 + }, + { + "id": "https://openalex.org/C169900460", + "wikidata": "https://www.wikidata.org/wiki/Q2200417", + "display_name": "Cognition", + "level": 2, + "score": 0.22188469767570496 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.21790143847465515 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C169760540", + "wikidata": "https://www.wikidata.org/wiki/Q207011", + "display_name": "Neuroscience", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + } + ], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1177/1745691617693393", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1177/1745691617693393", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S27228949", + "display_name": "Perspectives on Psychological Science", + "issn_l": "1745-6916", + "issn": [ + "1745-6916", + "1745-6924" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on Psychological Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:28841086", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28841086", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on psychological science : a journal of the Association for Psychological Science", + "raw_type": null + }, + { + "id": "pmh:oai:figshare.com:article/2441878", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6603289", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6603289", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Perspect Psychol Sci", + "raw_type": "Text" + }, + { + "id": "doi:10.6084/m9.figshare.2441878.v1", + "is_oa": true, + "landing_page_url": "https://doi.org/10.6084/m9.figshare.2441878.v1", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article-journal" + } + ], + "best_oa_location": { + "id": "pmh:oai:figshare.com:article/2441878", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "score": 0.4300000071525574, + "display_name": "Quality Education" + } + ], + "awards": [ + { + "id": "https://openalex.org/G6072193115", + "display_name": null, + "funder_award_id": "R01MH096906", + "funder_id": "https://openalex.org/F4320337346", + "funder_display_name": "National Institute of Mental Health" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320337346", + "display_name": "National Institute of Mental Health", + "ror": "https://ror.org/04xeg9z08" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 117, + "referenced_works": [ + "https://openalex.org/W832971097", + "https://openalex.org/W1480376833", + "https://openalex.org/W1529288103", + "https://openalex.org/W1587094587", + "https://openalex.org/W1650809201", + "https://openalex.org/W1678356000", + "https://openalex.org/W1849277567", + "https://openalex.org/W1897139626", + "https://openalex.org/W1928997582", + "https://openalex.org/W1940090105", + "https://openalex.org/W1941783251", + "https://openalex.org/W1965803289", + "https://openalex.org/W1966023201", + "https://openalex.org/W1966797434", + "https://openalex.org/W1972820248", + "https://openalex.org/W1973871257", + "https://openalex.org/W1974829123", + "https://openalex.org/W1975494033", + "https://openalex.org/W1980331490", + "https://openalex.org/W1981457167", + "https://openalex.org/W1985898303", + "https://openalex.org/W1987997380", + "https://openalex.org/W1989462718", + "https://openalex.org/W1993193779", + "https://openalex.org/W1997161938", + "https://openalex.org/W2007178835", + "https://openalex.org/W2007307305", + "https://openalex.org/W2008607322", + "https://openalex.org/W2019448438", + "https://openalex.org/W2020769785", + "https://openalex.org/W2024729467", + "https://openalex.org/W2028171536", + "https://openalex.org/W2028966152", + "https://openalex.org/W2033198212", + "https://openalex.org/W2033872649", + "https://openalex.org/W2036231449", + "https://openalex.org/W2037557484", + "https://openalex.org/W2045573770", + "https://openalex.org/W2046281162", + "https://openalex.org/W2046398551", + "https://openalex.org/W2047104567", + "https://openalex.org/W2054106228", + "https://openalex.org/W2054251181", + "https://openalex.org/W2056418346", + "https://openalex.org/W2059246838", + "https://openalex.org/W2062787021", + "https://openalex.org/W2065692954", + "https://openalex.org/W2075046656", + "https://openalex.org/W2076063813", + "https://openalex.org/W2077088203", + "https://openalex.org/W2080581973", + "https://openalex.org/W2081156723", + "https://openalex.org/W2084341220", + "https://openalex.org/W2091959199", + "https://openalex.org/W2100267603", + "https://openalex.org/W2101645095", + "https://openalex.org/W2106095564", + "https://openalex.org/W2108598243", + "https://openalex.org/W2110223897", + "https://openalex.org/W2111621157", + "https://openalex.org/W2113085067", + "https://openalex.org/W2117350000", + "https://openalex.org/W2119472994", + "https://openalex.org/W2119862467", + "https://openalex.org/W2121880170", + "https://openalex.org/W2122572782", + "https://openalex.org/W2123263696", + "https://openalex.org/W2128431628", + "https://openalex.org/W2132193240", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137351972", + "https://openalex.org/W2137739415", + "https://openalex.org/W2139394602", + "https://openalex.org/W2139852278", + "https://openalex.org/W2141007997", + "https://openalex.org/W2144345994", + "https://openalex.org/W2144710514", + "https://openalex.org/W2150215887", + "https://openalex.org/W2150833190", + "https://openalex.org/W2151554678", + "https://openalex.org/W2153803020", + "https://openalex.org/W2154290668", + "https://openalex.org/W2154776925", + "https://openalex.org/W2155449866", + "https://openalex.org/W2157668596", + "https://openalex.org/W2158196600", + "https://openalex.org/W2158647686", + "https://openalex.org/W2159401492", + "https://openalex.org/W2160455305", + "https://openalex.org/W2161336914", + "https://openalex.org/W2161498332", + "https://openalex.org/W2162148411", + "https://openalex.org/W2166154125", + "https://openalex.org/W2166823678", + "https://openalex.org/W2168979204", + "https://openalex.org/W2169214811", + "https://openalex.org/W2183510664", + "https://openalex.org/W2329873939", + "https://openalex.org/W2333692357", + "https://openalex.org/W2345613236", + "https://openalex.org/W2520456228", + "https://openalex.org/W2781367932", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W2951936974", + "https://openalex.org/W2951964571", + "https://openalex.org/W3121452939", + "https://openalex.org/W3124333825", + "https://openalex.org/W4206439534", + "https://openalex.org/W4239677523", + "https://openalex.org/W4243177274", + "https://openalex.org/W4245648902", + "https://openalex.org/W4250304879", + "https://openalex.org/W4250528183", + "https://openalex.org/W4253418570", + "https://openalex.org/W4298870098" + ], + "related_works": [ + "https://openalex.org/W2967614692", + "https://openalex.org/W3162937339", + "https://openalex.org/W2811220869", + "https://openalex.org/W4390171572", + "https://openalex.org/W4205565064", + "https://openalex.org/W3104930238", + "https://openalex.org/W2792663123", + "https://openalex.org/W2178719713", + "https://openalex.org/W4248643446", + "https://openalex.org/W2330276990" + ], + "abstract_inverted_index": { + "Psychology": [ + 0 + ], + "has": [ + 1, + 59 + ], + "historically": [ + 2 + ], + "been": [ + 3, + 133 + ], + "concerned,": [ + 4 + ], + "first": [ + 5 + ], + "and": [ + 6, + 31, + 40, + 97, + 120, + 125, + 138 + ], + "foremost,": [ + 7 + ], + "with": [ + 8, + 89 + ], + "explaining": [ + 9, + 54 + ], + "the": [ + 10, + 25, + 37, + 55, + 63, + 100, + 117 + ], + "causal": [ + 11 + ], + "mechanisms": [ + 12 + ], + "that": [ + 13, + 43, + 49, + 71, + 79, + 95, + 142, + 150 + ], + "give": [ + 14 + ], + "rise": [ + 15 + ], + "to": [ + 16, + 65, + 85, + 135, + 163 + ], + "behavior.": [ + 17, + 167 + ], + "Randomized,": [ + 18 + ], + "tightly": [ + 19 + ], + "controlled": [ + 20 + ], + "experiments": [ + 21 + ], + "are": [ + 22, + 33 + ], + "enshrined": [ + 23 + ], + "as": [ + 24 + ], + "gold": [ + 26 + ], + "standard": [ + 27 + ], + "of": [ + 28, + 36, + 57, + 62, + 75, + 102, + 116, + 122, + 166 + ], + "psychological": [ + 29, + 76, + 140 + ], + "research,": [ + 30 + ], + "there": [ + 32 + ], + "endless": [ + 34 + ], + "investigations": [ + 35 + ], + "various": [ + 38, + 45 + ], + "mediating": [ + 39 + ], + "moderating": [ + 41 + ], + "variables": [ + 42 + ], + "govern": [ + 44 + ], + "behaviors.": [ + 46 + ], + "We": [ + 47, + 93, + 113, + 148 + ], + "argue": [ + 48 + ], + "psychology's": [ + 50 + ], + "near-total": [ + 51 + ], + "focus": [ + 52, + 153 + ], + "on": [ + 53, + 144, + 154 + ], + "causes": [ + 56 + ], + "behavior": [ + 58 + ], + "led": [ + 60 + ], + "much": [ + 61 + ], + "field": [ + 64, + 101 + ], + "be": [ + 66 + ], + "populated": [ + 67 + ], + "by": [ + 68 + ], + "research": [ + 69, + 141, + 146 + ], + "programs": [ + 70 + ], + "provide": [ + 72 + ], + "intricate": [ + 73 + ], + "theories": [ + 74 + ], + "mechanism": [ + 77 + ], + "but": [ + 78 + ], + "have": [ + 80, + 132 + ], + "little": [ + 81 + ], + "(or": [ + 82 + ], + "unknown)": [ + 83 + ], + "ability": [ + 84 + ], + "predict": [ + 86 + ], + "future": [ + 87 + ], + "behaviors": [ + 88 + ], + "any": [ + 90 + ], + "appreciable": [ + 91 + ], + "accuracy.": [ + 92 + ], + "propose": [ + 94 + ], + "principles": [ + 96 + ], + "techniques": [ + 98 + ], + "from": [ + 99 + ], + "machine": [ + 103, + 123 + ], + "learning": [ + 104, + 124 + ], + "can": [ + 105, + 159 + ], + "help": [ + 106 + ], + "psychology": [ + 107 + ], + "become": [ + 108 + ], + "a": [ + 109 + ], + "more": [ + 110 + ], + "predictive": [ + 111, + 145 + ], + "science.": [ + 112 + ], + "review": [ + 114 + ], + "some": [ + 115 + ], + "fundamental": [ + 118 + ], + "concepts": [ + 119, + 131 + ], + "tools": [ + 121 + ], + "point": [ + 126 + ], + "out": [ + 127 + ], + "examples": [ + 128 + ], + "where": [ + 129 + ], + "these": [ + 130 + ], + "used": [ + 134 + ], + "conduct": [ + 136 + ], + "interesting": [ + 137 + ], + "important": [ + 139 + ], + "focuses": [ + 143 + ], + "questions.": [ + 147 + ], + "suggest": [ + 149 + ], + "an": [ + 151 + ], + "increased": [ + 152 + ], + "prediction,": [ + 155 + ], + "rather": [ + 156 + ], + "than": [ + 157 + ], + "explanation,": [ + 158 + ], + "ultimately": [ + 160 + ], + "lead": [ + 161 + ], + "us": [ + 162 + ], + "greater": [ + 164 + ], + "understanding": [ + 165 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 100 + }, + { + "year": 2025, + "cited_by_count": 252 + }, + { + "year": 2024, + "cited_by_count": 244 + }, + { + "year": 2023, + "cited_by_count": 243 + }, + { + "year": 2022, + "cited_by_count": 252 + }, + { + "year": 2021, + "cited_by_count": 274 + }, + { + "year": 2020, + "cited_by_count": 290 + }, + { + "year": 2019, + "cited_by_count": 180 + }, + { + "year": 2018, + "cited_by_count": 107 + }, + { + "year": 2017, + "cited_by_count": 28 + }, + { + "year": 2016, + "cited_by_count": 13 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2469230926", + "doi": "https://doi.org/10.1109/tsp.2017.2690524", + "title": "Tensor Decomposition for Signal Processing and Machine Learning", + "display_name": "Tensor Decomposition for Signal Processing and Machine Learning", + "relevance_score": 2578.0544, + "publication_year": 2017, + "publication_date": "2017-04-03", + "ids": { + "openalex": "https://openalex.org/W2469230926", + "doi": "https://doi.org/10.1109/tsp.2017.2690524", + "mag": "2469230926" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tsp.2017.2690524", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tsp.2017.2690524", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S168680287", + "display_name": "IEEE Transactions on Signal Processing", + "issn_l": "1053-587X", + "issn": [ + "1053-587X", + "1941-0476" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Signal Processing", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1607.01668", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5050186120", + "display_name": "Nicholas D. Sidiropoulos", + "orcid": "https://orcid.org/0000-0002-3385-7911" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nicholas D. Sidiropoulos", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009006026", + "display_name": "Lieven De Lathauwer", + "orcid": "https://orcid.org/0000-0001-5562-5014" + }, + "institutions": [ + { + "id": "https://openalex.org/I99464096", + "display_name": "KU Leuven", + "ror": "https://ror.org/05f950310", + "country_code": "BE", + "type": "education", + "lineage": [ + "https://openalex.org/I99464096" + ] + } + ], + "countries": [ + "BE" + ], + "is_corresponding": false, + "raw_author_name": "Lieven De Lathauwer", + "raw_affiliation_strings": [ + "KU Leuven, Leuven, Belgium" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "KU Leuven, Leuven, Belgium", + "institution_ids": [ + "https://openalex.org/I99464096" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015075381", + "display_name": "Xiao Fu", + "orcid": "https://orcid.org/0000-0003-4847-9586" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xiao Fu", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002695199", + "display_name": "Kejun Huang", + "orcid": "https://orcid.org/0000-0002-6460-6365" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kejun Huang", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5054849323", + "display_name": "Evangelos E. Papalexakis", + "orcid": "https://orcid.org/0000-0002-3411-8483" + }, + "institutions": [ + { + "id": "https://openalex.org/I103635307", + "display_name": "University of California, Riverside", + "ror": "https://ror.org/03nawhv43", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I103635307" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evangelos E. Papalexakis", + "raw_affiliation_strings": [ + "Department of Computer Science, University of California, Riverside, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of California, Riverside, CA, USA", + "institution_ids": [ + "https://openalex.org/I103635307" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5035605036", + "display_name": "Christos Faloutsos", + "orcid": "https://orcid.org/0000-0003-2996-9790" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christos Faloutsos", + "raw_affiliation_strings": [ + "Department of Computer Science, Carnegie Mellon University, Pittsburgh, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, Carnegie Mellon University, Pittsburgh, PA, USA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5050186120" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I130238516" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 70.6888, + "has_fulltext": true, + "cited_by_count": 1593, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "65", + "issue": "13", + "first_page": "3551", + "last_page": "3582" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12303", + "display_name": "Tensor decomposition and applications", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2605", + "display_name": "Computational Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12303", + "display_name": "Tensor decomposition and applications", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2605", + "display_name": "Computational Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.967199981212616, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11447", + "display_name": "Blind Source Separation Techniques", + "score": 0.925000011920929, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/tensor", + "display_name": "Tensor (intrinsic definition)", + "score": 0.6821173429489136 + }, + { + "id": "https://openalex.org/keywords/identifiability", + "display_name": "Identifiability", + "score": 0.6632334589958191 + }, + { + "id": "https://openalex.org/keywords/multilinear-algebra", + "display_name": "Multilinear algebra", + "score": 0.6560895442962646 + }, + { + "id": "https://openalex.org/keywords/multilinear-map", + "display_name": "Multilinear map", + "score": 0.6472100615501404 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6300849318504333 + }, + { + "id": "https://openalex.org/keywords/matrix-decomposition", + "display_name": "Matrix decomposition", + "score": 0.5968412160873413 + }, + { + "id": "https://openalex.org/keywords/signal-processing", + "display_name": "Signal processing", + "score": 0.5858262777328491 + }, + { + "id": "https://openalex.org/keywords/rank", + "display_name": "Rank (graph theory)", + "score": 0.4913288652896881 + }, + { + "id": "https://openalex.org/keywords/ranging", + "display_name": "Ranging", + "score": 0.4827932119369507 + }, + { + "id": "https://openalex.org/keywords/subspace-topology", + "display_name": "Subspace topology", + "score": 0.46624651551246643 + }, + { + "id": "https://openalex.org/keywords/statistical-signal-processing", + "display_name": "Statistical signal processing", + "score": 0.45162856578826904 + }, + { + "id": "https://openalex.org/keywords/analytics", + "display_name": "Analytics", + "score": 0.4217430055141449 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.41538673639297485 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.38948237895965576 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3768589496612549 + }, + { + "id": "https://openalex.org/keywords/algebra-over-a-field", + "display_name": "Algebra over a field", + "score": 0.29181069135665894 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.2590547800064087 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2379186749458313 + }, + { + "id": "https://openalex.org/keywords/digital-signal-processing", + "display_name": "Digital signal processing", + "score": 0.20643731951713562 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C155281189", + "wikidata": "https://www.wikidata.org/wiki/Q3518150", + "display_name": "Tensor (intrinsic definition)", + "level": 2, + "score": 0.6821173429489136 + }, + { + "id": "https://openalex.org/C122770356", + "wikidata": "https://www.wikidata.org/wiki/Q1656753", + "display_name": "Identifiability", + "level": 2, + "score": 0.6632334589958191 + }, + { + "id": "https://openalex.org/C60321788", + "wikidata": "https://www.wikidata.org/wiki/Q1197190", + "display_name": "Multilinear algebra", + "level": 5, + "score": 0.6560895442962646 + }, + { + "id": "https://openalex.org/C84392682", + "wikidata": "https://www.wikidata.org/wiki/Q1952404", + "display_name": "Multilinear map", + "level": 2, + "score": 0.6472100615501404 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6300849318504333 + }, + { + "id": "https://openalex.org/C42355184", + "wikidata": "https://www.wikidata.org/wiki/Q1361088", + "display_name": "Matrix decomposition", + "level": 3, + "score": 0.5968412160873413 + }, + { + "id": "https://openalex.org/C104267543", + "wikidata": "https://www.wikidata.org/wiki/Q208163", + "display_name": "Signal processing", + "level": 3, + "score": 0.5858262777328491 + }, + { + "id": "https://openalex.org/C164226766", + "wikidata": "https://www.wikidata.org/wiki/Q7293202", + "display_name": "Rank (graph theory)", + "level": 2, + "score": 0.4913288652896881 + }, + { + "id": "https://openalex.org/C115051666", + "wikidata": "https://www.wikidata.org/wiki/Q6522493", + "display_name": "Ranging", + "level": 2, + "score": 0.4827932119369507 + }, + { + "id": "https://openalex.org/C32834561", + "wikidata": "https://www.wikidata.org/wiki/Q660730", + "display_name": "Subspace topology", + "level": 2, + "score": 0.46624651551246643 + }, + { + "id": "https://openalex.org/C105125183", + "wikidata": "https://www.wikidata.org/wiki/Q208163", + "display_name": "Statistical signal processing", + "level": 4, + "score": 0.45162856578826904 + }, + { + "id": "https://openalex.org/C79158427", + "wikidata": "https://www.wikidata.org/wiki/Q485396", + "display_name": "Analytics", + "level": 2, + "score": 0.4217430055141449 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.41538673639297485 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.38948237895965576 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3768589496612549 + }, + { + "id": "https://openalex.org/C136119220", + "wikidata": "https://www.wikidata.org/wiki/Q1000660", + "display_name": "Algebra over a field", + "level": 2, + "score": 0.29181069135665894 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.2590547800064087 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2379186749458313 + }, + { + "id": "https://openalex.org/C84462506", + "wikidata": "https://www.wikidata.org/wiki/Q173142", + "display_name": "Digital signal processing", + "level": 2, + "score": 0.20643731951713562 + }, + { + "id": "https://openalex.org/C114614502", + "wikidata": "https://www.wikidata.org/wiki/Q76592", + "display_name": "Combinatorics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138354692", + "wikidata": "https://www.wikidata.org/wiki/Q1231309", + "display_name": "Division algebra", + "level": 4, + "score": 0.0 + }, + { + "id": "https://openalex.org/C169171071", + "wikidata": "https://www.wikidata.org/wiki/Q5449241", + "display_name": "Filtered algebra", + "level": 3, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C158693339", + "wikidata": "https://www.wikidata.org/wiki/Q190524", + "display_name": "Eigenvalues and eigenvectors", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C9390403", + "wikidata": "https://www.wikidata.org/wiki/Q3966", + "display_name": "Computer hardware", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1109/tsp.2017.2690524", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tsp.2017.2690524", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S168680287", + "display_name": "IEEE Transactions on Signal Processing", + "issn_l": "1053-587X", + "issn": [ + "1053-587X", + "1941-0476" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Signal Processing", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1607.01668", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1607.01668", + "pdf_url": "https://arxiv.org/pdf/1607.01668", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:lirias2repo.kuleuven.be:123456789/577591", + "is_oa": true, + "landing_page_url": "https://lirias.kuleuven.be/bitstream/123456789/577591/3/sidiropoulos2016tensor.pdf", + "pdf_url": "https://lirias.kuleuven.be/retrieve/eb8ab0fd-a4ff-419b-9ba1-24b97d90fb22", + "source": { + "id": "https://openalex.org/S4306401954", + "display_name": "Lirias (KU Leuven)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I99464096", + "host_organization_name": "KU Leuven", + "host_organization_lineage": [ + "https://openalex.org/I99464096" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "IEEE Transactions on Signal Processing, vol. 65 (13), (3551-3582)", + "raw_type": "info:eu-repo/semantics/publishedVersion" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1607.01668", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1607.01668", + "pdf_url": "https://arxiv.org/pdf/1607.01668", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/9", + "score": 0.4300000071525574, + "display_name": "Industry, innovation and infrastructure" + } + ], + "awards": [ + { + "id": "https://openalex.org/G1371775621", + "display_name": null, + "funder_award_id": "C16/15/059", + "funder_id": "https://openalex.org/F4320322308", + "funder_display_name": "KU Leuven" + }, + { + "id": "https://openalex.org/G1676009052", + "display_name": null, + "funder_award_id": "CoE EF/05/006", + "funder_id": "https://openalex.org/F4320322308", + "funder_display_name": "KU Leuven" + }, + { + "id": "https://openalex.org/G2832174611", + "display_name": null, + "funder_award_id": "IIS-1247632", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4104599821", + "display_name": null, + "funder_award_id": "FP7/2007-2013", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4967211227", + "display_name": "BIGDATA: Mid-Scale: DA: Collaborative Research: Big Tensor Mining: Theory, Scalable Algorithms and Applications", + "funder_award_id": "1247489", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G5519121898", + "display_name": "BIGDATA: Mid-Scale: DA: Collaborative Research: Big Tensor Mining: Theory, Scalable Algorithms and Applications", + "funder_award_id": "1247632", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G5946195615", + "display_name": null, + "funder_award_id": "IIS-1447788", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6685711771", + "display_name": null, + "funder_award_id": "IIS-1247489", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6734414162", + "display_name": null, + "funder_award_id": "IUAP P7", + "funder_id": "https://openalex.org/F4320321454", + "funder_display_name": "Belgian Federal Science Policy Office" + }, + { + "id": "https://openalex.org/G8796945004", + "display_name": null, + "funder_award_id": "FP7/2007-2013", + "funder_id": "https://openalex.org/F4320334960", + "funder_display_name": "Seventh Framework Programme" + }, + { + "id": "https://openalex.org/G8907058826", + "display_name": null, + "funder_award_id": "1447788", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320321454", + "display_name": "Belgian Federal Science Policy Office", + "ror": "https://ror.org/01fapfv42" + }, + { + "id": "https://openalex.org/F4320322308", + "display_name": "KU Leuven", + "ror": "https://ror.org/05f950310" + }, + { + "id": "https://openalex.org/F4320334678", + "display_name": "European Research Council", + "ror": "https://ror.org/0472cxd90" + }, + { + "id": "https://openalex.org/F4320334960", + "display_name": "Seventh Framework Programme", + "ror": "https://ror.org/00k4n6c32" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 174, + "referenced_works": [ + "https://openalex.org/W40848148", + "https://openalex.org/W49160414", + "https://openalex.org/W50417968", + "https://openalex.org/W94565353", + "https://openalex.org/W104065991", + "https://openalex.org/W111803032", + "https://openalex.org/W182499956", + "https://openalex.org/W227277429", + "https://openalex.org/W303777154", + "https://openalex.org/W343638764", + "https://openalex.org/W1500188831", + "https://openalex.org/W1511885491", + "https://openalex.org/W1525270046", + "https://openalex.org/W1539811621", + "https://openalex.org/W1562564874", + "https://openalex.org/W1590929617", + "https://openalex.org/W1632866817", + "https://openalex.org/W1682665945", + "https://openalex.org/W1755563775", + "https://openalex.org/W1850275953", + "https://openalex.org/W1852495720", + "https://openalex.org/W1870083876", + "https://openalex.org/W1964650132", + "https://openalex.org/W1965392255", + "https://openalex.org/W1966845080", + "https://openalex.org/W1967077133", + "https://openalex.org/W1969082792", + "https://openalex.org/W1970195563", + "https://openalex.org/W1973246170", + "https://openalex.org/W1974785908", + "https://openalex.org/W1978259121", + "https://openalex.org/W1980906180", + "https://openalex.org/W1982725637", + "https://openalex.org/W1989811026", + "https://openalex.org/W1993482030", + "https://openalex.org/W2000045479", + "https://openalex.org/W2000215628", + "https://openalex.org/W2008560788", + "https://openalex.org/W2008751154", + "https://openalex.org/W2008972618", + "https://openalex.org/W2009235538", + "https://openalex.org/W2009685860", + "https://openalex.org/W2010417247", + "https://openalex.org/W2011179711", + "https://openalex.org/W2013912476", + "https://openalex.org/W2014565165", + "https://openalex.org/W2014617517", + "https://openalex.org/W2017948584", + "https://openalex.org/W2018282388", + "https://openalex.org/W2019219605", + "https://openalex.org/W2024165284", + "https://openalex.org/W2024166170", + "https://openalex.org/W2027559251", + "https://openalex.org/W2030790903", + "https://openalex.org/W2033332370", + "https://openalex.org/W2033393326", + "https://openalex.org/W2038920431", + "https://openalex.org/W2042901969", + "https://openalex.org/W2043034352", + "https://openalex.org/W2044777402", + "https://openalex.org/W2044901395", + "https://openalex.org/W2047680880", + "https://openalex.org/W2049063033", + "https://openalex.org/W2049878767", + "https://openalex.org/W2050968963", + "https://openalex.org/W2057503509", + "https://openalex.org/W2058236771", + "https://openalex.org/W2066392792", + "https://openalex.org/W2068425868", + "https://openalex.org/W2070013413", + "https://openalex.org/W2070135644", + "https://openalex.org/W2072139290", + "https://openalex.org/W2072509929", + "https://openalex.org/W2076214866", + "https://openalex.org/W2076603483", + "https://openalex.org/W2078314058", + "https://openalex.org/W2078465266", + "https://openalex.org/W2079705627", + "https://openalex.org/W2081106919", + "https://openalex.org/W2081504597", + "https://openalex.org/W2084313768", + "https://openalex.org/W2086261631", + "https://openalex.org/W2090705694", + "https://openalex.org/W2098171862", + "https://openalex.org/W2101641981", + "https://openalex.org/W2102892751", + "https://openalex.org/W2102937240", + "https://openalex.org/W2103392911", + "https://openalex.org/W2103537693", + "https://openalex.org/W2105186495", + "https://openalex.org/W2105724942", + "https://openalex.org/W2106221905", + "https://openalex.org/W2108138101", + "https://openalex.org/W2110322013", + "https://openalex.org/W2111885075", + "https://openalex.org/W2112487361", + "https://openalex.org/W2113055885", + "https://openalex.org/W2118550318", + "https://openalex.org/W2119412403", + "https://openalex.org/W2119741678", + "https://openalex.org/W2120186527", + "https://openalex.org/W2121739212", + "https://openalex.org/W2128203095", + "https://openalex.org/W2129914124", + "https://openalex.org/W2130026668", + "https://openalex.org/W2130629120", + "https://openalex.org/W2131746221", + "https://openalex.org/W2132639093", + "https://openalex.org/W2136023375", + "https://openalex.org/W2136559714", + "https://openalex.org/W2138996475", + "https://openalex.org/W2140862024", + "https://openalex.org/W2141280932", + "https://openalex.org/W2142486198", + "https://openalex.org/W2142638745", + "https://openalex.org/W2144070955", + "https://openalex.org/W2148507357", + "https://openalex.org/W2150059498", + "https://openalex.org/W2150204240", + "https://openalex.org/W2150273584", + "https://openalex.org/W2151139595", + "https://openalex.org/W2152044198", + "https://openalex.org/W2157615762", + "https://openalex.org/W2158218920", + "https://openalex.org/W2158670239", + "https://openalex.org/W2164278908", + "https://openalex.org/W2167083368", + "https://openalex.org/W2167430018", + "https://openalex.org/W2170668800", + "https://openalex.org/W2172195418", + "https://openalex.org/W2181680249", + "https://openalex.org/W2191558661", + "https://openalex.org/W2195165862", + "https://openalex.org/W2237941226", + "https://openalex.org/W2258054274", + "https://openalex.org/W2264065105", + "https://openalex.org/W2282347063", + "https://openalex.org/W2294755503", + "https://openalex.org/W2295739661", + "https://openalex.org/W2296319761", + "https://openalex.org/W2298042388", + "https://openalex.org/W2322520062", + "https://openalex.org/W2328976642", + "https://openalex.org/W2396803706", + "https://openalex.org/W2404578340", + "https://openalex.org/W2490308495", + "https://openalex.org/W2528907418", + "https://openalex.org/W2592422147", + "https://openalex.org/W2595142274", + "https://openalex.org/W2614404377", + "https://openalex.org/W2949940479", + "https://openalex.org/W2964313686", + "https://openalex.org/W3011953977", + "https://openalex.org/W3098973674", + "https://openalex.org/W3104141160", + "https://openalex.org/W3104226882", + "https://openalex.org/W3118552534", + "https://openalex.org/W4236462140", + "https://openalex.org/W4242209908", + "https://openalex.org/W4244393449", + "https://openalex.org/W4250589301", + "https://openalex.org/W4251986282", + "https://openalex.org/W4285719527", + "https://openalex.org/W4292363360", + "https://openalex.org/W4295910354", + "https://openalex.org/W4301014524", + "https://openalex.org/W6603861661", + "https://openalex.org/W6636705969", + "https://openalex.org/W6676039487", + "https://openalex.org/W6676820125", + "https://openalex.org/W6681015807", + "https://openalex.org/W6681780477", + "https://openalex.org/W6687535707", + "https://openalex.org/W6787650870" + ], + "related_works": [ + "https://openalex.org/W2071105597", + "https://openalex.org/W2242909499", + "https://openalex.org/W2405717268", + "https://openalex.org/W2946637708", + "https://openalex.org/W4235893778", + "https://openalex.org/W2100779717", + "https://openalex.org/W2901391673", + "https://openalex.org/W4376274937", + "https://openalex.org/W3189506985", + "https://openalex.org/W3022422766" + ], + "abstract_inverted_index": { + "Tensors": [ + 0, + 33 + ], + "or": [ + 1, + 8 + ], + "multiway": [ + 2 + ], + "arrays": [ + 3 + ], + "are": [ + 4, + 23 + ], + "functions": [ + 5, + 24 + ], + "of": [ + 6, + 25, + 63, + 112, + 174, + 178 + ], + "three": [ + 7 + ], + "more": [ + 9 + ], + "indices": [ + 10, + 27 + ], + "(i,": [ + 11 + ], + "j,": [ + 12 + ], + "k,": [ + 13 + ], + ".": [ + 14, + 15, + 16 + ], + ")-similar": [ + 17 + ], + "to": [ + 18, + 76, + 107, + 130, + 184, + 196 + ], + "matrices": [ + 19 + ], + "(two-way": [ + 20 + ], + "arrays),": [ + 21 + ], + "which": [ + 22 + ], + "two": [ + 26 + ], + "(r,": [ + 28 + ], + "c)": [ + 29 + ], + "for": [ + 30, + 82 + ], + "(row,": [ + 31 + ], + "column).": [ + 32 + ], + "have": [ + 34, + 50 + ], + "a": [ + 35, + 41, + 78 + ], + "rich": [ + 36 + ], + "history,": [ + 37 + ], + "stretching": [ + 38 + ], + "over": [ + 39 + ], + "almost": [ + 40 + ], + "century,": [ + 42 + ], + "and": [ + 43, + 57, + 69, + 84, + 90, + 100, + 114, + 128, + 139, + 158, + 165, + 168, + 190, + 200, + 204 + ], + "touching": [ + 44 + ], + "upon": [ + 45 + ], + "numerous": [ + 46 + ], + "disciplines;": [ + 47 + ], + "but": [ + 48, + 148 + ], + "they": [ + 49 + ], + "only": [ + 51 + ], + "recently": [ + 52 + ], + "become": [ + 53 + ], + "ubiquitous": [ + 54 + ], + "in": [ + 55, + 87, + 125, + 143 + ], + "signal": [ + 56, + 64 + ], + "data": [ + 58, + 67 + ], + "analytics": [ + 59 + ], + "at": [ + 60 + ], + "the": [ + 61 + ], + "confluence": [ + 62 + ], + "processing,": [ + 65 + ], + "statistics,": [ + 66 + ], + "mining,": [ + 68 + ], + "machine": [ + 70 + ], + "learning.": [ + 71, + 207 + ], + "This": [ + 72 + ], + "overview": [ + 73 + ], + "article": [ + 74 + ], + "aims": [ + 75 + ], + "provide": [ + 77 + ], + "good": [ + 79, + 172 + ], + "starting": [ + 80 + ], + "point": [ + 81 + ], + "researchers": [ + 83 + ], + "practitioners": [ + 85 + ], + "interested": [ + 86 + ], + "learning": [ + 88 + ], + "about": [ + 89 + ], + "working": [ + 91 + ], + "with": [ + 92 + ], + "tensors.": [ + 93 + ], + "As": [ + 94 + ], + "such,": [ + 95 + ], + "it": [ + 96 + ], + "focuses": [ + 97 + ], + "on": [ + 98 + ], + "fundamentals": [ + 99 + ], + "motivation": [ + 101 + ], + "(using": [ + 102 + ], + "various": [ + 103 + ], + "application": [ + 104 + ], + "examples),": [ + 105 + ], + "aiming": [ + 106 + ], + "strike": [ + 108 + ], + "an": [ + 109 + ], + "appropriate": [ + 110 + ], + "balance": [ + 111 + ], + "breadth": [ + 113 + ], + "depth": [ + 115 + ], + "that": [ + 116 + ], + "will": [ + 117 + ], + "enable": [ + 118 + ], + "someone": [ + 119 + ], + "having": [ + 120 + ], + "taken": [ + 121 + ], + "first": [ + 122 + ], + "graduate": [ + 123 + ], + "courses": [ + 124 + ], + "matrix": [ + 126 + ], + "algebra": [ + 127 + ], + "probability": [ + 129 + ], + "get": [ + 131 + ], + "started": [ + 132 + ], + "doing": [ + 133 + ], + "research": [ + 134 + ], + "and/or": [ + 135 + ], + "developing": [ + 136 + ], + "tensor": [ + 137, + 156, + 162 + ], + "algorithms": [ + 138, + 179 + ], + "software.": [ + 140 + ], + "Some": [ + 141 + ], + "background": [ + 142 + ], + "applied": [ + 144 + ], + "optimization": [ + 145, + 183 + ], + "is": [ + 146 + ], + "useful": [ + 147 + ], + "not": [ + 149 + ], + "strictly": [ + 150 + ], + "required.": [ + 151 + ], + "The": [ + 152 + ], + "material": [ + 153 + ], + "covered": [ + 154 + ], + "includes": [ + 155 + ], + "rank": [ + 157, + 159 + ], + "decomposition;": [ + 160 + ], + "basic": [ + 161 + ], + "factorization": [ + 163 + ], + "models": [ + 164 + ], + "their": [ + 166 + ], + "relationships": [ + 167 + ], + "properties": [ + 169 + ], + "(including": [ + 170 + ], + "fairly": [ + 171 + ], + "coverage": [ + 173, + 177 + ], + "identifiability);": [ + 175 + ], + "broad": [ + 176 + ], + "ranging": [ + 180, + 192 + ], + "from": [ + 181, + 193 + ], + "alternating": [ + 182 + ], + "stochastic": [ + 185 + ], + "gradient;": [ + 186 + ], + "statistical": [ + 187 + ], + "performance": [ + 188 + ], + "analysis;": [ + 189 + ], + "applications": [ + 191 + ], + "source": [ + 194 + ], + "separation": [ + 195 + ], + "collaborative": [ + 197 + ], + "filtering,": [ + 198 + ], + "mixture": [ + 199 + ], + "topic": [ + 201 + ], + "modeling,": [ + 202 + ], + "classification,": [ + 203 + ], + "multilinear": [ + 205 + ], + "subspace": [ + 206 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 51 + }, + { + "year": 2025, + "cited_by_count": 180 + }, + { + "year": 2024, + "cited_by_count": 149 + }, + { + "year": 2023, + "cited_by_count": 151 + }, + { + "year": 2022, + "cited_by_count": 216 + }, + { + "year": 2021, + "cited_by_count": 245 + }, + { + "year": 2020, + "cited_by_count": 223 + }, + { + "year": 2019, + "cited_by_count": 200 + }, + { + "year": 2018, + "cited_by_count": 129 + }, + { + "year": 2017, + "cited_by_count": 43 + }, + { + "year": 2016, + "cited_by_count": 6 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2588978745", + "doi": "https://doi.org/10.1148/rg.2017160130", + "title": "Machine Learning for Medical Imaging", + "display_name": "Machine Learning for Medical Imaging", + "relevance_score": 2574.9812, + "publication_year": 2017, + "publication_date": "2017-02-17", + "ids": { + "openalex": "https://openalex.org/W2588978745", + "doi": "https://doi.org/10.1148/rg.2017160130", + "mag": "2588978745", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28212054" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1148/rg.2017160130", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1148/rg.2017160130", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S26381749", + "display_name": "Radiographics", + "issn_l": "0271-5333", + "issn": [ + "0271-5333", + "1527-1323" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315931", + "host_organization_name": "Radiological Society of North America", + "host_organization_lineage": [ + "https://openalex.org/P4310315931" + ], + "host_organization_lineage_names": [ + "Radiological Society of North America" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "RadioGraphics", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5008832314", + "display_name": "Bradley J. Erickson", + "orcid": "https://orcid.org/0000-0001-7926-6095" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Bradley J. Erickson", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5053303391", + "display_name": "Panagiotis Korfiatis", + "orcid": "https://orcid.org/0000-0003-2516-1751" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Panagiotis Korfiatis", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5052077725", + "display_name": "Zeynettin Akkus", + "orcid": "https://orcid.org/0000-0003-3920-1515" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zeynettin Akkus", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016336723", + "display_name": "Timothy L. Kline", + "orcid": "https://orcid.org/0000-0002-7917-9853" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Timothy L. Kline", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5008832314" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1330342723" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 85.7828, + "has_fulltext": false, + "cited_by_count": 1624, + "citation_normalized_percentile": { + "value": 0.99931379, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "37", + "issue": "2", + "first_page": "505", + "last_page": "515" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12422", + "display_name": "Radiomics and Machine Learning in Medical Imaging", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11775", + "display_name": "COVID-19 diagnosis using AI", + "score": 0.994700014591217, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7838993072509766 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7787308096885681 + }, + { + "id": "https://openalex.org/keywords/medical-diagnosis", + "display_name": "Medical diagnosis", + "score": 0.6961835026741028 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5870267152786255 + }, + { + "id": "https://openalex.org/keywords/medical-imaging", + "display_name": "Medical imaging", + "score": 0.5376978516578674 + }, + { + "id": "https://openalex.org/keywords/rendering", + "display_name": "Rendering (computer graphics)", + "score": 0.5225207805633545 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.4827798902988434 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.46324601769447327 + }, + { + "id": "https://openalex.org/keywords/identification", + "display_name": "Identification (biology)", + "score": 0.4527209401130676 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.4446392059326172 + }, + { + "id": "https://openalex.org/keywords/metric", + "display_name": "Metric (unit)", + "score": 0.4362000823020935 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2772611975669861 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7838993072509766 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7787308096885681 + }, + { + "id": "https://openalex.org/C534262118", + "wikidata": "https://www.wikidata.org/wiki/Q177719", + "display_name": "Medical diagnosis", + "level": 2, + "score": 0.6961835026741028 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5870267152786255 + }, + { + "id": "https://openalex.org/C31601959", + "wikidata": "https://www.wikidata.org/wiki/Q931309", + "display_name": "Medical imaging", + "level": 2, + "score": 0.5376978516578674 + }, + { + "id": "https://openalex.org/C205711294", + "wikidata": "https://www.wikidata.org/wiki/Q176953", + "display_name": "Rendering (computer graphics)", + "level": 2, + "score": 0.5225207805633545 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.4827798902988434 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.46324601769447327 + }, + { + "id": "https://openalex.org/C116834253", + "wikidata": "https://www.wikidata.org/wiki/Q2039217", + "display_name": "Identification (biology)", + "level": 2, + "score": 0.4527209401130676 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.4446392059326172 + }, + { + "id": "https://openalex.org/C176217482", + "wikidata": "https://www.wikidata.org/wiki/Q860554", + "display_name": "Metric (unit)", + "level": 2, + "score": 0.4362000823020935 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2772611975669861 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C21547014", + "wikidata": "https://www.wikidata.org/wiki/Q1423657", + "display_name": "Operations management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1148/rg.2017160130", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1148/rg.2017160130", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S26381749", + "display_name": "Radiographics", + "issn_l": "0271-5333", + "issn": [ + "0271-5333", + "1527-1323" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315931", + "host_organization_name": "Radiological Society of North America", + "host_organization_lineage": [ + "https://openalex.org/P4310315931" + ], + "host_organization_lineage_names": [ + "Radiological Society of North America" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "RadioGraphics", + "raw_type": "journal-article" + }, + { + "id": "pmid:28212054", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28212054", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Radiographics : a review publication of the Radiological Society of North America, Inc", + "raw_type": null + }, + { + "id": "pmh:oai:europepmc.org:4343850", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5375621", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "score": 0.49000000953674316, + "display_name": "Quality Education" + } + ], + "awards": [ + { + "id": "https://openalex.org/G392204494", + "display_name": null, + "funder_award_id": "DK90728", + "funder_id": "https://openalex.org/F4320337351", + "funder_display_name": "National Cancer Institute" + }, + { + "id": "https://openalex.org/G7637728122", + "display_name": null, + "funder_award_id": "206g16a", + "funder_id": "https://openalex.org/F4320306478", + "funder_display_name": "PKD Foundation" + }, + { + "id": "https://openalex.org/G7783623847", + "display_name": null, + "funder_award_id": "CA160045", + "funder_id": "https://openalex.org/F4320337351", + "funder_display_name": "National Cancer Institute" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306478", + "display_name": "PKD Foundation", + "ror": "https://ror.org/05g0xkn45" + }, + { + "id": "https://openalex.org/F4320337351", + "display_name": "National Cancer Institute", + "ror": "https://ror.org/040gcmg81" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 59, + "referenced_works": [ + "https://openalex.org/W56743589", + "https://openalex.org/W1481460540", + "https://openalex.org/W1485026097", + "https://openalex.org/W1539741229", + "https://openalex.org/W1563088657", + "https://openalex.org/W1597405158", + "https://openalex.org/W1632778076", + "https://openalex.org/W1945544474", + "https://openalex.org/W1971022913", + "https://openalex.org/W1972070393", + "https://openalex.org/W1977513632", + "https://openalex.org/W1981552604", + "https://openalex.org/W1984992673", + "https://openalex.org/W1990368529", + "https://openalex.org/W1995450389", + "https://openalex.org/W1998871699", + "https://openalex.org/W2014711341", + "https://openalex.org/W2028053538", + "https://openalex.org/W2032026767", + "https://openalex.org/W2050997943", + "https://openalex.org/W2052604140", + "https://openalex.org/W2062227835", + "https://openalex.org/W2067191022", + "https://openalex.org/W2080915836", + "https://openalex.org/W2083780116", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096798358", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100736366", + "https://openalex.org/W2103868202", + "https://openalex.org/W2112525988", + "https://openalex.org/W2112796928", + "https://openalex.org/W2117539524", + "https://openalex.org/W2119387367", + "https://openalex.org/W2120111102", + "https://openalex.org/W2122111042", + "https://openalex.org/W2123498585", + "https://openalex.org/W2130623086", + "https://openalex.org/W2137983211", + "https://openalex.org/W2142730785", + "https://openalex.org/W2144412017", + "https://openalex.org/W2145343783", + "https://openalex.org/W2165428595", + "https://openalex.org/W2168217710", + "https://openalex.org/W2248644291", + "https://openalex.org/W2271840356", + "https://openalex.org/W2573231840", + "https://openalex.org/W2604272474", + "https://openalex.org/W2911964244", + "https://openalex.org/W3017143921", + "https://openalex.org/W3022861191", + "https://openalex.org/W3104887532", + "https://openalex.org/W4212883601", + "https://openalex.org/W4234556776", + "https://openalex.org/W4236137412", + "https://openalex.org/W4246484440", + "https://openalex.org/W4299689471", + "https://openalex.org/W6636708973", + "https://openalex.org/W6674914833" + ], + "related_works": [ + "https://openalex.org/W4249377076", + "https://openalex.org/W4210389441", + "https://openalex.org/W4375867731", + "https://openalex.org/W2395241803", + "https://openalex.org/W2003211637", + "https://openalex.org/W2021488205", + "https://openalex.org/W3024479225", + "https://openalex.org/W3171371563", + "https://openalex.org/W2995680918", + "https://openalex.org/W3003847115" + ], + "abstract_inverted_index": { + "RSNA,": [ + 0 + ], + "2017.": [ + 1 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 52 + }, + { + "year": 2025, + "cited_by_count": 189 + }, + { + "year": 2024, + "cited_by_count": 209 + }, + { + "year": 2023, + "cited_by_count": 278 + }, + { + "year": 2022, + "cited_by_count": 212 + }, + { + "year": 2021, + "cited_by_count": 266 + }, + { + "year": 2020, + "cited_by_count": 186 + }, + { + "year": 2019, + "cited_by_count": 140 + }, + { + "year": 2018, + "cited_by_count": 63 + }, + { + "year": 2017, + "cited_by_count": 23 + }, + { + "year": 2015, + "cited_by_count": 2 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1985987493", + "doi": "https://doi.org/10.1109/sp.2010.25", + "title": "Outside the Closed World: On Using Machine Learning for Network Intrusion Detection", + "display_name": "Outside the Closed World: On Using Machine Learning for Network Intrusion Detection", + "relevance_score": 2572.306, + "publication_year": 2010, + "publication_date": "2010-01-01", + "ids": { + "openalex": "https://openalex.org/W1985987493", + "doi": "https://doi.org/10.1109/sp.2010.25", + "mag": "1985987493" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2010.25", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2010.25", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2010 IEEE Symposium on Security and Privacy", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5015612893", + "display_name": "Robin Sommer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1297971548", + "display_name": "International Computer Science Institute", + "ror": "https://ror.org/01ewh7m12", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I1297971548" + ] + }, + { + "id": "https://openalex.org/I148283060", + "display_name": "Lawrence Berkeley National Laboratory", + "ror": "https://ror.org/02jbv0t02", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I148283060", + "https://openalex.org/I39565521" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Robin Sommer", + "raw_affiliation_strings": [ + "Lawrence Berkeley National Laboratory, International Computer Science Institute, USA", + "Int. Comput. Sci. Inst., Lawrence Berkeley Nat. Lab., Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Lawrence Berkeley National Laboratory, International Computer Science Institute, USA", + "institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I148283060" + ] + }, + { + "raw_affiliation_string": "Int. Comput. Sci. Inst., Lawrence Berkeley Nat. Lab., Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I148283060" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5002219113", + "display_name": "Vern Paxson", + "orcid": "https://orcid.org/0009-0005-2673-543X" + }, + "institutions": [ + { + "id": "https://openalex.org/I1297971548", + "display_name": "International Computer Science Institute", + "ror": "https://ror.org/01ewh7m12", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I1297971548" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vern Paxson", + "raw_affiliation_strings": [ + "International Computer Science Institute, University of California, Berkeley, USA", + "Int. Comput. Sci. Inst., Univ. of California, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "International Computer Science Institute, University of California, Berkeley, USA", + "institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Int. Comput. Sci. Inst., Univ. of California, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5015612893" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I148283060" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 53.6749, + "has_fulltext": false, + "cited_by_count": 1827, + "citation_normalized_percentile": { + "value": 0.99950798, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "305", + "last_page": "316" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11598", + "display_name": "Internet Traffic Analysis and Secure E-voting", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/intrusion-detection-system", + "display_name": "Intrusion detection system", + "score": 0.8441348075866699 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7383659482002258 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6644471883773804 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6305571794509888 + }, + { + "id": "https://openalex.org/keywords/anomaly-detection", + "display_name": "Anomaly detection", + "score": 0.6277502179145813 + }, + { + "id": "https://openalex.org/keywords/anomaly-based-intrusion-detection-system", + "display_name": "Anomaly-based intrusion detection system", + "score": 0.5756117701530457 + }, + { + "id": "https://openalex.org/keywords/task", + "display_name": "Task (project management)", + "score": 0.4769274592399597 + }, + { + "id": "https://openalex.org/keywords/intrusion", + "display_name": "Intrusion", + "score": 0.4673961102962494 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4657863676548004 + }, + { + "id": "https://openalex.org/keywords/intrusion-prevention-system", + "display_name": "Intrusion prevention system", + "score": 0.45944297313690186 + }, + { + "id": "https://openalex.org/keywords/learning-network", + "display_name": "Learning network", + "score": 0.4306923449039459 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.339436411857605 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.18274590373039246 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C35525427", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion detection system", + "level": 2, + "score": 0.8441348075866699 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7383659482002258 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6644471883773804 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6305571794509888 + }, + { + "id": "https://openalex.org/C739882", + "wikidata": "https://www.wikidata.org/wiki/Q3560506", + "display_name": "Anomaly detection", + "level": 2, + "score": 0.6277502179145813 + }, + { + "id": "https://openalex.org/C137524506", + "wikidata": "https://www.wikidata.org/wiki/Q2247688", + "display_name": "Anomaly-based intrusion detection system", + "level": 3, + "score": 0.5756117701530457 + }, + { + "id": "https://openalex.org/C2780451532", + "wikidata": "https://www.wikidata.org/wiki/Q759676", + "display_name": "Task (project management)", + "level": 2, + "score": 0.4769274592399597 + }, + { + "id": "https://openalex.org/C158251709", + "wikidata": "https://www.wikidata.org/wiki/Q354025", + "display_name": "Intrusion", + "level": 2, + "score": 0.4673961102962494 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4657863676548004 + }, + { + "id": "https://openalex.org/C27061796", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion prevention system", + "level": 3, + "score": 0.45944297313690186 + }, + { + "id": "https://openalex.org/C2987015589", + "wikidata": "https://www.wikidata.org/wiki/Q1040098", + "display_name": "Learning network", + "level": 2, + "score": 0.4306923449039459 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.339436411857605 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.18274590373039246 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17409809", + "wikidata": "https://www.wikidata.org/wiki/Q161764", + "display_name": "Geochemistry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C201995342", + "wikidata": "https://www.wikidata.org/wiki/Q682496", + "display_name": "Systems engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/sp.2010.25", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2010.25", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2010 IEEE Symposium on Security and Privacy", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.212.1482", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.212.1482", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.icir.org/robin/papers/oakland10-ml.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 73, + "referenced_works": [ + "https://openalex.org/W6091113", + "https://openalex.org/W105475431", + "https://openalex.org/W191098608", + "https://openalex.org/W1490025813", + "https://openalex.org/W1490760466", + "https://openalex.org/W1510508184", + "https://openalex.org/W1512586648", + "https://openalex.org/W1516506771", + "https://openalex.org/W1545904932", + "https://openalex.org/W1570448133", + "https://openalex.org/W1573594453", + "https://openalex.org/W1582482241", + "https://openalex.org/W1590936031", + "https://openalex.org/W1591480890", + "https://openalex.org/W1602011302", + "https://openalex.org/W1805704774", + "https://openalex.org/W1986697120", + "https://openalex.org/W1988918299", + "https://openalex.org/W1989121667", + "https://openalex.org/W1999427165", + "https://openalex.org/W2001642682", + "https://openalex.org/W2021795960", + "https://openalex.org/W2032247543", + "https://openalex.org/W2048465382", + "https://openalex.org/W2058737869", + "https://openalex.org/W2069734023", + "https://openalex.org/W2087922528", + "https://openalex.org/W2096431803", + "https://openalex.org/W2096847629", + "https://openalex.org/W2102101901", + "https://openalex.org/W2102399005", + "https://openalex.org/W2103018059", + "https://openalex.org/W2103042216", + "https://openalex.org/W2103378897", + "https://openalex.org/W2108638430", + "https://openalex.org/W2117646649", + "https://openalex.org/W2119168550", + "https://openalex.org/W2122646361", + "https://openalex.org/W2125735062", + "https://openalex.org/W2130087897", + "https://openalex.org/W2130523241", + "https://openalex.org/W2135930857", + "https://openalex.org/W2147215426", + "https://openalex.org/W2149544709", + "https://openalex.org/W2150847526", + "https://openalex.org/W2151298633", + "https://openalex.org/W2155409100", + "https://openalex.org/W2156916299", + "https://openalex.org/W2159094788", + "https://openalex.org/W2168761028", + "https://openalex.org/W2171873915", + "https://openalex.org/W2275675895", + "https://openalex.org/W2341535507", + "https://openalex.org/W2404193357", + "https://openalex.org/W2966207845", + "https://openalex.org/W3005635621", + "https://openalex.org/W3208688400", + "https://openalex.org/W3216912485", + "https://openalex.org/W4230513520", + "https://openalex.org/W4230946174", + "https://openalex.org/W4253289766", + "https://openalex.org/W6604348779", + "https://openalex.org/W6607784307", + "https://openalex.org/W6630637722", + "https://openalex.org/W6630758996", + "https://openalex.org/W6635150131", + "https://openalex.org/W6638227319", + "https://openalex.org/W6650820226", + "https://openalex.org/W6674805939", + "https://openalex.org/W6679027663", + "https://openalex.org/W6680267248", + "https://openalex.org/W6694748896", + "https://openalex.org/W6713347195" + ], + "related_works": [ + "https://openalex.org/W2357468538", + "https://openalex.org/W2362800560", + "https://openalex.org/W4300599821", + "https://openalex.org/W2355007334", + "https://openalex.org/W1496376327", + "https://openalex.org/W2133389611", + "https://openalex.org/W2383127772", + "https://openalex.org/W2348767155", + "https://openalex.org/W2374614522", + "https://openalex.org/W1937493481" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "network": [ + 1, + 78, + 133 + ], + "intrusion": [ + 2, + 59, + 79, + 116, + 134 + ], + "detection": [ + 3, + 60, + 80, + 117 + ], + "research,": [ + 4 + ], + "one": [ + 5, + 43 + ], + "popular": [ + 6 + ], + "strategy": [ + 7 + ], + "for": [ + 8, + 16, + 114 + ], + "finding": [ + 9, + 101 + ], + "attacks": [ + 10, + 102 + ], + "is": [ + 11, + 64, + 96, + 103 + ], + "monitoring": [ + 12 + ], + "a": [ + 13, + 45, + 138 + ], + "network's": [ + 14 + ], + "activity": [ + 15 + ], + "anomalies:": [ + 17 + ], + "deviations": [ + 18 + ], + "from": [ + 19, + 25, + 33, + 106 + ], + "profiles": [ + 20 + ], + "of": [ + 21, + 50, + 53, + 100, + 140 + ], + "normality": [ + 22 + ], + "previously": [ + 23 + ], + "learned": [ + 24 + ], + "benign": [ + 26 + ], + "traffic,": [ + 27 + ], + "typically": [ + 28 + ], + "identified": [ + 29 + ], + "using": [ + 30 + ], + "tools": [ + 31 + ], + "borrowed": [ + 32 + ], + "the": [ + 34, + 74, + 77, + 98, + 115 + ], + "machine": [ + 35, + 62, + 86, + 121 + ], + "learning": [ + 36, + 63, + 87, + 122 + ], + "community.": [ + 37 + ], + "However,": [ + 38 + ], + "despite": [ + 39 + ], + "extensive": [ + 40 + ], + "academic": [ + 41 + ], + "research": [ + 42, + 146 + ], + "finds": [ + 44, + 89 + ], + "striking": [ + 46 + ], + "gap": [ + 47 + ], + "in": [ + 48, + 67 + ], + "terms": [ + 49 + ], + "actual": [ + 51 + ], + "deployments": [ + 52 + ], + "such": [ + 54 + ], + "systems:": [ + 55 + ], + "compared": [ + 56 + ], + "with": [ + 57 + ], + "other": [ + 58, + 83, + 108 + ], + "approaches,": [ + 61 + ], + "rarely": [ + 65 + ], + "employed": [ + 66 + ], + "operational": [ + 68 + ], + "\"real": [ + 69 + ], + "world\"": [ + 70 + ], + "settings.": [ + 71 + ], + "We": [ + 72, + 124 + ], + "examine": [ + 73 + ], + "differences": [ + 75 + ], + "between": [ + 76 + ], + "problem": [ + 81 + ], + "and": [ + 82, + 136 + ], + "areas": [ + 84 + ], + "where": [ + 85 + ], + "regularly": [ + 88 + ], + "much": [ + 90 + ], + "more": [ + 91 + ], + "success.": [ + 92 + ], + "Our": [ + 93 + ], + "main": [ + 94 + ], + "claim": [ + 95, + 127 + ], + "that": [ + 97 + ], + "task": [ + 99 + ], + "fundamentally": [ + 104 + ], + "different": [ + 105 + ], + "these": [ + 107 + ], + "applications,": [ + 109 + ], + "making": [ + 110 + ], + "it": [ + 111 + ], + "significantly": [ + 112 + ], + "harder": [ + 113 + ], + "community": [ + 118 + ], + "to": [ + 119, + 132, + 143 + ], + "employ": [ + 120 + ], + "effectively.": [ + 123 + ], + "support": [ + 125 + ], + "this": [ + 126 + ], + "by": [ + 128 + ], + "identifying": [ + 129 + ], + "challenges": [ + 130 + ], + "particular": [ + 131 + ], + "detection,": [ + 135 + ], + "provide": [ + 137 + ], + "set": [ + 139 + ], + "guidelines": [ + 141 + ], + "meant": [ + 142 + ], + "strengthen": [ + 144 + ], + "future": [ + 145 + ], + "on": [ + 147 + ], + "anomaly": [ + 148 + ], + "detection.": [ + 149 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 92 + }, + { + "year": 2025, + "cited_by_count": 271 + }, + { + "year": 2024, + "cited_by_count": 159 + }, + { + "year": 2023, + "cited_by_count": 98 + }, + { + "year": 2022, + "cited_by_count": 109 + }, + { + "year": 2021, + "cited_by_count": 127 + }, + { + "year": 2020, + "cited_by_count": 162 + }, + { + "year": 2019, + "cited_by_count": 195 + }, + { + "year": 2018, + "cited_by_count": 136 + }, + { + "year": 2017, + "cited_by_count": 113 + }, + { + "year": 2016, + "cited_by_count": 98 + }, + { + "year": 2015, + "cited_by_count": 65 + }, + { + "year": 2014, + "cited_by_count": 58 + }, + { + "year": 2013, + "cited_by_count": 60 + }, + { + "year": 2012, + "cited_by_count": 43 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1529533208", + "doi": "https://doi.org/10.1109/jproc.2015.2483592", + "title": "A Review of Relational Machine Learning for Knowledge Graphs", + "display_name": "A Review of Relational Machine Learning for Knowledge Graphs", + "relevance_score": 2569.3381, + "publication_year": 2015, + "publication_date": "2015-12-17", + "ids": { + "openalex": "https://openalex.org/W1529533208", + "doi": "https://doi.org/10.1109/jproc.2015.2483592", + "mag": "1529533208" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/jproc.2015.2483592", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/jproc.2015.2483592", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S68686220", + "display_name": "Proceedings of the IEEE", + "issn_l": "0018-9219", + "issn": [ + "0018-9219", + "1558-2256" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the IEEE", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1503.00759", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5000667901", + "display_name": "Maximilian Nickel", + "orcid": "https://orcid.org/0000-0001-5006-0827" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + }, + { + "id": "https://openalex.org/I30771326", + "display_name": "Italian Institute of Technology", + "ror": "https://ror.org/042t93s57", + "country_code": "IT", + "type": "facility", + "lineage": [ + "https://openalex.org/I30771326" + ] + } + ], + "countries": [ + "IT", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Maximilian Nickel", + "raw_affiliation_strings": [ + "Laboratory for Computational and Statistical Learning (LCSL), Istituto Italiano di Tecnologia, Genova, MA, Italy", + "[Laboratory for Computational and Statistical Learning (LCSL), Massachusetts Institute of Technology, Cambridge, MA, USA]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Computational and Statistical Learning (LCSL), Istituto Italiano di Tecnologia, Genova, MA, Italy", + "institution_ids": [ + "https://openalex.org/I30771326" + ] + }, + { + "raw_affiliation_string": "[Laboratory for Computational and Statistical Learning (LCSL), Massachusetts Institute of Technology, Cambridge, MA, USA]", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002713363", + "display_name": "Kevin Murphy", + "orcid": "https://orcid.org/0000-0001-5196-7236" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kevin Murphy", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA", + "Google Inc., Mountain View, CA USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google Inc., Mountain View, CA USA", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074808403", + "display_name": "Volker Tresp", + "orcid": "https://orcid.org/0000-0001-9428-3686" + }, + "institutions": [ + { + "id": "https://openalex.org/I8204097", + "display_name": "Ludwig-Maximilians-Universität München", + "ror": "https://ror.org/05591te55", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I8204097" + ] + }, + { + "id": "https://openalex.org/I1325886976", + "display_name": "Siemens (Germany)", + "ror": "https://ror.org/059mq0909", + "country_code": "DE", + "type": "company", + "lineage": [ + "https://openalex.org/I1325886976" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Volker Tresp", + "raw_affiliation_strings": [ + "Siemens AG, Corporate Technology, Ludwig Maximilian University of Munich, Munich, Germany", + "Siemens AG, Corporate Technology, Munich, Germany#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Siemens AG, Corporate Technology, Ludwig Maximilian University of Munich, Munich, Germany", + "institution_ids": [ + "https://openalex.org/I1325886976", + "https://openalex.org/I8204097" + ] + }, + { + "raw_affiliation_string": "Siemens AG, Corporate Technology, Munich, Germany#TAB#", + "institution_ids": [ + "https://openalex.org/I1325886976" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5013932834", + "display_name": "Evgeniy Gabrilovich", + "orcid": "https://orcid.org/0000-0001-7933-1926" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evgeniy Gabrilovich", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA", + "Google Inc., Mountain View, CA USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google Inc., Mountain View, CA USA", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5000667901" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I30771326", + "https://openalex.org/I63966007" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 124.23, + "has_fulltext": false, + "cited_by_count": 1637, + "citation_normalized_percentile": { + "value": 0.99972151, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "104", + "issue": "1", + "first_page": "11", + "last_page": "33" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11273", + "display_name": "Advanced Graph Neural Networks", + "score": 0.916700005531311, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11273", + "display_name": "Advanced Graph Neural Networks", + "score": 0.916700005531311, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11303", + "display_name": "Bayesian Modeling and Causal Inference", + "score": 0.00989999994635582, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12292", + "display_name": "Graph Theory and Algorithms", + "score": 0.007799999788403511, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/statistical-relational-learning", + "display_name": "Statistical relational learning", + "score": 0.7889400720596313 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7375805377960205 + }, + { + "id": "https://openalex.org/keywords/knowledge-graph", + "display_name": "Knowledge graph", + "score": 0.5366183519363403 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5131645798683167 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5024473667144775 + }, + { + "id": "https://openalex.org/keywords/graph", + "display_name": "Graph", + "score": 0.451494425535202 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.43196582794189453 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.42936253547668457 + }, + { + "id": "https://openalex.org/keywords/observable", + "display_name": "Observable", + "score": 0.4168981909751892 + }, + { + "id": "https://openalex.org/keywords/relational-model", + "display_name": "Relational model", + "score": 0.4146842658519745 + }, + { + "id": "https://openalex.org/keywords/relational-database", + "display_name": "Relational database", + "score": 0.414201021194458 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C177877439", + "wikidata": "https://www.wikidata.org/wiki/Q7604413", + "display_name": "Statistical relational learning", + "level": 3, + "score": 0.7889400720596313 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7375805377960205 + }, + { + "id": "https://openalex.org/C2987255567", + "wikidata": "https://www.wikidata.org/wiki/Q33002955", + "display_name": "Knowledge graph", + "level": 2, + "score": 0.5366183519363403 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5131645798683167 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5024473667144775 + }, + { + "id": "https://openalex.org/C132525143", + "wikidata": "https://www.wikidata.org/wiki/Q141488", + "display_name": "Graph", + "level": 2, + "score": 0.451494425535202 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.43196582794189453 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.42936253547668457 + }, + { + "id": "https://openalex.org/C32848918", + "wikidata": "https://www.wikidata.org/wiki/Q845789", + "display_name": "Observable", + "level": 2, + "score": 0.4168981909751892 + }, + { + "id": "https://openalex.org/C40207289", + "wikidata": "https://www.wikidata.org/wiki/Q755662", + "display_name": "Relational model", + "level": 3, + "score": 0.4146842658519745 + }, + { + "id": "https://openalex.org/C5655090", + "wikidata": "https://www.wikidata.org/wiki/Q192588", + "display_name": "Relational database", + "level": 2, + "score": 0.414201021194458 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1109/jproc.2015.2483592", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/jproc.2015.2483592", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S68686220", + "display_name": "Proceedings of the IEEE", + "issn_l": "0018-9219", + "issn": [ + "0018-9219", + "1558-2256" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the IEEE", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1503.00759", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1503.00759", + "pdf_url": "https://arxiv.org/pdf/1503.00759", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:dspace.mit.edu:1721.1/100193", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/1721.1/100193", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400425", + "display_name": "DSpace@MIT (Massachusetts Institute of Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I63966007", + "host_organization_name": "Massachusetts Institute of Technology", + "host_organization_lineage": [ + "https://openalex.org/I63966007" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Other" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1503.00759", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1503.00759", + "pdf_url": "https://arxiv.org/pdf/1503.00759", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/4", + "score": 0.5400000214576721, + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 213, + "referenced_works": [ + "https://openalex.org/W28412257", + "https://openalex.org/W92973652", + "https://openalex.org/W94565353", + "https://openalex.org/W102708294", + "https://openalex.org/W109245773", + "https://openalex.org/W114517082", + "https://openalex.org/W156542065", + "https://openalex.org/W200741916", + "https://openalex.org/W203049729", + "https://openalex.org/W204615560", + "https://openalex.org/W205829674", + "https://openalex.org/W340632675", + "https://openalex.org/W1483236033", + "https://openalex.org/W1487060125", + "https://openalex.org/W1497523460", + "https://openalex.org/W1503398984", + "https://openalex.org/W1510675600", + "https://openalex.org/W1511986666", + "https://openalex.org/W1512387364", + "https://openalex.org/W1516346799", + "https://openalex.org/W1521736627", + "https://openalex.org/W1533230146", + "https://openalex.org/W1565102206", + "https://openalex.org/W1585529040", + "https://openalex.org/W1614298861", + "https://openalex.org/W1666347389", + "https://openalex.org/W1756422141", + "https://openalex.org/W1782550378", + "https://openalex.org/W1835243625", + "https://openalex.org/W1841189810", + "https://openalex.org/W1852412531", + "https://openalex.org/W1884516485", + "https://openalex.org/W1910578190", + "https://openalex.org/W1913703133", + "https://openalex.org/W1930472418", + "https://openalex.org/W1975346989", + "https://openalex.org/W1975563293", + "https://openalex.org/W1976526581", + "https://openalex.org/W1977970897", + "https://openalex.org/W1979104937", + "https://openalex.org/W1979629649", + "https://openalex.org/W1984179398", + "https://openalex.org/W1985009003", + "https://openalex.org/W1986380628", + "https://openalex.org/W1993500013", + "https://openalex.org/W1994389483", + "https://openalex.org/W1999138184", + "https://openalex.org/W2008620264", + "https://openalex.org/W2008896880", + "https://openalex.org/W2009937976", + "https://openalex.org/W2013494846", + "https://openalex.org/W2015191210", + "https://openalex.org/W2016753842", + "https://openalex.org/W2017102965", + "https://openalex.org/W2018758196", + "https://openalex.org/W2022166150", + "https://openalex.org/W2024165284", + "https://openalex.org/W2026417691", + "https://openalex.org/W2027324989", + "https://openalex.org/W2029249040", + "https://openalex.org/W2037705937", + "https://openalex.org/W2037933327", + "https://openalex.org/W2039688703", + "https://openalex.org/W2045495924", + "https://openalex.org/W2052390074", + "https://openalex.org/W2054141820", + "https://openalex.org/W2055317074", + "https://openalex.org/W2065758089", + "https://openalex.org/W2066459332", + "https://openalex.org/W2066636486", + "https://openalex.org/W2080133951", + "https://openalex.org/W2081210343", + "https://openalex.org/W2081580037", + "https://openalex.org/W2089349245", + "https://openalex.org/W2094286023", + "https://openalex.org/W2094728533", + "https://openalex.org/W2097266862", + "https://openalex.org/W2099752825", + "https://openalex.org/W2101705355", + "https://openalex.org/W2101802482", + "https://openalex.org/W2102363952", + "https://openalex.org/W2102907934", + "https://openalex.org/W2107306718", + "https://openalex.org/W2107658650", + "https://openalex.org/W2108044891", + "https://openalex.org/W2108177663", + "https://openalex.org/W2111488410", + "https://openalex.org/W2114157818", + "https://openalex.org/W2117373207", + "https://openalex.org/W2119831128", + "https://openalex.org/W2121773050", + "https://openalex.org/W2121906195", + "https://openalex.org/W2122865749", + "https://openalex.org/W2123228027", + "https://openalex.org/W2125027602", + "https://openalex.org/W2125315567", + "https://openalex.org/W2127048411", + "https://openalex.org/W2127345773", + "https://openalex.org/W2127426251", + "https://openalex.org/W2127795553", + "https://openalex.org/W2128407051", + "https://openalex.org/W2129207602", + "https://openalex.org/W2129842875", + "https://openalex.org/W2131844696", + "https://openalex.org/W2133134975", + "https://openalex.org/W2138204945", + "https://openalex.org/W2140141795", + "https://openalex.org/W2141312052", + "https://openalex.org/W2148019918", + "https://openalex.org/W2148507357", + "https://openalex.org/W2149474573", + "https://openalex.org/W2151502664", + "https://openalex.org/W2153595771", + "https://openalex.org/W2154454189", + "https://openalex.org/W2158781217", + "https://openalex.org/W2159203990", + "https://openalex.org/W2159583324", + "https://openalex.org/W2160605923", + "https://openalex.org/W2161371014", + "https://openalex.org/W2165428180", + "https://openalex.org/W2167187514", + "https://openalex.org/W2170902582", + "https://openalex.org/W2171278097", + "https://openalex.org/W2171472464", + "https://openalex.org/W2175268987", + "https://openalex.org/W2187164964", + "https://openalex.org/W2244992438", + "https://openalex.org/W2247119764", + "https://openalex.org/W2247380138", + "https://openalex.org/W2250184916", + "https://openalex.org/W2288526505", + "https://openalex.org/W2293485652", + "https://openalex.org/W2295240344", + "https://openalex.org/W2338322935", + "https://openalex.org/W2396685807", + "https://openalex.org/W2471366537", + "https://openalex.org/W2487770199", + "https://openalex.org/W2520858206", + "https://openalex.org/W2536888436", + "https://openalex.org/W2548695521", + "https://openalex.org/W2785884112", + "https://openalex.org/W2911581497", + "https://openalex.org/W2940690142", + "https://openalex.org/W2951166049", + "https://openalex.org/W2952738808", + "https://openalex.org/W2954527143", + "https://openalex.org/W2963572185", + "https://openalex.org/W2963587356", + "https://openalex.org/W2999525678", + "https://openalex.org/W3102641634", + "https://openalex.org/W3125520394", + "https://openalex.org/W3149838063", + "https://openalex.org/W3192290435", + "https://openalex.org/W4206727053", + "https://openalex.org/W4211035117", + "https://openalex.org/W4212943651", + "https://openalex.org/W4230553559", + "https://openalex.org/W4232932184", + "https://openalex.org/W4234117503", + "https://openalex.org/W4235345084", + "https://openalex.org/W4235469532", + "https://openalex.org/W4239231974", + "https://openalex.org/W4250809414", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293249558", + "https://openalex.org/W4297732326", + "https://openalex.org/W4300062145", + "https://openalex.org/W4300564796", + "https://openalex.org/W4386506836", + "https://openalex.org/W6603669155", + "https://openalex.org/W6604452468", + "https://openalex.org/W6604653223", + "https://openalex.org/W6608338930", + "https://openalex.org/W6608344535", + "https://openalex.org/W6628965601", + "https://openalex.org/W6629025635", + "https://openalex.org/W6630579473", + "https://openalex.org/W6631964550", + "https://openalex.org/W6633947679", + "https://openalex.org/W6636510571", + "https://openalex.org/W6637194779", + "https://openalex.org/W6637805884", + "https://openalex.org/W6638051237", + "https://openalex.org/W6638588478", + "https://openalex.org/W6638754787", + "https://openalex.org/W6639281467", + "https://openalex.org/W6639731090", + "https://openalex.org/W6652957868", + "https://openalex.org/W6674413621", + "https://openalex.org/W6675204935", + "https://openalex.org/W6675255137", + "https://openalex.org/W6675925752", + "https://openalex.org/W6676581672", + "https://openalex.org/W6678067405", + "https://openalex.org/W6678347102", + "https://openalex.org/W6678830454", + "https://openalex.org/W6678846912", + "https://openalex.org/W6679197216", + "https://openalex.org/W6679243379", + "https://openalex.org/W6682467843", + "https://openalex.org/W6682619722", + "https://openalex.org/W6683404736", + "https://openalex.org/W6683461794", + "https://openalex.org/W6683612810", + "https://openalex.org/W6683773206", + "https://openalex.org/W6683861112", + "https://openalex.org/W6684350123", + "https://openalex.org/W6685018051", + "https://openalex.org/W6696035201", + "https://openalex.org/W6696966448", + "https://openalex.org/W6720922435", + "https://openalex.org/W6729382431", + "https://openalex.org/W6764731963" + ], + "related_works": [ + "https://openalex.org/W2267077731", + "https://openalex.org/W2386578196", + "https://openalex.org/W3091612633", + "https://openalex.org/W2483382562", + "https://openalex.org/W1549959306", + "https://openalex.org/W2085988990", + "https://openalex.org/W1528519853", + "https://openalex.org/W1510134535", + "https://openalex.org/W3181676408", + "https://openalex.org/W2389834944" + ], + "abstract_inverted_index": { + "Relational": [ + 0 + ], + "machine": [ + 1 + ], + "learning": [ + 2 + ], + "studies": [ + 3 + ], + "methods": [ + 4, + 137 + ], + "for": [ + 5, + 138 + ], + "the": [ + 6, + 41, + 51, + 99, + 144 + ], + "statistical": [ + 7, + 24, + 62, + 126 + ], + "analysis": [ + 8 + ], + "of": [ + 9, + 21, + 61, + 66, + 128, + 159 + ], + "relational,": [ + 10 + ], + "or": [ + 11 + ], + "graph-structured,": [ + 12 + ], + "data.": [ + 13 + ], + "In": [ + 14, + 53 + ], + "this": [ + 15, + 147 + ], + "paper,": [ + 16 + ], + "we": [ + 17, + 55, + 122, + 149 + ], + "provide": [ + 18 + ], + "a": [ + 19 + ], + "review": [ + 20 + ], + "how": [ + 22, + 104, + 124 + ], + "such": [ + 23, + 82, + 125, + 160 + ], + "models": [ + 25, + 81, + 111, + 127 + ], + "can": [ + 26, + 68, + 130 + ], + "be": [ + 27, + 131 + ], + "“trained”": [ + 28 + ], + "on": [ + 29, + 78, + 94 + ], + "large": [ + 30 + ], + "knowledge": [ + 31, + 141, + 153 + ], + "graphs,": [ + 32 + ], + "and": [ + 33, + 86, + 109 + ], + "then": [ + 34 + ], + "used": [ + 35 + ], + "to": [ + 36, + 46, + 70, + 105, + 112 + ], + "predict": [ + 37 + ], + "new": [ + 38, + 48 + ], + "facts": [ + 39 + ], + "about": [ + 40 + ], + "world": [ + 42 + ], + "(which": [ + 43 + ], + "is": [ + 44, + 76, + 92 + ], + "equivalent": [ + 45 + ], + "predicting": [ + 47 + ], + "edges": [ + 49 + ], + "in": [ + 50, + 98 + ], + "graph).": [ + 52 + ], + "particular,": [ + 54 + ], + "discuss": [ + 56, + 123, + 151 + ], + "two": [ + 57 + ], + "fundamentally": [ + 58 + ], + "different": [ + 59 + ], + "kinds": [ + 60 + ], + "relational": [ + 63 + ], + "models,": [ + 64 + ], + "both": [ + 65 + ], + "which": [ + 67 + ], + "scale": [ + 69 + ], + "massive": [ + 71 + ], + "data": [ + 72 + ], + "sets.": [ + 73 + ], + "The": [ + 74, + 90 + ], + "first": [ + 75 + ], + "based": [ + 77, + 93 + ], + "latent": [ + 79, + 108 + ], + "feature": [ + 80 + ], + "as": [ + 83, + 156 + ], + "tensor": [ + 84 + ], + "factorization": [ + 85 + ], + "multiway": [ + 87 + ], + "neural": [ + 88 + ], + "networks.": [ + 89 + ], + "second": [ + 91 + ], + "mining": [ + 95 + ], + "observable": [ + 96, + 110 + ], + "patterns": [ + 97 + ], + "graph.": [ + 100 + ], + "We": [ + 101 + ], + "also": [ + 102, + 150 + ], + "show": [ + 103 + ], + "combine": [ + 106 + ], + "these": [ + 107 + ], + "get": [ + 113 + ], + "improved": [ + 114 + ], + "modeling": [ + 115 + ], + "power": [ + 116 + ], + "at": [ + 117 + ], + "decreased": [ + 118 + ], + "computational": [ + 119 + ], + "cost.": [ + 120 + ], + "Finally,": [ + 121 + ], + "graphs": [ + 129, + 142 + ], + "combined": [ + 132 + ], + "with": [ + 133 + ], + "text-based": [ + 134 + ], + "information": [ + 135 + ], + "extraction": [ + 136 + ], + "automatically": [ + 139 + ], + "constructing": [ + 140 + ], + "from": [ + 143 + ], + "Web.": [ + 145 + ], + "To": [ + 146 + ], + "end,": [ + 148 + ], + "Google's": [ + 152 + ], + "vault": [ + 154 + ], + "project": [ + 155 + ], + "an": [ + 157 + ], + "example": [ + 158 + ], + "combination.": [ + 161 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 36 + }, + { + "year": 2025, + "cited_by_count": 115 + }, + { + "year": 2024, + "cited_by_count": 121 + }, + { + "year": 2023, + "cited_by_count": 180 + }, + { + "year": 2022, + "cited_by_count": 158 + }, + { + "year": 2021, + "cited_by_count": 263 + }, + { + "year": 2020, + "cited_by_count": 286 + }, + { + "year": 2019, + "cited_by_count": 199 + }, + { + "year": 2018, + "cited_by_count": 127 + }, + { + "year": 2017, + "cited_by_count": 107 + }, + { + "year": 2016, + "cited_by_count": 40 + }, + { + "year": 2015, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2963784900", + "doi": "https://doi.org/10.1038/s41524-017-0056-5", + "title": "Machine learning in materials informatics: recent applications and prospects", + "display_name": "Machine learning in materials informatics: recent applications and prospects", + "relevance_score": 2568.6206, + "publication_year": 2017, + "publication_date": "2017-12-07", + "ids": { + "openalex": "https://openalex.org/W2963784900", + "doi": "https://doi.org/10.1038/s41524-017-0056-5", + "mag": "2963784900" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5031952600", + "display_name": "Rampi Ramprasad", + "orcid": "https://orcid.org/0000-0003-4630-1565" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Rampi Ramprasad", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003850818", + "display_name": "Rohit Batra", + "orcid": "https://orcid.org/0000-0002-1098-7035" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rohit Batra", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5075051974", + "display_name": "Ghanshyam Pilania", + "orcid": "https://orcid.org/0000-0003-4460-1572" + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + }, + { + "id": "https://openalex.org/I2800875726", + "display_name": "Fritz Haber Institute of the Max Planck Society", + "ror": "https://ror.org/03k9qs827", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I2800875726" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ghanshyam Pilania", + "raw_affiliation_strings": [ + "Fritz-Haber-Institut der Max-Planck-Gesellschaft, Faradayweg 4-6, 14195, Berlin, Germany", + "Materials Science and Technology Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Fritz-Haber-Institut der Max-Planck-Gesellschaft, Faradayweg 4-6, 14195, Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Materials Science and Technology Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032715041", + "display_name": "Arun Mannodi‐Kanakkithodi", + "orcid": "https://orcid.org/0000-0003-0780-1583" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + }, + { + "id": "https://openalex.org/I4210164505", + "display_name": "NanoScale Corporation (United States)", + "ror": "https://ror.org/05rtsja45", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210164505" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Arun Mannodi-Kanakkithodi", + "raw_affiliation_strings": [ + "Center for Nanoscale Materials, Lamont National Laboratory, 9700 S. Cass Ave., Lemont, IL, 60439, USA", + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Nanoscale Materials, Lamont National Laboratory, 9700 S. Cass Ave., Lemont, IL, 60439, USA", + "institution_ids": [ + "https://openalex.org/I4210164505" + ] + }, + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5018939520", + "display_name": "Chiho Kim", + "orcid": "https://orcid.org/0000-0002-1814-4980" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chiho Kim", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5031952600" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I140172145" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 50.7176, + "has_fulltext": true, + "cited_by_count": 1745, + "citation_normalized_percentile": { + "value": 0.99974343, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9868999719619751, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6980394721031189 + }, + { + "id": "https://openalex.org/keywords/informatics", + "display_name": "Informatics", + "score": 0.6778385639190674 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.6716209650039673 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.5613667368888855 + }, + { + "id": "https://openalex.org/keywords/fingerprint", + "display_name": "Fingerprint (computing)", + "score": 0.5255624055862427 + }, + { + "id": "https://openalex.org/keywords/property", + "display_name": "Property (philosophy)", + "score": 0.5245295166969299 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4813131093978882 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.47415369749069214 + }, + { + "id": "https://openalex.org/keywords/materials-informatics", + "display_name": "Materials informatics", + "score": 0.4402523338794708 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.42585843801498413 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.364216685295105 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.34198737144470215 + }, + { + "id": "https://openalex.org/keywords/health-informatics", + "display_name": "Health informatics", + "score": 0.2691514790058136 + }, + { + "id": "https://openalex.org/keywords/engineering-informatics", + "display_name": "Engineering informatics", + "score": 0.2533683776855469 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.1932530701160431 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.12165293097496033 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.11709535121917725 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6980394721031189 + }, + { + "id": "https://openalex.org/C191630685", + "wikidata": "https://www.wikidata.org/wiki/Q4027615", + "display_name": "Informatics", + "level": 2, + "score": 0.6778385639190674 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.6716209650039673 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.5613667368888855 + }, + { + "id": "https://openalex.org/C2777826928", + "wikidata": "https://www.wikidata.org/wiki/Q3745713", + "display_name": "Fingerprint (computing)", + "level": 2, + "score": 0.5255624055862427 + }, + { + "id": "https://openalex.org/C189950617", + "wikidata": "https://www.wikidata.org/wiki/Q937228", + "display_name": "Property (philosophy)", + "level": 2, + "score": 0.5245295166969299 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4813131093978882 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.47415369749069214 + }, + { + "id": "https://openalex.org/C62085286", + "wikidata": "https://www.wikidata.org/wiki/Q6786605", + "display_name": "Materials informatics", + "level": 5, + "score": 0.4402523338794708 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.42585843801498413 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.364216685295105 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.34198737144470215 + }, + { + "id": "https://openalex.org/C145642194", + "wikidata": "https://www.wikidata.org/wiki/Q870895", + "display_name": "Health informatics", + "level": 3, + "score": 0.2691514790058136 + }, + { + "id": "https://openalex.org/C158518442", + "wikidata": "https://www.wikidata.org/wiki/Q2843902", + "display_name": "Engineering informatics", + "level": 4, + "score": 0.2533683776855469 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.1932530701160431 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.12165293097496033 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.11709535121917725 + }, + { + "id": "https://openalex.org/C119599485", + "wikidata": "https://www.wikidata.org/wiki/Q43035", + "display_name": "Electrical engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138816342", + "wikidata": "https://www.wikidata.org/wiki/Q189603", + "display_name": "Public health", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159110408", + "wikidata": "https://www.wikidata.org/wiki/Q121176", + "display_name": "Nursing", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:osti.gov:1416298", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1416298", + "pdf_url": "https://www.osti.gov/servlets/purl/1416298", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:oai:pure.mpg.de:item_2567070", + "is_oa": true, + "landing_page_url": "https://hdl.handle.net/21.11116/0000-0001-1CC3-4", + "pdf_url": "http://hdl.handle.net/21.11116/0000-0001-1CC3-4", + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials", + "raw_type": "info:eu-repo/semantics/article" + }, + { + "id": "pmh:oai:doaj.org/article:b5673072856d4e9fb243f09ce3ef9ed8", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/b5673072856d4e9fb243f09ce3ef9ed8", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials, Vol 3, Iss 1, Pp 1-13 (2017)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G3448238085", + "display_name": null, + "funder_award_id": "N00014-14-1-0098", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G5295348260", + "display_name": null, + "funder_award_id": "N00014-16-1-2580", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G8627259979", + "display_name": null, + "funder_award_id": "N00014-10-1-0944", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G8876996369", + "display_name": null, + "funder_award_id": "N00014", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320308269", + "display_name": "Alexander von Humboldt-Stiftung", + "ror": "https://ror.org/012kf4317" + }, + { + "id": "https://openalex.org/F4320337345", + "display_name": "Office of Naval Research", + "ror": "https://ror.org/00rk2pe57" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2963784900.pdf" + }, + "referenced_works_count": 127, + "referenced_works": [ + "https://openalex.org/W26088913", + "https://openalex.org/W73132726", + "https://openalex.org/W214291446", + "https://openalex.org/W654619586", + "https://openalex.org/W1505168701", + "https://openalex.org/W1513260206", + "https://openalex.org/W1542208167", + "https://openalex.org/W1545048062", + "https://openalex.org/W1568537411", + "https://openalex.org/W1584846110", + "https://openalex.org/W1597841398", + "https://openalex.org/W1678620623", + "https://openalex.org/W1747451850", + "https://openalex.org/W1772299910", + "https://openalex.org/W1800437104", + "https://openalex.org/W1865667476", + "https://openalex.org/W1901616594", + "https://openalex.org/W1965192594", + "https://openalex.org/W1972135189", + "https://openalex.org/W1977739742", + "https://openalex.org/W1978183953", + "https://openalex.org/W1979769287", + "https://openalex.org/W1982598895", + "https://openalex.org/W1982886636", + "https://openalex.org/W1984087004", + "https://openalex.org/W1986575501", + "https://openalex.org/W1988887547", + "https://openalex.org/W1989885311", + "https://openalex.org/W1993765343", + "https://openalex.org/W2000957843", + "https://openalex.org/W2005543043", + "https://openalex.org/W2010785223", + "https://openalex.org/W2019903457", + "https://openalex.org/W2020786104", + "https://openalex.org/W2025444507", + "https://openalex.org/W2025882616", + "https://openalex.org/W2029413789", + "https://openalex.org/W2037566781", + "https://openalex.org/W2046505730", + "https://openalex.org/W2051801258", + "https://openalex.org/W2055974394", + "https://openalex.org/W2057858097", + "https://openalex.org/W2061333371", + "https://openalex.org/W2068123181", + "https://openalex.org/W2068456806", + "https://openalex.org/W2069034916", + "https://openalex.org/W2073357703", + "https://openalex.org/W2074616700", + "https://openalex.org/W2083415705", + "https://openalex.org/W2085607286", + "https://openalex.org/W2087292325", + "https://openalex.org/W2089843324", + "https://openalex.org/W2097489306", + "https://openalex.org/W2097968133", + "https://openalex.org/W2104489082", + "https://openalex.org/W2115003579", + "https://openalex.org/W2115096312", + "https://openalex.org/W2128873947", + "https://openalex.org/W2146611938", + "https://openalex.org/W2161262329", + "https://openalex.org/W2163272368", + "https://openalex.org/W2164524421", + "https://openalex.org/W2215223440", + "https://openalex.org/W2225949634", + "https://openalex.org/W2229902564", + "https://openalex.org/W2258702411", + "https://openalex.org/W2261108203", + "https://openalex.org/W2281127889", + "https://openalex.org/W2291908932", + "https://openalex.org/W2313966941", + "https://openalex.org/W2315793378", + "https://openalex.org/W2329258563", + "https://openalex.org/W2336382837", + "https://openalex.org/W2337110853", + "https://openalex.org/W2337496963", + "https://openalex.org/W2337529739", + "https://openalex.org/W2343462019", + "https://openalex.org/W2344188443", + "https://openalex.org/W2345653852", + "https://openalex.org/W2346778841", + "https://openalex.org/W2352719088", + "https://openalex.org/W2356584815", + "https://openalex.org/W2372859909", + "https://openalex.org/W2396196938", + "https://openalex.org/W2415372084", + "https://openalex.org/W2460314483", + "https://openalex.org/W2464725281", + "https://openalex.org/W2471982001", + "https://openalex.org/W2475256989", + "https://openalex.org/W2476592117", + "https://openalex.org/W2486570794", + "https://openalex.org/W2490507458", + "https://openalex.org/W2490901606", + "https://openalex.org/W2498941985", + "https://openalex.org/W2499226730", + "https://openalex.org/W2503343131", + "https://openalex.org/W2504731129", + "https://openalex.org/W2510431877", + "https://openalex.org/W2520500207", + "https://openalex.org/W2522125346", + "https://openalex.org/W2527749992", + "https://openalex.org/W2529958128", + "https://openalex.org/W2530960271", + "https://openalex.org/W2555683692", + "https://openalex.org/W2560817727", + "https://openalex.org/W2563751252", + "https://openalex.org/W2564078846", + "https://openalex.org/W2566573083", + "https://openalex.org/W2566642125", + "https://openalex.org/W2567115595", + "https://openalex.org/W2585152223", + "https://openalex.org/W2592939032", + "https://openalex.org/W2593838212", + "https://openalex.org/W2594250440", + "https://openalex.org/W2600236415", + "https://openalex.org/W2603482245", + "https://openalex.org/W2608722029", + "https://openalex.org/W2616136793", + "https://openalex.org/W2617604238", + "https://openalex.org/W2762836614", + "https://openalex.org/W3022711947", + "https://openalex.org/W3098539674", + "https://openalex.org/W3100710928", + "https://openalex.org/W3104005636", + "https://openalex.org/W4230031267", + "https://openalex.org/W4240060230", + "https://openalex.org/W4300789312" + ], + "related_works": [ + "https://openalex.org/W4375957285", + "https://openalex.org/W4206469383", + "https://openalex.org/W2359548422", + "https://openalex.org/W2083600684", + "https://openalex.org/W2373478723", + "https://openalex.org/W2118804853", + "https://openalex.org/W4376271842", + "https://openalex.org/W2754122850", + "https://openalex.org/W2162773262", + "https://openalex.org/W2901223208" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "Propelled": [ + 1 + ], + "partly": [ + 2, + 9 + ], + "by": [ + 3, + 10, + 53, + 57, + 156 + ], + "the": [ + 4, + 11, + 15, + 87, + 110, + 134, + 137, + 157, + 188, + 197, + 204, + 215, + 226 + ], + "Materials": [ + 5 + ], + "Genome": [ + 6 + ], + "Initiative,": [ + 7 + ], + "and": [ + 8, + 14, + 123, + 136, + 152, + 160, + 219 + ], + "algorithmic": [ + 12 + ], + "developments": [ + 13 + ], + "resounding": [ + 16 + ], + "successes": [ + 17 + ], + "of": [ + 18, + 109, + 139, + 149, + 185, + 187 + ], + "data-driven": [ + 19, + 191 + ], + "efforts": [ + 20 + ], + "in": [ + 21, + 59, + 196, + 225 + ], + "other": [ + 22 + ], + "domains,": [ + 23 + ], + "informatics": [ + 24, + 67 + ], + "strategies": [ + 25, + 194 + ], + "are": [ + 26, + 63, + 69, + 77, + 114, + 173 + ], + "beginning": [ + 27 + ], + "to": [ + 28, + 37, + 72, + 79, + 86, + 144, + 181 + ], + "take": [ + 29 + ], + "shape": [ + 30 + ], + "within": [ + 31 + ], + "materials": [ + 32, + 169 + ], + "science.": [ + 33 + ], + "These": [ + 34 + ], + "approaches": [ + 35 + ], + "lead": [ + 36 + ], + "surrogate": [ + 38 + ], + "machine": [ + 39 + ], + "learning": [ + 40, + 131 + ], + "models": [ + 41 + ], + "that": [ + 42, + 76, + 221 + ], + "enable": [ + 43 + ], + "rapid": [ + 44 + ], + "predictions": [ + 45 + ], + "based": [ + 46 + ], + "purely": [ + 47 + ], + "on": [ + 48, + 203 + ], + "past": [ + 49 + ], + "data": [ + 50, + 96 + ], + "rather": [ + 51 + ], + "than": [ + 52 + ], + "direct": [ + 54 + ], + "experimentation": [ + 55 + ], + "or": [ + 56, + 81, + 90, + 100, + 206 + ], + "computations/simulations": [ + 58 + ], + "which": [ + 60, + 94 + ], + "fundamental": [ + 61 + ], + "equations": [ + 62 + ], + "explicitly": [ + 64 + ], + "solved.": [ + 65 + ], + "Data-centric": [ + 66 + ], + "methods": [ + 68 + ], + "becoming": [ + 70 + ], + "useful": [ + 71 + ], + "determine": [ + 73 + ], + "material": [ + 74, + 120 + ], + "properties": [ + 75 + ], + "hard": [ + 78 + ], + "measure": [ + 80 + ], + "compute": [ + 82 + ], + "using": [ + 83 + ], + "traditional": [ + 84 + ], + "methods—due": [ + 85 + ], + "cost,": [ + 88 + ], + "time": [ + 89 + ], + "effort": [ + 91 + ], + "involved—but": [ + 92 + ], + "for": [ + 93, + 104 + ], + "reliable": [ + 95 + ], + "either": [ + 97 + ], + "already": [ + 98 + ], + "exists": [ + 99 + ], + "can": [ + 101 + ], + "be": [ + 102, + 148, + 165, + 223 + ], + "generated": [ + 103 + ], + "at": [ + 105 + ], + "least": [ + 106 + ], + "a": [ + 107, + 119, + 126, + 130 + ], + "subset": [ + 108 + ], + "critical": [ + 111 + ], + "cases.": [ + 112 + ], + "Predictions": [ + 113, + 162 + ], + "typically": [ + 115 + ], + "interpolative,": [ + 116 + ], + "involving": [ + 117 + ], + "fingerprinting": [ + 118 + ], + "numerically": [ + 121 + ], + "first,": [ + 122 + ], + "then": [ + 124 + ], + "following": [ + 125 + ], + "mapping": [ + 127 + ], + "(established": [ + 128 + ], + "via": [ + 129 + ], + "algorithm)": [ + 132 + ], + "between": [ + 133 + ], + "fingerprint": [ + 135, + 205 + ], + "property": [ + 138 + ], + "interest.": [ + 140 + ], + "Fingerprints,": [ + 141 + ], + "also": [ + 142, + 164, + 211 + ], + "referred": [ + 143 + ], + "as": [ + 145, + 154 + ], + "“descriptors”,": [ + 146 + ], + "may": [ + 147, + 163 + ], + "many": [ + 150 + ], + "types": [ + 151 + ], + "scales,": [ + 153 + ], + "dictated": [ + 155 + ], + "application": [ + 158 + ], + "domain": [ + 159 + ], + "needs.": [ + 161 + ], + "extrapolative—extending": [ + 166 + ], + "into": [ + 167, + 176 + ], + "new": [ + 168 + ], + "spaces—provided": [ + 170 + ], + "prediction": [ + 171 + ], + "uncertainties": [ + 172 + ], + "properly": [ + 174 + ], + "taken": [ + 175 + ], + "account.": [ + 177 + ], + "This": [ + 178 + ], + "article": [ + 179 + ], + "attempts": [ + 180 + ], + "provide": [ + 182 + ], + "an": [ + 183 + ], + "overview": [ + 184 + ], + "some": [ + 186, + 213 + ], + "recent": [ + 189 + ], + "successful": [ + 190 + ], + "“materials": [ + 192 + ], + "informatics”": [ + 193 + ], + "undertaken": [ + 195 + ], + "last": [ + 198 + ], + "decade,": [ + 199 + ], + "with": [ + 200 + ], + "particular": [ + 201 + ], + "emphasis": [ + 202 + ], + "descriptor": [ + 207 + ], + "choices.": [ + 208 + ], + "The": [ + 209 + ], + "review": [ + 210 + ], + "identifies": [ + 212 + ], + "challenges": [ + 214 + ], + "community": [ + 216 + ], + "is": [ + 217 + ], + "facing": [ + 218 + ], + "those": [ + 220 + ], + "should": [ + 222 + ], + "overcome": [ + 224 + ], + "near": [ + 227 + ], + "future.": [ + 228 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 111 + }, + { + "year": 2025, + "cited_by_count": 279 + }, + { + "year": 2024, + "cited_by_count": 235 + }, + { + "year": 2023, + "cited_by_count": 226 + }, + { + "year": 2022, + "cited_by_count": 224 + }, + { + "year": 2021, + "cited_by_count": 231 + }, + { + "year": 2020, + "cited_by_count": 217 + }, + { + "year": 2019, + "cited_by_count": 171 + }, + { + "year": 2018, + "cited_by_count": 48 + }, + { + "year": 2017, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2949767632", + "doi": "https://doi.org/10.1109/access.2019.2923707", + "title": "Effective Heart Disease Prediction Using Hybrid Machine Learning Techniques", + "display_name": "Effective Heart Disease Prediction Using Hybrid Machine Learning Techniques", + "relevance_score": 2562.3347, + "publication_year": 2019, + "publication_date": "2019-01-01", + "ids": { + "openalex": "https://openalex.org/W2949767632", + "doi": "https://doi.org/10.1109/access.2019.2923707", + "mag": "2949767632" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5013635040", + "display_name": "Senthilkumar Mohan", + "orcid": "https://orcid.org/0000-0002-8114-3147" + }, + "institutions": [ + { + "id": "https://openalex.org/I876193797", + "display_name": "Vellore Institute of Technology University", + "ror": "https://ror.org/00qzypv28", + "country_code": "IN", + "type": "education", + "lineage": [ + "https://openalex.org/I876193797" + ] + } + ], + "countries": [ + "IN" + ], + "is_corresponding": true, + "raw_author_name": "Senthilkumar Mohan", + "raw_affiliation_strings": [ + "School of Information Technology and Engineering, VIT University, Vellore, India" + ], + "raw_orcid": "https://orcid.org/0000-0002-8114-3147", + "affiliations": [ + { + "raw_affiliation_string": "School of Information Technology and Engineering, VIT University, Vellore, India", + "institution_ids": [ + "https://openalex.org/I876193797" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012000651", + "display_name": "Chandrasegar Thirumalai", + "orcid": "https://orcid.org/0000-0001-5171-946X" + }, + "institutions": [ + { + "id": "https://openalex.org/I876193797", + "display_name": "Vellore Institute of Technology University", + "ror": "https://ror.org/00qzypv28", + "country_code": "IN", + "type": "education", + "lineage": [ + "https://openalex.org/I876193797" + ] + } + ], + "countries": [ + "IN" + ], + "is_corresponding": false, + "raw_author_name": "Chandrasegar Thirumalai", + "raw_affiliation_strings": [ + "School of Information Technology and Engineering, VIT University, Vellore, India" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Information Technology and Engineering, VIT University, Vellore, India", + "institution_ids": [ + "https://openalex.org/I876193797" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5041541232", + "display_name": "Gautam Srivastava", + "orcid": "https://orcid.org/0000-0001-9851-4103" + }, + "institutions": [ + { + "id": "https://openalex.org/I48890080", + "display_name": "Brandon University", + "ror": "https://ror.org/02qp25a50", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I48890080" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Gautam Srivastava", + "raw_affiliation_strings": [ + "Department of Mathematics and Computer Science, Brandon University, Brandon, MB, Canada" + ], + "raw_orcid": "https://orcid.org/0000-0001-9851-4103", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics and Computer Science, Brandon University, Brandon, MB, Canada", + "institution_ids": [ + "https://openalex.org/I48890080" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5013635040" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I876193797" + ], + "apc_list": { + "value": 1850, + "currency": "USD", + "value_usd": 1850 + }, + "apc_paid": { + "value": 1850, + "currency": "USD", + "value_usd": 1850 + }, + "fwci": 215.0425, + "has_fulltext": true, + "cited_by_count": 1857, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "7", + "issue": null, + "first_page": "81542", + "last_page": "81554" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9962000250816345, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9962000250816345, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11021", + "display_name": "ECG Monitoring and Analysis", + "score": 0.991100013256073, + "subfield": { + "id": "https://openalex.org/subfields/2705", + "display_name": "Cardiology and Cardiovascular Medicine" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13038", + "display_name": "Internet of Things and AI", + "score": 0.9423999786376953, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7656811475753784 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7299566864967346 + }, + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.6608107089996338 + }, + { + "id": "https://openalex.org/keywords/heart-disease", + "display_name": "Heart disease", + "score": 0.6548975110054016 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6171836853027344 + }, + { + "id": "https://openalex.org/keywords/predictive-modelling", + "display_name": "Predictive modelling", + "score": 0.49283671379089355 + }, + { + "id": "https://openalex.org/keywords/disease", + "display_name": "Disease", + "score": 0.48001474142074585 + }, + { + "id": "https://openalex.org/keywords/internet-of-things", + "display_name": "Internet of Things", + "score": 0.4755784571170807 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.4480767250061035 + }, + { + "id": "https://openalex.org/keywords/the-internet", + "display_name": "The Internet", + "score": 0.41082069277763367 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3668927550315857 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.10342156887054443 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7656811475753784 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7299566864967346 + }, + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.6608107089996338 + }, + { + "id": "https://openalex.org/C2780074459", + "wikidata": "https://www.wikidata.org/wiki/Q389735", + "display_name": "Heart disease", + "level": 2, + "score": 0.6548975110054016 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6171836853027344 + }, + { + "id": "https://openalex.org/C45804977", + "wikidata": "https://www.wikidata.org/wiki/Q7239673", + "display_name": "Predictive modelling", + "level": 2, + "score": 0.49283671379089355 + }, + { + "id": "https://openalex.org/C2779134260", + "wikidata": "https://www.wikidata.org/wiki/Q12136", + "display_name": "Disease", + "level": 2, + "score": 0.48001474142074585 + }, + { + "id": "https://openalex.org/C81860439", + "wikidata": "https://www.wikidata.org/wiki/Q251212", + "display_name": "Internet of Things", + "level": 2, + "score": 0.4755784571170807 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.4480767250061035 + }, + { + "id": "https://openalex.org/C110875604", + "wikidata": "https://www.wikidata.org/wiki/Q75", + "display_name": "The Internet", + "level": 2, + "score": 0.41082069277763367 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3668927550315857 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.10342156887054443 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C164705383", + "wikidata": "https://www.wikidata.org/wiki/Q10379", + "display_name": "Cardiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C149635348", + "wikidata": "https://www.wikidata.org/wiki/Q193040", + "display_name": "Embedded system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:fe87ff1a239645a0979c257a4dea4864", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/fe87ff1a239645a0979c257a4dea4864", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "IEEE Access, Vol 7, Pp 81542-81554 (2019)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/3", + "score": 0.4000000059604645, + "display_name": "Good health and well-being" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320324301", + "display_name": "China Medical University", + "ror": "https://ror.org/032d4f246" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 51, + "referenced_works": [ + "https://openalex.org/W1202595205", + "https://openalex.org/W1532110920", + "https://openalex.org/W1965587486", + "https://openalex.org/W1991788616", + "https://openalex.org/W2003552981", + "https://openalex.org/W2062302861", + "https://openalex.org/W2068677783", + "https://openalex.org/W2080084655", + "https://openalex.org/W2103773860", + "https://openalex.org/W2178875556", + "https://openalex.org/W2250033699", + "https://openalex.org/W2291481687", + "https://openalex.org/W2293583529", + "https://openalex.org/W2350016386", + "https://openalex.org/W2485540933", + "https://openalex.org/W2531733772", + "https://openalex.org/W2545758574", + "https://openalex.org/W2548815743", + "https://openalex.org/W2608803612", + "https://openalex.org/W2611268076", + "https://openalex.org/W2621148797", + "https://openalex.org/W2654097460", + "https://openalex.org/W2735054537", + "https://openalex.org/W2754167666", + "https://openalex.org/W2755200181", + "https://openalex.org/W2755582817", + "https://openalex.org/W2766387270", + "https://openalex.org/W2767227735", + "https://openalex.org/W2769429260", + "https://openalex.org/W2774583472", + "https://openalex.org/W2784051633", + "https://openalex.org/W2786070938", + "https://openalex.org/W2790256058", + "https://openalex.org/W2790718901", + "https://openalex.org/W2793130752", + "https://openalex.org/W2795204643", + "https://openalex.org/W2795328221", + "https://openalex.org/W2795595258", + "https://openalex.org/W2808560727", + "https://openalex.org/W2885492729", + "https://openalex.org/W2890070546", + "https://openalex.org/W2891931318", + "https://openalex.org/W2895999059", + "https://openalex.org/W2900794383", + "https://openalex.org/W2901917857", + "https://openalex.org/W2993696341", + "https://openalex.org/W6675712684", + "https://openalex.org/W6729093307", + "https://openalex.org/W6749585949", + "https://openalex.org/W6771454245", + "https://openalex.org/W6986592312" + ], + "related_works": [ + "https://openalex.org/W4245926026", + "https://openalex.org/W3193043704", + "https://openalex.org/W4386259002", + "https://openalex.org/W1546989560", + "https://openalex.org/W4396689146", + "https://openalex.org/W4200112873", + "https://openalex.org/W2955796858", + "https://openalex.org/W2004826645", + "https://openalex.org/W3191198889", + "https://openalex.org/W4399767560" + ], + "abstract_inverted_index": { + "Heart": [ + 0 + ], + "disease": [ + 1, + 18, + 86, + 153 + ], + "is": [ + 2, + 19, + 123 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 16, + 26, + 50, + 71, + 74, + 117, + 128, + 145 + ], + "the": [ + 5, + 12, + 24, + 47, + 54, + 72, + 112, + 115, + 148, + 155 + ], + "most": [ + 6 + ], + "significant": [ + 7, + 102 + ], + "causes": [ + 8 + ], + "mortality": [ + 10 + ], + "in": [ + 11, + 23, + 39, + 41, + 65, + 68, + 110, + 114 + ], + "world": [ + 13 + ], + "today.": [ + 14 + ], + "Prediction": [ + 15 + ], + "cardiovascular": [ + 17, + 118 + ], + "a": [ + 20, + 81, + 95, + 160 + ], + "critical": [ + 21 + ], + "challenge": [ + 22 + ], + "area": [ + 25 + ], + "clinical": [ + 27 + ], + "data": [ + 28, + 51 + ], + "analysis.": [ + 29 + ], + "Machine": [ + 30 + ], + "learning": [ + 31, + 107 + ], + "(ML)": [ + 32 + ], + "has": [ + 33 + ], + "been": [ + 34 + ], + "shown": [ + 35 + ], + "to": [ + 36 + ], + "be": [ + 37 + ], + "effective": [ + 38 + ], + "assisting": [ + 40 + ], + "making": [ + 42 + ], + "decisions": [ + 43 + ], + "and": [ + 44, + 130 + ], + "predictions": [ + 45 + ], + "from": [ + 46 + ], + "large": [ + 48 + ], + "quantity": [ + 49 + ], + "produced": [ + 52 + ], + "by": [ + 53, + 104 + ], + "healthcare": [ + 55 + ], + "industry.": [ + 56 + ], + "We": [ + 57, + 135 + ], + "have": [ + 58 + ], + "also": [ + 59 + ], + "seen": [ + 60 + ], + "ML": [ + 61, + 88 + ], + "techniques": [ + 62, + 108 + ], + "being": [ + 63 + ], + "used": [ + 64 + ], + "recent": [ + 66 + ], + "developments": [ + 67 + ], + "different": [ + 69, + 126 + ], + "areas": [ + 70 + ], + "Internet": [ + 73 + ], + "Things": [ + 75 + ], + "(IoT).": [ + 76 + ], + "Various": [ + 77 + ], + "studies": [ + 78 + ], + "give": [ + 79 + ], + "only": [ + 80 + ], + "glimpse": [ + 82 + ], + "into": [ + 83 + ], + "predicting": [ + 84 + ], + "heart": [ + 85, + 152 + ], + "with": [ + 87, + 125, + 141, + 154, + 159 + ], + "techniques.": [ + 89, + 134 + ], + "In": [ + 90 + ], + "this": [ + 91 + ], + "paper,": [ + 92 + ], + "we": [ + 93 + ], + "propose": [ + 94 + ], + "novel": [ + 96 + ], + "method": [ + 97 + ], + "that": [ + 98 + ], + "aims": [ + 99 + ], + "at": [ + 100 + ], + "finding": [ + 101 + ], + "features": [ + 103, + 129 + ], + "applying": [ + 105 + ], + "machine": [ + 106 + ], + "resulting": [ + 109 + ], + "improving": [ + 111 + ], + "accuracy": [ + 113, + 143 + ], + "prediction": [ + 116, + 121, + 149 + ], + "disease.": [ + 119 + ], + "The": [ + 120 + ], + "model": [ + 122, + 150, + 162 + ], + "introduced": [ + 124 + ], + "combinations": [ + 127 + ], + "several": [ + 131 + ], + "known": [ + 132 + ], + "classification": [ + 133 + ], + "produce": [ + 136 + ], + "an": [ + 137, + 142 + ], + "enhanced": [ + 138 + ], + "performance": [ + 139 + ], + "level": [ + 140, + 144 + ], + "88.7%": [ + 146 + ], + "through": [ + 147 + ], + "for": [ + 151 + ], + "hybrid": [ + 156 + ], + "random": [ + 157 + ], + "forest": [ + 158 + ], + "linear": [ + 161 + ], + "(HRFLM).": [ + 163 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 83 + }, + { + "year": 2025, + "cited_by_count": 299 + }, + { + "year": 2024, + "cited_by_count": 376 + }, + { + "year": 2023, + "cited_by_count": 443 + }, + { + "year": 2022, + "cited_by_count": 335 + }, + { + "year": 2021, + "cited_by_count": 221 + }, + { + "year": 2020, + "cited_by_count": 90 + }, + { + "year": 2019, + "cited_by_count": 9 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2995098893", + "doi": "https://doi.org/10.1186/s12911-019-1004-8", + "title": "Comparing different supervised machine learning algorithms for disease prediction", + "display_name": "Comparing different supervised machine learning algorithms for disease prediction", + "relevance_score": 2537.2148, + "publication_year": 2019, + "publication_date": "2019-12-01", + "ids": { + "openalex": "https://openalex.org/W2995098893", + "doi": "https://doi.org/10.1186/s12911-019-1004-8", + "mag": "2995098893", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31864346" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5073472514", + "display_name": "Shahadat Uddin", + "orcid": "https://orcid.org/0000-0003-0091-6919" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "Shahadat Uddin", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia. shahadat.uddin@sydney.edu.au", + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia" + ], + "raw_orcid": "https://orcid.org/0000-0003-0091-6919", + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia. shahadat.uddin@sydney.edu.au", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + }, + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050771060", + "display_name": "Arif Khan", + "orcid": "https://orcid.org/0000-0002-5793-933X" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + }, + { + "id": "https://openalex.org/I4210117369", + "display_name": "RoZetta Institute", + "ror": "https://ror.org/02ex29a12", + "country_code": "AU", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210117369" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Arif Khan", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "Health Market Quality Research Stream, Capital Markets CRC, Level 3, 55 Harrington Street, Sydney, NSW, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + }, + { + "raw_affiliation_string": "Health Market Quality Research Stream, Capital Markets CRC, Level 3, 55 Harrington Street, Sydney, NSW, Australia", + "institution_ids": [ + "https://openalex.org/I4210117369" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027942770", + "display_name": "Md Ekramul Hossain", + "orcid": "https://orcid.org/0000-0001-6913-8313" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Md Ekramul Hossain", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5034828056", + "display_name": "Mohammad Ali Moni", + "orcid": "https://orcid.org/0000-0003-0756-1006" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Mohammad Ali Moni", + "raw_affiliation_strings": [ + "Faculty of Medicine and Health, School of Medical Sciences, The University of Sydney, Camperdown, NSW, 2006, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Medicine and Health, School of Medical Sciences, The University of Sydney, Camperdown, NSW, 2006, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5073472514" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I129604602" + ], + "apc_list": { + "value": 1570, + "currency": "GBP", + "value_usd": 1925 + }, + "apc_paid": { + "value": 1570, + "currency": "GBP", + "value_usd": 1925 + }, + "fwci": 163.4979, + "has_fulltext": false, + "cited_by_count": 1620, + "citation_normalized_percentile": { + "value": 0.99985261, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "19", + "issue": "1", + "first_page": "281", + "last_page": "281" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.8751999735832214, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.8751999735832214, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.008799999952316284, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.0066999997943639755, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/health-informatics", + "display_name": "Health informatics", + "score": 0.7566148042678833 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6764706373214722 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6419437527656555 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5513378381729126 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.41022202372550964 + }, + { + "id": "https://openalex.org/keywords/public-health", + "display_name": "Public health", + "score": 0.221120685338974 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2029423713684082 + }, + { + "id": "https://openalex.org/keywords/nursing", + "display_name": "Nursing", + "score": 0.09734433889389038 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C145642194", + "wikidata": "https://www.wikidata.org/wiki/Q870895", + "display_name": "Health informatics", + "level": 3, + "score": 0.7566148042678833 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6764706373214722 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6419437527656555 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5513378381729126 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.41022202372550964 + }, + { + "id": "https://openalex.org/C138816342", + "wikidata": "https://www.wikidata.org/wiki/Q189603", + "display_name": "Public health", + "level": 2, + "score": 0.221120685338974 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2029423713684082 + }, + { + "id": "https://openalex.org/C159110408", + "wikidata": "https://www.wikidata.org/wiki/Q121176", + "display_name": "Nursing", + "level": 1, + "score": 0.09734433889389038 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + { + "id": "pmid:31864346", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31864346", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC medical informatics and decision making", + "raw_type": null + }, + { + "id": "pmh:oai:pure.atira.dk:publications/17d2b406-1692-4f37-9f49-13ef0305ae3b", + "is_oa": true, + "landing_page_url": "https://researchoutput.csu.edu.au/en/publications/17d2b406-1692-4f37-9f49-13ef0305ae3b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055442", + "display_name": "Charles Sturt University Research Output (CRO)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Uddin, S, Khan, A, Hossain, M E & Moni, M A 2019, 'Comparing different supervised machine learning algorithms for disease prediction', BMC Medical Informatics and Decision Making, vol. 19, no. 1, 281. https://doi.org/10.1186/s12911-019-1004-8", + "raw_type": "info:eu-repo/semantics/publishedVersion" + }, + { + "id": "pmh:oai:doaj.org/article:9563bebece94495291af01cd287627a5", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/9563bebece94495291af01cd287627a5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Medical Informatics and Decision Making, Vol 19, Iss 1, Pp 1-16 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6925840", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6925840", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Med Inform Decis Mak", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 87, + "referenced_works": [ + "https://openalex.org/W51263609", + "https://openalex.org/W101938375", + "https://openalex.org/W129507607", + "https://openalex.org/W166622706", + "https://openalex.org/W179179905", + "https://openalex.org/W1130077638", + "https://openalex.org/W1171616665", + "https://openalex.org/W1498436455", + "https://openalex.org/W1565746575", + "https://openalex.org/W1590675038", + "https://openalex.org/W1596324102", + "https://openalex.org/W1615991656", + "https://openalex.org/W1648885110", + "https://openalex.org/W1651586605", + "https://openalex.org/W1756788811", + "https://openalex.org/W1968571599", + "https://openalex.org/W1972404374", + "https://openalex.org/W1972588194", + "https://openalex.org/W1973448749", + "https://openalex.org/W1973948212", + "https://openalex.org/W1983024255", + "https://openalex.org/W1995341919", + "https://openalex.org/W1996856743", + "https://openalex.org/W2005501262", + "https://openalex.org/W2012316318", + "https://openalex.org/W2017993392", + "https://openalex.org/W2049623605", + "https://openalex.org/W2052655222", + "https://openalex.org/W2063130532", + "https://openalex.org/W2065831478", + "https://openalex.org/W2066525392", + "https://openalex.org/W2083866813", + "https://openalex.org/W2101234009", + "https://openalex.org/W2103069675", + "https://openalex.org/W2103441516", + "https://openalex.org/W2104890527", + "https://openalex.org/W2111974630", + "https://openalex.org/W2117646649", + "https://openalex.org/W2118020653", + "https://openalex.org/W2120109270", + "https://openalex.org/W2122111042", + "https://openalex.org/W2149706766", + "https://openalex.org/W2156098321", + "https://openalex.org/W2157784421", + "https://openalex.org/W2158698691", + "https://openalex.org/W2184248488", + "https://openalex.org/W2187651840", + "https://openalex.org/W2242827712", + "https://openalex.org/W2256130358", + "https://openalex.org/W2259337669", + "https://openalex.org/W2270635011", + "https://openalex.org/W2277317151", + "https://openalex.org/W2285678238", + "https://openalex.org/W2324845196", + "https://openalex.org/W2339549526", + "https://openalex.org/W2394922069", + "https://openalex.org/W2407129890", + "https://openalex.org/W2478337590", + "https://openalex.org/W2498119267", + "https://openalex.org/W2504629029", + "https://openalex.org/W2511048274", + "https://openalex.org/W2548466742", + "https://openalex.org/W2569214105", + "https://openalex.org/W2604503416", + "https://openalex.org/W2610135452", + "https://openalex.org/W2614141400", + "https://openalex.org/W2754510604", + "https://openalex.org/W2755895186", + "https://openalex.org/W2757722543", + "https://openalex.org/W2764175852", + "https://openalex.org/W2773413394", + "https://openalex.org/W2784168210", + "https://openalex.org/W2791504809", + "https://openalex.org/W2796884049", + "https://openalex.org/W2799071577", + "https://openalex.org/W2800253831", + "https://openalex.org/W2807027008", + "https://openalex.org/W2807992546", + "https://openalex.org/W2885479215", + "https://openalex.org/W2904579171", + "https://openalex.org/W2911495555", + "https://openalex.org/W2911964244", + "https://openalex.org/W2963873275", + "https://openalex.org/W2991792334", + "https://openalex.org/W4285719527", + "https://openalex.org/W6607259140", + "https://openalex.org/W6675354045" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3107602296", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "BACKGROUND:": [ + 0 + ], + "Supervised": [ + 1 + ], + "machine": [ + 2, + 43, + 74, + 108, + 200, + 225 + ], + "learning": [ + 3, + 44, + 75, + 109, + 201, + 226 + ], + "algorithms": [ + 4, + 110, + 202 + ], + "have": [ + 5 + ], + "been": [ + 6 + ], + "a": [ + 7, + 23, + 188 + ], + "dominant": [ + 8 + ], + "method": [ + 9 + ], + "in": [ + 10, + 100, + 163, + 176, + 218 + ], + "the": [ + 11, + 35, + 103, + 118, + 133, + 141, + 151, + 160, + 179, + 192, + 219 + ], + "data": [ + 12, + 19 + ], + "mining": [ + 13 + ], + "field.": [ + 14 + ], + "Disease": [ + 15 + ], + "prediction": [ + 16 + ], + "using": [ + 17 + ], + "health": [ + 18 + ], + "has": [ + 20 + ], + "recently": [ + 21 + ], + "shown": [ + 22 + ], + "potential": [ + 24 + ], + "application": [ + 25 + ], + "area": [ + 26 + ], + "for": [ + 27, + 51, + 89, + 102, + 111, + 203, + 228 + ], + "these": [ + 28 + ], + "methods.": [ + 29 + ], + "This": [ + 30, + 169, + 185, + 206 + ], + "study": [ + 31, + 186 + ], + "ai7ms": [ + 32 + ], + "to": [ + 33, + 64, + 215 + ], + "identify": [ + 34, + 65 + ], + "key": [ + 36 + ], + "trends": [ + 37 + ], + "among": [ + 38, + 105 + ], + "different": [ + 39, + 90, + 196 + ], + "types": [ + 40, + 91 + ], + "of": [ + 41, + 92, + 165, + 178, + 191, + 195, + 198, + 209, + 221 + ], + "supervised": [ + 42, + 73, + 107, + 199, + 224 + ], + "algorithms,": [ + 45 + ], + "and": [ + 46, + 49, + 85 + ], + "their": [ + 47, + 229 + ], + "performance": [ + 48, + 194, + 211 + ], + "usage": [ + 50 + ], + "disease": [ + 52, + 79, + 112, + 204 + ], + "risk": [ + 53 + ], + "prediction.": [ + 54, + 80, + 113, + 205 + ], + "METHODS:": [ + 55 + ], + "In": [ + 56 + ], + "this": [ + 57 + ], + "study,": [ + 58 + ], + "extensive": [ + 59 + ], + "research": [ + 60 + ], + "efforts": [ + 61 + ], + "were": [ + 62, + 87 + ], + "made": [ + 63 + ], + "those": [ + 66 + ], + "studies": [ + 67, + 153, + 180 + ], + "that": [ + 68, + 117 + ], + "applied": [ + 69, + 125 + ], + "more": [ + 70 + ], + "than": [ + 71 + ], + "one": [ + 72 + ], + "algorithm": [ + 76, + 123, + 136, + 145, + 227 + ], + "on": [ + 77 + ], + "single": [ + 78 + ], + "Two": [ + 81 + ], + "databases": [ + 82 + ], + "(i.e.,": [ + 83 + ], + "Scopus": [ + 84 + ], + "PubMed)": [ + 86 + ], + "searched": [ + 88 + ], + "search": [ + 93 + ], + "items.": [ + 94 + ], + "Thus,": [ + 95 + ], + "we": [ + 96 + ], + "selected": [ + 97 + ], + "48": [ + 98 + ], + "articles": [ + 99 + ], + "total": [ + 101 + ], + "comparison": [ + 104 + ], + "variants": [ + 106, + 197 + ], + "RESULTS:": [ + 114 + ], + "We": [ + 115 + ], + "found": [ + 116 + ], + "Support": [ + 119 + ], + "Vector": [ + 120 + ], + "Machine": [ + 121 + ], + "(SVM)": [ + 122 + ], + "is": [ + 124 + ], + "most": [ + 126 + ], + "frequently": [ + 127 + ], + "(in": [ + 128, + 137 + ], + "29": [ + 129 + ], + "studies)": [ + 130 + ], + "followed": [ + 131, + 171 + ], + "by": [ + 132, + 172 + ], + "Naïve": [ + 134 + ], + "Bayes": [ + 135 + ], + "23": [ + 138 + ], + "studies).": [ + 139 + ], + "However,": [ + 140 + ], + "Random": [ + 142 + ], + "Forest": [ + 143 + ], + "(RF)": [ + 144 + ], + "showed": [ + 146, + 159 + ], + "superior": [ + 147 + ], + "accuracy": [ + 148, + 162 + ], + "comparatively.": [ + 149 + ], + "Of": [ + 150 + ], + "17": [ + 152 + ], + "where": [ + 154 + ], + "it": [ + 155, + 181 + ], + "was": [ + 156, + 170, + 182 + ], + "applied,": [ + 157 + ], + "RF": [ + 158 + ], + "highest": [ + 161 + ], + "9": [ + 164 + ], + "them,": [ + 166 + ], + "i.e.,": [ + 167 + ], + "53%.": [ + 168 + ], + "SVM": [ + 173 + ], + "which": [ + 174 + ], + "topped": [ + 175 + ], + "41%": [ + 177 + ], + "considered.": [ + 183 + ], + "CONCLUSION:": [ + 184 + ], + "provides": [ + 187 + ], + "wide": [ + 189 + ], + "overview": [ + 190 + ], + "relative": [ + 193, + 210 + ], + "important": [ + 207 + ], + "information": [ + 208 + ], + "can": [ + 212 + ], + "be": [ + 213 + ], + "used": [ + 214 + ], + "aid": [ + 216 + ], + "researchers": [ + 217 + ], + "selection": [ + 220 + ], + "an": [ + 222 + ], + "appropriate": [ + 223 + ], + "studies.": [ + 230 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 74 + }, + { + "year": 2025, + "cited_by_count": 313 + }, + { + "year": 2024, + "cited_by_count": 370 + }, + { + "year": 2023, + "cited_by_count": 368 + }, + { + "year": 2022, + "cited_by_count": 289 + }, + { + "year": 2021, + "cited_by_count": 168 + }, + { + "year": 2020, + "cited_by_count": 37 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2936573766", + "doi": "https://doi.org/10.1186/s12874-019-0681-4", + "title": "Machine learning in medicine: a practical introduction", + "display_name": "Machine learning in medicine: a practical introduction", + "relevance_score": 2525.034, + "publication_year": 2019, + "publication_date": "2019-03-19", + "ids": { + "openalex": "https://openalex.org/W2936573766", + "doi": "https://doi.org/10.1186/s12874-019-0681-4", + "mag": "2936573766", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30890124" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5011988336", + "display_name": "Jenni A. M. Sidey-Gibbons", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Jenni A. M. Sidey-Gibbons", + "raw_affiliation_strings": [ + "Department of Engineering, University of Cambridge, Trumpington Street, Cambridge, CB2 1PZ, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, University of Cambridge, Trumpington Street, Cambridge, CB2 1PZ, UK", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5038685423", + "display_name": "Chris Sidey‐Gibbons", + "orcid": "https://orcid.org/0000-0002-4732-7305" + }, + "institutions": [ + { + "id": "https://openalex.org/I1283280774", + "display_name": "Brigham and Women's Hospital", + "ror": "https://ror.org/04b6nzv94", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I1283280774", + "https://openalex.org/I48633490" + ] + }, + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + }, + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Chris J. Sidey-Gibbons", + "raw_affiliation_strings": [ + "Department of Surgery, Brigham and Women's Hospital, 75 Francis Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "University of Cambridge Psychometrics Centre, Trumpington Street, Cambridge, CB2 1AG, UK. cgibbons2@bwh.harvard.edu", + "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-4732-7305", + "affiliations": [ + { + "raw_affiliation_string": "Department of Surgery, Brigham and Women's Hospital, 75 Francis Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I1283280774" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + }, + { + "raw_affiliation_string": "University of Cambridge Psychometrics Centre, Trumpington Street, Cambridge, CB2 1AG, UK. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I241749" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5038685423" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1283280774", + "https://openalex.org/I136199984", + "https://openalex.org/I241749" + ], + "apc_list": { + "value": 1790, + "currency": "GBP", + "value_usd": 2195 + }, + "apc_paid": { + "value": 1790, + "currency": "GBP", + "value_usd": 2195 + }, + "fwci": 68.7809, + "has_fulltext": true, + "cited_by_count": 1263, + "citation_normalized_percentile": { + "value": 0.99923339, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "19", + "issue": "1", + "first_page": "64", + "last_page": "64" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9581000208854675, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9581000208854675, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12422", + "display_name": "Radiomics and Machine Learning in Medical Imaging", + "score": 0.003700000001117587, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T12994", + "display_name": "Infrared Thermography in Medicine", + "score": 0.0031999999191612005, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.8439639806747437 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.762427806854248 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7216744422912598 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.7101428508758545 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.48576977849006653 + }, + { + "id": "https://openalex.org/keywords/cross-validation", + "display_name": "Cross-validation", + "score": 0.4503832459449768 + }, + { + "id": "https://openalex.org/keywords/sensitivity", + "display_name": "Sensitivity (control systems)", + "score": 0.4276343286037445 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.39164337515830994 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.33824363350868225 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.8439639806747437 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.762427806854248 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7216744422912598 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.7101428508758545 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.48576977849006653 + }, + { + "id": "https://openalex.org/C27181475", + "wikidata": "https://www.wikidata.org/wiki/Q541014", + "display_name": "Cross-validation", + "level": 2, + "score": 0.4503832459449768 + }, + { + "id": "https://openalex.org/C21200559", + "wikidata": "https://www.wikidata.org/wiki/Q7451068", + "display_name": "Sensitivity (control systems)", + "level": 2, + "score": 0.4276343286037445 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.39164337515830994 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.33824363350868225 + }, + { + "id": "https://openalex.org/C24326235", + "wikidata": "https://www.wikidata.org/wiki/Q126095", + "display_name": "Electronic engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + { + "id": "pmid:30890124", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30890124", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC medical research methodology", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:5bab4056aa204fd895ccd0806796ea31", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/5bab4056aa204fd895ccd0806796ea31", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Medical Research Methodology, Vol 19, Iss 1, Pp 1-18 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:5418903", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6425557", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G3027281633", + "display_name": null, + "funder_award_id": "PDF-2014-07-28", + "funder_id": "https://openalex.org/F4320334659", + "funder_display_name": "Research Trainees Coordinating Centre" + }, + { + "id": "https://openalex.org/G5017041387", + "display_name": null, + "funder_award_id": "PDF-2014-07-028", + "funder_id": "https://openalex.org/F4320319990", + "funder_display_name": "National Institute for Health and Care Research" + }, + { + "id": "https://openalex.org/G6065741097", + "display_name": null, + "funder_award_id": "CDF-2017-10-019", + "funder_id": "https://openalex.org/F4320334659", + "funder_display_name": "Research Trainees Coordinating Centre" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320319990", + "display_name": "National Institute for Health and Care Research", + "ror": "https://ror.org/0187kwz08" + }, + { + "id": "https://openalex.org/F4320334659", + "display_name": "Research Trainees Coordinating Centre", + "ror": "https://ror.org/0187kwz08" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2936573766.pdf", + "grobid_xml": "https://content.openalex.org/works/W2936573766.grobid-xml" + }, + "referenced_works_count": 40, + "referenced_works": [ + "https://openalex.org/W85009029", + "https://openalex.org/W1267646904", + "https://openalex.org/W1880262756", + "https://openalex.org/W1901616594", + "https://openalex.org/W1955303603", + "https://openalex.org/W1969557815", + "https://openalex.org/W1979744342", + "https://openalex.org/W2015795623", + "https://openalex.org/W2039708501", + "https://openalex.org/W2054290230", + "https://openalex.org/W2062227835", + "https://openalex.org/W2068181924", + "https://openalex.org/W2105034425", + "https://openalex.org/W2119821739", + "https://openalex.org/W2122825543", + "https://openalex.org/W2148554370", + "https://openalex.org/W2153803020", + "https://openalex.org/W2157825442", + "https://openalex.org/W2161793142", + "https://openalex.org/W2163605009", + "https://openalex.org/W2180737626", + "https://openalex.org/W2187089797", + "https://openalex.org/W2236731268", + "https://openalex.org/W2254050631", + "https://openalex.org/W2263224247", + "https://openalex.org/W2282821441", + "https://openalex.org/W2440159969", + "https://openalex.org/W2581082771", + "https://openalex.org/W2598641350", + "https://openalex.org/W2599379579", + "https://openalex.org/W2788588291", + "https://openalex.org/W2789894922", + "https://openalex.org/W3023058184", + "https://openalex.org/W3048797457", + "https://openalex.org/W4235011515", + "https://openalex.org/W4235051201", + "https://openalex.org/W4239510810", + "https://openalex.org/W4288077072", + "https://openalex.org/W6632445771", + "https://openalex.org/W6639619044" + ], + "related_works": [ + "https://openalex.org/W2090763504", + "https://openalex.org/W816105089", + "https://openalex.org/W148178222", + "https://openalex.org/W2104657898", + "https://openalex.org/W1948992892", + "https://openalex.org/W1886884218", + "https://openalex.org/W2550904580", + "https://openalex.org/W2963653239", + "https://openalex.org/W4241378172", + "https://openalex.org/W2144801536" + ], + "abstract_inverted_index": { + "BACKGROUND:": [ + 0 + ], + "Following": [ + 1 + ], + "visible": [ + 2 + ], + "successes": [ + 3 + ], + "on": [ + 4, + 131, + 155 + ], + "a": [ + 5, + 35, + 42, + 99, + 190, + 255, + 261 + ], + "wide": [ + 6 + ], + "range": [ + 7 + ], + "of": [ + 8, + 65, + 79, + 171, + 179, + 270 + ], + "predictive": [ + 9, + 49, + 72, + 186 + ], + "tasks,": [ + 10 + ], + "machine": [ + 11, + 39, + 66, + 271 + ], + "learning": [ + 12, + 40, + 67, + 272 + ], + "techniques": [ + 13, + 68 + ], + "are": [ + 14 + ], + "attracting": [ + 15 + ], + "substantial": [ + 16 + ], + "interest": [ + 17 + ], + "from": [ + 18, + 82, + 133 + ], + "medical": [ + 19, + 276 + ], + "researchers": [ + 20 + ], + "and": [ + 21, + 47, + 56, + 104, + 124, + 169, + 181, + 221, + 228, + 268, + 275, + 296 + ], + "clinicians.": [ + 22 + ], + "We": [ + 23, + 61, + 128, + 150, + 175, + 188, + 259 + ], + "address": [ + 24 + ], + "the": [ + 25, + 63, + 113, + 134, + 143, + 147, + 152, + 156, + 160, + 166, + 172, + 177, + 197, + 231, + 237, + 266 + ], + "need": [ + 26 + ], + "for": [ + 27, + 74, + 273 + ], + "capacity": [ + 28 + ], + "development": [ + 29 + ], + "in": [ + 30, + 146 + ], + "this": [ + 31 + ], + "area": [ + 32, + 229 + ], + "by": [ + 33, + 69 + ], + "providing": [ + 34 + ], + "conceptual": [ + 36 + ], + "introduction": [ + 37 + ], + "to": [ + 38, + 45, + 141, + 164, + 184, + 193, + 209, + 264, + 288 + ], + "alongside": [ + 41 + ], + "practical": [ + 43 + ], + "guide": [ + 44, + 192 + ], + "developing": [ + 46, + 70, + 194 + ], + "evaluating": [ + 48 + ], + "algorithms": [ + 50, + 86, + 130, + 195, + 206, + 251 + ], + "using": [ + 51, + 77, + 196, + 236 + ], + "freely-available": [ + 52 + ], + "open": [ + 53 + ], + "source": [ + 54 + ], + "software": [ + 55 + ], + "public": [ + 57 + ], + "domain": [ + 58 + ], + "data.": [ + 59 + ], + "METHODS:": [ + 60 + ], + "demonstrate": [ + 62, + 265, + 282 + ], + "use": [ + 64, + 178, + 260 + ], + "three": [ + 71, + 173 + ], + "models": [ + 73 + ], + "cancer": [ + 75 + ], + "diagnosis": [ + 76 + ], + "descriptions": [ + 78 + ], + "nuclei": [ + 80, + 212 + ], + "sampled": [ + 81 + ], + "breast": [ + 83, + 114 + ], + "masses.": [ + 84 + ], + "These": [ + 85 + ], + "include": [ + 87 + ], + "regularized": [ + 88 + ], + "General": [ + 89 + ], + "Linear": [ + 90 + ], + "Model": [ + 91 + ], + "regression": [ + 92 + ], + "(GLMs),": [ + 93 + ], + "Support": [ + 94 + ], + "Vector": [ + 95 + ], + "Machines": [ + 96 + ], + "(SVMs)": [ + 97 + ], + "with": [ + 98, + 159, + 213 + ], + "radial": [ + 100 + ], + "basis": [ + 101 + ], + "function": [ + 102 + ], + "kernel,": [ + 103 + ], + "single-layer": [ + 105 + ], + "Artificial": [ + 106 + ], + "Neural": [ + 107 + ], + "Networks.": [ + 108 + ], + "The": [ + 109, + 204, + 278 + ], + "publicly-available": [ + 110 + ], + "dataset": [ + 111 + ], + "describing": [ + 112 + ], + "mass": [ + 115 + ], + "samples": [ + 116 + ], + "(N=683)": [ + 117 + ], + "was": [ + 118, + 234 + ], + "randomly": [ + 119 + ], + "split": [ + 120 + ], + "into": [ + 121, + 254 + ], + "evaluation": [ + 122, + 135 + ], + "(n=456)": [ + 123 + ], + "validation": [ + 125, + 148, + 157 + ], + "(n=227)": [ + 126 + ], + "samples.": [ + 127 + ], + "trained": [ + 129, + 205 + ], + "data": [ + 132 + ], + "sample": [ + 136 + ], + "before": [ + 137 + ], + "they": [ + 138 + ], + "were": [ + 139, + 207, + 252 + ], + "used": [ + 140 + ], + "predict": [ + 142 + ], + "diagnostic": [ + 144, + 162 + ], + "outcome": [ + 145 + ], + "dataset.": [ + 149 + ], + "compared": [ + 151 + ], + "predictions": [ + 153 + ], + "made": [ + 154 + ], + "datasets": [ + 158 + ], + "real-world": [ + 161 + ], + "decisions": [ + 163 + ], + "calculate": [ + 165 + ], + "accuracy,": [ + 167 + ], + "sensitivity,": [ + 168 + ], + "specificity": [ + 170, + 222, + 248 + ], + "models.": [ + 174 + ], + "explored": [ + 176 + ], + "averaging": [ + 180 + ], + "voting": [ + 182, + 256 + ], + "ensembles": [ + 183 + ], + "improve": [ + 185 + ], + "performance.": [ + 187 + ], + "provide": [ + 189 + ], + "step-by-step": [ + 191 + ], + "open-source": [ + 198 + ], + "R": [ + 199 + ], + "statistical": [ + 200 + ], + "programming": [ + 201 + ], + "environment.": [ + 202 + ], + "RESULTS:": [ + 203 + ], + "able": [ + 208 + ], + "classify": [ + 210 + ], + "cell": [ + 211 + ], + "high": [ + 214 + ], + "accuracy": [ + 215, + 226 + ], + "(.94": [ + 216 + ], + "-.96),": [ + 217 + ], + "sensitivity": [ + 218, + 246 + ], + "(.97": [ + 219 + ], + "-.99),": [ + 220 + ], + "(.85": [ + 223 + ], + "-.94).": [ + 224 + ], + "Maximum": [ + 225 + ], + "(.96)": [ + 227 + ], + "under": [ + 230 + ], + "curve": [ + 232 + ], + "(.97)": [ + 233 + ], + "achieved": [ + 235 + ], + "SVM": [ + 238 + ], + "algorithm.": [ + 239 + ], + "Prediction": [ + 240 + ], + "performance": [ + 241 + ], + "increased": [ + 242 + ], + "marginally": [ + 243 + ], + "(accuracy": [ + 244 + ], + "=.97,": [ + 245 + ], + "=.99,": [ + 247 + ], + "=.95)": [ + 249 + ], + "when": [ + 250 + ], + "arranged": [ + 253 + ], + "ensemble.": [ + 257 + ], + "CONCLUSIONS:": [ + 258 + ], + "straightforward": [ + 262 + ], + "example": [ + 263 + ], + "theory": [ + 267 + ], + "practice": [ + 269 + ], + "clinicians": [ + 274 + ], + "researchers.": [ + 277 + ], + "principals": [ + 279 + ], + "which": [ + 280 + ], + "we": [ + 281 + ], + "here": [ + 283 + ], + "can": [ + 284 + ], + "be": [ + 285 + ], + "readily": [ + 286 + ], + "applied": [ + 287 + ], + "other": [ + 289 + ], + "complex": [ + 290 + ], + "tasks": [ + 291 + ], + "including": [ + 292 + ], + "natural": [ + 293 + ], + "language": [ + 294 + ], + "processing": [ + 295 + ], + "image": [ + 297 + ], + "recognition.": [ + 298 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 54 + }, + { + "year": 2025, + "cited_by_count": 223 + }, + { + "year": 2024, + "cited_by_count": 252 + }, + { + "year": 2023, + "cited_by_count": 259 + }, + { + "year": 2022, + "cited_by_count": 213 + }, + { + "year": 2021, + "cited_by_count": 167 + }, + { + "year": 2020, + "cited_by_count": 89 + }, + { + "year": 2019, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2540093921", + "doi": "https://doi.org/10.7551/mitpress/8291.003.0006", + "title": "Foundations of Machine Learning", + "display_name": "Foundations of Machine Learning", + "relevance_score": 2524.9668, + "publication_year": 2012, + "publication_date": "2012-05-18", + "ids": { + "openalex": "https://openalex.org/W2540093921", + "doi": "https://doi.org/10.7551/mitpress/8291.003.0006", + "mag": "2540093921" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 46.8615, + "has_fulltext": false, + "cited_by_count": 1088, + "citation_normalized_percentile": { + "value": 0.99935275, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "23", + "last_page": "52" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.056299999356269836, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.056299999356269836, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12874", + "display_name": "Digital Imaging for Blood Diseases", + "score": 0.05420000106096268, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.47987475991249084 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.347138911485672 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.47987475991249084 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.347138911485672 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + } + ], + "best_oa_location": { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2540093921.pdf", + "grobid_xml": "https://content.openalex.org/works/W2540093921.grobid-xml" + }, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2382290278", + "https://openalex.org/W2350741829", + "https://openalex.org/W2130043461", + "https://openalex.org/W2530322880", + "https://openalex.org/W1596801655" + ], + "abstract_inverted_index": { + "Foundations": [ + 0 + ], + "of": [ + 1, + 11, + 63, + 78, + 84, + 89, + 114, + 146, + 154, + 165, + 179, + 187, + 247, + 297, + 311, + 319, + 322 + ], + "Machine": [ + 2 + ], + "LearningSoon": [ + 3 + ], + "we": [ + 4, + 171, + 202, + 207, + 255 + ], + "will": [ + 5, + 41, + 46, + 72, + 172, + 203, + 231, + 256 + ], + "embark": [ + 6 + ], + "on": [ + 7, + 34, + 100, + 239, + 262 + ], + "a": [ + 8, + 23, + 51, + 87, + 92, + 142, + 150, + 210, + 284, + 294 + ], + "theoretical": [ + 9 + ], + "study": [ + 10, + 80 + ], + "AdaBoost": [ + 12 + ], + "in": [ + 13, + 75, + 168, + 183, + 232, + 251, + 270, + 281, + 292, + 332 + ], + "order": [ + 14 + ], + "to": [ + 15, + 26, + 30, + 49, + 54, + 58, + 139, + 149, + 192, + 267 + ], + "understand": [ + 16 + ], + "its": [ + 17, + 20 + ], + "properties,": [ + 18 + ], + "particularly": [ + 19 + ], + "ability": [ + 21 + ], + "as": [ + 22 + ], + "learning": [ + 24, + 115, + 188, + 276 + ], + "algorithm": [ + 25 + ], + "generalize,": [ + 27 + ], + "that": [ + 28, + 71, + 205, + 213 + ], + "is,": [ + 29 + ], + "make": [ + 31 + ], + "accurate": [ + 32, + 99, + 237 + ], + "predictions": [ + 33, + 96, + 238 + ], + "data": [ + 35, + 217 + ], + "not": [ + 36, + 225 + ], + "seen": [ + 37 + ], + "during": [ + 38 + ], + "training.Before": [ + 39 + ], + "this": [ + 40, + 112, + 169, + 185, + 229, + 252, + 282, + 314 + ], + "be": [ + 42, + 47, + 73, + 118, + 124, + 137, + 190, + 193, + 302 + ], + "possible,": [ + 43 + ], + "however,": [ + 44 + ], + "it": [ + 45, + 107, + 136, + 264 + ], + "necessary": [ + 48 + ], + "take": [ + 50 + ], + "step": [ + 52 + ], + "back": [ + 53 + ], + "outline": [ + 55, + 280 + ], + "our": [ + 56, + 76 + ], + "approach": [ + 57, + 249 + ], + "the": [ + 59, + 81, + 128, + 163, + 180, + 215, + 221, + 245, + 248, + 259, + 298, + 309, + 312, + 320, + 323 + ], + "more": [ + 60 + ], + "general": [ + 61, + 260 + ], + "problem": [ + 62, + 83, + 182, + 300 + ], + "machine": [ + 64, + 289 + ], + "learning,": [ + 65, + 290 + ], + "including": [ + 66 + ], + "some": [ + 67 + ], + "fundamental": [ + 68 + ], + "general-purpose": [ + 69 + ], + "tools": [ + 70 + ], + "invaluable": [ + 74 + ], + "analysis": [ + 77, + 261 + ], + "AdaBoost.We": [ + 79 + ], + "basic": [ + 82 + ], + "inferring": [ + 85 + ], + "from": [ + 86, + 141 + ], + "set": [ + 88, + 223 + ], + "training": [ + 90, + 129, + 147, + 216, + 222 + ], + "examples": [ + 91, + 148 + ], + "classification": [ + 93 + ], + "rule": [ + 94, + 212, + 230 + ], + "whose": [ + 95 + ], + "are": [ + 97, + 199 + ], + "highly": [ + 98 + ], + "freshly": [ + 101 + ], + "observed": [ + 102 + ], + "test": [ + 103, + 131, + 155, + 242 + ], + "data.On": [ + 104 + ], + "first": [ + 105 + ], + "encounter,": [ + 106 + ], + "may": [ + 108 + ], + "seem": [ + 109 + ], + "questionable": [ + 110 + ], + "whether": [ + 111 + ], + "kind": [ + 113, + 186 + ], + "should": [ + 116, + 122, + 135 + ], + "even": [ + 117 + ], + "possible.After": [ + 119 + ], + "all,": [ + 120 + ], + "why": [ + 121, + 134 + ], + "there": [ + 123 + ], + "any": [ + 125 + ], + "connection": [ + 126 + ], + "between": [ + 127 + ], + "and": [ + 130, + 133, + 219, + 254, + 274, + 304, + 335 + ], + "examples,": [ + 132 + ], + "possible": [ + 138 + ], + "generalize": [ + 140, + 234 + ], + "relatively": [ + 143 + ], + "small": [ + 144 + ], + "number": [ + 145 + ], + "potentially": [ + 151 + ], + "vast": [ + 152 + ], + "universe": [ + 153 + ], + "examples?Although": [ + 156 + ], + "such": [ + 157 + ], + "objections": [ + 158 + ], + "have": [ + 159, + 328 + ], + "indeed": [ + 160 + ], + "often": [ + 161, + 257 + ], + "been": [ + 162 + ], + "subject": [ + 164 + ], + "philosophical": [ + 166 + ], + "debate,": [ + 167 + ], + "chapter": [ + 170, + 283, + 315 + ], + "identify": [ + 173 + ], + "an": [ + 174 + ], + "idealized": [ + 175 + ], + "but": [ + 176 + ], + "realistic": [ + 177 + ], + "model": [ + 178 + ], + "inference": [ + 181 + ], + "which": [ + 184, + 263, + 293 + ], + "can": [ + 189, + 208, + 301 + ], + "proved": [ + 191 + ], + "entirely": [ + 194 + ], + "feasible": [ + 195 + ], + "when": [ + 196, + 275 + ], + "certain": [ + 197 + ], + "conditions": [ + 198 + ], + "satisfied.In": [ + 200 + ], + "particular,": [ + 201 + ], + "see": [ + 204 + ], + "if": [ + 206, + 220 + ], + "find": [ + 209 + ], + "simple": [ + 211 + ], + "fits": [ + 214 + ], + "well,": [ + 218, + 235 + ], + "is": [ + 224, + 244, + 265, + 277 + ], + "too": [ + 226 + ], + "small,": [ + 227 + ], + "then": [ + 228 + ], + "fact": [ + 233 + ], + "providing": [ + 236 + ], + "previously": [ + 240 + ], + "unseen": [ + 241 + ], + "examples.This": [ + 243 + ], + "basis": [ + 246 + ], + "presented": [ + 250 + ], + "chapter,": [ + 253 + ], + "use": [ + 258 + ], + "founded": [ + 266 + ], + "guide": [ + 268 + ], + "us": [ + 269 + ], + "understanding": [ + 271 + ], + "how,": [ + 272 + ], + "why,": [ + 273 + ], + "possible.We": [ + 278 + ], + "also": [ + 279 + ], + "mathematical": [ + 285 + ], + "framework": [ + 286 + ], + "for": [ + 287 + ], + "studying": [ + 288 + ], + "one": [ + 291 + ], + "precise": [ + 295 + ], + "formulation": [ + 296 + ], + "boosting": [ + 299 + ], + "clearly": [ + 303 + ], + "naturally": [ + 305 + ], + "expressed.Note": [ + 306 + ], + "that,": [ + 307 + ], + "unlike": [ + 308 + ], + "rest": [ + 310 + ], + "book,": [ + 313 + ], + "omits": [ + 316 + ], + "nearly": [ + 317 + ], + "all": [ + 318, + 330 + ], + "proofs": [ + 321 + ], + "main": [ + 324 + ], + "results": [ + 325 + ], + "since": [ + 326 + ], + "these": [ + 327 + ], + "largely": [ + 329 + ], + "appeared": [ + 331 + ], + "various": [ + 333 + ], + "texts": [ + 334 + ], + "articles.": [ + 336 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 33 + }, + { + "year": 2024, + "cited_by_count": 57 + }, + { + "year": 2023, + "cited_by_count": 75 + }, + { + "year": 2022, + "cited_by_count": 93 + }, + { + "year": 2021, + "cited_by_count": 111 + }, + { + "year": 2020, + "cited_by_count": 113 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 116 + }, + { + "year": 2017, + "cited_by_count": 104 + }, + { + "year": 2016, + "cited_by_count": 99 + }, + { + "year": 2015, + "cited_by_count": 73 + }, + { + "year": 2014, + "cited_by_count": 57 + }, + { + "year": 2013, + "cited_by_count": 18 + } + ], + "updated_date": "2026-04-04T16:13:02.066488", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2186615578", + "doi": "https://doi.org/10.48550/arxiv.1512.01274", + "title": "MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems", + "display_name": "MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems", + "relevance_score": 2496.3748, + "publication_year": 2015, + "publication_date": "2015-12-03", + "ids": { + "openalex": "https://openalex.org/W2186615578", + "doi": "https://doi.org/10.48550/arxiv.1512.01274", + "mag": "2186615578" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1512.01274", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101471082", + "display_name": "Tianqi Chen", + "orcid": "https://orcid.org/0000-0002-0277-5163" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Chen, Tianqi", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100399457", + "display_name": "Mu Li", + "orcid": "https://orcid.org/0000-0001-9871-7488" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Li, Mu", + "raw_affiliation_strings": [ + "Carnegie Mellon University" + ], + "affiliations": [ + { + "raw_affiliation_string": "Carnegie Mellon University", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5085236897", + "display_name": "Yutian Li", + "orcid": "https://orcid.org/0000-0003-1810-3000" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Li, Yutian", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100697981", + "display_name": "Min Lin", + "orcid": "https://orcid.org/0000-0002-0296-436X" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Lin, Min", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100742122", + "display_name": "Naiyan Wang", + "orcid": "https://orcid.org/0000-0002-0526-3331" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wang, Naiyan", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101452217", + "display_name": "Minjie Wang", + "orcid": "https://orcid.org/0000-0001-8830-6079" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wang, Minjie", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5020757657", + "display_name": "Tianjun Xiao", + "orcid": "https://orcid.org/0000-0003-4705-1545" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Xiao, Tianjun", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003333136", + "display_name": "Bing Xu", + "orcid": "https://orcid.org/0000-0003-3677-1109" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Xu, Bing", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016054994", + "display_name": "Chiyuan Zhang", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhang, Chiyuan", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100459107", + "display_name": "Zheng Zhang", + "orcid": "https://orcid.org/0000-0002-2292-0030" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhang, Zheng", + "raw_affiliation_strings": [], + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 10, + "corresponding_author_ids": [ + "https://openalex.org/A5101471082" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 1922, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9966999888420105, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9966999888420105, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9911999702453613, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10273", + "display_name": "IoT and Edge/Fog Computing", + "score": 0.9869999885559082, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6740605235099792 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.47939276695251465 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4228232204914093 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6740605235099792 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.47939276695251465 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4228232204914093 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1512.01274", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1512.01274", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 9, + "referenced_works": [ + "https://openalex.org/W753012316", + "https://openalex.org/W1606347560", + "https://openalex.org/W1863582480", + "https://openalex.org/W2083842231", + "https://openalex.org/W2117539524", + "https://openalex.org/W2127941149", + "https://openalex.org/W2155893237", + "https://openalex.org/W2168231600", + "https://openalex.org/W2949117887" + ], + "related_works": [ + "https://openalex.org/W4391375266", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W2382290278", + "https://openalex.org/W2478288626", + "https://openalex.org/W4391913857", + "https://openalex.org/W2350741829" + ], + "abstract_inverted_index": { + "MXNet": [ + 0, + 41 + ], + "is": [ + 1, + 42, + 85 + ], + "a": [ + 2, + 88 + ], + "multi-language": [ + 3 + ], + "machine": [ + 4 + ], + "learning": [ + 5 + ], + "(ML)": [ + 6 + ], + "library": [ + 7 + ], + "to": [ + 8, + 38, + 57 + ], + "ease": [ + 9 + ], + "the": [ + 10, + 22, + 65, + 69 + ], + "development": [ + 11 + ], + "of": [ + 12, + 72, + 78 + ], + "ML": [ + 13 + ], + "algorithms,": [ + 14 + ], + "especially": [ + 15 + ], + "for": [ + 16 + ], + "deep": [ + 17, + 100 + ], + "neural": [ + 18, + 101 + ], + "networks.": [ + 19 + ], + "Embedded": [ + 20 + ], + "in": [ + 21, + 87 + ], + "host": [ + 23 + ], + "language,": [ + 24 + ], + "it": [ + 25 + ], + "blends": [ + 26 + ], + "declarative": [ + 27 + ], + "symbolic": [ + 28, + 80 + ], + "expression": [ + 29, + 81 + ], + "with": [ + 30 + ], + "imperative": [ + 31 + ], + "tensor": [ + 32, + 83 + ], + "computation.": [ + 33 + ], + "It": [ + 34 + ], + "offers": [ + 35 + ], + "auto": [ + 36 + ], + "differentiation": [ + 37 + ], + "derive": [ + 39 + ], + "gradients.": [ + 40 + ], + "computation": [ + 43 + ], + "and": [ + 44, + 47, + 68, + 74, + 82 + ], + "memory": [ + 45 + ], + "efficient": [ + 46 + ], + "runs": [ + 48 + ], + "on": [ + 49, + 97 + ], + "various": [ + 50 + ], + "heterogeneous": [ + 51 + ], + "systems,": [ + 52 + ], + "ranging": [ + 53 + ], + "from": [ + 54 + ], + "mobile": [ + 55 + ], + "devices": [ + 56 + ], + "distributed": [ + 58 + ], + "GPU": [ + 59, + 106 + ], + "clusters.": [ + 60 + ], + "This": [ + 61 + ], + "paper": [ + 62 + ], + "describes": [ + 63 + ], + "both": [ + 64, + 79 + ], + "API": [ + 66 + ], + "design": [ + 67 + ], + "system": [ + 70 + ], + "implementation": [ + 71 + ], + "MXNet,": [ + 73 + ], + "explains": [ + 75 + ], + "how": [ + 76 + ], + "embedding": [ + 77 + ], + "operation": [ + 84 + ], + "handled": [ + 86 + ], + "unified": [ + 89 + ], + "fashion.": [ + 90 + ], + "Our": [ + 91 + ], + "preliminary": [ + 92 + ], + "experiments": [ + 93 + ], + "reveal": [ + 94 + ], + "promising": [ + 95 + ], + "results": [ + 96 + ], + "large": [ + 98 + ], + "scale": [ + 99 + ], + "network": [ + 102 + ], + "applications": [ + 103 + ], + "using": [ + 104 + ], + "multiple": [ + 105 + ], + "machines.": [ + 107 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 23 + }, + { + "year": 2024, + "cited_by_count": 66 + }, + { + "year": 2023, + "cited_by_count": 119 + }, + { + "year": 2022, + "cited_by_count": 116 + }, + { + "year": 2021, + "cited_by_count": 272 + }, + { + "year": 2020, + "cited_by_count": 344 + }, + { + "year": 2019, + "cited_by_count": 425 + }, + { + "year": 2018, + "cited_by_count": 328 + }, + { + "year": 2017, + "cited_by_count": 163 + }, + { + "year": 2016, + "cited_by_count": 63 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-04-15T08:11:43.952461", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1549998098", + "doi": "https://doi.org/10.1201/b17476", + "title": "Machine Learning: An Algorithmic Perspective", + "display_name": "Machine Learning: An Algorithmic Perspective", + "relevance_score": 2493.1604, + "publication_year": 2009, + "publication_date": "2009-04-01", + "ids": { + "openalex": "https://openalex.org/W1549998098", + "doi": "https://doi.org/10.1201/b17476", + "mag": "1549998098" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-017552574", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017552574&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5062355849", + "display_name": "Stephen Marsland", + "orcid": "https://orcid.org/0000-0002-9568-848X" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Stephen Marsland", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5062355849" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 7.7283, + "has_fulltext": false, + "cited_by_count": 1082, + "citation_normalized_percentile": { + "value": 0.97590361, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.9527999758720398, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.9527999758720398, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9485999941825867, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.9290000200271606, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8247708678245544 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6978603005409241 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.6065407991409302 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5084995031356812 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.485168993473053 + }, + { + "id": "https://openalex.org/keywords/reinforcement-learning", + "display_name": "Reinforcement learning", + "score": 0.46519267559051514 + }, + { + "id": "https://openalex.org/keywords/dimensionality-reduction", + "display_name": "Dimensionality reduction", + "score": 0.4341639578342438 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.40039053559303284 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3699588179588318 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.27868103981018066 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8247708678245544 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6978603005409241 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.6065407991409302 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5084995031356812 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.485168993473053 + }, + { + "id": "https://openalex.org/C97541855", + "wikidata": "https://www.wikidata.org/wiki/Q830687", + "display_name": "Reinforcement learning", + "level": 2, + "score": 0.46519267559051514 + }, + { + "id": "https://openalex.org/C70518039", + "wikidata": "https://www.wikidata.org/wiki/Q16000077", + "display_name": "Dimensionality reduction", + "level": 2, + "score": 0.4341639578342438 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.40039053559303284 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3699588179588318 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.27868103981018066 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-017552574", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017552574&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027969692", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027969692&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-032339396", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1201/b17476", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:cds.cern.ch:1338551", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1338551", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2749325", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2749325", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:1549998098", + "is_oa": false, + "landing_page_url": "https://www.comp.hkbu.edu.hk/~cib/2009/Dec/review1/iib_vol10no1_review1.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 4, + "referenced_works": [ + "https://openalex.org/W136111882", + "https://openalex.org/W1554944419", + "https://openalex.org/W1606368318", + "https://openalex.org/W2799061466" + ], + "related_works": [ + "https://openalex.org/W2911964244", + "https://openalex.org/W1663973292", + "https://openalex.org/W1570448133", + "https://openalex.org/W2122410182", + "https://openalex.org/W1554944419", + "https://openalex.org/W2101234009", + "https://openalex.org/W1503398984", + "https://openalex.org/W2919115771", + "https://openalex.org/W3145506661", + "https://openalex.org/W2121863487", + "https://openalex.org/W2124776405", + "https://openalex.org/W1873332500", + "https://openalex.org/W2912934387", + "https://openalex.org/W2119821739", + "https://openalex.org/W1480376833", + "https://openalex.org/W3085162807", + "https://openalex.org/W2140190241", + "https://openalex.org/W2799061466", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766" + ], + "abstract_inverted_index": { + "Traditional": [ + 0 + ], + "books": [ + 1 + ], + "on": [ + 2, + 29 + ], + "machine": [ + 3, + 53 + ], + "learning": [ + 4, + 54 + ], + "can": [ + 5 + ], + "be": [ + 6 + ], + "divided": [ + 7 + ], + "into": [ + 8 + ], + "two": [ + 9 + ], + "groups": [ + 10 + ], + "-": [ + 11 + ], + "those": [ + 12, + 25 + ], + "aimed": [ + 13 + ], + "at": [ + 14 + ], + "advanced": [ + 15 + ], + "undergraduates": [ + 16 + ], + "or": [ + 17 + ], + "early": [ + 18 + ], + "postgraduates": [ + 19 + ], + "with": [ + 20 + ], + "reasonable": [ + 21 + ], + "mathematical": [ + 22 + ], + "knowledge": [ + 23 + ], + "and": [ + 24, + 65 + ], + "that": [ + 26, + 41, + 50, + 76 + ], + "are": [ + 27 + ], + "primers": [ + 28 + ], + "how": [ + 30, + 45, + 64 + ], + "to": [ + 31, + 46, + 62 + ], + "code": [ + 32 + ], + "algorithms.": [ + 33 + ], + "The": [ + 34 + ], + "field": [ + 35 + ], + "is": [ + 36, + 75 + ], + "ready": [ + 37 + ], + "for": [ + 38 + ], + "a": [ + 39 + ], + "text": [ + 40 + ], + "not": [ + 42 + ], + "only": [ + 43 + ], + "demonstrates": [ + 44 + ], + "use": [ + 47 + ], + "the": [ + 48, + 59 + ], + "algorithms": [ + 49, + 68 + ], + "make": [ + 51 + ], + "up": [ + 52, + 79 + ], + "methods,": [ + 55 + ], + "but": [ + 56 + ], + "also": [ + 57 + ], + "provides": [ + 58 + ], + "background": [ + 60 + ], + "needed": [ + 61 + ], + "understand": [ + 63 + ], + "why": [ + 66 + ], + "these": [ + 67 + ], + "work.": [ + 69 + ], + "Machine": [ + 70 + ], + "Learning:": [ + 71 + ], + "An": [ + 72 + ], + "Algorithmic": [ + 73 + ], + "Perspective": [ + 74 + ], + "text.Theory": [ + 77 + ], + "Backed": [ + 78 + ], + "by": [ + 80 + ], + "Practical": [ + 81 + ], + "ExamplesThe": [ + 82 + ], + "book": [ + 83 + ], + "covers": [ + 84 + ], + "neural": [ + 85 + ], + "networks,": [ + 86 + ], + "graphical": [ + 87 + ], + "models,": [ + 88 + ], + "reinforcement": [ + 89 + ], + "le": [ + 90 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 17 + }, + { + "year": 2024, + "cited_by_count": 56 + }, + { + "year": 2023, + "cited_by_count": 70 + }, + { + "year": 2022, + "cited_by_count": 88 + }, + { + "year": 2021, + "cited_by_count": 141 + }, + { + "year": 2020, + "cited_by_count": 140 + }, + { + "year": 2019, + "cited_by_count": 113 + }, + { + "year": 2018, + "cited_by_count": 96 + }, + { + "year": 2017, + "cited_by_count": 77 + }, + { + "year": 2016, + "cited_by_count": 61 + }, + { + "year": 2015, + "cited_by_count": 56 + }, + { + "year": 2014, + "cited_by_count": 45 + }, + { + "year": 2013, + "cited_by_count": 49 + }, + { + "year": 2012, + "cited_by_count": 49 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2464725281", + "doi": "https://doi.org/10.1038/npjcompumats.2016.28", + "title": "A general-purpose machine learning framework for predicting properties of inorganic materials", + "display_name": "A general-purpose machine learning framework for predicting properties of inorganic materials", + "relevance_score": 2488.577, + "publication_year": 2016, + "publication_date": "2016-08-26", + "ids": { + "openalex": "https://openalex.org/W2464725281", + "doi": "https://doi.org/10.1038/npjcompumats.2016.28", + "mag": "2464725281" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021403239", + "display_name": "Logan Ward", + "orcid": "https://orcid.org/0000-0002-1323-5939" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Logan Ward", + "raw_affiliation_strings": [ + "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-1323-5939", + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004659592", + "display_name": "Ankit Agrawal", + "orcid": "https://orcid.org/0000-0002-5519-0302" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ankit Agrawal", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074976770", + "display_name": "Alok Choudhary", + "orcid": "https://orcid.org/0000-0001-8152-6319" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alok Choudhary", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5113557612", + "display_name": "Christopher Wolverton", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christopher Wolverton", + "raw_affiliation_strings": [ + "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5021403239" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I111979921" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 33.8856, + "has_fulltext": true, + "cited_by_count": 1670, + "citation_normalized_percentile": { + "value": 0.99915051, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "2", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11825", + "display_name": "Catalysis and Oxidation Reactions", + "score": 0.9901999831199646, + "subfield": { + "id": "https://openalex.org/subfields/1503", + "display_name": "Catalysis" + }, + "field": { + "id": "https://openalex.org/fields/15", + "display_name": "Chemical Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7177993655204773 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6573723554611206 + }, + { + "id": "https://openalex.org/keywords/variety", + "display_name": "Variety (cybernetics)", + "score": 0.5816711783409119 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5580894351005554 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5311656594276428 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4939315915107727 + }, + { + "id": "https://openalex.org/keywords/materials-science", + "display_name": "Materials science", + "score": 0.1735665500164032 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7177993655204773 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6573723554611206 + }, + { + "id": "https://openalex.org/C136197465", + "wikidata": "https://www.wikidata.org/wiki/Q1729295", + "display_name": "Variety (cybernetics)", + "level": 2, + "score": 0.5816711783409119 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5580894351005554 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5311656594276428 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4939315915107727 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.1735665500164032 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1606.09551", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1606.09551", + "pdf_url": "https://arxiv.org/pdf/1606.09551", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:osti.gov:1437349", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1437349", + "pdf_url": "https://www.osti.gov/servlets/purl/1437349", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G1314375578", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306111", + "funder_display_name": "U.S. Department of Commerce" + }, + { + "id": "https://openalex.org/G1523888516", + "display_name": null, + "funder_award_id": "FA9550-", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G1676583131", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320337819", + "funder_display_name": "Center for Hierarchical Materials Design" + }, + { + "id": "https://openalex.org/G1872610661", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320337819", + "funder_display_name": "Center for Hierarchical Materials Design" + }, + { + "id": "https://openalex.org/G2989483902", + "display_name": "EAGER: Scalable Big Data Analytics", + "funder_award_id": "1343639", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G3481652762", + "display_name": null, + "funder_award_id": "CCF-1409601", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G3532683099", + "display_name": "SHF: Medium: Collaborative Research: Scalable Algorithms for Spatio-temporal Data Analysis", + "funder_award_id": "1409601", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4940832283", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320306111", + "funder_display_name": "U.S. Department of Commerce" + }, + { + "id": "https://openalex.org/G5249168579", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G5490804116", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306078", + "funder_display_name": "U.S. Department of Defense" + }, + { + "id": "https://openalex.org/G552768688", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320332178", + "funder_display_name": "National Institute of Standards and Technology" + }, + { + "id": "https://openalex.org/G5809100787", + "display_name": null, + "funder_award_id": "FA9550", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G6071252945", + "display_name": null, + "funder_award_id": "FA9550-12", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G6131312370", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320332178", + "funder_display_name": "National Institute of Standards and Technology" + }, + { + "id": "https://openalex.org/G6563589624", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7116556506", + "display_name": null, + "funder_award_id": "N66001-15-C-4036", + "funder_id": "https://openalex.org/F4320332180", + "funder_display_name": "Defense Advanced Research Projects Agency" + }, + { + "id": "https://openalex.org/G7999580237", + "display_name": null, + "funder_award_id": "FA9550-12-1", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G8678745938", + "display_name": null, + "funder_award_id": "DESC0007456", + "funder_id": "https://openalex.org/F4320306084", + "funder_display_name": "U.S. Department of Energy" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320306078", + "display_name": "U.S. Department of Defense", + "ror": "https://ror.org/0447fe631" + }, + { + "id": "https://openalex.org/F4320306084", + "display_name": "U.S. Department of Energy", + "ror": "https://ror.org/01bj3aw27" + }, + { + "id": "https://openalex.org/F4320306111", + "display_name": "U.S. Department of Commerce", + "ror": "https://ror.org/04chq2495" + }, + { + "id": "https://openalex.org/F4320332178", + "display_name": "National Institute of Standards and Technology", + "ror": "https://ror.org/05xpvk416" + }, + { + "id": "https://openalex.org/F4320332180", + "display_name": "Defense Advanced Research Projects Agency", + "ror": "https://ror.org/02caytj08" + }, + { + "id": "https://openalex.org/F4320333566", + "display_name": "National Defense Science and Engineering Graduate", + "ror": null + }, + { + "id": "https://openalex.org/F4320337819", + "display_name": "Center for Hierarchical Materials Design", + "ror": null + }, + { + "id": "https://openalex.org/F4320338279", + "display_name": "Air Force Office of Scientific Research", + "ror": "https://ror.org/011e9bt93" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2464725281.pdf", + "grobid_xml": "https://content.openalex.org/works/W2464725281.grobid-xml" + }, + "referenced_works_count": 74, + "referenced_works": [ + "https://openalex.org/W336365082", + "https://openalex.org/W568714467", + "https://openalex.org/W1496257230", + "https://openalex.org/W1545231783", + "https://openalex.org/W1605058418", + "https://openalex.org/W1741949188", + "https://openalex.org/W1861259131", + "https://openalex.org/W1964254287", + "https://openalex.org/W1966216358", + "https://openalex.org/W1968075993", + "https://openalex.org/W1976492731", + "https://openalex.org/W1977053243", + "https://openalex.org/W1988887547", + "https://openalex.org/W1992985800", + "https://openalex.org/W2000009216", + "https://openalex.org/W2013795311", + "https://openalex.org/W2016587795", + "https://openalex.org/W2018351443", + "https://openalex.org/W2019561942", + "https://openalex.org/W2020246947", + "https://openalex.org/W2029637177", + "https://openalex.org/W2034097448", + "https://openalex.org/W2039971369", + "https://openalex.org/W2044012801", + "https://openalex.org/W2045759556", + "https://openalex.org/W2047165001", + "https://openalex.org/W2051801258", + "https://openalex.org/W2052663622", + "https://openalex.org/W2055410454", + "https://openalex.org/W2074616700", + "https://openalex.org/W2083415705", + "https://openalex.org/W2097968133", + "https://openalex.org/W2100833014", + "https://openalex.org/W2102539288", + "https://openalex.org/W2104489082", + "https://openalex.org/W2111124526", + "https://openalex.org/W2112845989", + "https://openalex.org/W2113072508", + "https://openalex.org/W2113242816", + "https://openalex.org/W2115252128", + "https://openalex.org/W2117363206", + "https://openalex.org/W2119735967", + "https://openalex.org/W2123306226", + "https://openalex.org/W2133990480", + "https://openalex.org/W2138060751", + "https://openalex.org/W2142009706", + "https://openalex.org/W2145914706", + "https://openalex.org/W2150757437", + "https://openalex.org/W2159357141", + "https://openalex.org/W2162653998", + "https://openalex.org/W2164524421", + "https://openalex.org/W2164529883", + "https://openalex.org/W2167441267", + "https://openalex.org/W2217912240", + "https://openalex.org/W2241011319", + "https://openalex.org/W2278970271", + "https://openalex.org/W2312842167", + "https://openalex.org/W2313966941", + "https://openalex.org/W2317309722", + "https://openalex.org/W2318376321", + "https://openalex.org/W2329258563", + "https://openalex.org/W2338402873", + "https://openalex.org/W2343462019", + "https://openalex.org/W2494629425", + "https://openalex.org/W2612686989", + "https://openalex.org/W2671074027", + "https://openalex.org/W2911964244", + "https://openalex.org/W2913390193", + "https://openalex.org/W2950537967", + "https://openalex.org/W2963485997", + "https://openalex.org/W4230093030", + "https://openalex.org/W4236360742", + "https://openalex.org/W4239059908", + "https://openalex.org/W4249528159" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "A": [ + 1 + ], + "very": [ + 2 + ], + "active": [ + 3 + ], + "area": [ + 4 + ], + "of": [ + 5, + 51, + 63, + 70, + 82, + 94, + 107, + 131 + ], + "materials": [ + 6, + 23, + 71, + 109 + ], + "research": [ + 7 + ], + "is": [ + 8 + ], + "to": [ + 9, + 16, + 66, + 110, + 127 + ], + "devise": [ + 10 + ], + "methods": [ + 11 + ], + "that": [ + 12 + ], + "use": [ + 13 + ], + "machine": [ + 14, + 40 + ], + "learning": [ + 15, + 41 + ], + "automatically": [ + 17 + ], + "extract": [ + 18 + ], + "predictive": [ + 19, + 113 + ], + "models": [ + 20, + 31, + 53 + ], + "from": [ + 21 + ], + "existing": [ + 22 + ], + "data.": [ + 24, + 72 + ], + "While": [ + 25 + ], + "prior": [ + 26 + ], + "examples": [ + 27 + ], + "have": [ + 28, + 58 + ], + "demonstrated": [ + 29 + ], + "successful": [ + 30 + ], + "for": [ + 32, + 54, + 89, + 100 + ], + "some": [ + 33 + ], + "applications,": [ + 34, + 56 + ], + "many": [ + 35 + ], + "more": [ + 36 + ], + "applications": [ + 37 + ], + "exist": [ + 38 + ], + "where": [ + 39 + ], + "can": [ + 42, + 124 + ], + "make": [ + 43 + ], + "a": [ + 44, + 60, + 67, + 78, + 91, + 97 + ], + "strong": [ + 45 + ], + "impact.": [ + 46 + ], + "To": [ + 47 + ], + "enable": [ + 48 + ], + "faster": [ + 49 + ], + "development": [ + 50 + ], + "machine-learning-based": [ + 52 + ], + "such": [ + 55, + 136 + ], + "we": [ + 57, + 85, + 118 + ], + "created": [ + 59 + ], + "framework": [ + 61 + ], + "capable": [ + 62 + ], + "being": [ + 64 + ], + "applied": [ + 65 + ], + "broad": [ + 68 + ], + "range": [ + 69 + ], + "Our": [ + 73 + ], + "method": [ + 74, + 99, + 123 + ], + "works": [ + 75 + ], + "by": [ + 76 + ], + "using": [ + 77 + ], + "chemically": [ + 79 + ], + "diverse": [ + 80, + 129 + ], + "list": [ + 81 + ], + "attributes,": [ + 83 + ], + "which": [ + 84 + ], + "demonstrate": [ + 86, + 119 + ], + "are": [ + 87 + ], + "suitable": [ + 88 + ], + "describing": [ + 90 + ], + "wide": [ + 92 + ], + "variety": [ + 93 + ], + "properties,": [ + 95 + ], + "and": [ + 96, + 133, + 141 + ], + "novel": [ + 98 + ], + "partitioning": [ + 101 + ], + "the": [ + 102, + 112 + ], + "data": [ + 103 + ], + "set": [ + 104 + ], + "into": [ + 105 + ], + "groups": [ + 106 + ], + "similar": [ + 108 + ], + "boost": [ + 111 + ], + "accuracy.": [ + 114 + ], + "In": [ + 115 + ], + "this": [ + 116, + 121 + ], + "manuscript,": [ + 117 + ], + "how": [ + 120 + ], + "new": [ + 122 + ], + "be": [ + 125 + ], + "used": [ + 126 + ], + "predict": [ + 128 + ], + "properties": [ + 130 + ], + "crystalline": [ + 132 + ], + "amorphous": [ + 134 + ], + "materials,": [ + 135 + ], + "as": [ + 137 + ], + "band": [ + 138 + ], + "gap": [ + 139 + ], + "energy": [ + 140 + ], + "glass-forming": [ + 142 + ], + "ability.": [ + 143 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 137 + }, + { + "year": 2025, + "cited_by_count": 274 + }, + { + "year": 2024, + "cited_by_count": 247 + }, + { + "year": 2023, + "cited_by_count": 215 + }, + { + "year": 2022, + "cited_by_count": 204 + }, + { + "year": 2021, + "cited_by_count": 195 + }, + { + "year": 2020, + "cited_by_count": 185 + }, + { + "year": 2019, + "cited_by_count": 117 + }, + { + "year": 2018, + "cited_by_count": 71 + }, + { + "year": 2017, + "cited_by_count": 22 + }, + { + "year": 2016, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2016-07-22T00:00:00" + }, + { + "id": "https://openalex.org/W2182361439", + "doi": null, + "title": "Efficient and robust automated machine learning", + "display_name": "Efficient and robust automated machine learning", + "relevance_score": 2481.6487, + "publication_year": 2015, + "publication_date": "2015-12-07", + "ids": { + "openalex": "https://openalex.org/W2182361439", + "mag": "2182361439" + }, + "language": "en", + "primary_location": { + "id": "mag:2182361439", + "is_oa": false, + "landing_page_url": "https://papers.nips.cc/paper/2015/file/11d0e6287202fced83f79975ec59a3a6-Paper.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420609", + "display_name": "Neural Information Processing Systems", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Neural Information Processing Systems", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5054262288", + "display_name": "Matthias Feurer", + "orcid": "https://orcid.org/0000-0001-9611-8588" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Matthias Feurer", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0001-9611-8588", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5044806693", + "display_name": "Aaron Klein", + "orcid": "https://orcid.org/0000-0003-3960-7742" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Aaron Klein", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0003-3960-7742", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5081813991", + "display_name": "Katharina Eggensperger", + "orcid": "https://orcid.org/0000-0002-0309-401X" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Katharina Eggensperger", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017985443", + "display_name": "Jost Tobias Springenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Jost Tobias Springenberg", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5102766796", + "display_name": "Manuel Blum", + "orcid": "https://orcid.org/0000-0002-0982-4845" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Manuel Blum", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-0982-4845", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5031002895", + "display_name": "Frank Hutter", + "orcid": "https://orcid.org/0000-0002-2037-3694" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Frank Hutter", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-2037-3694", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5054262288" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161046081" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 26.632, + "has_fulltext": false, + "cited_by_count": 1255, + "citation_normalized_percentile": { + "value": 0.99838319, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "28", + "issue": null, + "first_page": "2755", + "last_page": "2763" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9884999990463257, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/hyperparameter", + "display_name": "Hyperparameter", + "score": 0.8062483668327332 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7956940531730652 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7567195892333984 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7412288188934326 + }, + { + "id": "https://openalex.org/keywords/preprocessor", + "display_name": "Preprocessor", + "score": 0.723639726638794 + }, + { + "id": "https://openalex.org/keywords/bayesian-optimization", + "display_name": "Bayesian optimization", + "score": 0.5717392563819885 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5170496106147766 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4831806719303131 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.41747650504112244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C8642999", + "wikidata": "https://www.wikidata.org/wiki/Q4171168", + "display_name": "Hyperparameter", + "level": 2, + "score": 0.8062483668327332 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7956940531730652 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7567195892333984 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7412288188934326 + }, + { + "id": "https://openalex.org/C34736171", + "wikidata": "https://www.wikidata.org/wiki/Q918333", + "display_name": "Preprocessor", + "level": 2, + "score": 0.723639726638794 + }, + { + "id": "https://openalex.org/C2778049539", + "wikidata": "https://www.wikidata.org/wiki/Q17002908", + "display_name": "Bayesian optimization", + "level": 2, + "score": 0.5717392563819885 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5170496106147766 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4831806719303131 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.41747650504112244 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2182361439", + "is_oa": false, + "landing_page_url": "https://papers.nips.cc/paper/2015/file/11d0e6287202fced83f79975ec59a3a6-Paper.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420609", + "display_name": "Neural Information Processing Systems", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Neural Information Processing Systems", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W28412257", + "https://openalex.org/W60686164", + "https://openalex.org/W76331760", + "https://openalex.org/W116375701", + "https://openalex.org/W122178443", + "https://openalex.org/W1519451279", + "https://openalex.org/W1647221522", + "https://openalex.org/W1840091437", + "https://openalex.org/W1980264541", + "https://openalex.org/W2099201756", + "https://openalex.org/W2101234009", + "https://openalex.org/W2102539288", + "https://openalex.org/W2106411961", + "https://openalex.org/W2112204321", + "https://openalex.org/W2112364454", + "https://openalex.org/W2131241448", + "https://openalex.org/W2132862423", + "https://openalex.org/W2133990480", + "https://openalex.org/W2142334564", + "https://openalex.org/W2149731329", + "https://openalex.org/W2150446468", + "https://openalex.org/W2150753219", + "https://openalex.org/W2165607334", + "https://openalex.org/W2200000192", + "https://openalex.org/W2809054435", + "https://openalex.org/W2911964244" + ], + "related_works": [ + "https://openalex.org/W60686164", + "https://openalex.org/W2964024268", + "https://openalex.org/W2963815651", + "https://openalex.org/W2963423218", + "https://openalex.org/W2947123069", + "https://openalex.org/W2911964244", + "https://openalex.org/W2608595939", + "https://openalex.org/W2553303224", + "https://openalex.org/W2309832917", + "https://openalex.org/W2200000192", + "https://openalex.org/W2194775991", + "https://openalex.org/W2192203593", + "https://openalex.org/W2133990480", + "https://openalex.org/W2132862423", + "https://openalex.org/W2131241448", + "https://openalex.org/W2112364454", + "https://openalex.org/W2106411961", + "https://openalex.org/W2102539288", + "https://openalex.org/W2101234009", + "https://openalex.org/W2097998348" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "success": [ + 1 + ], + "of": [ + 2, + 9, + 75, + 153, + 176, + 190, + 199, + 203 + ], + "machine": [ + 3, + 18, + 68 + ], + "learning": [ + 4, + 19, + 69 + ], + "in": [ + 5, + 33, + 179 + ], + "a": [ + 6, + 41, + 49, + 85, + 108 + ], + "broad": [ + 7 + ], + "range": [ + 8 + ], + "applications": [ + 10 + ], + "has": [ + 11, + 62 + ], + "led": [ + 12 + ], + "to": [ + 13, + 38, + 64, + 107, + 188 + ], + "an": [ + 14 + ], + "ever-growing": [ + 15 + ], + "demand": [ + 16 + ], + "for": [ + 17, + 48 + ], + "systems": [ + 20, + 36 + ], + "that": [ + 21, + 169 + ], + "can": [ + 22 + ], + "be": [ + 23, + 31 + ], + "used": [ + 24 + ], + "off": [ + 25 + ], + "the": [ + 26, + 73, + 141, + 145, + 150, + 154, + 173, + 177, + 184, + 197, + 200 + ], + "shelf": [ + 27 + ], + "by": [ + 28, + 126, + 137 + ], + "non-experts.": [ + 29 + ], + "To": [ + 30 + ], + "effective": [ + 32 + ], + "practice,": [ + 34 + ], + "such": [ + 35 + ], + "need": [ + 37 + ], + "automatically": [ + 39, + 127 + ], + "choose": [ + 40 + ], + "good": [ + 42 + ], + "algorithm": [ + 43 + ], + "and": [ + 44, + 54, + 100, + 136, + 159, + 193 + ], + "feature": [ + 45, + 97 + ], + "preprocessing": [ + 46, + 98, + 103 + ], + "steps": [ + 47 + ], + "new": [ + 50, + 87 + ], + "dataset": [ + 51 + ], + "at": [ + 52 + ], + "hand,": [ + 53 + ], + "also": [ + 55, + 182 + ], + "set": [ + 56 + ], + "their": [ + 57 + ], + "respective": [ + 58 + ], + "hyperparameters.": [ + 59 + ], + "Recent": [ + 60 + ], + "work": [ + 61 + ], + "started": [ + 63 + ], + "tackle": [ + 65 + ], + "this": [ + 66 + ], + "automated": [ + 67 + ], + "(AutoML)": [ + 70 + ], + "problem": [ + 71 + ], + "with": [ + 72, + 112 + ], + "help": [ + 74 + ], + "efficient": [ + 76 + ], + "Bayesian": [ + 77 + ], + "optimization": [ + 78 + ], + "methods.": [ + 79 + ], + "Building": [ + 80 + ], + "on": [ + 81, + 91, + 122, + 133, + 163 + ], + "this,": [ + 82 + ], + "we": [ + 83, + 118 + ], + "introduce": [ + 84 + ], + "robust": [ + 86 + ], + "AutoML": [ + 88, + 124, + 157 + ], + "system": [ + 89, + 148 + ], + "based": [ + 90 + ], + "scikit-learn": [ + 92 + ], + "(using": [ + 93 + ], + "15": [ + 94 + ], + "classifiers,": [ + 95 + ], + "14": [ + 96 + ], + "methods,": [ + 99, + 104 + ], + "4": [ + 101 + ], + "data": [ + 102 + ], + "giving": [ + 105 + ], + "rise": [ + 106 + ], + "structured": [ + 109 + ], + "hypothesis": [ + 110 + ], + "space": [ + 111 + ], + "110": [ + 113 + ], + "hyperparameters).": [ + 114 + ], + "This": [ + 115 + ], + "system,": [ + 116 + ], + "which": [ + 117 + ], + "dub": [ + 119 + ], + "AUTO-SKLEARN,": [ + 120 + ], + "improves": [ + 121 + ], + "existing": [ + 123 + ], + "methods": [ + 125 + ], + "taking": [ + 128 + ], + "into": [ + 129, + 196 + ], + "account": [ + 130 + ], + "past": [ + 131 + ], + "performance": [ + 132, + 185 + ], + "similar": [ + 134 + ], + "datasets,": [ + 135 + ], + "constructing": [ + 138 + ], + "ensembles": [ + 139 + ], + "from": [ + 140 + ], + "models": [ + 142 + ], + "evaluated": [ + 143 + ], + "during": [ + 144 + ], + "optimization.": [ + 146 + ], + "Our": [ + 147 + ], + "won": [ + 149 + ], + "first": [ + 151 + ], + "phase": [ + 152 + ], + "ongoing": [ + 155 + ], + "ChaLearn": [ + 156 + ], + "challenge,": [ + 158 + ], + "our": [ + 160, + 191 + ], + "comprehensive": [ + 161 + ], + "analysis": [ + 162 + ], + "over": [ + 164 + ], + "100": [ + 165 + ], + "diverse": [ + 166 + ], + "datasets": [ + 167 + ], + "shows": [ + 168 + ], + "it": [ + 170 + ], + "substantially": [ + 171 + ], + "outperforms": [ + 172 + ], + "previous": [ + 174 + ], + "state": [ + 175 + ], + "art": [ + 178 + ], + "AutoML.": [ + 180 + ], + "We": [ + 181 + ], + "demonstrate": [ + 183 + ], + "gains": [ + 186 + ], + "due": [ + 187 + ], + "each": [ + 189 + ], + "contributions": [ + 192 + ], + "derive": [ + 194 + ], + "insights": [ + 195 + ], + "effectiveness": [ + 198 + ], + "individual": [ + 201 + ], + "components": [ + 202 + ], + "AUTO-SKLEARN.": [ + 204 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 61 + }, + { + "year": 2024, + "cited_by_count": 99 + }, + { + "year": 2023, + "cited_by_count": 134 + }, + { + "year": 2022, + "cited_by_count": 125 + }, + { + "year": 2021, + "cited_by_count": 221 + }, + { + "year": 2020, + "cited_by_count": 263 + }, + { + "year": 2019, + "cited_by_count": 217 + }, + { + "year": 2018, + "cited_by_count": 86 + }, + { + "year": 2017, + "cited_by_count": 34 + }, + { + "year": 2016, + "cited_by_count": 14 + }, + { + "year": 2015, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-14T08:36:36.166977", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1983989471", + "doi": "https://doi.org/10.1198/jasa.2008.s236", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 2478.1929, + "publication_year": 2008, + "publication_date": "2008-06-01", + "ids": { + "openalex": "https://openalex.org/W1983989471", + "doi": "https://doi.org/10.1198/jasa.2008.s236", + "mag": "1983989471" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1198/jasa.2008.s236", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/jasa.2008.s236", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4394736638", + "display_name": "Journal of the American Statistical Association", + "issn_l": "0162-1459", + "issn": [ + "0162-1459", + "1537-274X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of the American Statistical Association", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109482919", + "display_name": "Thomas Burr", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Thomas Burr", + "raw_affiliation_strings": [ + "Los Alamos National Laboratory", + "LOS Alamos National Laboratory" + ], + "affiliations": [ + { + "raw_affiliation_string": "Los Alamos National Laboratory", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + }, + { + "raw_affiliation_string": "LOS Alamos National Laboratory", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5109482919" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1343871089" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 47.4793, + "has_fulltext": false, + "cited_by_count": 1113, + "citation_normalized_percentile": { + "value": 0.99954397, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "103", + "issue": "482", + "first_page": "886", + "last_page": "887" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.98580002784729, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.98580002784729, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12761", + "display_name": "Data Stream Mining Techniques", + "score": 0.9822999835014343, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9811000227928162, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5010311603546143 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.4807431697845459 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.40664222836494446 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.374175488948822 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5010311603546143 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.4807431697845459 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.40664222836494446 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.374175488948822 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1198/jasa.2008.s236", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/jasa.2008.s236", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4394736638", + "display_name": "Journal of the American Statistical Association", + "issn_l": "0162-1459", + "issn": [ + "0162-1459", + "1537-274X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of the American Statistical Association", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W2009086942", + "https://openalex.org/W2019044526", + "https://openalex.org/W2078502317", + "https://openalex.org/W2090911498", + "https://openalex.org/W4237415315" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3209574120", + "https://openalex.org/W3107602296", + "https://openalex.org/W2033914206", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "\"Pattern": [ + 0 + ], + "Recognition": [ + 1 + ], + "and": [ + 2 + ], + "Machine": [ + 3 + ], + "Learning.\"": [ + 4 + ], + "Journal": [ + 5 + ], + "of": [ + 6 + ], + "the": [ + 7 + ], + "American": [ + 8 + ], + "Statistical": [ + 9 + ], + "Association,": [ + 10 + ], + "103(482),": [ + 11 + ], + "pp.": [ + 12 + ], + "886–887": [ + 13 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 6 + }, + { + "year": 2024, + "cited_by_count": 27 + }, + { + "year": 2023, + "cited_by_count": 55 + }, + { + "year": 2022, + "cited_by_count": 54 + }, + { + "year": 2021, + "cited_by_count": 97 + }, + { + "year": 2020, + "cited_by_count": 87 + }, + { + "year": 2019, + "cited_by_count": 133 + }, + { + "year": 2018, + "cited_by_count": 105 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 67 + }, + { + "year": 2015, + "cited_by_count": 75 + }, + { + "year": 2014, + "cited_by_count": 68 + }, + { + "year": 2013, + "cited_by_count": 73 + }, + { + "year": 2012, + "cited_by_count": 73 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2981679558", + "doi": "https://doi.org/10.1371/journal.pone.0224365", + "title": "Machine learning algorithm validation with a limited sample size", + "display_name": "Machine learning algorithm validation with a limited sample size", + "relevance_score": 2470.6013, + "publication_year": 2019, + "publication_date": "2019-11-07", + "ids": { + "openalex": "https://openalex.org/W2981679558", + "doi": "https://doi.org/10.1371/journal.pone.0224365", + "mag": "2981679558", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31697686" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058581210", + "display_name": "Andrius Vabalas", + "orcid": "https://orcid.org/0000-0002-0659-2890" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Andrius Vabalas", + "raw_affiliation_strings": [ + "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0002-0659-2890", + "affiliations": [ + { + "raw_affiliation_string": "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5054131595", + "display_name": "Emma Gowen", + "orcid": "https://orcid.org/0000-0003-4788-4280" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Emma Gowen", + "raw_affiliation_strings": [ + "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080441481", + "display_name": "Ellen Poliakoff", + "orcid": "https://orcid.org/0000-0003-4975-7787" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Ellen Poliakoff", + "raw_affiliation_strings": [ + "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5091104655", + "display_name": "Alexander J. Casson", + "orcid": "https://orcid.org/0000-0003-1408-1190" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Alexander J. Casson", + "raw_affiliation_strings": [ + "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5058581210" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I28407311" + ], + "apc_list": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "apc_paid": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "fwci": 44.2695, + "has_fulltext": true, + "cited_by_count": 1662, + "citation_normalized_percentile": { + "value": 0.99924832, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "14", + "issue": "11", + "first_page": "e0224365", + "last_page": "e0224365" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9955000281333923, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9955000281333923, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12859", + "display_name": "Cell Image Analysis Techniques", + "score": 0.9606000185012817, + "subfield": { + "id": "https://openalex.org/subfields/1304", + "display_name": "Biophysics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/overfitting", + "display_name": "Overfitting", + "score": 0.8499270677566528 + }, + { + "id": "https://openalex.org/keywords/sample-size-determination", + "display_name": "Sample size determination", + "score": 0.7672773003578186 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6191924810409546 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5842269062995911 + }, + { + "id": "https://openalex.org/keywords/cross-validation", + "display_name": "Cross-validation", + "score": 0.5098270773887634 + }, + { + "id": "https://openalex.org/keywords/data-collection", + "display_name": "Data collection", + "score": 0.4877827763557434 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4619005620479584 + }, + { + "id": "https://openalex.org/keywords/selection-bias", + "display_name": "Selection bias", + "score": 0.438579261302948 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.43803805112838745 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.41916215419769287 + }, + { + "id": "https://openalex.org/keywords/feature-selection", + "display_name": "Feature selection", + "score": 0.412355899810791 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.39342644810676575 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.35772329568862915 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.23591920733451843 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1789134442806244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C22019652", + "wikidata": "https://www.wikidata.org/wiki/Q331309", + "display_name": "Overfitting", + "level": 3, + "score": 0.8499270677566528 + }, + { + "id": "https://openalex.org/C129848803", + "wikidata": "https://www.wikidata.org/wiki/Q2564360", + "display_name": "Sample size determination", + "level": 2, + "score": 0.7672773003578186 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6191924810409546 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5842269062995911 + }, + { + "id": "https://openalex.org/C27181475", + "wikidata": "https://www.wikidata.org/wiki/Q541014", + "display_name": "Cross-validation", + "level": 2, + "score": 0.5098270773887634 + }, + { + "id": "https://openalex.org/C133462117", + "wikidata": "https://www.wikidata.org/wiki/Q4929239", + "display_name": "Data collection", + "level": 2, + "score": 0.4877827763557434 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4619005620479584 + }, + { + "id": "https://openalex.org/C40423286", + "wikidata": "https://www.wikidata.org/wiki/Q284172", + "display_name": "Selection bias", + "level": 2, + "score": 0.438579261302948 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.43803805112838745 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.41916215419769287 + }, + { + "id": "https://openalex.org/C148483581", + "wikidata": "https://www.wikidata.org/wiki/Q446488", + "display_name": "Feature selection", + "level": 2, + "score": 0.412355899810791 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.39342644810676575 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.35772329568862915 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.23591920733451843 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1789134442806244 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + } + ], + "locations_count": 8, + "locations": [ + { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + { + "id": "pmid:31697686", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31697686", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PloS one", + "raw_type": null + }, + { + "id": "pmh:oai:pure.atira.dk:openaire/46636137-42f8-46a3-82e2-565843dbc92a", + "is_oa": true, + "landing_page_url": "https://research.manchester.ac.uk/en/publications/46636137-42f8-46a3-82e2-565843dbc92a", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400662", + "display_name": "Research Explorer (The University of Manchester)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I28407311", + "host_organization_name": "University of Manchester", + "host_organization_lineage": [ + "https://openalex.org/I28407311" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Vabalas, A, Gowen, E, Poliakoff, E & Casson, A 2020, 'Machine learning algorithm validation with a limited sample size', P L o S One, vol. 14, no. 11, e0224365. https://doi.org/10.1371/journal.pone.0224365", + "raw_type": "info:eu-repo/semantics/publishedVersion" + }, + { + "id": "pmh:oai:RePEc:plo:pone00:0224365", + "is_oa": false, + "landing_page_url": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0224365", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:doaj.org/article:df3153cdf6ba4ecc9e209347e26d9f38", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/df3153cdf6ba4ecc9e209347e26d9f38", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS ONE, Vol 14, Iss 11, p e0224365 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:figshare.com:article/10268015", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/dataset/Machine_learning_algorithm_validation_with_a_limited_sample_size/10268015", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Dataset" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6837442", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6837442", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS One", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pure.atira.dk:publications/46636137-42f8-46a3-82e2-565843dbc92a", + "is_oa": true, + "landing_page_url": "https://www.research.manchester.ac.uk/portal/en/publications/machine-learning-algorithm-validation-with-a-limited-sample-size(46636137-42f8-46a3-82e2-565843dbc92a).html", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400662", + "display_name": "Research Explorer (The University of Manchester)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I28407311", + "host_organization_name": "University of Manchester", + "host_organization_lineage": [ + "https://openalex.org/I28407311" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Vabalas, A, Gowen, E, Poliakoff, E & Casson, A 2020, 'Machine learning algorithm validation with a limited sample size', P L o S One, vol. 14, no. 11, e0224365. https://doi.org/10.1371/journal.pone.0224365", + "raw_type": "info:eu-repo/semantics/publishedVersion" + } + ], + "best_oa_location": { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "id": "https://metadata.un.org/sdg/10", + "score": 0.6899999976158142, + "display_name": "Reduced inequalities" + } + ], + "awards": [ + { + "id": "https://openalex.org/G1969528513", + "display_name": null, + "funder_award_id": "1830965", + "funder_id": "https://openalex.org/F4320334627", + "funder_display_name": "Engineering and Physical Sciences Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320320291", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27" + }, + { + "id": "https://openalex.org/F4320334627", + "display_name": "Engineering and Physical Sciences Research Council", + "ror": "https://ror.org/0439y7842" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 33, + "referenced_works": [ + "https://openalex.org/W7299809", + "https://openalex.org/W1493357981", + "https://openalex.org/W1505191356", + "https://openalex.org/W1988975411", + "https://openalex.org/W2002645541", + "https://openalex.org/W2031167046", + "https://openalex.org/W2061553036", + "https://openalex.org/W2065283057", + "https://openalex.org/W2077991879", + "https://openalex.org/W2082704080", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092095117", + "https://openalex.org/W2092444470", + "https://openalex.org/W2101234009", + "https://openalex.org/W2112081648", + "https://openalex.org/W2119155327", + "https://openalex.org/W2119387367", + "https://openalex.org/W2132886902", + "https://openalex.org/W2136487516", + "https://openalex.org/W2141007997", + "https://openalex.org/W2142594886", + "https://openalex.org/W2143426320", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154290668", + "https://openalex.org/W2154776925", + "https://openalex.org/W2310177520", + "https://openalex.org/W2421101021", + "https://openalex.org/W2552047097", + "https://openalex.org/W2917871264", + "https://openalex.org/W2963389298", + "https://openalex.org/W3120421331", + "https://openalex.org/W3139562178", + "https://openalex.org/W6675354045" + ], + "related_works": [ + "https://openalex.org/W4362597605", + "https://openalex.org/W1574414179", + "https://openalex.org/W4297676672", + "https://openalex.org/W3009056573", + "https://openalex.org/W2922073769", + "https://openalex.org/W4281702477", + "https://openalex.org/W3155717344", + "https://openalex.org/W1770458422", + "https://openalex.org/W2801469686", + "https://openalex.org/W2149651625" + ], + "abstract_inverted_index": { + "Advances": [ + 0 + ], + "in": [ + 1 + ], + "neuroimaging,": [ + 2 + ], + "genomic,": [ + 3 + ], + "motion": [ + 4 + ], + "tracking,": [ + 5 + ], + "eye-tracking": [ + 6 + ], + "and": [ + 7, + 59, + 62, + 140, + 153, + 159, + 178, + 201, + 208, + 230 + ], + "many": [ + 8 + ], + "other": [ + 9, + 237 + ], + "technology-based": [ + 10 + ], + "data": [ + 11, + 38, + 45, + 180, + 197 + ], + "collection": [ + 12, + 39 + ], + "methods": [ + 13, + 117, + 210 + ], + "have": [ + 14, + 25, + 81, + 104 + ], + "led": [ + 15 + ], + "to": [ + 16, + 69, + 84, + 183, + 194, + 220, + 232 + ], + "a": [ + 17, + 26, + 47 + ], + "torrent": [ + 18 + ], + "of": [ + 19, + 29, + 32, + 37, + 50, + 53, + 78, + 115, + 149, + 164, + 203, + 236 + ], + "high": [ + 20, + 35 + ], + "dimensional": [ + 21, + 44 + ], + "datasets,": [ + 22 + ], + "which": [ + 23, + 80, + 118 + ], + "commonly": [ + 24 + ], + "small": [ + 27, + 48, + 92, + 137, + 228 + ], + "number": [ + 28, + 49, + 202 + ], + "samples": [ + 30, + 51 + ], + "because": [ + 31 + ], + "the": [ + 33, + 113, + 141, + 192, + 234 + ], + "intrinsic": [ + 34 + ], + "cost": [ + 36 + ], + "involving": [ + 40 + ], + "human": [ + 41 + ], + "participants.": [ + 42 + ], + "High": [ + 43 + ], + "with": [ + 46, + 97, + 136, + 146, + 213, + 227 + ], + "is": [ + 52, + 95, + 143, + 181 + ], + "critical": [ + 54 + ], + "importance": [ + 55 + ], + "for": [ + 56 + ], + "identifying": [ + 57 + ], + "biomarkers": [ + 58 + ], + "conducting": [ + 60 + ], + "feasibility": [ + 61 + ], + "pilot": [ + 63 + ], + "work,": [ + 64 + ], + "however": [ + 65 + ], + "it": [ + 66 + ], + "can": [ + 67 + ], + "lead": [ + 68 + ], + "biased": [ + 70, + 133 + ], + "machine": [ + 71 + ], + "learning": [ + 72 + ], + "(ML)": [ + 73 + ], + "performance": [ + 74, + 134, + 161 + ], + "estimates.": [ + 75 + ], + "Our": [ + 76, + 124 + ], + "review": [ + 77 + ], + "studies": [ + 79, + 238 + ], + "applied": [ + 82 + ], + "ML": [ + 83 + ], + "predict": [ + 85 + ], + "autistic": [ + 86 + ], + "from": [ + 87 + ], + "non-autistic": [ + 88 + ], + "individuals": [ + 89 + ], + "showed": [ + 90 + ], + "that": [ + 91, + 127, + 170 + ], + "sample": [ + 93, + 138, + 147, + 165 + ], + "size": [ + 94, + 148 + ], + "associated": [ + 96 + ], + "higher": [ + 98 + ], + "reported": [ + 99 + ], + "classification": [ + 100 + ], + "accuracy.": [ + 101 + ], + "Thus,": [ + 102 + ], + "we": [ + 103 + ], + "investigated": [ + 105 + ], + "whether": [ + 106 + ], + "this": [ + 107 + ], + "bias": [ + 108, + 142, + 184, + 195 + ], + "could": [ + 109 + ], + "be": [ + 110 + ], + "caused": [ + 111 + ], + "by": [ + 112, + 196 + ], + "use": [ + 114 + ], + "validation": [ + 116, + 209, + 242 + ], + "do": [ + 119 + ], + "not": [ + 120 + ], + "sufficiently": [ + 121 + ], + "control": [ + 122 + ], + "overfitting.": [ + 123 + ], + "simulations": [ + 125 + ], + "show": [ + 126, + 169 + ], + "K-fold": [ + 128 + ], + "Cross-Validation": [ + 129 + ], + "(CV)": [ + 130 + ], + "produces": [ + 131 + ], + "strongly": [ + 132 + ], + "estimates": [ + 135, + 162 + ], + "sizes,": [ + 139 + ], + "still": [ + 144 + ], + "evident": [ + 145 + ], + "1000.": [ + 150 + ], + "Nested": [ + 151 + ], + "CV": [ + 152, + 204 + ], + "train/test": [ + 154 + ], + "split": [ + 155 + ], + "approaches": [ + 156 + ], + "produce": [ + 157 + ], + "robust": [ + 158, + 222 + ], + "unbiased": [ + 160 + ], + "regardless": [ + 163 + ], + "size.": [ + 166 + ], + "We": [ + 167 + ], + "also": [ + 168 + ], + "feature": [ + 171 + ], + "selection": [ + 172 + ], + "if": [ + 173 + ], + "performed": [ + 174 + ], + "on": [ + 175, + 240 + ], + "pooled": [ + 176 + ], + "training": [ + 177 + ], + "testing": [ + 179, + 223 + ], + "contributing": [ + 182 + ], + "considerably": [ + 185 + ], + "more": [ + 186 + ], + "than": [ + 187 + ], + "parameter": [ + 188 + ], + "tuning.": [ + 189 + ], + "In": [ + 190 + ], + "addition,": [ + 191 + ], + "contribution": [ + 193 + ], + "dimensionality,": [ + 198 + ], + "hyper-parameter": [ + 199 + ], + "space": [ + 200 + ], + "folds": [ + 205 + ], + "was": [ + 206, + 244 + ], + "explored,": [ + 207 + ], + "were": [ + 211 + ], + "compared": [ + 212 + ], + "discriminable": [ + 214 + ], + "data.": [ + 215 + ], + "The": [ + 216 + ], + "results": [ + 217, + 235 + ], + "suggest": [ + 218 + ], + "how": [ + 219, + 231 + ], + "design": [ + 221 + ], + "methodologies": [ + 224 + ], + "when": [ + 225 + ], + "working": [ + 226 + ], + "datasets": [ + 229 + ], + "interpret": [ + 233 + ], + "based": [ + 239 + ], + "what": [ + 241 + ], + "method": [ + 243 + ], + "used.": [ + 245 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 179 + }, + { + "year": 2025, + "cited_by_count": 330 + }, + { + "year": 2024, + "cited_by_count": 338 + }, + { + "year": 2023, + "cited_by_count": 299 + }, + { + "year": 2022, + "cited_by_count": 267 + }, + { + "year": 2021, + "cited_by_count": 176 + }, + { + "year": 2020, + "cited_by_count": 70 + }, + { + "year": 2019, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4299828299", + "doi": "https://doi.org/10.48550/arxiv.1207.4676", + "title": "Proceedings of the 29th International Conference on Machine Learning (ICML-12)", + "display_name": "Proceedings of the 29th International Conference on Machine Learning (ICML-12)", + "relevance_score": 2468.407, + "publication_year": 2012, + "publication_date": "2012-07-19", + "ids": { + "openalex": "https://openalex.org/W4299828299", + "doi": "https://doi.org/10.48550/arxiv.1207.4676" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1207.4676", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5005003250", + "display_name": "John Langford", + "orcid": "https://orcid.org/0000-0002-9811-3550" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801032651", + "display_name": "Council of Science Editors", + "ror": "https://ror.org/007cr8911", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I2801032651" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Langford, John", + "raw_affiliation_strings": [ + "Editors" + ], + "affiliations": [ + { + "raw_affiliation_string": "Editors", + "institution_ids": [ + "https://openalex.org/I2801032651" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5080591144", + "display_name": "Joëlle Pineau", + "orcid": "https://orcid.org/0000-0003-0747-7250" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801032651", + "display_name": "Council of Science Editors", + "ror": "https://ror.org/007cr8911", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I2801032651" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Pineau, Joelle", + "raw_affiliation_strings": [ + "Editors" + ], + "affiliations": [ + { + "raw_affiliation_string": "Editors", + "institution_ids": [ + "https://openalex.org/I2801032651" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5005003250" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2801032651" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 1618, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10181", + "display_name": "Natural Language Processing Techniques", + "score": 0.6305000185966492, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10181", + "display_name": "Natural Language Processing Techniques", + "score": 0.6305000185966492, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5253459811210632 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.3677058815956116 + }, + { + "id": "https://openalex.org/keywords/forestry", + "display_name": "Forestry", + "score": 0.32110482454299927 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.18688607215881348 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5253459811210632 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.3677058815956116 + }, + { + "id": "https://openalex.org/C97137747", + "wikidata": "https://www.wikidata.org/wiki/Q38112", + "display_name": "Forestry", + "level": 1, + "score": 0.32110482454299927 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.18688607215881348 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1207.4676", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1207.4676", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W2383882895", + "https://openalex.org/W3111098267", + "https://openalex.org/W2370206093", + "https://openalex.org/W264709706", + "https://openalex.org/W2375009411", + "https://openalex.org/W2371019958", + "https://openalex.org/W2092269694", + "https://openalex.org/W2063002724", + "https://openalex.org/W3150437343" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "is": [ + 1 + ], + "an": [ + 2 + ], + "index": [ + 3 + ], + "to": [ + 4 + ], + "the": [ + 5, + 10, + 13 + ], + "papers": [ + 6 + ], + "that": [ + 7 + ], + "appear": [ + 8 + ], + "in": [ + 9, + 25 + ], + "Proceedings": [ + 11 + ], + "of": [ + 12 + ], + "29th": [ + 14 + ], + "International": [ + 15 + ], + "Conference": [ + 16 + ], + "on": [ + 17 + ], + "Machine": [ + 18 + ], + "Learning": [ + 19 + ], + "(ICML-12).": [ + 20 + ], + "The": [ + 21 + ], + "conference": [ + 22 + ], + "was": [ + 23 + ], + "held": [ + 24 + ], + "Edinburgh,": [ + 26 + ], + "Scotland,": [ + 27 + ], + "June": [ + 28 + ], + "27th": [ + 29 + ], + "-": [ + 30 + ], + "July": [ + 31 + ], + "3rd,": [ + 32 + ], + "2012.": [ + 33 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 100 + }, + { + "year": 2024, + "cited_by_count": 136 + }, + { + "year": 2023, + "cited_by_count": 155 + }, + { + "year": 2022, + "cited_by_count": 120 + }, + { + "year": 2021, + "cited_by_count": 86 + }, + { + "year": 2020, + "cited_by_count": 167 + }, + { + "year": 2019, + "cited_by_count": 218 + }, + { + "year": 2018, + "cited_by_count": 146 + }, + { + "year": 2017, + "cited_by_count": 177 + }, + { + "year": 2016, + "cited_by_count": 136 + }, + { + "year": 2015, + "cited_by_count": 76 + }, + { + "year": 2014, + "cited_by_count": 49 + }, + { + "year": 2013, + "cited_by_count": 37 + }, + { + "year": 2012, + "cited_by_count": 15 + } + ], + "updated_date": "2026-04-24T08:23:43.765630", + "created_date": "2025-10-10T00:00:00" + } +] \ No newline at end of file diff --git a/data/raw/openalex_20260601_190825.json b/data/raw/openalex_20260601_190825.json new file mode 100644 index 000000000..7c435eaf0 --- /dev/null +++ b/data/raw/openalex_20260601_190825.json @@ -0,0 +1,111089 @@ +[ + { + "id": "https://openalex.org/W2101234009", + "doi": "https://doi.org/10.48550/arxiv.1201.0490", + "title": "Scikit-learn: Machine Learning in Python", + "display_name": "Scikit-learn: Machine Learning in Python", + "relevance_score": 17397.934, + "publication_year": 2012, + "publication_date": "2012-01-02", + "ids": { + "openalex": "https://openalex.org/W2101234009", + "doi": "https://doi.org/10.48550/arxiv.1201.0490", + "mag": "2101234009" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1201.0490", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5105141183", + "display_name": "Fabián Pedregosa", + "orcid": "https://orcid.org/0000-0003-4025-3953" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": true, + "raw_author_name": "Pedregosa, Fabian", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074733625", + "display_name": "Gaël Varoquaux", + "orcid": "https://orcid.org/0000-0003-1076-5122" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Varoquaux, Gaël", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018256474", + "display_name": "Alexandre Gramfort", + "orcid": "https://orcid.org/0000-0001-9791-4404" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Gramfort, Alexandre", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027430303", + "display_name": "Vincent Michel", + "orcid": "https://orcid.org/0000-0002-7025-4343" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Michel, Vincent", + "raw_affiliation_strings": [ + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026762833", + "display_name": "Bertrand Thirion", + "orcid": "https://orcid.org/0000-0001-5018-7895" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Thirion, Bertrand", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5112700874", + "display_name": "Olivier Grisel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131947", + "display_name": "Nuxe (France)", + "ror": "https://ror.org/02m7qby09", + "country_code": "FR", + "type": "company", + "lineage": [ + "https://openalex.org/I4210131947" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Grisel, Olivier", + "raw_affiliation_strings": [ + "Nuxeo (18-20 rue Soleillet 75020 Paris - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Nuxeo (18-20 rue Soleillet 75020 Paris - France)", + "institution_ids": [ + "https://openalex.org/I4210131947" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5049123454", + "display_name": "Mathieu Blondel", + "orcid": "https://orcid.org/0000-0002-2366-2993" + }, + "institutions": [ + { + "id": "https://openalex.org/I65837984", + "display_name": "Kobe University", + "ror": "https://ror.org/03tgsfw79", + "country_code": "JP", + "type": "education", + "lineage": [ + "https://openalex.org/I65837984" + ] + } + ], + "countries": [ + "JP" + ], + "is_corresponding": false, + "raw_author_name": "Blondel, Mathieu", + "raw_affiliation_strings": [ + "Kobe University (Japan)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Kobe University (Japan)", + "institution_ids": [ + "https://openalex.org/I65837984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Müller, Andreas", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I51441396", + "display_name": "Bauhaus-Universität Weimar", + "ror": "https://ror.org/033bb5z47", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I51441396" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Müller, Andreas", + "raw_affiliation_strings": [ + "Bauhaus-Universität Weimar (Geschwister-Scholl-Straße 8 99423 Weimar - Germany)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Bauhaus-Universität Weimar (Geschwister-Scholl-Straße 8 99423 Weimar - Germany)", + "institution_ids": [ + "https://openalex.org/I51441396" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Nothman, Joel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210148186", + "display_name": "Google (Canada)", + "ror": "https://ror.org/04d06q394", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969", + "https://openalex.org/I4210148186" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Nothman, Joel", + "raw_affiliation_strings": [ + "Google Inc (Toronto - Canada)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc (Toronto - Canada)", + "institution_ids": [ + "https://openalex.org/I4210148186" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Louppe, Gilles", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Louppe, Gilles", + "raw_affiliation_strings": [ + "LAMI - Laboratoire de Mécanique et Ingénieries (IFMA. Campus des Cézeaux BP 265 63175 Aubière Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LAMI - Laboratoire de Mécanique et Ingénieries (IFMA. Campus des Cézeaux BP 265 63175 Aubière Cedex - France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088660184", + "display_name": "Peter Prettenhofer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Prettenhofer, Peter", + "raw_affiliation_strings": [ + "University of Washington [Seattle] (Seattle, Washington 98105 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Washington [Seattle] (Seattle, Washington 98105 - United States)", + "institution_ids": [ + "https://openalex.org/I201448701" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5103273436", + "display_name": "Ron J. Weiss", + "orcid": "https://orcid.org/0000-0003-2010-4053" + }, + "institutions": [ + { + "id": "https://openalex.org/I177605424", + "display_name": "Amherst College", + "ror": "https://ror.org/028vqfs63", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I177605424" + ] + }, + { + "id": "https://openalex.org/I24603500", + "display_name": "University of Massachusetts Amherst", + "ror": "https://ror.org/0072zz521", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I24603500" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Weiss, Ron", + "raw_affiliation_strings": [ + "Department of Mechanical and Industrial Engineering [UMass] (UMass Amherst College of Engineering Department of Mechanical and Industrial Engineering, 220 ELAB, University of Massachusetts Amherst, MA 01003-2210 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Mechanical and Industrial Engineering [UMass] (UMass Amherst College of Engineering Department of Mechanical and Industrial Engineering, 220 ELAB, University of Massachusetts Amherst, MA 01003-2210 - United States)", + "institution_ids": [ + "https://openalex.org/I177605424", + "https://openalex.org/I24603500" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031324436", + "display_name": "Vincent Dubourg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210121859", + "display_name": "Enthought (United States)", + "ror": "https://ror.org/02xfc1977", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210121859" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dubourg, Vincent", + "raw_affiliation_strings": [ + "Enthought Inc (515 Congress Avenue Suite 2100 Austin, TX 78701 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Enthought Inc (515 Congress Avenue Suite 2100 Austin, TX 78701 - United States)", + "institution_ids": [ + "https://openalex.org/I4210121859" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5038304150", + "display_name": "Jake Vanderplas", + "orcid": "https://orcid.org/0000-0002-9623-3401" + }, + "institutions": [ + { + "id": "https://openalex.org/I103084370", + "display_name": "Total (France)", + "ror": "https://ror.org/04sk34n56", + "country_code": "FR", + "type": "company", + "lineage": [ + "https://openalex.org/I103084370" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Vanderplas, Jake", + "raw_affiliation_strings": [ + "TOTAL S.A. (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "TOTAL S.A. (France)", + "institution_ids": [ + "https://openalex.org/I103084370" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5034029772", + "display_name": "Alexandre Passos", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Passos, Alexandre", + "raw_affiliation_strings": [ + "LNAO (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5023051838", + "display_name": "David Cournapeau", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Cournapeau, David", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050910015", + "display_name": "Matthieu Brucher", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Brucher, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107933380", + "display_name": "Matthieu Perrot", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Perrot, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5007095962", + "display_name": "Édouard Duchesnay", + "orcid": "https://orcid.org/0000-0002-4073-3490" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Duchesnay, Édouard", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 5, + "institutions_distinct_count": 19, + "corresponding_author_ids": [ + "https://openalex.org/A5105141183" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 63665, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8748029470443726 + }, + { + "id": "https://openalex.org/keywords/documentation", + "display_name": "Documentation", + "score": 0.834846019744873 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7323822975158691 + }, + { + "id": "https://openalex.org/keywords/mit-license", + "display_name": "MIT License", + "score": 0.5501254796981812 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.511991560459137 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.43965548276901245 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.397538423538208 + }, + { + "id": "https://openalex.org/keywords/license", + "display_name": "License", + "score": 0.35676372051239014 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.34812211990356445 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.18154305219650269 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8748029470443726 + }, + { + "id": "https://openalex.org/C56666940", + "wikidata": "https://www.wikidata.org/wiki/Q788790", + "display_name": "Documentation", + "level": 2, + "score": 0.834846019744873 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7323822975158691 + }, + { + "id": "https://openalex.org/C174183944", + "wikidata": "https://www.wikidata.org/wiki/Q334661", + "display_name": "MIT License", + "level": 3, + "score": 0.5501254796981812 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.511991560459137 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.43965548276901245 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.397538423538208 + }, + { + "id": "https://openalex.org/C2780560020", + "wikidata": "https://www.wikidata.org/wiki/Q79719", + "display_name": "License", + "level": 2, + "score": 0.35676372051239014 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.34812211990356445 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.18154305219650269 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:orbi.ulg.ac.be:2268/225787", + "is_oa": true, + "landing_page_url": "https://orbi.uliege.be/handle/2268/225787", + "pdf_url": "https://orbi.uliege.be/handle/2268/225787", + "source": { + "id": "https://openalex.org/S4306400651", + "display_name": "Open Repository and Bibliography (University of Liège)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157674565", + "host_organization_name": "University of Liège", + "host_organization_lineage": [ + "https://openalex.org/I157674565" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research, 1201 (2012-01-02)", + "raw_type": "peer reviewed" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.763.4227", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.763.4227", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://arxiv.org/pdf/1201.0490.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-00650905v2", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-00650905", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research, 2011", + "raw_type": "Journal articles" + }, + { + "id": "doi:10.48550/arxiv.1201.0490", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1201.0490", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article-journal" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.4399999976158142 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 13, + "referenced_works": [ + "https://openalex.org/W1496508106", + "https://openalex.org/W1571024744", + "https://openalex.org/W2024933578", + "https://openalex.org/W2035776949", + "https://openalex.org/W2040387238", + "https://openalex.org/W2047804403", + "https://openalex.org/W2063978378", + "https://openalex.org/W2097360283", + "https://openalex.org/W2097850441", + "https://openalex.org/W2118585731", + "https://openalex.org/W2146292423", + "https://openalex.org/W2152799677", + "https://openalex.org/W2153635508" + ], + "related_works": [ + "https://openalex.org/W2036021480", + "https://openalex.org/W2207495067", + "https://openalex.org/W1906486629", + "https://openalex.org/W2132241624", + "https://openalex.org/W4392173297", + "https://openalex.org/W4311683883", + "https://openalex.org/W4212902261", + "https://openalex.org/W2546377002", + "https://openalex.org/W4221030787", + "https://openalex.org/W2790811106" + ], + "abstract_inverted_index": { + "Scikit-learn": [ + 0 + ], + "is": [ + 1, + 35, + 51 + ], + "a": [ + 2, + 6, + 30 + ], + "Python": [ + 3 + ], + "module": [ + 4 + ], + "integrating": [ + 5 + ], + "wide": [ + 7 + ], + "range": [ + 8 + ], + "of": [ + 9, + 39 + ], + "state-of-the-art": [ + 10 + ], + "machine": [ + 11, + 25 + ], + "learning": [ + 12, + 26 + ], + "algorithms": [ + 13 + ], + "for": [ + 14 + ], + "medium-scale": [ + 15 + ], + "supervised": [ + 16 + ], + "and": [ + 17, + 43, + 50, + 64, + 70 + ], + "unsupervised": [ + 18 + ], + "problems.": [ + 19 + ], + "This": [ + 20 + ], + "package": [ + 21 + ], + "focuses": [ + 22 + ], + "on": [ + 23, + 37 + ], + "bringing": [ + 24 + ], + "to": [ + 27 + ], + "non-specialists": [ + 28 + ], + "using": [ + 29 + ], + "general-purpose": [ + 31 + ], + "high-level": [ + 32 + ], + "language.": [ + 33 + ], + "Emphasis": [ + 34 + ], + "put": [ + 36 + ], + "ease": [ + 38 + ], + "use,": [ + 40 + ], + "performance,": [ + 41 + ], + "documentation,": [ + 42 + ], + "API": [ + 44 + ], + "consistency.": [ + 45 + ], + "It": [ + 46 + ], + "has": [ + 47 + ], + "minimal": [ + 48 + ], + "dependencies": [ + 49 + ], + "distributed": [ + 52 + ], + "under": [ + 53 + ], + "the": [ + 54 + ], + "simplified": [ + 55 + ], + "BSD": [ + 56 + ], + "license,": [ + 57 + ], + "encouraging": [ + 58 + ], + "its": [ + 59 + ], + "use": [ + 60 + ], + "in": [ + 61 + ], + "both": [ + 62 + ], + "academic": [ + 63 + ], + "commercial": [ + 65 + ], + "settings.": [ + 66 + ], + "Source": [ + 67 + ], + "code,": [ + 68 + ], + "binaries,": [ + 69 + ], + "documentation": [ + 71 + ], + "can": [ + 72 + ], + "be": [ + 73 + ], + "downloaded": [ + 74 + ], + "from": [ + 75 + ], + "http://scikit-learn.org.": [ + 76 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 232 + }, + { + "year": 2025, + "cited_by_count": 3190 + }, + { + "year": 2024, + "cited_by_count": 7800 + }, + { + "year": 2023, + "cited_by_count": 8518 + }, + { + "year": 2022, + "cited_by_count": 7941 + }, + { + "year": 2021, + "cited_by_count": 10725 + }, + { + "year": 2020, + "cited_by_count": 8605 + }, + { + "year": 2019, + "cited_by_count": 6020 + }, + { + "year": 2018, + "cited_by_count": 4131 + }, + { + "year": 2017, + "cited_by_count": 2623 + }, + { + "year": 2016, + "cited_by_count": 1692 + }, + { + "year": 2015, + "cited_by_count": 1075 + }, + { + "year": 2014, + "cited_by_count": 632 + }, + { + "year": 2013, + "cited_by_count": 267 + }, + { + "year": 2012, + "cited_by_count": 80 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3023540311", + "doi": "https://doi.org/10.5860/choice.27-0936", + "title": "Genetic algorithms in search, optimization, and machine learning", + "display_name": "Genetic algorithms in search, optimization, and machine learning", + "relevance_score": 12391.868, + "publication_year": 1989, + "publication_date": "1989-10-01", + "ids": { + "openalex": "https://openalex.org/W3023540311", + "doi": "https://doi.org/10.5860/choice.27-0936", + "mag": "3023540311" + }, + "language": "en", + "primary_location": { + "id": "doi:10.5860/choice.27-0936", + "is_oa": false, + "landing_page_url": "https://doi.org/10.5860/choice.27-0936", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764375719", + "display_name": "Choice Reviews Online", + "issn_l": "0009-4978", + "issn": [ + "0009-4978", + "1523-8253", + "1943-5975" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310316146", + "host_organization_name": "Association of College and Research Libraries", + "host_organization_lineage": [ + "https://openalex.org/P4310316146", + "https://openalex.org/P4310315903" + ], + "host_organization_lineage_names": [ + "Association of College and Research Libraries", + "American Library Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Choice Reviews Online", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 216.8325, + "has_fulltext": false, + "cited_by_count": 49332, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "27", + "issue": "02", + "first_page": "27", + "last_page": "0936" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6865000128746033, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6865000128746033, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.64090496301651 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4825281798839569 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4684337079524994 + }, + { + "id": "https://openalex.org/keywords/quality-control-and-genetic-algorithms", + "display_name": "Quality control and genetic algorithms", + "score": 0.4515381157398224 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.39135777950286865 + }, + { + "id": "https://openalex.org/keywords/genetic-algorithm", + "display_name": "Genetic algorithm", + "score": 0.37594497203826904 + }, + { + "id": "https://openalex.org/keywords/meta-optimization", + "display_name": "Meta-optimization", + "score": 0.18808576464653015 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.64090496301651 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4825281798839569 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4684337079524994 + }, + { + "id": "https://openalex.org/C161164918", + "wikidata": "https://www.wikidata.org/wiki/Q7268775", + "display_name": "Quality control and genetic algorithms", + "level": 4, + "score": 0.4515381157398224 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.39135777950286865 + }, + { + "id": "https://openalex.org/C8880873", + "wikidata": "https://www.wikidata.org/wiki/Q187787", + "display_name": "Genetic algorithm", + "level": 2, + "score": 0.37594497203826904 + }, + { + "id": "https://openalex.org/C4935549", + "wikidata": "https://www.wikidata.org/wiki/Q6822261", + "display_name": "Meta-optimization", + "level": 3, + "score": 0.18808576464653015 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.5860/choice.27-0936", + "is_oa": false, + "landing_page_url": "https://doi.org/10.5860/choice.27-0936", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764375719", + "display_name": "Choice Reviews Online", + "issn_l": "0009-4978", + "issn": [ + "0009-4978", + "1523-8253", + "1943-5975" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310316146", + "host_organization_name": "Association of College and Research Libraries", + "host_organization_lineage": [ + "https://openalex.org/P4310316146", + "https://openalex.org/P4310315903" + ], + "host_organization_lineage_names": [ + "Association of College and Research Libraries", + "American Library Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Choice Reviews Online", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.800000011920929 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W2030843598", + "https://openalex.org/W2381755277", + "https://openalex.org/W4360996914", + "https://openalex.org/W2509607449", + "https://openalex.org/W1608872107", + "https://openalex.org/W2786126153", + "https://openalex.org/W2360904702" + ], + "abstract_inverted_index": { + "From": [ + 0 + ], + "the": [ + 1, + 14 + ], + "Publisher:\r\nThis": [ + 2 + ], + "book": [ + 3 + ], + "brings": [ + 4 + ], + "together": [ + 5 + ], + "-": [ + 6, + 13 + ], + "in": [ + 7, + 35 + ], + "an": [ + 8 + ], + "informal": [ + 9 + ], + "and": [ + 10, + 19, + 27, + 45, + 63, + 70 + ], + "tutorial": [ + 11 + ], + "fashion": [ + 12 + ], + "computer": [ + 15, + 52, + 68 + ], + "techniques,": [ + 16 + ], + "mathematical": [ + 17 + ], + "tools,": [ + 18 + ], + "research": [ + 20 + ], + "results": [ + 21 + ], + "that": [ + 22 + ], + "will": [ + 23 + ], + "enable": [ + 24 + ], + "both": [ + 25 + ], + "students": [ + 26 + ], + "practitioners": [ + 28 + ], + "to": [ + 29, + 33 + ], + "apply": [ + 30 + ], + "genetic": [ + 31 + ], + "algorithms": [ + 32, + 47 + ], + "problems": [ + 34 + ], + "many": [ + 36 + ], + "fields.": [ + 37 + ], + "\r\n\r\nMajor": [ + 38 + ], + "concepts": [ + 39 + ], + "are": [ + 40, + 48 + ], + "illustrated": [ + 41, + 49 + ], + "with": [ + 42 + ], + "running": [ + 43 + ], + "examples,": [ + 44 + ], + "major": [ + 46 + ], + "by": [ + 50 + ], + "Pascal": [ + 51 + ], + "programs.": [ + 53 + ], + "No": [ + 54 + ], + "prior": [ + 55 + ], + "knowledge": [ + 56 + ], + "of": [ + 57, + 67 + ], + "GAs": [ + 58 + ], + "or": [ + 59 + ], + "genetics": [ + 60 + ], + "is": [ + 61, + 73 + ], + "assumed,": [ + 62 + ], + "only": [ + 64 + ], + "a": [ + 65 + ], + "minimum": [ + 66 + ], + "programming": [ + 69 + ], + "mathematics": [ + 71 + ], + "background": [ + 72 + ], + "required.": [ + 74 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 6 + }, + { + "year": 2025, + "cited_by_count": 311 + }, + { + "year": 2024, + "cited_by_count": 480 + }, + { + "year": 2023, + "cited_by_count": 736 + }, + { + "year": 2022, + "cited_by_count": 722 + }, + { + "year": 2021, + "cited_by_count": 1091 + }, + { + "year": 2020, + "cited_by_count": 1203 + }, + { + "year": 2019, + "cited_by_count": 1219 + }, + { + "year": 2018, + "cited_by_count": 1396 + }, + { + "year": 2017, + "cited_by_count": 1475 + }, + { + "year": 2016, + "cited_by_count": 1729 + }, + { + "year": 2015, + "cited_by_count": 1774 + }, + { + "year": 2014, + "cited_by_count": 2001 + }, + { + "year": 2013, + "cited_by_count": 2166 + }, + { + "year": 2012, + "cited_by_count": 2360 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2125055259", + "doi": null, + "title": "C4.5: Programs for Machine Learning", + "display_name": "C4.5: Programs for Machine Learning", + "relevance_score": 10836.938, + "publication_year": 1992, + "publication_date": "1992-10-15", + "ids": { + "openalex": "https://openalex.org/W2125055259", + "mag": "2125055259" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028413442", + "is_oa": false, + "landing_page_url": "http://lib.myilibrary.com?id=677844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110271944", + "display_name": "J. R. Quinlan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "J. R. Quinlan", + "raw_affiliation_strings": [ + "Univ. of Sydney, Sydney, NSW, Australia#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Univ. of Sydney, Sydney, NSW, Australia#TAB#", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110271944" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I129604602" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 37.5253, + "has_fulltext": false, + "cited_by_count": 23696, + "citation_normalized_percentile": { + "value": 0.99811143, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 95, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.732699990272522, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.732699990272522, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7494493126869202 + }, + { + "id": "https://openalex.org/keywords/unix", + "display_name": "Unix", + "score": 0.7103577852249146 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.5452554225921631 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5430417060852051 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5293187499046326 + }, + { + "id": "https://openalex.org/keywords/source-code", + "display_name": "Source code", + "score": 0.5040985345840454 + }, + { + "id": "https://openalex.org/keywords/workstation", + "display_name": "Workstation", + "score": 0.4916697144508362 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.47135013341903687 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.4408881366252899 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.43640998005867004 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.3549916744232178 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.34295010566711426 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.28907880187034607 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.16292878985404968 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7494493126869202 + }, + { + "id": "https://openalex.org/C112968700", + "wikidata": "https://www.wikidata.org/wiki/Q11368", + "display_name": "Unix", + "level": 3, + "score": 0.7103577852249146 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.5452554225921631 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5430417060852051 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5293187499046326 + }, + { + "id": "https://openalex.org/C43126263", + "wikidata": "https://www.wikidata.org/wiki/Q128751", + "display_name": "Source code", + "level": 2, + "score": 0.5040985345840454 + }, + { + "id": "https://openalex.org/C67953723", + "wikidata": "https://www.wikidata.org/wiki/Q192525", + "display_name": "Workstation", + "level": 2, + "score": 0.4916697144508362 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.47135013341903687 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.4408881366252899 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.43640998005867004 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.3549916744232178 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.34295010566711426 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.28907880187034607 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.16292878985404968 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028413442", + "is_oa": false, + "landing_page_url": "http://lib.myilibrary.com?id=677844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:cds.cern.ch:2031749", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2031749", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:2125055259", + "is_oa": false, + "landing_page_url": "https://cds.cern.ch/record/2031749", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Reduced inequalities", + "id": "https://metadata.un.org/sdg/10", + "score": 0.49000000953674316 + }, + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.4300000071525574 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W3085162807", + "https://openalex.org/W2966207845", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766", + "https://openalex.org/W2147169507", + "https://openalex.org/W2140190241", + "https://openalex.org/W2136000097", + "https://openalex.org/W2133990480", + "https://openalex.org/W2123504579", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112076978", + "https://openalex.org/W2084812512", + "https://openalex.org/W1988790447", + "https://openalex.org/W1912123407", + "https://openalex.org/W1670263352", + "https://openalex.org/W1570448133", + "https://openalex.org/W1504694836" + ], + "abstract_inverted_index": { + "Classifier": [ + 0 + ], + "systems": [ + 1 + ], + "play": [ + 2 + ], + "a": [ + 3, + 38, + 55 + ], + "major": [ + 4 + ], + "role": [ + 5 + ], + "in": [ + 6, + 47 + ], + "machine": [ + 7 + ], + "learning": [ + 8 + ], + "and": [ + 9, + 12, + 18, + 69, + 75 + ], + "knowledge-based": [ + 10 + ], + "systems,": [ + 11 + ], + "Ross": [ + 13 + ], + "Quinlan's": [ + 14 + ], + "work": [ + 15 + ], + "on": [ + 16 + ], + "ID3": [ + 17 + ], + "C4.5": [ + 19, + 43, + 85 + ], + "is": [ + 20, + 37 + ], + "widely": [ + 21 + ], + "acknowledged": [ + 22 + ], + "to": [ + 23, + 32, + 41, + 58, + 93 + ], + "have": [ + 24 + ], + "made": [ + 25 + ], + "some": [ + 26 + ], + "of": [ + 27, + 90 + ], + "the": [ + 28, + 42, + 50, + 59, + 63 + ], + "most": [ + 29 + ], + "significant": [ + 30 + ], + "contributions": [ + 31 + ], + "their": [ + 33 + ], + "development.": [ + 34 + ], + "This": [ + 35 + ], + "book": [ + 36 + ], + "complete": [ + 39 + ], + "guide": [ + 40, + 57 + ], + "system": [ + 44 + ], + "as": [ + 45 + ], + "implemented": [ + 46 + ], + "C": [ + 48 + ], + "for": [ + 49, + 81 + ], + "UNIX": [ + 51 + ], + "environment.": [ + 52 + ], + "It": [ + 53 + ], + "contains": [ + 54 + ], + "comprehensive": [ + 56 + ], + "system's": [ + 60 + ], + "use": [ + 61 + ], + ",": [ + 62 + ], + "source": [ + 64, + 73 + ], + "code": [ + 65, + 74 + ], + "(about": [ + 66 + ], + "8,800": [ + 67 + ], + "lines),": [ + 68 + ], + "implementation": [ + 70 + ], + "notes.": [ + 71 + ], + "The": [ + 72, + 96 + ], + "sample": [ + 76 + ], + "datasets": [ + 77 + ], + "are": [ + 78 + ], + "also": [ + 79 + ], + "available": [ + 80 + ], + "download": [ + 82 + ], + "(see": [ + 83 + ], + "below).": [ + 84 + ], + "starts": [ + 86 + ], + "with": [ + 87 + ], + "large": [ + 88 + ], + "sets": [ + 89 + ], + "cases": [ + 91 + ], + "belonging": [ + 92 + ], + "known": [ + 94 + ], + "classes.": [ + 95 + ], + "cases,": [ + 97 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 119 + }, + { + "year": 2024, + "cited_by_count": 234 + }, + { + "year": 2023, + "cited_by_count": 397 + }, + { + "year": 2022, + "cited_by_count": 454 + }, + { + "year": 2021, + "cited_by_count": 798 + }, + { + "year": 2020, + "cited_by_count": 893 + }, + { + "year": 2019, + "cited_by_count": 970 + }, + { + "year": 2018, + "cited_by_count": 978 + }, + { + "year": 2017, + "cited_by_count": 1004 + }, + { + "year": 2016, + "cited_by_count": 1088 + }, + { + "year": 2015, + "cited_by_count": 1179 + }, + { + "year": 2014, + "cited_by_count": 1226 + }, + { + "year": 2013, + "cited_by_count": 1265 + }, + { + "year": 2012, + "cited_by_count": 1268 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1570448133", + "doi": "https://doi.org/10.1016/c2009-0-19715-5", + "title": "Data Mining: Practical Machine Learning Tools and Techniques", + "display_name": "Data Mining: Practical Machine Learning Tools and Techniques", + "relevance_score": 9976.794, + "publication_year": 2011, + "publication_date": "2011-01-01", + "ids": { + "openalex": "https://openalex.org/W1570448133", + "doi": "https://doi.org/10.1016/c2009-0-19715-5", + "mag": "1570448133" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1016/c2009-0-19715-5", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1016/c2009-0-19715-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463230", + "display_name": "Elsevier eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "any_repository_has_fulltext": null + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5045934263", + "display_name": "Ian H. Witten", + "orcid": "https://orcid.org/0000-0001-6428-8988" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Witten, Ian H. 1947-", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059992863", + "display_name": "Eibe Frank", + "orcid": "https://orcid.org/0000-0001-6152-7111" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Frank, Eibe", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5065290010", + "display_name": "Mark A. Hall", + "orcid": "https://orcid.org/0000-0001-6277-144X" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Hall, Mark A.", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5045934263" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 777.8895, + "has_fulltext": false, + "cited_by_count": 25711, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.994700014591217, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9937000274658203, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6216986179351807 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.40141761302948 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.381103515625 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3717349171638489 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3705868124961853 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6216986179351807 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.40141761302948 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.381103515625 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3717349171638489 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3705868124961853 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1016/c2009-0-19715-5", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1016/c2009-0-19715-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463230", + "display_name": "Elsevier eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + { + "id": "pmh:KOHA-OAI-BM:91035", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:KOHA-OAI-BM:44641", + "is_oa": false, + "landing_page_url": "http://www.loc.gov/catdir/enhancements/fy0624/2005043385-t.html", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027751250", + "is_oa": false, + "landing_page_url": "http://www.sciencedirect.com/science/book/9780123748560", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + } + ], + "best_oa_location": { + "id": "pmh:KOHA-OAI-BM:91035", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "id": "https://metadata.un.org/sdg/9", + "score": 0.47999998927116394 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W1570448133.pdf" + }, + "referenced_works_count": 203, + "referenced_works": [ + "https://openalex.org/W23418094", + "https://openalex.org/W24402856", + "https://openalex.org/W28412257", + "https://openalex.org/W43179442", + "https://openalex.org/W64096637", + "https://openalex.org/W66926763", + "https://openalex.org/W69783631", + "https://openalex.org/W122789262", + "https://openalex.org/W123339444", + "https://openalex.org/W138217685", + "https://openalex.org/W149472151", + "https://openalex.org/W173229765", + "https://openalex.org/W187357405", + "https://openalex.org/W586094522", + "https://openalex.org/W589058777", + "https://openalex.org/W1483135265", + "https://openalex.org/W1483679765", + "https://openalex.org/W1492324553", + "https://openalex.org/W1492698999", + "https://openalex.org/W1495859460", + "https://openalex.org/W1500698297", + "https://openalex.org/W1506285740", + "https://openalex.org/W1513366687", + "https://openalex.org/W1516443426", + "https://openalex.org/W1520687314", + "https://openalex.org/W1523856491", + "https://openalex.org/W1524704912", + "https://openalex.org/W1528113134", + "https://openalex.org/W1530010412", + "https://openalex.org/W1533544838", + "https://openalex.org/W1533946607", + "https://openalex.org/W1536719366", + "https://openalex.org/W1550206324", + "https://openalex.org/W1550821944", + "https://openalex.org/W1551066950", + "https://openalex.org/W1553019137", + "https://openalex.org/W1553313034", + "https://openalex.org/W1554663460", + "https://openalex.org/W1555244713", + "https://openalex.org/W1559060276", + "https://openalex.org/W1560107318", + "https://openalex.org/W1563088657", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571836963", + "https://openalex.org/W1572964175", + "https://openalex.org/W1572978214", + "https://openalex.org/W1573228426", + "https://openalex.org/W1576962511", + "https://openalex.org/W1582036668", + "https://openalex.org/W1583700199", + "https://openalex.org/W1584333058", + "https://openalex.org/W1585221258", + "https://openalex.org/W1585610988", + "https://openalex.org/W1585743408", + "https://openalex.org/W1588100052", + "https://openalex.org/W1588282782", + "https://openalex.org/W1597165973", + "https://openalex.org/W1598333443", + "https://openalex.org/W1598696986", + "https://openalex.org/W1600437712", + "https://openalex.org/W1601529450", + "https://openalex.org/W1604345466", + "https://openalex.org/W1605275907", + "https://openalex.org/W1605688901", + "https://openalex.org/W1605957858", + "https://openalex.org/W1619226191", + "https://openalex.org/W1625504505", + "https://openalex.org/W1630964756", + "https://openalex.org/W1641039719", + "https://openalex.org/W1648885110", + "https://openalex.org/W1670263352", + "https://openalex.org/W1673310716", + "https://openalex.org/W1676820704", + "https://openalex.org/W1678889691", + "https://openalex.org/W1679846099", + "https://openalex.org/W1680392829", + "https://openalex.org/W1763728792", + "https://openalex.org/W1781794689", + "https://openalex.org/W1800049145", + "https://openalex.org/W1806329564", + "https://openalex.org/W1817561967", + "https://openalex.org/W1833977909", + "https://openalex.org/W1861764418", + "https://openalex.org/W1881647329", + "https://openalex.org/W1882120692", + "https://openalex.org/W1906182963", + "https://openalex.org/W1907578970", + "https://openalex.org/W1908888846", + "https://openalex.org/W1912123407", + "https://openalex.org/W1932571505", + "https://openalex.org/W1955600018", + "https://openalex.org/W1969482724", + "https://openalex.org/W1978515644", + "https://openalex.org/W1979711143", + "https://openalex.org/W1982161962", + "https://openalex.org/W1985593448", + "https://openalex.org/W1987947967", + "https://openalex.org/W1990748933", + "https://openalex.org/W1995945562", + "https://openalex.org/W2001619934", + "https://openalex.org/W2008906462", + "https://openalex.org/W2014725748", + "https://openalex.org/W2015401436", + "https://openalex.org/W2017337590", + "https://openalex.org/W2019575783", + "https://openalex.org/W2024046085", + "https://openalex.org/W2024646871", + "https://openalex.org/W2024668293", + "https://openalex.org/W2035890032", + "https://openalex.org/W2037603696", + "https://openalex.org/W2037768235", + "https://openalex.org/W2037965136", + "https://openalex.org/W2042385018", + "https://openalex.org/W2048679005", + "https://openalex.org/W2053154970", + "https://openalex.org/W2057720927", + "https://openalex.org/W2058732827", + "https://openalex.org/W2064853889", + "https://openalex.org/W2065861851", + "https://openalex.org/W2066636486", + "https://openalex.org/W2067098334", + "https://openalex.org/W2068337856", + "https://openalex.org/W2073308541", + "https://openalex.org/W2073583237", + "https://openalex.org/W2074610805", + "https://openalex.org/W2075665712", + "https://openalex.org/W2078579128", + "https://openalex.org/W2095749253", + "https://openalex.org/W2095897464", + "https://openalex.org/W2097089247", + "https://openalex.org/W2097569937", + "https://openalex.org/W2100406636", + "https://openalex.org/W2102009083", + "https://openalex.org/W2105494575", + "https://openalex.org/W2105497548", + "https://openalex.org/W2106393550", + "https://openalex.org/W2108949035", + "https://openalex.org/W2110119381", + "https://openalex.org/W2111746072", + "https://openalex.org/W2112076978", + "https://openalex.org/W2112841646", + "https://openalex.org/W2113242816", + "https://openalex.org/W2117812871", + "https://openalex.org/W2118020653", + "https://openalex.org/W2118383892", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119885577", + "https://openalex.org/W2120216197", + "https://openalex.org/W2122111042", + "https://openalex.org/W2122410182", + "https://openalex.org/W2129113961", + "https://openalex.org/W2129249398", + "https://openalex.org/W2132166479", + "https://openalex.org/W2133632100", + "https://openalex.org/W2134696506", + "https://openalex.org/W2138064700", + "https://openalex.org/W2138621811", + "https://openalex.org/W2139059214", + "https://openalex.org/W2140190241", + "https://openalex.org/W2142767931", + "https://openalex.org/W2142819948", + "https://openalex.org/W2142957916", + "https://openalex.org/W2143349571", + "https://openalex.org/W2143426320", + "https://openalex.org/W2144907232", + "https://openalex.org/W2146257637", + "https://openalex.org/W2147492008", + "https://openalex.org/W2147810216", + "https://openalex.org/W2148949939", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153028052", + "https://openalex.org/W2154318594", + "https://openalex.org/W2154642793", + "https://openalex.org/W2156909104", + "https://openalex.org/W2160642098", + "https://openalex.org/W2161077873", + "https://openalex.org/W2163915185", + "https://openalex.org/W2164818318", + "https://openalex.org/W2166559705", + "https://openalex.org/W2167793421", + "https://openalex.org/W2170112109", + "https://openalex.org/W2170654002", + "https://openalex.org/W2170726034", + "https://openalex.org/W2170913656", + "https://openalex.org/W2172162418", + "https://openalex.org/W2172780573", + "https://openalex.org/W2277957941", + "https://openalex.org/W2331052961", + "https://openalex.org/W2621280964", + "https://openalex.org/W2912934387", + "https://openalex.org/W2913066018", + "https://openalex.org/W2914369697", + "https://openalex.org/W2953014340", + "https://openalex.org/W2988864014", + "https://openalex.org/W3017143921", + "https://openalex.org/W3023540311", + "https://openalex.org/W3083113686", + "https://openalex.org/W3085162807", + "https://openalex.org/W3123294050", + "https://openalex.org/W3163638146", + "https://openalex.org/W3193477162", + "https://openalex.org/W3203633735", + "https://openalex.org/W3208887124" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "As": [ + 0 + ], + "with": [ + 1 + ], + "any": [ + 2 + ], + "burgeoning": [ + 3 + ], + "technology": [ + 4 + ], + "that": [ + 5, + 27, + 61, + 89, + 108 + ], + "enjoys": [ + 6 + ], + "commercial": [ + 7 + ], + "attention,": [ + 8 + ], + "the": [ + 9, + 86, + 94, + 98, + 106, + 120, + 125 + ], + "use": [ + 10 + ], + "of": [ + 11, + 20, + 25, + 37, + 58, + 85 + ], + "data": [ + 12 + ], + "mining": [ + 13 + ], + "is": [ + 14, + 41, + 54, + 81 + ], + "surrounded": [ + 15 + ], + "by": [ + 16, + 31 + ], + "a": [ + 17, + 82, + 150 + ], + "great": [ + 18 + ], + "deal": [ + 19 + ], + "hype.": [ + 21 + ], + "Exaggerated": [ + 22 + ], + "reports": [ + 23 + ], + "tell": [ + 24 + ], + "secrets": [ + 26 + ], + "can": [ + 28, + 62 + ], + "be": [ + 29 + ], + "uncovered": [ + 30 + ], + "setting": [ + 32 + ], + "algorithms": [ + 33 + ], + "loose": [ + 34 + ], + "on": [ + 35, + 147, + 153 + ], + "oceans": [ + 36 + ], + "data.": [ + 38, + 68 + ], + "But": [ + 39 + ], + "there": [ + 40, + 53 + ], + "no": [ + 42, + 47, + 50 + ], + "magic": [ + 43 + ], + "in": [ + 44, + 91 + ], + "machine": [ + 45, + 136 + ], + "learning,": [ + 46 + ], + "hidden": [ + 48 + ], + "power,": [ + 49 + ], + "alchemy.": [ + 51 + ], + "Instead": [ + 52 + ], + "an": [ + 55, + 133, + 142 + ], + "identifiable": [ + 56 + ], + "body": [ + 57 + ], + "practical": [ + 59 + ], + "techniques": [ + 60, + 73 + ], + "extract": [ + 63 + ], + "useful": [ + 64 + ], + "information": [ + 65, + 146 + ], + "from": [ + 66 + ], + "raw": [ + 67 + ], + "This": [ + 69 + ], + "book": [ + 70, + 80 + ], + "describes": [ + 71 + ], + "these": [ + 72 + ], + "and": [ + 74, + 115 + ], + "shows": [ + 75 + ], + "how": [ + 76 + ], + "they": [ + 77 + ], + "work.": [ + 78 + ], + "The": [ + 79, + 122 + ], + "major": [ + 83 + ], + "revision": [ + 84 + ], + "first": [ + 87 + ], + "edition": [ + 88, + 127 + ], + "appeared": [ + 90 + ], + "1999.": [ + 92 + ], + "While": [ + 93 + ], + "basic": [ + 95 + ], + "core": [ + 96 + ], + "remains": [ + 97 + ], + "same,": [ + 99 + ], + "it": [ + 100 + ], + "has": [ + 101, + 117 + ], + "been": [ + 102 + ], + "updated": [ + 103 + ], + "to": [ + 104 + ], + "reflect": [ + 105 + ], + "changes": [ + 107 + ], + "have": [ + 109 + ], + "taken": [ + 110 + ], + "place": [ + 111 + ], + "over": [ + 112 + ], + "five": [ + 113 + ], + "years,": [ + 114 + ], + "now": [ + 116, + 140 + ], + "nearly": [ + 118 + ], + "double": [ + 119 + ], + "references.": [ + 121 + ], + "highlights": [ + 123 + ], + "for": [ + 124 + ], + "new": [ + 126, + 130, + 151 + ], + "include": [ + 128 + ], + "thirty": [ + 129 + ], + "technique": [ + 131 + ], + "sections;": [ + 132 + ], + "enhanced": [ + 134 + ], + "Weka": [ + 135 + ], + "learning": [ + 137 + ], + "workbench,": [ + 138 + ], + "which": [ + 139 + ], + "features": [ + 141 + ], + "interactive": [ + 143 + ], + "interface;": [ + 144 + ], + "comprehensive": [ + 145 + ], + "neural": [ + 148 + ], + "networks;": [ + 149, + 155 + ], + "section": [ + 152 + ], + "Bayesian": [ + 154 + ], + "plus": [ + 156 + ], + "much": [ + 157 + ], + "more.": [ + 158 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 5 + }, + { + "year": 2025, + "cited_by_count": 237 + }, + { + "year": 2024, + "cited_by_count": 449 + }, + { + "year": 2023, + "cited_by_count": 684 + }, + { + "year": 2022, + "cited_by_count": 774 + }, + { + "year": 2021, + "cited_by_count": 1127 + }, + { + "year": 2020, + "cited_by_count": 1434 + }, + { + "year": 2019, + "cited_by_count": 1625 + }, + { + "year": 2018, + "cited_by_count": 1646 + }, + { + "year": 2017, + "cited_by_count": 1443 + }, + { + "year": 2016, + "cited_by_count": 1255 + }, + { + "year": 2015, + "cited_by_count": 1510 + }, + { + "year": 2014, + "cited_by_count": 1529 + }, + { + "year": 2013, + "cited_by_count": 1672 + }, + { + "year": 2012, + "cited_by_count": 1557 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1663973292", + "doi": "https://doi.org/10.1117/1.2819119", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 9309.5625, + "publication_year": 2007, + "publication_date": "2007-01-01", + "ids": { + "openalex": "https://openalex.org/W1663973292", + "doi": "https://doi.org/10.1117/1.2819119", + "mag": "1663973292" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1117/1.2819119", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1117/1.2819119", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S158511090", + "display_name": "Journal of Electronic Imaging", + "issn_l": "1017-9909", + "issn": [ + "1017-9909", + "1560-229X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315543", + "host_organization_name": "SPIE", + "host_organization_lineage": [ + "https://openalex.org/P4310315543" + ], + "host_organization_lineage_names": [ + "SPIE" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Electronic Imaging", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Nasser M. Nasrabadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + }, + { + "id": "https://openalex.org/I4210164937", + "display_name": "Microsoft Research (United Kingdom)", + "ror": "https://ror.org/05k87vq12", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253", + "https://openalex.org/I4210164937" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nasser M. Nasrabadi", + "raw_affiliation_strings": [ + "West Virginia Univ. (United States)", + "Microsoft" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "West Virginia Univ. (United States)", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + }, + { + "raw_affiliation_string": "Microsoft", + "institution_ids": [ + "https://openalex.org/I4210164937" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I12097938", + "https://openalex.org/I4210164937" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 798.0702, + "has_fulltext": false, + "cited_by_count": 22082, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "16", + "issue": "4", + "first_page": "049901", + "last_page": "049901" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10688", + "display_name": "Image and Signal Denoising Methods", + "score": 0.9861999750137329, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5992881655693054 + }, + { + "id": "https://openalex.org/keywords/imaging-science", + "display_name": "Imaging science", + "score": 0.5219192504882812 + }, + { + "id": "https://openalex.org/keywords/cover", + "display_name": "Cover (algebra)", + "score": 0.45677652955055237 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.4510306119918823 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.41892093420028687 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.15935367345809937 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5992881655693054 + }, + { + "id": "https://openalex.org/C57177791", + "wikidata": "https://www.wikidata.org/wiki/Q1038886", + "display_name": "Imaging science", + "level": 2, + "score": 0.5219192504882812 + }, + { + "id": "https://openalex.org/C2780428219", + "wikidata": "https://www.wikidata.org/wiki/Q16952335", + "display_name": "Cover (algebra)", + "level": 2, + "score": 0.45677652955055237 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.4510306119918823 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.41892093420028687 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.15935367345809937 + }, + { + "id": "https://openalex.org/C78519656", + "wikidata": "https://www.wikidata.org/wiki/Q101333", + "display_name": "Mechanical engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1117/1.2819119", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1117/1.2819119", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S158511090", + "display_name": "Journal of Electronic Imaging", + "issn_l": "1017-9909", + "issn": [ + "1017-9909", + "1560-229X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315543", + "host_organization_name": "SPIE", + "host_organization_lineage": [ + "https://openalex.org/P4310315543" + ], + "host_organization_lineage_names": [ + "SPIE" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Electronic Imaging", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W1480376833", + "https://openalex.org/W1496317909", + "https://openalex.org/W2117812871", + "https://openalex.org/W3215037115", + "https://openalex.org/W4232383088", + "https://openalex.org/W4292691288" + ], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W623607250", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W4245429118", + "https://openalex.org/W2382290278", + "https://openalex.org/W4245505501", + "https://openalex.org/W2350741829" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "Journal": [ + 1 + ], + "of": [ + 2, + 27 + ], + "Electronic": [ + 3 + ], + "Imaging": [ + 4 + ], + "(JEI),": [ + 5 + ], + "copublished": [ + 6 + ], + "bimonthly": [ + 7 + ], + "with": [ + 8 + ], + "the": [ + 9 + ], + "Society": [ + 10 + ], + "for": [ + 11 + ], + "Imaging": [ + 12 + ], + "Science": [ + 13 + ], + "and": [ + 14, + 22, + 31 + ], + "Technology,": [ + 15 + ], + "publishes": [ + 16 + ], + "peer-reviewed": [ + 17 + ], + "papers": [ + 18 + ], + "that": [ + 19 + ], + "cover": [ + 20 + ], + "research": [ + 21 + ], + "applications": [ + 23 + ], + "in": [ + 24 + ], + "all": [ + 25 + ], + "areas": [ + 26 + ], + "electronic": [ + 28 + ], + "imaging": [ + 29 + ], + "science": [ + 30 + ], + "technology.": [ + 32 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 22 + }, + { + "year": 2025, + "cited_by_count": 52 + }, + { + "year": 2024, + "cited_by_count": 85 + }, + { + "year": 2023, + "cited_by_count": 106 + }, + { + "year": 2022, + "cited_by_count": 170 + }, + { + "year": 2021, + "cited_by_count": 2005 + }, + { + "year": 2020, + "cited_by_count": 2386 + }, + { + "year": 2019, + "cited_by_count": 1999 + }, + { + "year": 2018, + "cited_by_count": 1718 + }, + { + "year": 2017, + "cited_by_count": 1316 + }, + { + "year": 2016, + "cited_by_count": 1444 + }, + { + "year": 2015, + "cited_by_count": 1951 + }, + { + "year": 2014, + "cited_by_count": 1736 + }, + { + "year": 2013, + "cited_by_count": 1461 + }, + { + "year": 2012, + "cited_by_count": 1440 + } + ], + "updated_date": "2026-05-24T08:33:08.758527", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1639032689", + "doi": null, + "title": "Genetic Algorithms in Search, Optimization and Machine Learning", + "display_name": "Genetic Algorithms in Search, Optimization and Machine Learning", + "relevance_score": 8468.335, + "publication_year": 1988, + "publication_date": "1988-01-01", + "ids": { + "openalex": "https://openalex.org/W1639032689", + "mag": "1639032689" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:KnabeLibrary:353", + "is_oa": false, + "landing_page_url": "http://panmental.de/library/index.php?bibtex|353", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110057218", + "display_name": "David E. Goldberg", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "David E. Goldberg", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110057218" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 26.7962, + "has_fulltext": false, + "cited_by_count": 17771, + "citation_normalized_percentile": { + "value": 0.99576372, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6876999735832214, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6876999735832214, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/pascal", + "display_name": "Pascal (unit)", + "score": 0.8266515135765076 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6943583488464355 + }, + { + "id": "https://openalex.org/keywords/genetic-programming", + "display_name": "Genetic programming", + "score": 0.6225850582122803 + }, + { + "id": "https://openalex.org/keywords/genetic-algorithm", + "display_name": "Genetic algorithm", + "score": 0.4758467376232147 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4586948752403259 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43886905908584595 + }, + { + "id": "https://openalex.org/keywords/quality-control-and-genetic-algorithms", + "display_name": "Quality control and genetic algorithms", + "score": 0.43597400188446045 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.3935277462005615 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.3595549464225769 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.20000383257865906 + }, + { + "id": "https://openalex.org/keywords/meta-optimization", + "display_name": "Meta-optimization", + "score": 0.1979789137840271 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C75608658", + "wikidata": "https://www.wikidata.org/wiki/Q44395", + "display_name": "Pascal (unit)", + "level": 2, + "score": 0.8266515135765076 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6943583488464355 + }, + { + "id": "https://openalex.org/C110332635", + "wikidata": "https://www.wikidata.org/wiki/Q629498", + "display_name": "Genetic programming", + "level": 2, + "score": 0.6225850582122803 + }, + { + "id": "https://openalex.org/C8880873", + "wikidata": "https://www.wikidata.org/wiki/Q187787", + "display_name": "Genetic algorithm", + "level": 2, + "score": 0.4758467376232147 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4586948752403259 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43886905908584595 + }, + { + "id": "https://openalex.org/C161164918", + "wikidata": "https://www.wikidata.org/wiki/Q7268775", + "display_name": "Quality control and genetic algorithms", + "level": 4, + "score": 0.43597400188446045 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.3935277462005615 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.3595549464225769 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.20000383257865906 + }, + { + "id": "https://openalex.org/C4935549", + "wikidata": "https://www.wikidata.org/wiki/Q6822261", + "display_name": "Meta-optimization", + "level": 3, + "score": 0.1979789137840271 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "pmh:oai:KnabeLibrary:353", + "is_oa": false, + "landing_page_url": "http://panmental.de/library/index.php?bibtex|353", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-001455853", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:206079", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/206079", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cumincad.architexturez.net:8807", + "is_oa": false, + "landing_page_url": "http://cumincad.architexturez.net//doc/oai-cumincadworks-id-a4ce", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:2996648926", + "is_oa": false, + "landing_page_url": "http://papers.cumincad.org/cgi-bin/works/Show?a4ce", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.800000011920929 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3149025087", + "https://openalex.org/W2904250082", + "https://openalex.org/W2339500526", + "https://openalex.org/W2261054240", + "https://openalex.org/W2166843422", + "https://openalex.org/W2152195021", + "https://openalex.org/W2152150600", + "https://openalex.org/W2142183404", + "https://openalex.org/W2126105956", + "https://openalex.org/W2116661285", + "https://openalex.org/W2097571405", + "https://openalex.org/W2096590200", + "https://openalex.org/W2024060531", + "https://openalex.org/W2011039300", + "https://openalex.org/W1659842140", + "https://openalex.org/W1595498733", + "https://openalex.org/W1595159159", + "https://openalex.org/W1576818901", + "https://openalex.org/W1544329015", + "https://openalex.org/W1497256448" + ], + "abstract_inverted_index": { + "David": [ + 0 + ], + "Goldberg's": [ + 1 + ], + "Genetic": [ + 2 + ], + "Algorithms": [ + 3 + ], + "in": [ + 4, + 26, + 69, + 85 + ], + "Search,": [ + 5 + ], + "Optimization": [ + 6 + ], + "and": [ + 7, + 38, + 93, + 111 + ], + "Machine": [ + 8 + ], + "Learning": [ + 9 + ], + "is": [ + 10, + 20, + 39 + ], + "by": [ + 11 + ], + "far": [ + 12 + ], + "the": [ + 13, + 23, + 27, + 45, + 54, + 82, + 86 + ], + "bestselling": [ + 14 + ], + "introduction": [ + 15 + ], + "to": [ + 16, + 106, + 115 + ], + "genetic": [ + 17, + 36, + 48, + 67, + 109, + 113 + ], + "algorithms.": [ + 18 + ], + "Goldberg": [ + 19 + ], + "one": [ + 21 + ], + "of": [ + 22, + 42, + 47, + 53, + 64, + 81 + ], + "preeminent": [ + 24 + ], + "researchers": [ + 25 + ], + "field--he": [ + 28 + ], + "has": [ + 29 + ], + "published": [ + 30 + ], + "over": [ + 31 + ], + "100": [ + 32 + ], + "research": [ + 33 + ], + "articles": [ + 34 + ], + "on": [ + 35 + ], + "algorithms": [ + 37, + 114 + ], + "a": [ + 40, + 61, + 65, + 97, + 100, + 108, + 116 + ], + "student": [ + 41 + ], + "John": [ + 43 + ], + "Holland,": [ + 44 + ], + "father": [ + 46 + ], + "algorithms--and": [ + 49 + ], + "his": [ + 50 + ], + "deep": [ + 51 + ], + "understanding": [ + 52 + ], + "material": [ + 55 + ], + "shines": [ + 56 + ], + "through.": [ + 57 + ], + "The": [ + 58, + 77 + ], + "book": [ + 59, + 78 + ], + "contains": [ + 60 + ], + "complete": [ + 62 + ], + "listing": [ + 63 + ], + "simple": [ + 66 + ], + "algorithm": [ + 68, + 110 + ], + "Pascal,": [ + 70 + ], + "which": [ + 71 + ], + "C": [ + 72 + ], + "programmers": [ + 73 + ], + "can": [ + 74 + ], + "easily": [ + 75 + ], + "understand.": [ + 76 + ], + "covers": [ + 79 + ], + "all": [ + 80 + ], + "important": [ + 83 + ], + "topics": [ + 84 + ], + "field,": [ + 87 + ], + "including": [ + 88 + ], + "crossover,": [ + 89 + ], + "mutation,": [ + 90 + ], + "classifier": [ + 91 + ], + "systems,": [ + 92 + ], + "fitness": [ + 94 + ], + "scaling,": [ + 95 + ], + "giving": [ + 96 + ], + "novice": [ + 98 + ], + "with": [ + 99 + ], + "computer": [ + 101 + ], + "science": [ + 102 + ], + "background": [ + 103 + ], + "enough": [ + 104 + ], + "information": [ + 105 + ], + "implement": [ + 107 + ], + "describe": [ + 112 + ], + "friend.": [ + 117 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 66 + }, + { + "year": 2024, + "cited_by_count": 102 + }, + { + "year": 2023, + "cited_by_count": 182 + }, + { + "year": 2022, + "cited_by_count": 116 + }, + { + "year": 2021, + "cited_by_count": 204 + }, + { + "year": 2020, + "cited_by_count": 176 + }, + { + "year": 2019, + "cited_by_count": 166 + }, + { + "year": 2018, + "cited_by_count": 168 + }, + { + "year": 2017, + "cited_by_count": 217 + }, + { + "year": 2016, + "cited_by_count": 360 + }, + { + "year": 2015, + "cited_by_count": 660 + }, + { + "year": 2014, + "cited_by_count": 886 + }, + { + "year": 2013, + "cited_by_count": 961 + }, + { + "year": 2012, + "cited_by_count": 984 + } + ], + "updated_date": "2026-05-15T08:27:34.491423", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1583837637", + "doi": "https://doi.org/10.1145/1273496", + "title": "Proceedings of the 24th international conference on Machine learning", + "display_name": "Proceedings of the 24th international conference on Machine learning", + "relevance_score": 7144.1416, + "publication_year": 2007, + "publication_date": "2007-06-20", + "ids": { + "openalex": "https://openalex.org/W1583837637", + "doi": "https://doi.org/10.1145/1273496", + "mag": "1583837637" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/1273496", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1273496", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "proceedings" + }, + "type": "preprint", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 11733, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": true, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.9121000170707703, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.9121000170707703, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.6044684648513794 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.4876014292240143 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.42869511246681213 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.3953603208065033 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.27516093850135803 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.6044684648513794 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.4876014292240143 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.42869511246681213 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.3953603208065033 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.27516093850135803 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/1273496", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1273496", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "proceedings" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W4387426029", + "https://openalex.org/W4254162896", + "https://openalex.org/W4388792380", + "https://openalex.org/W1477999932", + "https://openalex.org/W4386731653", + "https://openalex.org/W2376001620", + "https://openalex.org/W2925303117", + "https://openalex.org/W4285219045", + "https://openalex.org/W3167529338" + ], + "abstract_inverted_index": { + "This": [ + 0, + 71 + ], + "volume": [ + 1 + ], + "contains": [ + 2 + ], + "the": [ + 3, + 7, + 34, + 38, + 49, + 57, + 104, + 108, + 121, + 128, + 140, + 151, + 157, + 160, + 164, + 182, + 203, + 215, + 221, + 225, + 273, + 293, + 330, + 347, + 393, + 402, + 428, + 444 + ], + "papers": [ + 4, + 219, + 239, + 252, + 278, + 287 + ], + "accepted": [ + 5, + 197, + 241, + 277, + 334 + ], + "to": [ + 6, + 29, + 77, + 101, + 103, + 188, + 205, + 242, + 329, + 371, + 399, + 409 + ], + "24th": [ + 8 + ], + "International": [ + 9, + 39, + 429 + ], + "Conference": [ + 10, + 430 + ], + "on": [ + 11, + 117, + 218, + 356, + 431, + 443 + ], + "Machine": [ + 12, + 40, + 403 + ], + "Learning": [ + 13, + 41, + 404 + ], + "(ICML": [ + 14 + ], + "2007),": [ + 15 + ], + "which": [ + 16, + 87, + 199, + 253, + 336, + 360 + ], + "was": [ + 17, + 80, + 90, + 200, + 425 + ], + "held": [ + 18, + 440 + ], + "at": [ + 19 + ], + "Oregon": [ + 20 + ], + "State": [ + 21 + ], + "University": [ + 22 + ], + "in": [ + 23, + 56, + 86 + ], + "Corvalis,": [ + 24 + ], + "Oregon,": [ + 25 + ], + "from": [ + 26, + 214, + 268, + 292, + 296, + 299, + 305, + 308, + 312, + 317, + 322 + ], + "June": [ + 27 + ], + "20th": [ + 28 + ], + "24th,": [ + 30 + ], + "2007.": [ + 31, + 449 + ], + "ICML": [ + 32, + 229, + 243, + 265, + 348, + 424, + 437, + 448 + ], + "is": [ + 33 + ], + "annual": [ + 35 + ], + "conference": [ + 36 + ], + "of": [ + 37, + 53, + 59, + 123, + 153, + 159, + 177, + 192, + 232, + 251, + 263, + 333, + 363, + 381, + 413, + 447 + ], + "Society": [ + 42 + ], + "(IMLS),": [ + 43 + ], + "and": [ + 44, + 51, + 107, + 120, + 148, + 170, + 220, + 314, + 319, + 325, + 341, + 353, + 383, + 438 + ], + "provides": [ + 45 + ], + "a": [ + 46, + 81, + 172, + 190, + 247, + 289, + 339, + 411 + ], + "venue": [ + 47 + ], + "for": [ + 48, + 175, + 181, + 228, + 344, + 389 + ], + "presentation": [ + 50, + 343 + ], + "discussion": [ + 52, + 136, + 162 + ], + "current": [ + 54 + ], + "research": [ + 55 + ], + "field": [ + 58 + ], + "machine": [ + 60, + 269, + 357 + ], + "learning.": [ + 61 + ], + "These": [ + 62 + ], + "proceedings": [ + 63 + ], + "can": [ + 64 + ], + "also": [ + 65, + 368 + ], + "be": [ + 66 + ], + "found": [ + 67 + ], + "online": [ + 68, + 118 + ], + "at:": [ + 69 + ], + "http://www.machinelearning.org.": [ + 70 + ], + "year": [ + 72, + 132, + 280, + 422 + ], + "there": [ + 73, + 133 + ], + "were": [ + 74, + 99, + 134, + 186, + 240, + 254, + 281, + 367, + 407, + 419 + ], + "522": [ + 75 + ], + "submissions": [ + 76, + 267 + ], + "ICML.": [ + 78 + ], + "There": [ + 79 + ], + "very": [ + 82, + 248 + ], + "thorough": [ + 83 + ], + "review": [ + 84, + 174, + 226 + ], + "process,": [ + 85 + ], + "each": [ + 88, + 176, + 311, + 321, + 345 + ], + "paper": [ + 89, + 416 + ], + "reviewed": [ + 91 + ], + "by": [ + 92, + 139, + 202, + 401 + ], + "three": [ + 93 + ], + "program": [ + 94, + 142, + 332, + 349 + ], + "committee": [ + 95, + 143 + ], + "(PC)": [ + 96 + ], + "members.": [ + 97 + ], + "Authors": [ + 98 + ], + "able": [ + 100, + 408 + ], + "respond": [ + 102 + ], + "initial": [ + 105 + ], + "reviews,": [ + 106 + ], + "PC": [ + 109 + ], + "members": [ + 110, + 166 + ], + "could": [ + 111 + ], + "then": [ + 112 + ], + "modify": [ + 113 + ], + "their": [ + 114, + 168, + 178, + 195 + ], + "reviews": [ + 115 + ], + "based": [ + 116 + ], + "discussions": [ + 119 + ], + "content": [ + 122 + ], + "this": [ + 124, + 131, + 244, + 279, + 396, + 421 + ], + "author": [ + 125, + 154, + 291 + ], + "response.": [ + 126 + ], + "For": [ + 127 + ], + "first": [ + 129, + 183, + 290, + 445 + ], + "time": [ + 130, + 223 + ], + "two": [ + 135 + ], + "periods": [ + 137 + ], + "led": [ + 138 + ], + "senior": [ + 141 + ], + "(SPC),": [ + 144 + ], + "one": [ + 145, + 149 + ], + "just": [ + 146 + ], + "before": [ + 147 + ], + "after": [ + 150 + ], + "submission": [ + 152 + ], + "responses.": [ + 155 + ], + "At": [ + 156 + ], + "end": [ + 158 + ], + "second": [ + 161 + ], + "period,": [ + 163 + ], + "SPC": [ + 165 + ], + "gave": [ + 167 + ], + "recommendations": [ + 169 + ], + "provided": [ + 171 + ], + "summary": [ + 173 + ], + "papers.": [ + 179 + ], + "Also": [ + 180 + ], + "time,": [ + 184 + ], + "authors": [ + 185 + ], + "asked": [ + 187 + ], + "submit": [ + 189 + ], + "list": [ + 191 + ], + "changes": [ + 193 + ], + "with": [ + 194, + 427 + ], + "final": [ + 196 + ], + "papers,": [ + 198, + 335 + ], + "checked": [ + 201 + ], + "SPCs": [ + 204 + ], + "ensure": [ + 206 + ], + "that": [ + 207, + 231, + 423 + ], + "reviewer": [ + 208 + ], + "comments": [ + 209 + ], + "had": [ + 210, + 288 + ], + "been": [ + 211 + ], + "addressed.": [ + 212 + ], + "Apart": [ + 213 + ], + "length": [ + 216 + ], + "restrictions": [ + 217 + ], + "compressed": [ + 222 + ], + "frame,": [ + 224 + ], + "process": [ + 227 + ], + "resembles": [ + 230 + ], + "many": [ + 233 + ], + "journal": [ + 234 + ], + "publications.": [ + 235 + ], + "In": [ + 236, + 327 + ], + "total,": [ + 237 + ], + "150": [ + 238, + 276 + ], + "year,": [ + 245 + ], + "including": [ + 246 + ], + "small": [ + 249 + ], + "number": [ + 250, + 412 + ], + "initially": [ + 255 + ], + "conditionally": [ + 256 + ], + "accepted,": [ + 257 + ], + "yielding": [ + 258 + ], + "an": [ + 259 + ], + "overall": [ + 260 + ], + "acceptance": [ + 261 + ], + "rate": [ + 262 + ], + "29%.": [ + 264 + ], + "attracts": [ + 266 + ], + "learning": [ + 270, + 358 + ], + "researchers": [ + 271 + ], + "around": [ + 272 + ], + "globe.": [ + 274 + ], + "The": [ + 275 + ], + "geographically": [ + 282 + ], + "distributed": [ + 283 + ], + "as": [ + 284, + 392 + ], + "follows:": [ + 285 + ], + "66": [ + 286 + ], + "US,": [ + 294 + ], + "32": [ + 295 + ], + "Europe,": [ + 297 + ], + "19": [ + 298 + ], + "China": [ + 300 + ], + "or": [ + 301 + ], + "Hong": [ + 302 + ], + "Kong,": [ + 303 + ], + "11": [ + 304 + ], + "Canada,": [ + 306 + ], + "6": [ + 307 + ], + "India,": [ + 309 + ], + "5": [ + 310 + ], + "Australia": [ + 313 + ], + "Japan,": [ + 315 + ], + "3": [ + 316, + 351 + ], + "Israel,": [ + 318 + ], + "1": [ + 320 + ], + "Korea,": [ + 323 + ], + "Russia": [ + 324 + ], + "Taiwan.": [ + 326 + ], + "addition": [ + 328 + ], + "main": [ + 331 + ], + "includes": [ + 337 + ], + "both": [ + 338 + ], + "talk": [ + 340 + ], + "poster": [ + 342 + ], + "paper,": [ + 346 + ], + "included": [ + 350 + ], + "workshops": [ + 352 + ], + "8": [ + 354 + ], + "tutorials": [ + 355 + ], + "topics": [ + 359 + ], + "are": [ + 361 + ], + "currently": [ + 362 + ], + "broad": [ + 364 + ], + "interest.": [ + 365 + ], + "We": [ + 366, + 418 + ], + "extremely": [ + 369 + ], + "pleased": [ + 370 + ], + "have": [ + 372 + ], + "David": [ + 373 + ], + "Heckerman": [ + 374 + ], + "(Microsoft": [ + 375 + ], + "Research),": [ + 376 + ], + "Joshua": [ + 377 + ], + "Tenenbaum": [ + 378 + ], + "(Massachussetts": [ + 379 + ], + "Institute": [ + 380, + 388 + ], + "Technology),": [ + 382 + ], + "Bernhard": [ + 384 + ], + "Schölkopf": [ + 385 + ], + "(Max": [ + 386 + ], + "Planck": [ + 387 + ], + "Biological": [ + 390 + ], + "Cybernetics)": [ + 391 + ], + "invited": [ + 394 + ], + "speakers": [ + 395 + ], + "year.": [ + 397 + ], + "Thanks": [ + 398 + ], + "sponsorship": [ + 400 + ], + "Journal,": [ + 405 + ], + "we": [ + 406 + ], + "award": [ + 410 + ], + "outstanding": [ + 414 + ], + "student": [ + 415 + ], + "prizes.": [ + 417 + ], + "fortunate": [ + 420 + ], + "co-located": [ + 426 + ], + "Inductive": [ + 432 + ], + "Logic": [ + 433 + ], + "Programming": [ + 434 + ], + "(ILP": [ + 435 + ], + "2007).": [ + 436 + ], + "ILP": [ + 439 + ], + "joint": [ + 441 + ], + "sessions": [ + 442 + ], + "day": [ + 446 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 2573 + }, + { + "year": 2024, + "cited_by_count": 2390 + }, + { + "year": 2023, + "cited_by_count": 1818 + }, + { + "year": 2022, + "cited_by_count": 1221 + }, + { + "year": 2021, + "cited_by_count": 622 + }, + { + "year": 2020, + "cited_by_count": 595 + }, + { + "year": 2019, + "cited_by_count": 396 + }, + { + "year": 2018, + "cited_by_count": 268 + }, + { + "year": 2017, + "cited_by_count": 253 + }, + { + "year": 2016, + "cited_by_count": 196 + }, + { + "year": 2015, + "cited_by_count": 162 + }, + { + "year": 2014, + "cited_by_count": 153 + }, + { + "year": 2013, + "cited_by_count": 136 + }, + { + "year": 2012, + "cited_by_count": 135 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1503398984", + "doi": null, + "title": "Machine learning a probabilistic perspective", + "display_name": "Machine learning a probabilistic perspective", + "relevance_score": 6893.345, + "publication_year": 2012, + "publication_date": "2012-01-01", + "ids": { + "openalex": "https://openalex.org/W1503398984", + "mag": "1503398984" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028615309", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=028615309&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5103362817", + "display_name": "Kevin P. Murphy", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Kevin P. Murphy", + "raw_affiliation_strings": [], + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5103362817" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 397.5259, + "has_fulltext": false, + "cited_by_count": 9327, + "citation_normalized_percentile": { + "value": 0.99999101, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.09690000116825104, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.09690000116825104, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14406", + "display_name": "Multidisciplinary Science and Engineering Research", + "score": 0.08969999849796295, + "subfield": { + "id": "https://openalex.org/subfields/1804", + "display_name": "Statistics, Probability and Uncertainty" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6962889432907104 + }, + { + "id": "https://openalex.org/keywords/probabilistic-logic", + "display_name": "Probabilistic logic", + "score": 0.6251402497291565 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6185331344604492 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5668832063674927 + }, + { + "id": "https://openalex.org/keywords/conditional-random-field", + "display_name": "Conditional random field", + "score": 0.5589616298675537 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.5155355930328369 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.49392396211624146 + }, + { + "id": "https://openalex.org/keywords/graphical-model", + "display_name": "Graphical model", + "score": 0.4833957254886627 + }, + { + "id": "https://openalex.org/keywords/regularization", + "display_name": "Regularization (linguistics)", + "score": 0.4277557134628296 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.41000470519065857 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.1839407980442047 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6962889432907104 + }, + { + "id": "https://openalex.org/C49937458", + "wikidata": "https://www.wikidata.org/wiki/Q2599292", + "display_name": "Probabilistic logic", + "level": 2, + "score": 0.6251402497291565 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6185331344604492 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5668832063674927 + }, + { + "id": "https://openalex.org/C152565575", + "wikidata": "https://www.wikidata.org/wiki/Q1124538", + "display_name": "Conditional random field", + "level": 2, + "score": 0.5589616298675537 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.5155355930328369 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.49392396211624146 + }, + { + "id": "https://openalex.org/C155846161", + "wikidata": "https://www.wikidata.org/wiki/Q1143367", + "display_name": "Graphical model", + "level": 2, + "score": 0.4833957254886627 + }, + { + "id": "https://openalex.org/C2776135515", + "wikidata": "https://www.wikidata.org/wiki/Q17143721", + "display_name": "Regularization (linguistics)", + "level": 2, + "score": 0.4277557134628296 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.41000470519065857 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.1839407980442047 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028615309", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=028615309&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-032798127", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=032798127&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:1981503", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1981503", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2723460", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2723460", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.41999998688697815 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2135046866", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112796928", + "https://openalex.org/W2101234009", + "https://openalex.org/W2095705004", + "https://openalex.org/W2064675550", + "https://openalex.org/W2049633694", + "https://openalex.org/W2045656233", + "https://openalex.org/W1880262756", + "https://openalex.org/W1746819321", + "https://openalex.org/W1663973292", + "https://openalex.org/W1554944419", + "https://openalex.org/W1511986666", + "https://openalex.org/W1506806321", + "https://openalex.org/W1480376833" + ], + "abstract_inverted_index": { + "Today's": [ + 0 + ], + "Web-enabled": [ + 1 + ], + "deluge": [ + 2 + ], + "of": [ + 3, + 10, + 47, + 79, + 140, + 155 + ], + "electronic": [ + 4 + ], + "data": [ + 5, + 11, + 25 + ], + "calls": [ + 6 + ], + "for": [ + 7, + 106, + 191 + ], + "automated": [ + 8 + ], + "methods": [ + 9, + 18 + ], + "analysis.": [ + 12 + ], + "Machine": [ + 13 + ], + "learning": [ + 14 + ], + "provides": [ + 15 + ], + "these,": [ + 16 + ], + "developing": [ + 17 + ], + "that": [ + 19 + ], + "can": [ + 20 + ], + "automatically": [ + 21 + ], + "detect": [ + 22 + ], + "patterns": [ + 23, + 31 + ], + "in": [ + 24, + 82, + 98, + 161, + 175 + ], + "and": [ + 26, + 41, + 60, + 72, + 91, + 119, + 133, + 164, + 200 + ], + "then": [ + 27 + ], + "use": [ + 28 + ], + "the": [ + 29, + 45, + 83, + 107, + 144, + 153, + 169 + ], + "uncovered": [ + 30 + ], + "to": [ + 32, + 44, + 158 + ], + "predict": [ + 33 + ], + "future": [ + 34 + ], + "data.": [ + 35 + ], + "This": [ + 36 + ], + "textbook": [ + 37 + ], + "offers": [ + 38 + ], + "a": [ + 39, + 52, + 138, + 147, + 162, + 176 + ], + "comprehensive": [ + 40 + ], + "self-contained": [ + 42 + ], + "introduction": [ + 43 + ], + "field": [ + 46 + ], + "machine": [ + 48 + ], + "learning,": [ + 49 + ], + "based": [ + 50 + ], + "on": [ + 51, + 66 + ], + "unified,": [ + 53 + ], + "probabilistic": [ + 54 + ], + "approach.": [ + 55 + ], + "The": [ + 56, + 94, + 187 + ], + "coverage": [ + 57 + ], + "combines": [ + 58 + ], + "breadth": [ + 59 + ], + "depth,": [ + 61 + ], + "offering": [ + 62 + ], + "necessary": [ + 63 + ], + "background": [ + 64, + 199 + ], + "material": [ + 65 + ], + "such": [ + 67, + 124 + ], + "topics": [ + 68, + 112 + ], + "as": [ + 69, + 75, + 77, + 127 + ], + "probability,": [ + 70 + ], + "optimization,": [ + 71 + ], + "linear": [ + 73 + ], + "algebra": [ + 74 + ], + "well": [ + 76 + ], + "discussion": [ + 78 + ], + "recent": [ + 80 + ], + "developments": [ + 81 + ], + "field,": [ + 84 + ], + "including": [ + 85 + ], + "conditional": [ + 86 + ], + "random": [ + 87 + ], + "fields,": [ + 88 + ], + "L1": [ + 89 + ], + "regularization,": [ + 90 + ], + "deep": [ + 92 + ], + "learning.": [ + 93 + ], + "book": [ + 95, + 145, + 188 + ], + "is": [ + 96, + 183, + 189 + ], + "written": [ + 97 + ], + "an": [ + 99, + 195 + ], + "informal,": [ + 100 + ], + "accessible": [ + 101 + ], + "style,": [ + 102 + ], + "complete": [ + 103 + ], + "with": [ + 104, + 116, + 194 + ], + "pseudo-code": [ + 105 + ], + "most": [ + 108 + ], + "important": [ + 109 + ], + "algorithms.": [ + 110 + ], + "All": [ + 111 + ], + "are": [ + 113 + ], + "copiously": [ + 114 + ], + "illustrated": [ + 115 + ], + "color": [ + 117 + ], + "images": [ + 118 + ], + "worked": [ + 120 + ], + "examples": [ + 121 + ], + "drawn": [ + 122 + ], + "from": [ + 123 + ], + "application": [ + 125 + ], + "domains": [ + 126 + ], + "biology,": [ + 128 + ], + "text": [ + 129 + ], + "processing,": [ + 130 + ], + "computer": [ + 131 + ], + "vision,": [ + 132 + ], + "robotics.": [ + 134 + ], + "Rather": [ + 135 + ], + "than": [ + 136 + ], + "providing": [ + 137 + ], + "cookbook": [ + 139 + ], + "different": [ + 141 + ], + "heuristic": [ + 142 + ], + "methods,": [ + 143 + ], + "stresses": [ + 146 + ], + "principled": [ + 148 + ], + "model-based": [ + 149 + ], + "approach,": [ + 150 + ], + "often": [ + 151 + ], + "using": [ + 152 + ], + "language": [ + 154 + ], + "graphical": [ + 156 + ], + "models": [ + 157, + 160, + 170 + ], + "specify": [ + 159 + ], + "concise": [ + 163 + ], + "intuitive": [ + 165 + ], + "way.": [ + 166 + ], + "Almost": [ + 167 + ], + "all": [ + 168 + ], + "described": [ + 171 + ], + "have": [ + 172 + ], + "been": [ + 173 + ], + "implemented": [ + 174 + ], + "MATLAB": [ + 177 + ], + "software": [ + 178 + ], + "package--PMTK": [ + 179 + ], + "(probabilistic": [ + 180 + ], + "modeling": [ + 181 + ], + "toolkit)--that": [ + 182 + ], + "freely": [ + 184 + ], + "available": [ + 185 + ], + "online.": [ + 186 + ], + "suitable": [ + 190 + ], + "upper-level": [ + 192 + ], + "undergraduates": [ + 193 + ], + "introductory-level": [ + 196 + ], + "college": [ + 197 + ], + "math": [ + 198 + ], + "beginning": [ + 201 + ], + "graduate": [ + 202 + ], + "students.": [ + 203 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 363 + }, + { + "year": 2024, + "cited_by_count": 626 + }, + { + "year": 2023, + "cited_by_count": 915 + }, + { + "year": 2022, + "cited_by_count": 929 + }, + { + "year": 2021, + "cited_by_count": 1245 + }, + { + "year": 2020, + "cited_by_count": 1184 + }, + { + "year": 2019, + "cited_by_count": 1006 + }, + { + "year": 2018, + "cited_by_count": 862 + }, + { + "year": 2017, + "cited_by_count": 696 + }, + { + "year": 2016, + "cited_by_count": 594 + }, + { + "year": 2015, + "cited_by_count": 475 + }, + { + "year": 2014, + "cited_by_count": 294 + }, + { + "year": 2013, + "cited_by_count": 118 + }, + { + "year": 2012, + "cited_by_count": 12 + } + ], + "updated_date": "2026-04-19T08:26:33.389920", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1901616594", + "doi": "https://doi.org/10.1126/science.aaa8415", + "title": "Machine learning: Trends, perspectives, and prospects", + "display_name": "Machine learning: Trends, perspectives, and prospects", + "relevance_score": 6839.5435, + "publication_year": 2015, + "publication_date": "2015-07-16", + "ids": { + "openalex": "https://openalex.org/W1901616594", + "doi": "https://doi.org/10.1126/science.aaa8415", + "mag": "1901616594", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/26185243" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1126/science.aaa8415", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aaa8415", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5049812527", + "display_name": "Michael I. Jordan", + "orcid": "https://orcid.org/0000-0001-8935-817X" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "M. I. Jordan", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Sciences, Department of Statistics, University of California, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Sciences, Department of Statistics, University of California, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102921433", + "display_name": "Tom M. Mitchell", + "orcid": "https://orcid.org/0000-0001-7373-0301" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "T. M. Mitchell", + "raw_affiliation_strings": [ + "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA", + "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + }, + { + "raw_affiliation_string": "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA#TAB#", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5049812527", + "https://openalex.org/A5102921433" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I74973139", + "https://openalex.org/I95457486" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 231.985, + "has_fulltext": false, + "cited_by_count": 9497, + "citation_normalized_percentile": { + "value": 0.99992528, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "349", + "issue": "6245", + "first_page": "255", + "last_page": "260" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9993000030517578, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9993000030517578, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12761", + "display_name": "Data Stream Mining Techniques", + "score": 0.9962999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/intersection", + "display_name": "Intersection (aeronautics)", + "score": 0.6641911268234253 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6273059248924255 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5956528782844543 + }, + { + "id": "https://openalex.org/keywords/core", + "display_name": "Core (optical fiber)", + "score": 0.529660165309906 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.5171177387237549 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5001497268676758 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.4807169735431671 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.4387192130088806 + }, + { + "id": "https://openalex.org/keywords/lying", + "display_name": "Lying", + "score": 0.41993552446365356 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.14734527468681335 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.13175764679908752 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C64543145", + "wikidata": "https://www.wikidata.org/wiki/Q162942", + "display_name": "Intersection (aeronautics)", + "level": 2, + "score": 0.6641911268234253 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6273059248924255 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5956528782844543 + }, + { + "id": "https://openalex.org/C2164484", + "wikidata": "https://www.wikidata.org/wiki/Q5170150", + "display_name": "Core (optical fiber)", + "level": 2, + "score": 0.529660165309906 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.5171177387237549 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5001497268676758 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.4807169735431671 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.4387192130088806 + }, + { + "id": "https://openalex.org/C119421448", + "wikidata": "https://www.wikidata.org/wiki/Q2268776", + "display_name": "Lying", + "level": 2, + "score": 0.41993552446365356 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.14734527468681335 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.13175764679908752 + }, + { + "id": "https://openalex.org/C146978453", + "wikidata": "https://www.wikidata.org/wiki/Q3798668", + "display_name": "Aerospace engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1126/science.aaa8415", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aaa8415", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:26185243", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/26185243", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science (New York, N.Y.)", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 32, + "referenced_works": [ + "https://openalex.org/W99485931", + "https://openalex.org/W1503398984", + "https://openalex.org/W1512585804", + "https://openalex.org/W1554944419", + "https://openalex.org/W1569098853", + "https://openalex.org/W1873763122", + "https://openalex.org/W1970472910", + "https://openalex.org/W1992570774", + "https://openalex.org/W1999352252", + "https://openalex.org/W2006452405", + "https://openalex.org/W2019363670", + "https://openalex.org/W2042469398", + "https://openalex.org/W2047281923", + "https://openalex.org/W2076063813", + "https://openalex.org/W2097381042", + "https://openalex.org/W2100495367", + "https://openalex.org/W2117726420", + "https://openalex.org/W2127180992", + "https://openalex.org/W2132001804", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146774335", + "https://openalex.org/W2151320232", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163605009", + "https://openalex.org/W2174706414", + "https://openalex.org/W2618530766", + "https://openalex.org/W3102480238", + "https://openalex.org/W4214717370", + "https://openalex.org/W4231109964", + "https://openalex.org/W4238893454", + "https://openalex.org/W4244670803", + "https://openalex.org/W4292363360" + ], + "related_works": [ + "https://openalex.org/W2955910435", + "https://openalex.org/W2888123326", + "https://openalex.org/W2501458630", + "https://openalex.org/W2982312151", + "https://openalex.org/W4246089694", + "https://openalex.org/W2747462053", + "https://openalex.org/W2753162950", + "https://openalex.org/W4210719352", + "https://openalex.org/W2347526077", + "https://openalex.org/W1568263573" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 48, + 58 + ], + "addresses": [ + 2 + ], + "the": [ + 3, + 27, + 36, + 54, + 64, + 68 + ], + "question": [ + 4 + ], + "of": [ + 5, + 18, + 29, + 38, + 56, + 70, + 78, + 98 + ], + "how": [ + 6 + ], + "to": [ + 7, + 91 + ], + "build": [ + 8 + ], + "computers": [ + 9 + ], + "that": [ + 10 + ], + "improve": [ + 11 + ], + "automatically": [ + 12 + ], + "through": [ + 13 + ], + "experience.": [ + 14 + ], + "It": [ + 15 + ], + "is": [ + 16 + ], + "one": [ + 17 + ], + "today's": [ + 19 + ], + "most": [ + 20 + ], + "rapidly": [ + 21 + ], + "growing": [ + 22 + ], + "technical": [ + 23 + ], + "fields,": [ + 24 + ], + "lying": [ + 25 + ], + "at": [ + 26, + 35 + ], + "intersection": [ + 28 + ], + "computer": [ + 30 + ], + "science": [ + 31 + ], + "and": [ + 32, + 34, + 41, + 60, + 62, + 73, + 88, + 108 + ], + "statistics,": [ + 33 + ], + "core": [ + 37 + ], + "artificial": [ + 39 + ], + "intelligence": [ + 40 + ], + "data": [ + 42, + 72 + ], + "science.": [ + 43 + ], + "Recent": [ + 44 + ], + "progress": [ + 45 + ], + "in": [ + 46, + 67 + ], + "machine": [ + 47 + ], + "has": [ + 49 + ], + "been": [ + 50 + ], + "driven": [ + 51 + ], + "both": [ + 52 + ], + "by": [ + 53, + 63 + ], + "development": [ + 55 + ], + "new": [ + 57 + ], + "algorithms": [ + 59 + ], + "theory": [ + 61 + ], + "ongoing": [ + 65 + ], + "explosion": [ + 66 + ], + "availability": [ + 69 + ], + "online": [ + 71 + ], + "low-cost": [ + 74 + ], + "computation.": [ + 75 + ], + "The": [ + 76 + ], + "adoption": [ + 77 + ], + "data-intensive": [ + 79 + ], + "machine-learning": [ + 80 + ], + "methods": [ + 81 + ], + "can": [ + 82 + ], + "be": [ + 83 + ], + "found": [ + 84 + ], + "throughout": [ + 85 + ], + "science,": [ + 86 + ], + "technology": [ + 87 + ], + "commerce,": [ + 89 + ], + "leading": [ + 90 + ], + "more": [ + 92 + ], + "evidence-based": [ + 93 + ], + "decision-making": [ + 94 + ], + "across": [ + 95 + ], + "many": [ + 96 + ], + "walks": [ + 97 + ], + "life,": [ + 99 + ], + "including": [ + 100 + ], + "health": [ + 101 + ], + "care,": [ + 102 + ], + "manufacturing,": [ + 103 + ], + "education,": [ + 104 + ], + "financial": [ + 105 + ], + "modeling,": [ + 106 + ], + "policing,": [ + 107 + ], + "marketing.": [ + 109 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 560 + }, + { + "year": 2025, + "cited_by_count": 1716 + }, + { + "year": 2024, + "cited_by_count": 1766 + }, + { + "year": 2023, + "cited_by_count": 1523 + }, + { + "year": 2022, + "cited_by_count": 1276 + }, + { + "year": 2021, + "cited_by_count": 961 + }, + { + "year": 2020, + "cited_by_count": 657 + }, + { + "year": 2019, + "cited_by_count": 517 + }, + { + "year": 2018, + "cited_by_count": 271 + }, + { + "year": 2017, + "cited_by_count": 157 + }, + { + "year": 2016, + "cited_by_count": 79 + }, + { + "year": 2015, + "cited_by_count": 13 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1746819321", + "doi": "https://doi.org/10.7551/mitpress/3206.001.0001", + "title": "Gaussian Processes for Machine Learning", + "display_name": "Gaussian Processes for Machine Learning", + "relevance_score": 6815.038, + "publication_year": 2005, + "publication_date": "2005-11-23", + "ids": { + "openalex": "https://openalex.org/W1746819321", + "doi": "https://doi.org/10.7551/mitpress/3206.001.0001", + "mag": "1746819321" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/3206.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/3206.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5108711177", + "display_name": "Carl Edward Rasmussen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210112925", + "display_name": "Max Planck Institute for Biological Cybernetics", + "ror": "https://ror.org/026nmvv73", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ] + }, + { + "id": "https://openalex.org/I149899117", + "display_name": "Max Planck Society", + "ror": "https://ror.org/01hhn8329", + "country_code": "DE", + "type": "funder", + "lineage": [ + "https://openalex.org/I149899117" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Carl Edward Rasmussen", + "raw_affiliation_strings": [ + "Max Planck Institute for Biological Cybernetics, Max Planck Society" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "institution_ids": [ + "https://openalex.org/I4210112925", + "https://openalex.org/I149899117" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5080713659", + "display_name": "Christopher K. I. Williams", + "orcid": "https://orcid.org/0000-0002-6270-4703" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Christopher K. I. Williams", + "raw_affiliation_strings": [ + "School of Informatics" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Informatics", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5108711177" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 60.0909, + "has_fulltext": false, + "cited_by_count": 10487, + "citation_normalized_percentile": { + "value": 0.99936548, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9882000088691711, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13126", + "display_name": "Scientific Research and Discoveries", + "score": 0.9718000292778015, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.830909252166748 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7165400981903076 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.678665816783905 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.5565923452377319 + }, + { + "id": "https://openalex.org/keywords/gaussian-process", + "display_name": "Gaussian process", + "score": 0.5361518859863281 + }, + { + "id": "https://openalex.org/keywords/probabilistic-logic", + "display_name": "Probabilistic logic", + "score": 0.5021359920501709 + }, + { + "id": "https://openalex.org/keywords/relevance-vector-machine", + "display_name": "Relevance vector machine", + "score": 0.5012705326080322 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.48535385727882385 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.47896531224250793 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.3814472556114197 + }, + { + "id": "https://openalex.org/keywords/gaussian", + "display_name": "Gaussian", + "score": 0.2928916811943054 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.830909252166748 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7165400981903076 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.678665816783905 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.5565923452377319 + }, + { + "id": "https://openalex.org/C61326573", + "wikidata": "https://www.wikidata.org/wiki/Q1496376", + "display_name": "Gaussian process", + "level": 3, + "score": 0.5361518859863281 + }, + { + "id": "https://openalex.org/C49937458", + "wikidata": "https://www.wikidata.org/wiki/Q2599292", + "display_name": "Probabilistic logic", + "level": 2, + "score": 0.5021359920501709 + }, + { + "id": "https://openalex.org/C14948415", + "wikidata": "https://www.wikidata.org/wiki/Q7310972", + "display_name": "Relevance vector machine", + "level": 3, + "score": 0.5012705326080322 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.48535385727882385 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.47896531224250793 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.3814472556114197 + }, + { + "id": "https://openalex.org/C163716315", + "wikidata": "https://www.wikidata.org/wiki/Q901177", + "display_name": "Gaussian", + "level": 2, + "score": 0.2928916811943054 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 12, + "locations": [ + { + "id": "doi:10.7551/mitpress/3206.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/3206.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.363.7289", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.363.7289", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://mlg.eng.cam.ac.uk/pub/pdf/Ras04.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.86.3414", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.86.3414", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.ubc.ca/~hutter/earg/papers05/rasmussen_gps_in_ml.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-014768173", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=014768173&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:2307304", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2307304", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:edoc.mpg.de:232601", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/232601", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Advanced Lectures on Machine Learning: ML Summer Schools 2003, Canberra, Australia, February 2 - 14, 2003, Tübingen, Germany, August 4 - 16, 2003, Revised Lectures, 63-71 (2004)", + "raw_type": "InBook" + }, + { + "id": "pmh:oai:edoc.mpg.de:312148", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/312148", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book" + }, + { + "id": "pmh:oai:generic.eprints.org:325766", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/325766/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book" + }, + { + "id": "pmh:oai:generic.eprints.org:327253", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/327253/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book Section" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1791157", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-D2FB-6", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Adaptive Computation and Machine Learning", + "raw_type": "info:eu-repo/semantics/book" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1792157", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-F365-A", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Advanced Lectures on Machine Learning: ML Summer Schools 2003, Canberra, Australia, February 2 - 14, 2003, Tübingen, Germany, August 4 - 16, 2003", + "raw_type": "info:eu-repo/semantics/conferenceObject" + }, + { + "id": "mag:3023062339", + "is_oa": false, + "landing_page_url": "https://www.research.ed.ac.uk/portal/en/publications/covariance-functions(33de55b3-5bb5-43f6-874e-301a6d2b2160)/export.html", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463626", + "display_name": "MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "MIT Press eBooks", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 180, + "referenced_works": [ + "https://openalex.org/W14377099", + "https://openalex.org/W44447720", + "https://openalex.org/W61071295", + "https://openalex.org/W131514509", + "https://openalex.org/W186419298", + "https://openalex.org/W336602872", + "https://openalex.org/W1213006044", + "https://openalex.org/W1484867920", + "https://openalex.org/W1486089539", + "https://openalex.org/W1486164486", + "https://openalex.org/W1496317909", + "https://openalex.org/W1497675750", + "https://openalex.org/W1505043854", + "https://openalex.org/W1506153731", + "https://openalex.org/W1510355813", + "https://openalex.org/W1512098439", + "https://openalex.org/W1512149552", + "https://openalex.org/W1515272691", + "https://openalex.org/W1543996294", + "https://openalex.org/W1549258098", + "https://openalex.org/W1550570395", + "https://openalex.org/W1551209770", + "https://openalex.org/W1554663460", + "https://openalex.org/W1564947197", + "https://openalex.org/W1567512734", + "https://openalex.org/W1571894236", + "https://openalex.org/W1574225613", + "https://openalex.org/W1598589417", + "https://openalex.org/W1601740268", + "https://openalex.org/W1604293137", + "https://openalex.org/W1607751291", + "https://openalex.org/W1618393386", + "https://openalex.org/W1618449801", + "https://openalex.org/W1628829797", + "https://openalex.org/W1633751774", + "https://openalex.org/W1642427530", + "https://openalex.org/W1648445109", + "https://openalex.org/W1654787807", + "https://openalex.org/W1755117326", + "https://openalex.org/W1859781365", + "https://openalex.org/W1963533512", + "https://openalex.org/W1965999112", + "https://openalex.org/W1967396577", + "https://openalex.org/W1975780894", + "https://openalex.org/W1976382401", + "https://openalex.org/W1976625337", + "https://openalex.org/W1978188282", + "https://openalex.org/W1978394996", + "https://openalex.org/W1981025032", + "https://openalex.org/W1982032418", + "https://openalex.org/W1982276155", + "https://openalex.org/W1986280275", + "https://openalex.org/W1995672551", + "https://openalex.org/W1998167411", + "https://openalex.org/W2000241167", + "https://openalex.org/W2003706076", + "https://openalex.org/W2003870625", + "https://openalex.org/W2006314423", + "https://openalex.org/W2008827410", + "https://openalex.org/W2014831690", + "https://openalex.org/W2015904350", + "https://openalex.org/W2018044188", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020999234", + "https://openalex.org/W2023163512", + "https://openalex.org/W2033839039", + "https://openalex.org/W2041863660", + "https://openalex.org/W2047028564", + "https://openalex.org/W2049387919", + "https://openalex.org/W2056735347", + "https://openalex.org/W2062291655", + "https://openalex.org/W2063852603", + "https://openalex.org/W2065540158", + "https://openalex.org/W2069371995", + "https://openalex.org/W2069527924", + "https://openalex.org/W2072555316", + "https://openalex.org/W2078206416", + "https://openalex.org/W2081873601", + "https://openalex.org/W2085877024", + "https://openalex.org/W2087978636", + "https://openalex.org/W2088538739", + "https://openalex.org/W2090102379", + "https://openalex.org/W2090353374", + "https://openalex.org/W2093268114", + "https://openalex.org/W2094169479", + "https://openalex.org/W2094212611", + "https://openalex.org/W2096335861", + "https://openalex.org/W2098115979", + "https://openalex.org/W2098626000", + "https://openalex.org/W2098949458", + "https://openalex.org/W2100136038", + "https://openalex.org/W2101709642", + "https://openalex.org/W2103972570", + "https://openalex.org/W2104533781", + "https://openalex.org/W2106868411", + "https://openalex.org/W2107152312", + "https://openalex.org/W2107636931", + "https://openalex.org/W2107725114", + "https://openalex.org/W2108966602", + "https://openalex.org/W2111176881", + "https://openalex.org/W2111494971", + "https://openalex.org/W2112545207", + "https://openalex.org/W2114229504", + "https://openalex.org/W2114412769", + "https://openalex.org/W2115606304", + "https://openalex.org/W2116723448", + "https://openalex.org/W2117063635", + "https://openalex.org/W2117812871", + "https://openalex.org/W2118195892", + "https://openalex.org/W2123687908", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2126455177", + "https://openalex.org/W2127713198", + "https://openalex.org/W2129564505", + "https://openalex.org/W2129869373", + "https://openalex.org/W2130475491", + "https://openalex.org/W2130859329", + "https://openalex.org/W2137467792", + "https://openalex.org/W2137557016", + "https://openalex.org/W2137956165", + "https://openalex.org/W2139479120", + "https://openalex.org/W2140170995", + "https://openalex.org/W2140251433", + "https://openalex.org/W2141274633", + "https://openalex.org/W2141436719", + "https://openalex.org/W2142182841", + "https://openalex.org/W2142387771", + "https://openalex.org/W2142575165", + "https://openalex.org/W2143022286", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144286620", + "https://openalex.org/W2145295623", + "https://openalex.org/W2146766088", + "https://openalex.org/W2148603752", + "https://openalex.org/W2149417376", + "https://openalex.org/W2149846618", + "https://openalex.org/W2151238122", + "https://openalex.org/W2152701363", + "https://openalex.org/W2152937653", + "https://openalex.org/W2153347097", + "https://openalex.org/W2153756422", + "https://openalex.org/W2156909104", + "https://openalex.org/W2158451137", + "https://openalex.org/W2158529569", + "https://openalex.org/W2160840682", + "https://openalex.org/W2161767008", + "https://openalex.org/W2162114812", + "https://openalex.org/W2163057507", + "https://openalex.org/W2167061265", + "https://openalex.org/W2167986580", + "https://openalex.org/W2168022998", + "https://openalex.org/W2169779569", + "https://openalex.org/W2170076406", + "https://openalex.org/W2170078560", + "https://openalex.org/W2170120409", + "https://openalex.org/W2170334710", + "https://openalex.org/W2171522835", + "https://openalex.org/W2172039283", + "https://openalex.org/W2296319761", + "https://openalex.org/W2408196097", + "https://openalex.org/W2464224693", + "https://openalex.org/W2548695521", + "https://openalex.org/W2554813760", + "https://openalex.org/W2782810849", + "https://openalex.org/W2797583072", + "https://openalex.org/W2798909945", + "https://openalex.org/W2904816695", + "https://openalex.org/W2916304084", + "https://openalex.org/W2989448192", + "https://openalex.org/W3014600732", + "https://openalex.org/W3017143921", + "https://openalex.org/W3023786531", + "https://openalex.org/W3048078645", + "https://openalex.org/W3119264854", + "https://openalex.org/W3127325877", + "https://openalex.org/W3134067276", + "https://openalex.org/W3140968660", + "https://openalex.org/W3148924112", + "https://openalex.org/W3165771198" + ], + "related_works": [ + "https://openalex.org/W3140968660", + "https://openalex.org/W2951665052", + "https://openalex.org/W2911964244", + "https://openalex.org/W2192203593", + "https://openalex.org/W2168464387", + "https://openalex.org/W2156909104", + "https://openalex.org/W2131241448", + "https://openalex.org/W2107386393", + "https://openalex.org/W2101234009", + "https://openalex.org/W2099768828", + "https://openalex.org/W2099201756", + "https://openalex.org/W2038669746", + "https://openalex.org/W2018044188", + "https://openalex.org/W1973333099", + "https://openalex.org/W1663973292", + "https://openalex.org/W1571870753", + "https://openalex.org/W1567512734", + "https://openalex.org/W1560724230", + "https://openalex.org/W1510052597", + "https://openalex.org/W137285897" + ], + "abstract_inverted_index": { + "A": [ + 0 + ], + "comprehensive": [ + 1 + ], + "and": [ + 2 + ], + "self-contained": [ + 3 + ], + "introduction": [ + 4 + ], + "to": [ + 5, + 15 + ], + "Gaussian": [ + 6 + ], + "processes,": [ + 7 + ], + "which": [ + 8 + ], + "provide": [ + 9 + ], + "a": [ + 10 + ], + "principled,": [ + 11 + ], + "practical,": [ + 12 + ], + "probabilistic": [ + 13 + ], + "approach": [ + 14 + ], + "learning": [ + 16 + ], + "in": [ + 17 + ], + "kernel": [ + 18 + ], + "machines.": [ + 19 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 2 + }, + { + "year": 2025, + "cited_by_count": 3 + }, + { + "year": 2024, + "cited_by_count": 8 + }, + { + "year": 2023, + "cited_by_count": 30 + }, + { + "year": 2022, + "cited_by_count": 123 + }, + { + "year": 2021, + "cited_by_count": 1209 + }, + { + "year": 2020, + "cited_by_count": 1390 + }, + { + "year": 2019, + "cited_by_count": 1013 + }, + { + "year": 2018, + "cited_by_count": 912 + }, + { + "year": 2017, + "cited_by_count": 810 + }, + { + "year": 2016, + "cited_by_count": 818 + }, + { + "year": 2015, + "cited_by_count": 825 + }, + { + "year": 2014, + "cited_by_count": 736 + }, + { + "year": 2013, + "cited_by_count": 598 + }, + { + "year": 2012, + "cited_by_count": 493 + } + ], + "updated_date": "2026-05-14T08:36:36.166977", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2997591727", + "doi": "https://doi.org/10.5555/1953048.2078195", + "title": "Scikit-learn: Machine Learning in Python", + "display_name": "Scikit-learn: Machine Learning in Python", + "relevance_score": 6227.3545, + "publication_year": 2011, + "publication_date": "2011-11-01", + "ids": { + "openalex": "https://openalex.org/W2997591727", + "doi": "https://doi.org/10.5555/1953048.2078195", + "mag": "2997591727" + }, + "language": "en", + "primary_location": { + "id": "mag:2997591727", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1953048.2078195", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5001344255", + "display_name": "PedregosaFabian", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "PedregosaFabian", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015155577", + "display_name": "VaroquauxGaël", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "VaroquauxGaël", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5082193384", + "display_name": "GramfortAlexandre", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "GramfortAlexandre", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5046730698", + "display_name": "MichelVincent", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "MichelVincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5057304980", + "display_name": "ThirionBertrand", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "ThirionBertrand", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031085857", + "display_name": "GriselOlivier", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "GriselOlivier", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5023292999", + "display_name": "BlondelMathieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "BlondelMathieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088096317", + "display_name": "PrettenhoferPeter", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PrettenhoferPeter", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5083564992", + "display_name": "WeissRon", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "WeissRon", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5056576127", + "display_name": "DubourgVincent", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "DubourgVincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5082383435", + "display_name": "VanderplasJake", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "VanderplasJake", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027220078", + "display_name": "PassosAlexandre", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PassosAlexandre", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002306909", + "display_name": "CournapeauDavid", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "CournapeauDavid", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026983194", + "display_name": "BrucherMatthieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "BrucherMatthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014917008", + "display_name": "PerrotMatthieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PerrotMatthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5034896968", + "display_name": "DuchesnayÉdouard", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "DuchesnayÉdouard", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 16, + "corresponding_author_ids": [ + "https://openalex.org/A5001344255" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 21.1011, + "has_fulltext": false, + "cited_by_count": 8193, + "citation_normalized_percentile": { + "value": 0.99448925, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8940595388412476 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6587178707122803 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5495919585227966 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4344472587108612 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.3134846091270447 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8940595388412476 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6587178707122803 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5495919585227966 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4344472587108612 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.3134846091270447 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2997591727", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1953048.2078195", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.5299999713897705 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3102476541", + "https://openalex.org/W2911964244", + "https://openalex.org/W2064675550", + "https://openalex.org/W2011301426", + "https://openalex.org/W2153635508", + "https://openalex.org/W2119821739", + "https://openalex.org/W2250539671", + "https://openalex.org/W1678356000", + "https://openalex.org/W3103145119", + "https://openalex.org/W3120740533", + "https://openalex.org/W2194775991", + "https://openalex.org/W2146292423", + "https://openalex.org/W3085162807", + "https://openalex.org/W2342249984", + "https://openalex.org/W2056132907", + "https://openalex.org/W2187089797", + "https://openalex.org/W2097998348", + "https://openalex.org/W1880262756", + "https://openalex.org/W2148143831", + "https://openalex.org/W1480376833" + ], + "abstract_inverted_index": { + "Scikit-learn": [ + 0 + ], + "is": [ + 1 + ], + "a": [ + 2, + 6 + ], + "Python": [ + 3 + ], + "module": [ + 4 + ], + "integrating": [ + 5 + ], + "wide": [ + 7 + ], + "range": [ + 8 + ], + "of": [ + 9 + ], + "state-of-the-art": [ + 10 + ], + "machine": [ + 11 + ], + "learning": [ + 12 + ], + "algorithms": [ + 13 + ], + "for": [ + 14 + ], + "medium-scale": [ + 15 + ], + "supervised": [ + 16 + ], + "and": [ + 17 + ], + "unsupervised": [ + 18 + ], + "problems.": [ + 19 + ], + "This": [ + 20 + ], + "package": [ + 21 + ], + "focuses": [ + 22 + ], + "on": [ + 23 + ], + "bringing": [ + 24 + ], + "mach...": [ + 25 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 179 + }, + { + "year": 2025, + "cited_by_count": 3317 + }, + { + "year": 2024, + "cited_by_count": 1191 + }, + { + "year": 2023, + "cited_by_count": 907 + }, + { + "year": 2022, + "cited_by_count": 726 + }, + { + "year": 2021, + "cited_by_count": 629 + }, + { + "year": 2020, + "cited_by_count": 479 + }, + { + "year": 2019, + "cited_by_count": 250 + }, + { + "year": 2018, + "cited_by_count": 193 + }, + { + "year": 2017, + "cited_by_count": 136 + }, + { + "year": 2016, + "cited_by_count": 87 + }, + { + "year": 2015, + "cited_by_count": 50 + }, + { + "year": 2014, + "cited_by_count": 34 + }, + { + "year": 2013, + "cited_by_count": 13 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2953384591", + "doi": "https://doi.org/10.48550/arxiv.1605.08695", + "title": "TensorFlow: A system for large-scale machine learning", + "display_name": "TensorFlow: A system for large-scale machine learning", + "relevance_score": 6134.0415, + "publication_year": 2016, + "publication_date": "2016-05-27", + "ids": { + "openalex": "https://openalex.org/W2953384591", + "doi": "https://doi.org/10.48550/arxiv.1605.08695", + "mag": "2953384591" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1605.08695", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Abadi, Martín", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Barham, Paul", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100665512", + "display_name": "Jianmin Chen", + "orcid": "https://orcid.org/0000-0001-5859-3070" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Jianmin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715424", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-8631-2424" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Zhifeng", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Davis, Andy", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dean, Jeffrey", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Devin, Matthieu", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ghemawat, Sanjay", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Irving, Geoffrey", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isard, Michael", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kudlur, Manjunath", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Levenberg, Josh", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Monga, Rajat", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Moore, Sherry", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Murray, Derek G.", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Steiner, Benoit", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Tucker, Paul", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vasudevan, Vijay", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Warden, Pete", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Wicke, Martin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yu, Yuan", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zheng, Xiaoqiang", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 22, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 8815, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.996999979019165, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.996999979019165, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.9926000237464905, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9921000003814697, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6736689805984497 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5508862733840942 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4714523255825043 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3947470188140869 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.1177549660205841 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.11608994007110596 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6736689805984497 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5508862733840942 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4714523255825043 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3947470188140869 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.1177549660205841 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.11608994007110596 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1605.08695", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1605.08695", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "id": "https://metadata.un.org/sdg/9", + "score": 0.4099999964237213 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 56, + "referenced_works": [ + "https://openalex.org/W104184427", + "https://openalex.org/W145476170", + "https://openalex.org/W941230081", + "https://openalex.org/W1442374986", + "https://openalex.org/W1484210532", + "https://openalex.org/W1485981043", + "https://openalex.org/W1493893823", + "https://openalex.org/W1498436455", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1869752048", + "https://openalex.org/W1978660892", + "https://openalex.org/W1992479210", + "https://openalex.org/W2041517243", + "https://openalex.org/W2055312318", + "https://openalex.org/W2061570747", + "https://openalex.org/W2066443755", + "https://openalex.org/W2072566913", + "https://openalex.org/W2083842231", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100664567", + "https://openalex.org/W2109722477", + "https://openalex.org/W2117539524", + "https://openalex.org/W2120480077", + "https://openalex.org/W2131400476", + "https://openalex.org/W2131975293", + "https://openalex.org/W2132339004", + "https://openalex.org/W2140833774", + "https://openalex.org/W2141992894", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146757372", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163961697", + "https://openalex.org/W2168231600", + "https://openalex.org/W2173213060", + "https://openalex.org/W2186615578", + "https://openalex.org/W2198403777", + "https://openalex.org/W2259472270", + "https://openalex.org/W2308045930", + "https://openalex.org/W2336650964", + "https://openalex.org/W2339765813", + "https://openalex.org/W2384495648", + "https://openalex.org/W2591588155", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949245006", + "https://openalex.org/W2949501655", + "https://openalex.org/W2949605076", + "https://openalex.org/W2949650786", + "https://openalex.org/W2949888546", + "https://openalex.org/W2950094539", + "https://openalex.org/W2950179405", + "https://openalex.org/W2950577311", + "https://openalex.org/W2951714314", + "https://openalex.org/W2951781666" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 15, + 92, + 103, + 125, + 152, + 166 + ], + "is": [ + 1, + 87 + ], + "a": [ + 2, + 36, + 43, + 47, + 105 + ], + "machine": [ + 3, + 48, + 143 + ], + "learning": [ + 4, + 144 + ], + "system": [ + 5 + ], + "that": [ + 6, + 27, + 29, + 165 + ], + "operates": [ + 7 + ], + "at": [ + 8 + ], + "large": [ + 9 + ], + "scale": [ + 10 + ], + "and": [ + 11, + 24, + 45, + 58, + 100, + 115, + 136, + 160 + ], + "in": [ + 12, + 42, + 77, + 126, + 155 + ], + "heterogeneous": [ + 13 + ], + "environments.": [ + 14 + ], + "uses": [ + 16 + ], + "dataflow": [ + 17, + 37, + 153 + ], + "graphs": [ + 18 + ], + "to": [ + 19, + 72, + 95, + 157 + ], + "represent": [ + 20 + ], + "computation,": [ + 21 + ], + "shared": [ + 22, + 85 + ], + "state,": [ + 23 + ], + "the": [ + 25, + 33, + 73, + 82, + 90, + 151, + 162 + ], + "operations": [ + 26 + ], + "mutate": [ + 28 + ], + "state.": [ + 30 + ], + "It": [ + 31 + ], + "maps": [ + 32 + ], + "nodes": [ + 34 + ], + "of": [ + 35, + 84, + 107 + ], + "graph": [ + 38 + ], + "across": [ + 39, + 49 + ], + "many": [ + 40 + ], + "machines": [ + 41 + ], + "cluster,": [ + 44 + ], + "within": [ + 46 + ], + "multiple": [ + 50 + ], + "computational": [ + 51 + ], + "devices,": [ + 52 + ], + "including": [ + 53 + ], + "multicore": [ + 54 + ], + "CPUs,": [ + 55 + ], + "general-purpose": [ + 56 + ], + "GPUs,": [ + 57 + ], + "custom": [ + 59 + ], + "designed": [ + 60 + ], + "ASICs": [ + 61 + ], + "known": [ + 62 + ], + "as": [ + 63, + 132 + ], + "Tensor": [ + 64 + ], + "Processing": [ + 65 + ], + "Units": [ + 66 + ], + "(TPUs).": [ + 67 + ], + "This": [ + 68 + ], + "architecture": [ + 69 + ], + "gives": [ + 70 + ], + "flexibility": [ + 71 + ], + "application": [ + 74 + ], + "developer:": [ + 75 + ], + "whereas": [ + 76 + ], + "previous": [ + 78 + ], + "\"parameter": [ + 79 + ], + "server\"": [ + 80 + ], + "designs": [ + 81 + ], + "management": [ + 83 + ], + "state": [ + 86 + ], + "built": [ + 88 + ], + "into": [ + 89 + ], + "system,": [ + 91 + ], + "enables": [ + 93 + ], + "developers": [ + 94 + ], + "experiment": [ + 96 + ], + "with": [ + 97, + 109 + ], + "novel": [ + 98 + ], + "optimizations": [ + 99 + ], + "training": [ + 101, + 114 + ], + "algorithms.": [ + 102 + ], + "supports": [ + 104 + ], + "variety": [ + 106 + ], + "applications,": [ + 108 + ], + "particularly": [ + 110 + ], + "strong": [ + 111 + ], + "support": [ + 112 + ], + "for": [ + 113, + 142, + 168 + ], + "inference": [ + 116 + ], + "on": [ + 117 + ], + "deep": [ + 118 + ], + "neural": [ + 119 + ], + "networks.": [ + 120 + ], + "Several": [ + 121 + ], + "Google": [ + 122 + ], + "services": [ + 123 + ], + "use": [ + 124 + ], + "production,": [ + 127 + ], + "we": [ + 128, + 149 + ], + "have": [ + 129 + ], + "released": [ + 130 + ], + "it": [ + 131, + 137 + ], + "an": [ + 133 + ], + "open-source": [ + 134 + ], + "project,": [ + 135 + ], + "has": [ + 138 + ], + "become": [ + 139 + ], + "widely": [ + 140 + ], + "used": [ + 141 + ], + "research.": [ + 145 + ], + "In": [ + 146 + ], + "this": [ + 147 + ], + "paper,": [ + 148 + ], + "describe": [ + 150 + ], + "model": [ + 154 + ], + "contrast": [ + 156 + ], + "existing": [ + 158 + ], + "systems,": [ + 159 + ], + "demonstrate": [ + 161 + ], + "compelling": [ + 163 + ], + "performance": [ + 164 + ], + "achieves": [ + 167 + ], + "several": [ + 169 + ], + "real-world": [ + 170 + ], + "applications.": [ + 171 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 15 + }, + { + "year": 2025, + "cited_by_count": 161 + }, + { + "year": 2024, + "cited_by_count": 343 + }, + { + "year": 2023, + "cited_by_count": 730 + }, + { + "year": 2022, + "cited_by_count": 866 + }, + { + "year": 2021, + "cited_by_count": 1829 + }, + { + "year": 2020, + "cited_by_count": 1859 + }, + { + "year": 2019, + "cited_by_count": 1814 + }, + { + "year": 2018, + "cited_by_count": 959 + }, + { + "year": 2017, + "cited_by_count": 226 + }, + { + "year": 2016, + "cited_by_count": 12 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2118020653", + "doi": "https://doi.org/10.1145/505282.505283", + "title": "Machine learning in automated text categorization", + "display_name": "Machine learning in automated text categorization", + "relevance_score": 6087.0835, + "publication_year": 2002, + "publication_date": "2002-03-01", + "ids": { + "openalex": "https://openalex.org/W2118020653", + "doi": "https://doi.org/10.1145/505282.505283", + "mag": "2118020653" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/505282.505283", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/505282.505283", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S157921468", + "display_name": "ACM Computing Surveys", + "issn_l": "0360-0300", + "issn": [ + "0360-0300", + "1557-7341" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Computing Surveys", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/cs/0110053", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5063975186", + "display_name": "Fabrizio Sebastiani", + "orcid": "https://orcid.org/0000-0003-4221-6427" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210107558", + "display_name": "Consorzio Pisa Ricerche", + "ror": "https://ror.org/01t0n3b84", + "country_code": "IT", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210107558" + ] + } + ], + "countries": [ + "IT" + ], + "is_corresponding": true, + "raw_author_name": "Fabrizio Sebastiani", + "raw_affiliation_strings": [ + "Consiglio Nazionale delle Ricerche, Pisa, Italy" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Consiglio Nazionale delle Ricerche, Pisa, Italy", + "institution_ids": [ + "https://openalex.org/I4210107558" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5063975186" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210107558" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 291.6231, + "has_fulltext": false, + "cited_by_count": 7884, + "citation_normalized_percentile": { + "value": 0.99998629, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "34", + "issue": "1", + "first_page": "1", + "last_page": "47" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13083", + "display_name": "Advanced Text Analysis Techniques", + "score": 0.9939000010490417, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9889000058174133, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8797882795333862 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.7666846513748169 + }, + { + "id": "https://openalex.org/keywords/software-portability", + "display_name": "Software portability", + "score": 0.7267234325408936 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6928958892822266 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.678881049156189 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6749231815338135 + }, + { + "id": "https://openalex.org/keywords/text-categorization", + "display_name": "Text categorization", + "score": 0.5723184943199158 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.41375380754470825 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8797882795333862 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.7666846513748169 + }, + { + "id": "https://openalex.org/C63000827", + "wikidata": "https://www.wikidata.org/wiki/Q3080428", + "display_name": "Software portability", + "level": 2, + "score": 0.7267234325408936 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6928958892822266 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.678881049156189 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6749231815338135 + }, + { + "id": "https://openalex.org/C2986744138", + "wikidata": "https://www.wikidata.org/wiki/Q302088", + "display_name": "Text categorization", + "level": 3, + "score": 0.5723184943199158 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.41375380754470825 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1145/505282.505283", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/505282.505283", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S157921468", + "display_name": "ACM Computing Surveys", + "issn_l": "0360-0300", + "issn": [ + "0360-0300", + "1557-7341" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Computing Surveys", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:cs/0110053", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0110053", + "pdf_url": "https://arxiv.org/pdf/cs/0110053", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:dnet:people______::286d170179fde02bc512e4870a2b12b5", + "is_oa": false, + "landing_page_url": "https://openportal.isti.cnr.it/doc?id=people______::286d170179fde02bc512e4870a2b12b5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055261", + "display_name": "ISTI Open Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "ACM computing surveys 34 (2002): 1–47. doi:10.1145/505282.505283", + "raw_type": "Journal article" + }, + { + "id": "pmh:oai:dnet:people______::3938b196dad6eb4120aca01c3005413b", + "is_oa": false, + "landing_page_url": "https://openportal.isti.cnr.it/doc?id=people______::3938b196dad6eb4120aca01c3005413b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055261", + "display_name": "ISTI Open Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "ISTI Technical reports, pp.1–63, 1999", + "raw_type": "Other" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:cs/0110053", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0110053", + "pdf_url": "https://arxiv.org/pdf/cs/0110053", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Decent work and economic growth", + "id": "https://metadata.un.org/sdg/8", + "score": 0.7099999785423279 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 204, + "referenced_works": [ + "https://openalex.org/W12876238", + "https://openalex.org/W22906612", + "https://openalex.org/W35304842", + "https://openalex.org/W59979790", + "https://openalex.org/W74894479", + "https://openalex.org/W81384683", + "https://openalex.org/W81511778", + "https://openalex.org/W104970664", + "https://openalex.org/W107306860", + "https://openalex.org/W112196149", + "https://openalex.org/W116328816", + "https://openalex.org/W148103248", + "https://openalex.org/W166124110", + "https://openalex.org/W1482260847", + "https://openalex.org/W1487445520", + "https://openalex.org/W1490175418", + "https://openalex.org/W1493526108", + "https://openalex.org/W1505794130", + "https://openalex.org/W1507179106", + "https://openalex.org/W1508175965", + "https://openalex.org/W1513874326", + "https://openalex.org/W1514707997", + "https://openalex.org/W1520963883", + "https://openalex.org/W1522930027", + "https://openalex.org/W1523389133", + "https://openalex.org/W1523949738", + "https://openalex.org/W1533946607", + "https://openalex.org/W1544227718", + "https://openalex.org/W1547553618", + "https://openalex.org/W1550961891", + "https://openalex.org/W1553682320", + "https://openalex.org/W1556094091", + "https://openalex.org/W1561056154", + "https://openalex.org/W1574901103", + "https://openalex.org/W1576676390", + "https://openalex.org/W1577216492", + "https://openalex.org/W1578881253", + "https://openalex.org/W1591234214", + "https://openalex.org/W1592212241", + "https://openalex.org/W1594962278", + "https://openalex.org/W1597379537", + "https://openalex.org/W1601145406", + "https://openalex.org/W1619226191", + "https://openalex.org/W1620204465", + "https://openalex.org/W1813610639", + "https://openalex.org/W1857571498", + "https://openalex.org/W1907380269", + "https://openalex.org/W1924689489", + "https://openalex.org/W1966065191", + "https://openalex.org/W1969572066", + "https://openalex.org/W1970858159", + "https://openalex.org/W1970974276", + "https://openalex.org/W1971666241", + "https://openalex.org/W1973911615", + "https://openalex.org/W1975496312", + "https://openalex.org/W1977182536", + "https://openalex.org/W1978394996", + "https://openalex.org/W1979648751", + "https://openalex.org/W1980776671", + "https://openalex.org/W1983078185", + "https://openalex.org/W1986913017", + "https://openalex.org/W1988711048", + "https://openalex.org/W1989568037", + "https://openalex.org/W1989738209", + "https://openalex.org/W1993657037", + "https://openalex.org/W1993934121", + "https://openalex.org/W1995014490", + "https://openalex.org/W2001664274", + "https://openalex.org/W2002675557", + "https://openalex.org/W2002857471", + "https://openalex.org/W2003436527", + "https://openalex.org/W2004180556", + "https://openalex.org/W2004871537", + "https://openalex.org/W2005422315", + "https://openalex.org/W2005758492", + "https://openalex.org/W2006119904", + "https://openalex.org/W2006187024", + "https://openalex.org/W2007395264", + "https://openalex.org/W2007512902", + "https://openalex.org/W2008931716", + "https://openalex.org/W2009190245", + "https://openalex.org/W2010652031", + "https://openalex.org/W2013657661", + "https://openalex.org/W2015267443", + "https://openalex.org/W2015518873", + "https://openalex.org/W2017867386", + "https://openalex.org/W2019778169", + "https://openalex.org/W2020316999", + "https://openalex.org/W2025451713", + "https://openalex.org/W2029609769", + "https://openalex.org/W2033751006", + "https://openalex.org/W2035754578", + "https://openalex.org/W2040424159", + "https://openalex.org/W2041726831", + "https://openalex.org/W2043909051", + "https://openalex.org/W2045812729", + "https://openalex.org/W2047031127", + "https://openalex.org/W2049384587", + "https://openalex.org/W2053463056", + "https://openalex.org/W2058982198", + "https://openalex.org/W2059019405", + "https://openalex.org/W2060216474", + "https://openalex.org/W2060476676", + "https://openalex.org/W2060704583", + "https://openalex.org/W2062847911", + "https://openalex.org/W2062914707", + "https://openalex.org/W2063198646", + "https://openalex.org/W2063862666", + "https://openalex.org/W2064580901", + "https://openalex.org/W2065010255", + "https://openalex.org/W2065747622", + "https://openalex.org/W2066462377", + "https://openalex.org/W2071415686", + "https://openalex.org/W2071664212", + "https://openalex.org/W2076008912", + "https://openalex.org/W2077777431", + "https://openalex.org/W2080251601", + "https://openalex.org/W2084044465", + "https://openalex.org/W2085302848", + "https://openalex.org/W2085989833", + "https://openalex.org/W2087609354", + "https://openalex.org/W2088658068", + "https://openalex.org/W2092134162", + "https://openalex.org/W2092488901", + "https://openalex.org/W2092689128", + "https://openalex.org/W2093098531", + "https://openalex.org/W2094934653", + "https://openalex.org/W2096152098", + "https://openalex.org/W2096411881", + "https://openalex.org/W2097089247", + "https://openalex.org/W2097847889", + "https://openalex.org/W2101154521", + "https://openalex.org/W2104808840", + "https://openalex.org/W2106365165", + "https://openalex.org/W2107008379", + "https://openalex.org/W2107827038", + "https://openalex.org/W2110224739", + "https://openalex.org/W2114535528", + "https://openalex.org/W2125776553", + "https://openalex.org/W2126502509", + "https://openalex.org/W2126631147", + "https://openalex.org/W2126850915", + "https://openalex.org/W2127994451", + "https://openalex.org/W2130337399", + "https://openalex.org/W2132315067", + "https://openalex.org/W2133890944", + "https://openalex.org/W2135276756", + "https://openalex.org/W2139578439", + "https://openalex.org/W2140785063", + "https://openalex.org/W2140956226", + "https://openalex.org/W2142515059", + "https://openalex.org/W2145036943", + "https://openalex.org/W2145296344", + "https://openalex.org/W2146888100", + "https://openalex.org/W2147152072", + "https://openalex.org/W2149684865", + "https://openalex.org/W2151801809", + "https://openalex.org/W2153211312", + "https://openalex.org/W2153962014", + "https://openalex.org/W2158738673", + "https://openalex.org/W2165612380", + "https://openalex.org/W2169384781", + "https://openalex.org/W2170654002", + "https://openalex.org/W2172142456", + "https://openalex.org/W2174678383", + "https://openalex.org/W2435251607", + "https://openalex.org/W2561675875", + "https://openalex.org/W2798573942", + "https://openalex.org/W2915186198", + "https://openalex.org/W2949696181", + "https://openalex.org/W2952299822", + "https://openalex.org/W2953123431", + "https://openalex.org/W3042893949", + "https://openalex.org/W3157411736", + "https://openalex.org/W4205241946", + "https://openalex.org/W4240008182", + "https://openalex.org/W4249379282", + "https://openalex.org/W4285719527", + "https://openalex.org/W6604296810", + "https://openalex.org/W6614676750", + "https://openalex.org/W6629232668", + "https://openalex.org/W6630268012", + "https://openalex.org/W6631307659", + "https://openalex.org/W6632118081", + "https://openalex.org/W6633640926", + "https://openalex.org/W6635379667", + "https://openalex.org/W6635548358", + "https://openalex.org/W6636628491", + "https://openalex.org/W6638423001", + "https://openalex.org/W6641777427", + "https://openalex.org/W6643036076", + "https://openalex.org/W6644484350", + "https://openalex.org/W6666817399", + "https://openalex.org/W6673691841", + "https://openalex.org/W6673781366", + "https://openalex.org/W6679004887", + "https://openalex.org/W6679453733", + "https://openalex.org/W6681835404", + "https://openalex.org/W6682342947", + "https://openalex.org/W6738852829", + "https://openalex.org/W6792154874", + "https://openalex.org/W6794861161", + "https://openalex.org/W7046466245", + "https://openalex.org/W7064660697" + ], + "related_works": [ + "https://openalex.org/W2360898036", + "https://openalex.org/W2390857744", + "https://openalex.org/W2133651098", + "https://openalex.org/W2390698788", + "https://openalex.org/W2383063829", + "https://openalex.org/W2138922887", + "https://openalex.org/W2082678934", + "https://openalex.org/W2035261173", + "https://openalex.org/W2106892947", + "https://openalex.org/W2237299843" + ], + "abstract_inverted_index": { + "The": [ + 0, + 74 + ], + "automated": [ + 1 + ], + "categorization": [ + 2, + 122 + ], + "(or": [ + 3 + ], + "classification)": [ + 4 + ], + "of": [ + 5, + 25, + 66, + 71, + 76, + 89, + 104 + ], + "texts": [ + 6 + ], + "into": [ + 7 + ], + "predefined": [ + 8 + ], + "categories": [ + 9 + ], + "has": [ + 10 + ], + "witnessed": [ + 11 + ], + "a": [ + 12, + 53, + 59, + 64, + 90, + 96 + ], + "booming": [ + 13 + ], + "interest": [ + 14 + ], + "in": [ + 15, + 27, + 85, + 102, + 133 + ], + "the": [ + 16, + 22, + 31, + 38, + 41, + 69, + 72, + 80, + 86, + 117, + 126 + ], + "last": [ + 17 + ], + "10": [ + 18 + ], + "years,": [ + 19 + ], + "due": [ + 20 + ], + "to": [ + 21, + 34, + 44, + 111, + 120, + 137 + ], + "increased": [ + 23 + ], + "availability": [ + 24 + ], + "documents": [ + 26 + ], + "digital": [ + 28 + ], + "form": [ + 29 + ], + "and": [ + 30, + 108, + 146 + ], + "ensuing": [ + 32 + ], + "need": [ + 33 + ], + "organize": [ + 35 + ], + "them.": [ + 36 + ], + "In": [ + 37 + ], + "research": [ + 39 + ], + "community": [ + 40 + ], + "dominant": [ + 42 + ], + "approach": [ + 43, + 78, + 83 + ], + "this": [ + 45, + 77 + ], + "problem": [ + 46 + ], + "is": [ + 47 + ], + "based": [ + 48 + ], + "on": [ + 49 + ], + "machine": [ + 50, + 127 + ], + "learning": [ + 51, + 128 + ], + "techniques:": [ + 52 + ], + "general": [ + 54 + ], + "inductive": [ + 55 + ], + "process": [ + 56 + ], + "automatically": [ + 57 + ], + "builds": [ + 58 + ], + "classifier": [ + 60, + 91, + 144, + 147 + ], + "by": [ + 61, + 92 + ], + "learning,": [ + 62 + ], + "from": [ + 63 + ], + "set": [ + 65 + ], + "preclassified": [ + 67 + ], + "documents,": [ + 68 + ], + "characteristics": [ + 70 + ], + "categories.": [ + 73 + ], + "advantages": [ + 75 + ], + "over": [ + 79 + ], + "knowledge": [ + 81 + ], + "engineering": [ + 82 + ], + "(consisting": [ + 84 + ], + "manual": [ + 87 + ], + "definition": [ + 88 + ], + "domain": [ + 93 + ], + "experts)": [ + 94 + ], + "are": [ + 95 + ], + "very": [ + 97 + ], + "good": [ + 98 + ], + "effectiveness,": [ + 99 + ], + "considerable": [ + 100 + ], + "savings": [ + 101 + ], + "terms": [ + 103 + ], + "expert": [ + 105 + ], + "labor": [ + 106 + ], + "power,": [ + 107 + ], + "straightforward": [ + 109 + ], + "portability": [ + 110 + ], + "different": [ + 112, + 139 + ], + "domains.": [ + 113 + ], + "This": [ + 114 + ], + "survey": [ + 115 + ], + "discusses": [ + 116 + ], + "main": [ + 118 + ], + "approaches": [ + 119 + ], + "text": [ + 121 + ], + "that": [ + 123 + ], + "fall": [ + 124 + ], + "within": [ + 125 + ], + "paradigm.": [ + 129 + ], + "We": [ + 130 + ], + "will": [ + 131 + ], + "discuss": [ + 132 + ], + "detail": [ + 134 + ], + "issues": [ + 135 + ], + "pertaining": [ + 136 + ], + "three": [ + 138 + ], + "problems,": [ + 140 + ], + "namely,": [ + 141 + ], + "document": [ + 142 + ], + "representation,": [ + 143 + ], + "construction,": [ + 145 + ], + "evaluation.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 43 + }, + { + "year": 2025, + "cited_by_count": 154 + }, + { + "year": 2024, + "cited_by_count": 162 + }, + { + "year": 2023, + "cited_by_count": 189 + }, + { + "year": 2022, + "cited_by_count": 208 + }, + { + "year": 2021, + "cited_by_count": 255 + }, + { + "year": 2020, + "cited_by_count": 387 + }, + { + "year": 2019, + "cited_by_count": 377 + }, + { + "year": 2018, + "cited_by_count": 423 + }, + { + "year": 2017, + "cited_by_count": 392 + }, + { + "year": 2016, + "cited_by_count": 423 + }, + { + "year": 2015, + "cited_by_count": 449 + }, + { + "year": 2014, + "cited_by_count": 482 + }, + { + "year": 2013, + "cited_by_count": 433 + }, + { + "year": 2012, + "cited_by_count": 433 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2021-02-01T00:00:00" + }, + { + "id": "https://openalex.org/W1504694836", + "doi": null, + "title": "Programs for Machine Learning", + "display_name": "Programs for Machine Learning", + "relevance_score": 5951.1997, + "publication_year": 1994, + "publication_date": "1994-01-01", + "ids": { + "openalex": "https://openalex.org/W1504694836", + "mag": "1504694836" + }, + "language": "en", + "primary_location": { + "id": "mag:1504694836", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5010384159", + "display_name": "Steven L. Salzberg", + "orcid": "https://orcid.org/0000-0002-8859-7432" + }, + "institutions": [ + { + "id": "https://openalex.org/I145311948", + "display_name": "Johns Hopkins University", + "ror": "https://ror.org/00za53h95", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I145311948" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Steven L. Salzberg", + "raw_affiliation_strings": [ + "Johns Hopkins University (" + ], + "raw_orcid": "https://orcid.org/0000-0002-8859-7432", + "affiliations": [ + { + "raw_affiliation_string": "Johns Hopkins University (", + "institution_ids": [ + "https://openalex.org/I145311948" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5071525910", + "display_name": "Alberto M. Segre", + "orcid": "https://orcid.org/0000-0002-8886-6559" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Alberto M. Segre", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-8886-6559", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5010384159" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I145311948" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 107.5137, + "has_fulltext": false, + "cited_by_count": 5804, + "citation_normalized_percentile": { + "value": 0.9997644, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11063", + "display_name": "Rough Sets and Fuzzy Logic", + "score": 0.9908000230789185, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/successor-cardinal", + "display_name": "Successor cardinal", + "score": 0.7589357495307922 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6884413957595825 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6734851002693176 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.6281428337097168 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6256998777389526 + }, + { + "id": "https://openalex.org/keywords/subject", + "display_name": "Subject (documents)", + "score": 0.5763391256332397 + }, + { + "id": "https://openalex.org/keywords/id3-algorithm", + "display_name": "ID3 algorithm", + "score": 0.5538088083267212 + }, + { + "id": "https://openalex.org/keywords/decision-tree-learning", + "display_name": "Decision tree learning", + "score": 0.2895125150680542 + }, + { + "id": "https://openalex.org/keywords/incremental-decision-tree", + "display_name": "Incremental decision tree", + "score": 0.1487756371498108 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.12600353360176086 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.1005239188671112 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C75306776", + "wikidata": "https://www.wikidata.org/wiki/Q7632662", + "display_name": "Successor cardinal", + "level": 2, + "score": 0.7589357495307922 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6884413957595825 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6734851002693176 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.6281428337097168 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6256998777389526 + }, + { + "id": "https://openalex.org/C2777855551", + "wikidata": "https://www.wikidata.org/wiki/Q12310021", + "display_name": "Subject (documents)", + "level": 2, + "score": 0.5763391256332397 + }, + { + "id": "https://openalex.org/C183931066", + "wikidata": "https://www.wikidata.org/wiki/Q1653378", + "display_name": "ID3 algorithm", + "level": 5, + "score": 0.5538088083267212 + }, + { + "id": "https://openalex.org/C5481197", + "wikidata": "https://www.wikidata.org/wiki/Q16766476", + "display_name": "Decision tree learning", + "level": 3, + "score": 0.2895125150680542 + }, + { + "id": "https://openalex.org/C10229987", + "wikidata": "https://www.wikidata.org/wiki/Q17083028", + "display_name": "Incremental decision tree", + "level": 4, + "score": 0.1487756371498108 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.12600353360176086 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.1005239188671112 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:1504694836", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.5799999833106995 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W1534707631", + "https://openalex.org/W1573640198", + "https://openalex.org/W1594031697", + "https://openalex.org/W1604329830", + "https://openalex.org/W2149706766", + "https://openalex.org/W3085162807" + ], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W2966207845", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766", + "https://openalex.org/W2147169507", + "https://openalex.org/W2140190241", + "https://openalex.org/W2136000097", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2123504579", + "https://openalex.org/W2112076978", + "https://openalex.org/W2084812512", + "https://openalex.org/W1988790447", + "https://openalex.org/W1912123407", + "https://openalex.org/W1670263352", + "https://openalex.org/W1594031697", + "https://openalex.org/W1585743408", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "Algorithms": [ + 0 + ], + "for": [ + 1, + 64, + 87 + ], + "constructing": [ + 2 + ], + "decision": [ + 3, + 20, + 68 + ], + "trees": [ + 4, + 69 + ], + "are": [ + 5, + 31 + ], + "among": [ + 6 + ], + "the": [ + 7, + 33, + 37, + 49, + 104, + 117 + ], + "most": [ + 8, + 34, + 61 + ], + "well": [ + 9 + ], + "known": [ + 10 + ], + "and": [ + 11, + 27, + 43, + 122 + ], + "widely": [ + 12 + ], + "used": [ + 13 + ], + "of": [ + 14, + 51, + 99, + 119 + ], + "all": [ + 15 + ], + "machine": [ + 16, + 38 + ], + "learning": [ + 17, + 39 + ], + "methods.": [ + 18 + ], + "Among": [ + 19 + ], + "tree": [ + 21 + ], + "algorithms,": [ + 22 + ], + "J.": [ + 23 + ], + "Ross": [ + 24 + ], + "Quinlan's": [ + 25, + 72 + ], + "ID3": [ + 26 + ], + "its": [ + 28 + ], + "successor,": [ + 29 + ], + "C4.5,": [ + 30 + ], + "probably": [ + 32 + ], + "popular": [ + 35 + ], + "in": [ + 36 + ], + "community.": [ + 40 + ], + "These": [ + 41 + ], + "algorithms": [ + 42 + ], + "variations": [ + 44 + ], + "on": [ + 45 + ], + "them": [ + 46 + ], + "have": [ + 47 + ], + "been": [ + 48 + ], + "subject": [ + 50 + ], + "numerous": [ + 52 + ], + "research": [ + 53 + ], + "papers": [ + 54 + ], + "since": [ + 55 + ], + "Quinlan": [ + 56, + 90 + ], + "introduced": [ + 57 + ], + "ID3.": [ + 58 + ], + "Until": [ + 59 + ], + "recently,": [ + 60 + ], + "researchers": [ + 62, + 121 + ], + "looking": [ + 63 + ], + "an": [ + 65 + ], + "introduction": [ + 66 + ], + "to": [ + 67, + 71, + 116 + ], + "turned": [ + 70 + ], + "seminal": [ + 73 + ], + "1986": [ + 74 + ], + "Machine": [ + 75, + 88 + ], + "Learning": [ + 76 + ], + "journal": [ + 77 + ], + "article": [ + 78 + ], + "[Quinlan,": [ + 79 + ], + "1986].": [ + 80 + ], + "In": [ + 81 + ], + "his": [ + 82, + 100 + ], + "new": [ + 83 + ], + "book,": [ + 84 + ], + "C4.5:": [ + 85 + ], + "Programs": [ + 86 + ], + "Learning,": [ + 89 + ], + "has": [ + 91 + ], + "put": [ + 92 + ], + "together": [ + 93 + ], + "a": [ + 94, + 113 + ], + "definitive,": [ + 95 + ], + "much": [ + 96 + ], + "needed": [ + 97 + ], + "description": [ + 98 + ], + "complete": [ + 101 + ], + "system,": [ + 102 + ], + "including": [ + 103 + ], + "latest": [ + 105 + ], + "developments.": [ + 106 + ], + "As": [ + 107 + ], + "such,": [ + 108 + ], + "this": [ + 109 + ], + "book": [ + 110 + ], + "will": [ + 111 + ], + "be": [ + 112 + ], + "welcome": [ + 114 + ], + "addition": [ + 115 + ], + "library": [ + 118 + ], + "many": [ + 120 + ], + "students.": [ + 123 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 11 + }, + { + "year": 2024, + "cited_by_count": 25 + }, + { + "year": 2023, + "cited_by_count": 36 + }, + { + "year": 2022, + "cited_by_count": 48 + }, + { + "year": 2021, + "cited_by_count": 153 + }, + { + "year": 2020, + "cited_by_count": 167 + }, + { + "year": 2019, + "cited_by_count": 143 + }, + { + "year": 2018, + "cited_by_count": 160 + }, + { + "year": 2017, + "cited_by_count": 145 + }, + { + "year": 2016, + "cited_by_count": 190 + }, + { + "year": 2015, + "cited_by_count": 311 + }, + { + "year": 2014, + "cited_by_count": 283 + }, + { + "year": 2013, + "cited_by_count": 321 + }, + { + "year": 2012, + "cited_by_count": 284 + } + ], + "updated_date": "2026-04-26T08:31:28.666265", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2271840356", + "doi": "https://doi.org/10.48550/arxiv.1603.04467", + "title": "TensorFlow: Large-Scale Machine Learning on Heterogeneous Distributed Systems", + "display_name": "TensorFlow: Large-Scale Machine Learning on Heterogeneous Distributed Systems", + "relevance_score": 5946.9307, + "publication_year": 2016, + "publication_date": "2016-03-14", + "ids": { + "openalex": "https://openalex.org/W2271840356", + "doi": "https://doi.org/10.48550/arxiv.1603.04467", + "mag": "2271840356" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1603.04467", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Abadi, Martín", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027820479", + "display_name": "Ashish Agarwal", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Agarwal, Ashish", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Barham, Paul", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047736127", + "display_name": "Eugene Brevdo", + "orcid": "https://orcid.org/0009-0005-7965-3534" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Brevdo, Eugene", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715424", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-8631-2424" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Chen, Zhifeng", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069624169", + "display_name": "Craig Citro", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Citro, Craig", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5066927687", + "display_name": "Gregory S. Corrado", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Corrado, Greg S.", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Davis, Andy", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Dean, Jeffrey", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Devin, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ghemawat, Sanjay", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004271128", + "display_name": "Ian Goodfellow", + "orcid": "https://orcid.org/0000-0003-3937-2322" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Goodfellow, Ian", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5064042510", + "display_name": "Andrew Harp", + "orcid": "https://orcid.org/0000-0002-4836-7878" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Harp, Andrew", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Irving, Geoffrey", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Isard, Michael", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110220840", + "display_name": "Yangqing Jia", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jia, Yangqing", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067370075", + "display_name": "Rafał Józefowicz", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jozefowicz, Rafal", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031789995", + "display_name": "Łukasz Kaiser", + "orcid": "https://orcid.org/0000-0003-1092-6010" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kaiser, Lukasz", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kudlur, Manjunath", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Levenberg, Josh", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5045113162", + "display_name": "Dan Mané", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Mane, Dan", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Monga, Rajat", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Moore, Sherry", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Murray, Derek", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039751155", + "display_name": "Chris Olah", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Olah, Chris", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5113452656", + "display_name": "Mike Schuster", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Schuster, Mike", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032356827", + "display_name": "Jonathon Shlens", + "orcid": "https://orcid.org/0000-0001-9513-4244" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shlens, Jonathon", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Steiner, Benoit", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006446297", + "display_name": "Ilya Sutskever", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Sutskever, Ilya", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080065269", + "display_name": "Kunal Talwar", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Talwar, Kunal", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tucker, Paul", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013813527", + "display_name": "Vincent Vanhoucke", + "orcid": "https://orcid.org/0000-0003-0544-2791" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vanhoucke, Vincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vasudevan, Vijay", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059594867", + "display_name": "Fernanda Viégas", + "orcid": "https://orcid.org/0000-0002-4951-4008" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Viegas, Fernanda", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003562101", + "display_name": "Oriol Vinyals", + "orcid": "https://orcid.org/0000-0001-7848-7283" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vinyals, Oriol", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Warden, Pete", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039276358", + "display_name": "Martin Wattenberg", + "orcid": "https://orcid.org/0000-0003-0904-4862" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wattenberg, Martin", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wicke, Martin", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Yu, Yuan", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zheng, Xiaoqiang", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 40, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 9772, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9970999956130981, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9970999956130981, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10101", + "display_name": "Cloud Computing and Resource Management", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11986", + "display_name": "Scientific Computing and Data Management", + "score": 0.9957000017166138, + "subfield": { + "id": "https://openalex.org/subfields/1802", + "display_name": "Information Systems and Management" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6250410079956055 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5916432738304138 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.463681161403656 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3644576668739319 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.36219537258148193 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.11677020788192749 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.11492305994033813 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6250410079956055 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5916432738304138 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.463681161403656 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3644576668739319 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.36219537258148193 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.11677020788192749 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.11492305994033813 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1603.04467", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1603.04467", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.5299999713897705 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 42, + "referenced_works": [ + "https://openalex.org/W1442374986", + "https://openalex.org/W1484210532", + "https://openalex.org/W1487337216", + "https://openalex.org/W1498436455", + "https://openalex.org/W1526734559", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1614298861", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1738019091", + "https://openalex.org/W1827297289", + "https://openalex.org/W1869752048", + "https://openalex.org/W1947291763", + "https://openalex.org/W1978660892", + "https://openalex.org/W1978924650", + "https://openalex.org/W2002257715", + "https://openalex.org/W2016053056", + "https://openalex.org/W2017351599", + "https://openalex.org/W2032036568", + "https://openalex.org/W2035424729", + "https://openalex.org/W2055312318", + "https://openalex.org/W2064675550", + "https://openalex.org/W2082171780", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100830825", + "https://openalex.org/W2123024445", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131975293", + "https://openalex.org/W2138243089", + "https://openalex.org/W2141992894", + "https://openalex.org/W2146757372", + "https://openalex.org/W2155893237", + "https://openalex.org/W2160815625", + "https://openalex.org/W2168231600", + "https://openalex.org/W2171532807", + "https://openalex.org/W2181607856", + "https://openalex.org/W2253807446", + "https://openalex.org/W2507756961", + "https://openalex.org/W2949117887", + "https://openalex.org/W2950789693", + "https://openalex.org/W2951781666" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 20, + 138, + 153 + ], + "is": [ + 1, + 65 + ], + "an": [ + 2, + 10, + 141, + 162 + ], + "interface": [ + 3, + 139, + 145 + ], + "for": [ + 4, + 12, + 83, + 93, + 97 + ], + "expressing": [ + 5 + ], + "machine": [ + 6, + 99 + ], + "learning": [ + 7, + 100 + ], + "algorithms,": [ + 8, + 77 + ], + "and": [ + 9, + 43, + 54, + 67, + 80, + 88, + 96, + 113, + 130, + 140, + 155, + 173 + ], + "implementation": [ + 11, + 142, + 158 + ], + "executing": [ + 13 + ], + "such": [ + 14, + 40, + 59 + ], + "algorithms.": [ + 15 + ], + "A": [ + 16 + ], + "computation": [ + 17 + ], + "expressed": [ + 18 + ], + "using": [ + 19 + ], + "can": [ + 21, + 68 + ], + "be": [ + 22, + 69 + ], + "executed": [ + 23 + ], + "with": [ + 24 + ], + "little": [ + 25 + ], + "or": [ + 26 + ], + "no": [ + 27 + ], + "change": [ + 28 + ], + "on": [ + 29 + ], + "a": [ + 30, + 73, + 107, + 156 + ], + "wide": [ + 31, + 74 + ], + "variety": [ + 32, + 75 + ], + "of": [ + 33, + 50, + 52, + 56, + 76, + 110, + 143 + ], + "heterogeneous": [ + 34 + ], + "systems,": [ + 35 + ], + "ranging": [ + 36 + ], + "from": [ + 37 + ], + "mobile": [ + 38 + ], + "devices": [ + 39, + 58 + ], + "as": [ + 41, + 60, + 161 + ], + "phones": [ + 42 + ], + "tablets": [ + 44 + ], + "up": [ + 45 + ], + "to": [ + 46, + 71 + ], + "large-scale": [ + 47 + ], + "distributed": [ + 48 + ], + "systems": [ + 49, + 101 + ], + "hundreds": [ + 51 + ], + "machines": [ + 53 + ], + "thousands": [ + 55 + ], + "computational": [ + 57, + 131 + ], + "GPU": [ + 61 + ], + "cards.": [ + 62 + ], + "The": [ + 63, + 152 + ], + "system": [ + 64 + ], + "flexible": [ + 66 + ], + "used": [ + 70, + 92 + ], + "express": [ + 72 + ], + "including": [ + 78, + 116 + ], + "training": [ + 79 + ], + "inference": [ + 81 + ], + "algorithms": [ + 82 + ], + "deep": [ + 84 + ], + "neural": [ + 85 + ], + "network": [ + 86 + ], + "models,": [ + 87 + ], + "it": [ + 89 + ], + "has": [ + 90 + ], + "been": [ + 91 + ], + "conducting": [ + 94 + ], + "research": [ + 95 + ], + "deploying": [ + 98 + ], + "into": [ + 102 + ], + "production": [ + 103 + ], + "across": [ + 104 + ], + "more": [ + 105 + ], + "than": [ + 106 + ], + "dozen": [ + 108 + ], + "areas": [ + 109 + ], + "computer": [ + 111, + 119 + ], + "science": [ + 112 + ], + "other": [ + 114 + ], + "fields,": [ + 115 + ], + "speech": [ + 117 + ], + "recognition,": [ + 118 + ], + "vision,": [ + 120 + ], + "robotics,": [ + 121 + ], + "information": [ + 122, + 128 + ], + "retrieval,": [ + 123 + ], + "natural": [ + 124 + ], + "language": [ + 125 + ], + "processing,": [ + 126 + ], + "geographic": [ + 127 + ], + "extraction,": [ + 129 + ], + "drug": [ + 132 + ], + "discovery.": [ + 133 + ], + "This": [ + 134 + ], + "paper": [ + 135 + ], + "describes": [ + 136 + ], + "the": [ + 137, + 166 + ], + "that": [ + 144, + 146 + ], + "we": [ + 147 + ], + "have": [ + 148 + ], + "built": [ + 149 + ], + "at": [ + 150, + 176 + ], + "Google.": [ + 151 + ], + "API": [ + 154 + ], + "reference": [ + 157 + ], + "were": [ + 159 + ], + "released": [ + 160 + ], + "open-source": [ + 163 + ], + "package": [ + 164 + ], + "under": [ + 165 + ], + "Apache": [ + 167 + ], + "2.0": [ + 168 + ], + "license": [ + 169 + ], + "in": [ + 170 + ], + "November,": [ + 171 + ], + "2015": [ + 172 + ], + "are": [ + 174 + ], + "available": [ + 175 + ], + "www.tensorflow.org.": [ + 177 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 34 + }, + { + "year": 2025, + "cited_by_count": 298 + }, + { + "year": 2024, + "cited_by_count": 727 + }, + { + "year": 2023, + "cited_by_count": 903 + }, + { + "year": 2022, + "cited_by_count": 846 + }, + { + "year": 2021, + "cited_by_count": 1496 + }, + { + "year": 2020, + "cited_by_count": 1433 + }, + { + "year": 2019, + "cited_by_count": 1315 + }, + { + "year": 2018, + "cited_by_count": 1564 + }, + { + "year": 2017, + "cited_by_count": 996 + }, + { + "year": 2016, + "cited_by_count": 156 + }, + { + "year": 2015, + "cited_by_count": 2 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2402144811", + "doi": "https://doi.org/10.5555/3026877.3026899", + "title": "TensorFlow: a system for large-scale machine learning", + "display_name": "TensorFlow: a system for large-scale machine learning", + "relevance_score": 5231.6167, + "publication_year": 2016, + "publication_date": "2016-11-02", + "ids": { + "openalex": "https://openalex.org/W2402144811", + "doi": "https://doi.org/10.5555/3026877.3026899", + "mag": "2402144811" + }, + "language": "en", + "primary_location": { + "id": "mag:2402144811", + "is_oa": false, + "landing_page_url": "https://www.usenix.org/system/files/conference/osdi16/osdi16-abadi.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420647", + "display_name": "Operating Systems Design and Implementation", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Operating Systems Design and Implementation", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Martı́n Abadi", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Paul Barham", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100665512", + "display_name": "Jianmin Chen", + "orcid": "https://orcid.org/0000-0001-5859-3070" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jianmin Chen", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5859-3070", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715421", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-5137-1344" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zhifeng Chen", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5137-1344", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Andy Davis", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jay B. Dean", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0003-1362-0500", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Matthieu Devin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sanjay Ghemawat", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0009-0005-6843-3093", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Geoffrey Irving", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Michael Isard", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Manjunath Kudlur", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Josh Levenberg", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rajat Monga", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sherry Moore", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Derek G. Murray", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Benoit Steiner", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0002-5767-4976", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Paul A. Tucker", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vijay Vasudevan", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Pete Warden", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Martin Wicke", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yuan Yu", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xiaoqiang Zheng", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5151-8561", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 22, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 330.6462, + "has_fulltext": false, + "cited_by_count": 6353, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "265", + "last_page": "283" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9969000220298767, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/dataflow", + "display_name": "Dataflow", + "score": 0.9571843147277832 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.830622673034668 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.711643636226654 + }, + { + "id": "https://openalex.org/keywords/multi-core-processor", + "display_name": "Multi-core processor", + "score": 0.5773373246192932 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5193118453025818 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.4896014332771301 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.4813452661037445 + }, + { + "id": "https://openalex.org/keywords/scalability", + "display_name": "Scalability", + "score": 0.47406429052352905 + }, + { + "id": "https://openalex.org/keywords/inference", + "display_name": "Inference", + "score": 0.4678526520729065 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.44974687695503235 + }, + { + "id": "https://openalex.org/keywords/dataflow-architecture", + "display_name": "Dataflow architecture", + "score": 0.4496024250984192 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.4395424723625183 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.3712141215801239 + }, + { + "id": "https://openalex.org/keywords/parallel-computing", + "display_name": "Parallel computing", + "score": 0.33661338686943054 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.21078741550445557 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.14919248223304749 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C96324660", + "wikidata": "https://www.wikidata.org/wiki/Q205446", + "display_name": "Dataflow", + "level": 2, + "score": 0.9571843147277832 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.830622673034668 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.711643636226654 + }, + { + "id": "https://openalex.org/C78766204", + "wikidata": "https://www.wikidata.org/wiki/Q555032", + "display_name": "Multi-core processor", + "level": 2, + "score": 0.5773373246192932 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5193118453025818 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.4896014332771301 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.4813452661037445 + }, + { + "id": "https://openalex.org/C48044578", + "wikidata": "https://www.wikidata.org/wiki/Q727490", + "display_name": "Scalability", + "level": 2, + "score": 0.47406429052352905 + }, + { + "id": "https://openalex.org/C2776214188", + "wikidata": "https://www.wikidata.org/wiki/Q408386", + "display_name": "Inference", + "level": 2, + "score": 0.4678526520729065 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.44974687695503235 + }, + { + "id": "https://openalex.org/C176727019", + "wikidata": "https://www.wikidata.org/wiki/Q1172415", + "display_name": "Dataflow architecture", + "level": 3, + "score": 0.4496024250984192 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.4395424723625183 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.3712141215801239 + }, + { + "id": "https://openalex.org/C173608175", + "wikidata": "https://www.wikidata.org/wiki/Q232661", + "display_name": "Parallel computing", + "level": 1, + "score": 0.33661338686943054 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.21078741550445557 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.14919248223304749 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2402144811", + "is_oa": false, + "landing_page_url": "https://www.usenix.org/system/files/conference/osdi16/osdi16-abadi.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420647", + "display_name": "Operating Systems Design and Implementation", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Operating Systems Design and Implementation", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "id": "https://metadata.un.org/sdg/9", + "score": 0.4000000059604645 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 55, + "referenced_works": [ + "https://openalex.org/W104184427", + "https://openalex.org/W145476170", + "https://openalex.org/W1425731158", + "https://openalex.org/W1442374986", + "https://openalex.org/W1485981043", + "https://openalex.org/W1493893823", + "https://openalex.org/W1498436455", + "https://openalex.org/W1526734559", + "https://openalex.org/W1539309091", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1815076433", + "https://openalex.org/W1947291763", + "https://openalex.org/W1978660892", + "https://openalex.org/W2016053056", + "https://openalex.org/W2032036568", + "https://openalex.org/W2035424729", + "https://openalex.org/W2041517243", + "https://openalex.org/W2061570747", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066443755", + "https://openalex.org/W2083842231", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100664567", + "https://openalex.org/W2100830825", + "https://openalex.org/W2117539524", + "https://openalex.org/W2122465391", + "https://openalex.org/W2131975293", + "https://openalex.org/W2132339004", + "https://openalex.org/W2140833774", + "https://openalex.org/W2141992894", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146502635", + "https://openalex.org/W2146757372", + "https://openalex.org/W2147527908", + "https://openalex.org/W2160815625", + "https://openalex.org/W2168231600", + "https://openalex.org/W2172654076", + "https://openalex.org/W2186615578", + "https://openalex.org/W2194775991", + "https://openalex.org/W2253807446", + "https://openalex.org/W2259472270", + "https://openalex.org/W2336650964", + "https://openalex.org/W2339765813", + "https://openalex.org/W2384495648", + "https://openalex.org/W2521218765", + "https://openalex.org/W2525778437", + "https://openalex.org/W2618530766", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949888546", + "https://openalex.org/W2950577311", + "https://openalex.org/W2951781666", + "https://openalex.org/W2962844195" + ], + "related_works": [ + "https://openalex.org/W3118608800", + "https://openalex.org/W2970971581", + "https://openalex.org/W2964121744", + "https://openalex.org/W2949117887", + "https://openalex.org/W2919115771", + "https://openalex.org/W2899771611", + "https://openalex.org/W2194775991", + "https://openalex.org/W2186615578", + "https://openalex.org/W2163605009", + "https://openalex.org/W2155893237", + "https://openalex.org/W2117539524", + "https://openalex.org/W2112796928", + "https://openalex.org/W2108598243", + "https://openalex.org/W2101234009", + "https://openalex.org/W2099471712", + "https://openalex.org/W2097117768", + "https://openalex.org/W2095705004", + "https://openalex.org/W2064675550", + "https://openalex.org/W1901129140", + "https://openalex.org/W1686810756" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 91, + 102, + 123, + 150, + 159 + ], + "is": [ + 1, + 86 + ], + "a": [ + 2, + 36, + 43, + 47, + 104, + 109 + ], + "machine": [ + 3, + 48, + 141 + ], + "learning": [ + 4, + 142 + ], + "system": [ + 5 + ], + "that": [ + 6, + 27, + 29, + 158 + ], + "operates": [ + 7 + ], + "at": [ + 8 + ], + "large": [ + 9 + ], + "scale": [ + 10 + ], + "and": [ + 11, + 24, + 45, + 58, + 99, + 113, + 134, + 153 + ], + "in": [ + 12, + 42, + 76, + 124 + ], + "heterogeneous": [ + 13 + ], + "environments.": [ + 14 + ], + "Tensor-Flow": [ + 15 + ], + "uses": [ + 16 + ], + "dataflow": [ + 17, + 37, + 151 + ], + "graphs": [ + 18 + ], + "to": [ + 19, + 71, + 94 + ], + "represent": [ + 20 + ], + "computation,": [ + 21 + ], + "shared": [ + 22, + 84 + ], + "state,": [ + 23 + ], + "the": [ + 25, + 33, + 72, + 81, + 89, + 149, + 155 + ], + "operations": [ + 26 + ], + "mutate": [ + 28 + ], + "state.": [ + 30 + ], + "It": [ + 31 + ], + "maps": [ + 32 + ], + "nodes": [ + 34 + ], + "of": [ + 35, + 83, + 106 + ], + "graph": [ + 38 + ], + "across": [ + 39, + 49 + ], + "many": [ + 40 + ], + "machines": [ + 41 + ], + "cluster,": [ + 44 + ], + "within": [ + 46 + ], + "multiple": [ + 50 + ], + "computational": [ + 51 + ], + "devices,": [ + 52 + ], + "including": [ + 53 + ], + "multicore": [ + 54 + ], + "CPUs,": [ + 55 + ], + "general-purpose": [ + 56 + ], + "GPUs,": [ + 57 + ], + "custom-designed": [ + 59 + ], + "ASICs": [ + 60 + ], + "known": [ + 61 + ], + "as": [ + 62, + 130 + ], + "Tensor": [ + 63 + ], + "Processing": [ + 64 + ], + "Units": [ + 65 + ], + "(TPUs).": [ + 66 + ], + "This": [ + 67 + ], + "architecture": [ + 68 + ], + "gives": [ + 69 + ], + "flexibility": [ + 70 + ], + "application": [ + 73 + ], + "developer:": [ + 74 + ], + "whereas": [ + 75 + ], + "previous": [ + 77 + ], + "parameter": [ + 78 + ], + "server": [ + 79 + ], + "designs": [ + 80 + ], + "management": [ + 82 + ], + "state": [ + 85 + ], + "built": [ + 87 + ], + "into": [ + 88 + ], + "system,": [ + 90 + ], + "enables": [ + 92 + ], + "developers": [ + 93 + ], + "experiment": [ + 95 + ], + "with": [ + 96, + 108 + ], + "novel": [ + 97 + ], + "optimizations": [ + 98 + ], + "training": [ + 100, + 112 + ], + "algorithms.": [ + 101 + ], + "supports": [ + 103 + ], + "variety": [ + 105 + ], + "applications,": [ + 107 + ], + "focus": [ + 110 + ], + "on": [ + 111, + 115 + ], + "inference": [ + 114 + ], + "deep": [ + 116 + ], + "neural": [ + 117 + ], + "networks.": [ + 118 + ], + "Several": [ + 119 + ], + "Google": [ + 120 + ], + "services": [ + 121 + ], + "use": [ + 122 + ], + "production,": [ + 125 + ], + "we": [ + 126, + 147 + ], + "have": [ + 127 + ], + "released": [ + 128 + ], + "it": [ + 129, + 135 + ], + "an": [ + 131 + ], + "open-source": [ + 132 + ], + "project,": [ + 133 + ], + "has": [ + 136 + ], + "become": [ + 137 + ], + "widely": [ + 138 + ], + "used": [ + 139 + ], + "for": [ + 140, + 161 + ], + "research.": [ + 143 + ], + "In": [ + 144 + ], + "this": [ + 145 + ], + "paper,": [ + 146 + ], + "describe": [ + 148 + ], + "model": [ + 152 + ], + "demonstrate": [ + 154 + ], + "compelling": [ + 156 + ], + "performance": [ + 157 + ], + "achieves": [ + 160 + ], + "several": [ + 162 + ], + "real-world": [ + 163 + ], + "applications.": [ + 164 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 11 + }, + { + "year": 2025, + "cited_by_count": 106 + }, + { + "year": 2024, + "cited_by_count": 160 + }, + { + "year": 2023, + "cited_by_count": 187 + }, + { + "year": 2022, + "cited_by_count": 221 + }, + { + "year": 2021, + "cited_by_count": 1336 + }, + { + "year": 2020, + "cited_by_count": 1696 + }, + { + "year": 2019, + "cited_by_count": 1675 + }, + { + "year": 2018, + "cited_by_count": 802 + }, + { + "year": 2017, + "cited_by_count": 151 + }, + { + "year": 2016, + "cited_by_count": 7 + }, + { + "year": 2015, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2912213068", + "doi": "https://doi.org/10.1145/3298981", + "title": "Federated Machine Learning", + "display_name": "Federated Machine Learning", + "relevance_score": 5104.1743, + "publication_year": 2019, + "publication_date": "2019-01-28", + "ids": { + "openalex": "https://openalex.org/W2912213068", + "doi": "https://doi.org/10.1145/3298981", + "mag": "2912213068" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3298981", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3298981", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2492086750", + "display_name": "ACM Transactions on Intelligent Systems and Technology", + "issn_l": "2157-6904", + "issn": [ + "2157-6904", + "2157-6912" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Transactions on Intelligent Systems and Technology", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5100636286", + "display_name": "Qiang Yang", + "orcid": "https://orcid.org/0000-0001-5059-8360" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": true, + "raw_author_name": "Qiang Yang", + "raw_affiliation_strings": [ + "Hong Kong University of Science and Technology, Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong University of Science and Technology, Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100356161", + "display_name": "Yang Liu", + "orcid": "https://orcid.org/0000-0003-3800-3533" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Yang Liu", + "raw_affiliation_strings": [ + "Webank, Shenzhen, China" + ], + "raw_orcid": "https://orcid.org/0000-0003-3800-3533", + "affiliations": [ + { + "raw_affiliation_string": "Webank, Shenzhen, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068882233", + "display_name": "Tianjian Chen", + "orcid": "https://orcid.org/0000-0002-8479-2054" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tianjian Chen", + "raw_affiliation_strings": [ + "Webank, Shenzhen, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Webank, Shenzhen, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5051874566", + "display_name": "Yongxin Tong", + "orcid": "https://orcid.org/0000-0002-5598-0312" + }, + "institutions": [ + { + "id": "https://openalex.org/I82880672", + "display_name": "Beihang University", + "ror": "https://ror.org/00wk2mp56", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I82880672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Yongxin Tong", + "raw_affiliation_strings": [ + "Beihang University, Beijing, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Beihang University, Beijing, China", + "institution_ids": [ + "https://openalex.org/I82880672" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5100636286" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I200769079" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 336.5216, + "has_fulltext": false, + "cited_by_count": 5790, + "citation_normalized_percentile": { + "value": 0.99993867, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "10", + "issue": "2", + "first_page": "1", + "last_page": "19" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11598", + "display_name": "Internet Traffic Analysis and Secure E-voting", + "score": 0.9965000152587891, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.9133003950119019 + }, + { + "id": "https://openalex.org/keywords/federated-learning", + "display_name": "Federated learning", + "score": 0.9119365215301514 + }, + { + "id": "https://openalex.org/keywords/transfer-of-learning", + "display_name": "Transfer of learning", + "score": 0.5265006422996521 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.39959585666656494 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.34242358803749084 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.3284221887588501 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.9133003950119019 + }, + { + "id": "https://openalex.org/C2992525071", + "wikidata": "https://www.wikidata.org/wiki/Q50818671", + "display_name": "Federated learning", + "level": 2, + "score": 0.9119365215301514 + }, + { + "id": "https://openalex.org/C150899416", + "wikidata": "https://www.wikidata.org/wiki/Q1820378", + "display_name": "Transfer of learning", + "level": 2, + "score": 0.5265006422996521 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.39959585666656494 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.34242358803749084 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.3284221887588501 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1145/3298981", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3298981", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2492086750", + "display_name": "ACM Transactions on Intelligent Systems and Technology", + "issn_l": "2157-6904", + "issn": [ + "2157-6904", + "2157-6912" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Transactions on Intelligent Systems and Technology", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:repository.hkust.edu.hk:1783.1-95671", + "is_oa": false, + "landing_page_url": "http://repository.hkust.edu.hk/ir/Record/1783.1-95671", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401796", + "display_name": "Rare & Special e-Zone (The Hong Kong University of Science and Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I200769079", + "host_organization_name": "Hong Kong University of Science and Technology", + "host_organization_lineage": [ + "https://openalex.org/I200769079" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Article" + }, + { + "id": "pmh:oai:repository.ust.hk:1783.1-95671", + "is_oa": false, + "landing_page_url": "http://repository.ust.hk/ir/Record/1783.1-95671", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401796", + "display_name": "Rare & Special e-Zone (The Hong Kong University of Science and Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I200769079", + "host_organization_name": "Hong Kong University of Science and Technology", + "host_organization_lineage": [ + "https://openalex.org/I200769079" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 85, + "referenced_works": [ + "https://openalex.org/W150223756", + "https://openalex.org/W162878246", + "https://openalex.org/W199752024", + "https://openalex.org/W1484769234", + "https://openalex.org/W1485800369", + "https://openalex.org/W1488526968", + "https://openalex.org/W1510952750", + "https://openalex.org/W1559506103", + "https://openalex.org/W1574534563", + "https://openalex.org/W1964366273", + "https://openalex.org/W1968265138", + "https://openalex.org/W1971991172", + "https://openalex.org/W1985511977", + "https://openalex.org/W2016758618", + "https://openalex.org/W2024652123", + "https://openalex.org/W2027471022", + "https://openalex.org/W2041416246", + "https://openalex.org/W2053637704", + "https://openalex.org/W2082624086", + "https://openalex.org/W2092422002", + "https://openalex.org/W2093367651", + "https://openalex.org/W2109426455", + "https://openalex.org/W2112022568", + "https://openalex.org/W2112340198", + "https://openalex.org/W2128906841", + "https://openalex.org/W2132737349", + "https://openalex.org/W2137351756", + "https://openalex.org/W2139336600", + "https://openalex.org/W2159024459", + "https://openalex.org/W2165698076", + "https://openalex.org/W2257979135", + "https://openalex.org/W2283463896", + "https://openalex.org/W2295292576", + "https://openalex.org/W2317339301", + "https://openalex.org/W2435473771", + "https://openalex.org/W2473418344", + "https://openalex.org/W2530417694", + "https://openalex.org/W2536058570", + "https://openalex.org/W2577421826", + "https://openalex.org/W2585580772", + "https://openalex.org/W2591882872", + "https://openalex.org/W2606882085", + "https://openalex.org/W2618494520", + "https://openalex.org/W2679684481", + "https://openalex.org/W2701059868", + "https://openalex.org/W2757853533", + "https://openalex.org/W2765200655", + "https://openalex.org/W2766255512", + "https://openalex.org/W2767079719", + "https://openalex.org/W2768347741", + "https://openalex.org/W2773194476", + "https://openalex.org/W2774000609", + "https://openalex.org/W2777914285", + "https://openalex.org/W2781091734", + "https://openalex.org/W2788629937", + "https://openalex.org/W2793216106", + "https://openalex.org/W2793925626", + "https://openalex.org/W2794888826", + "https://openalex.org/W2798551148", + "https://openalex.org/W2799803467", + "https://openalex.org/W2801958627", + "https://openalex.org/W2807006176", + "https://openalex.org/W2810065831", + "https://openalex.org/W2886722183", + "https://openalex.org/W2895865029", + "https://openalex.org/W2914304175", + "https://openalex.org/W2949140995", + "https://openalex.org/W2950460048", + "https://openalex.org/W2951152347", + "https://openalex.org/W2951368041", + "https://openalex.org/W2951798842", + "https://openalex.org/W2962877476", + "https://openalex.org/W2963106566", + "https://openalex.org/W2990138404", + "https://openalex.org/W3029558105", + "https://openalex.org/W3209546151", + "https://openalex.org/W4248358572", + "https://openalex.org/W4249529812", + "https://openalex.org/W4300427714", + "https://openalex.org/W4301418013", + "https://openalex.org/W4301483968", + "https://openalex.org/W6606067566", + "https://openalex.org/W6732586565", + "https://openalex.org/W6738383168", + "https://openalex.org/W6807767519" + ], + "related_works": [ + "https://openalex.org/W4298221930", + "https://openalex.org/W2777914285", + "https://openalex.org/W3013363440", + "https://openalex.org/W4287823391", + "https://openalex.org/W4312762663", + "https://openalex.org/W3035927627", + "https://openalex.org/W3201126466", + "https://openalex.org/W4317941881", + "https://openalex.org/W3128909129", + "https://openalex.org/W3123837699" + ], + "abstract_inverted_index": { + "Today’s": [ + 0 + ], + "artificial": [ + 1 + ], + "intelligence": [ + 2 + ], + "still": [ + 3 + ], + "faces": [ + 4 + ], + "two": [ + 5 + ], + "major": [ + 6 + ], + "challenges.": [ + 7 + ], + "One": [ + 8 + ], + "is": [ + 9, + 24 + ], + "that,": [ + 10 + ], + "in": [ + 11, + 16, + 51 + ], + "most": [ + 12 + ], + "industries,": [ + 13 + ], + "data": [ + 14, + 28, + 98 + ], + "exists": [ + 15 + ], + "the": [ + 17, + 25, + 44, + 79 + ], + "form": [ + 18 + ], + "of": [ + 19, + 27, + 87 + ], + "isolated": [ + 20 + ], + "islands.": [ + 21 + ], + "The": [ + 22 + ], + "other": [ + 23 + ], + "strengthening": [ + 26 + ], + "privacy": [ + 29 + ], + "and": [ + 30, + 68, + 76, + 82 + ], + "security.": [ + 31 + ], + "We": [ + 32, + 72 + ], + "propose": [ + 33, + 96 + ], + "a": [ + 34, + 55, + 84 + ], + "possible": [ + 35 + ], + "solution": [ + 36, + 109 + ], + "to": [ + 37, + 110, + 113 + ], + "these": [ + 38 + ], + "challenges:": [ + 39 + ], + "secure": [ + 40, + 57 + ], + "federated": [ + 41, + 63, + 66, + 69, + 104 + ], + "learning.": [ + 42, + 71 + ], + "Beyond": [ + 43 + ], + "federated-learning": [ + 45, + 58, + 80 + ], + "framework": [ + 46 + ], + "first": [ + 47 + ], + "proposed": [ + 48 + ], + "by": [ + 49 + ], + "Google": [ + 50 + ], + "2016,": [ + 52 + ], + "we": [ + 53, + 95 + ], + "introduce": [ + 54 + ], + "comprehensive": [ + 56, + 85 + ], + "framework,": [ + 59, + 81 + ], + "which": [ + 60 + ], + "includes": [ + 61 + ], + "horizontal": [ + 62 + ], + "learning,": [ + 64, + 67 + ], + "vertical": [ + 65 + ], + "transfer": [ + 70 + ], + "provide": [ + 73, + 83 + ], + "definitions,": [ + 74 + ], + "architectures,": [ + 75 + ], + "applications": [ + 77 + ], + "for": [ + 78 + ], + "survey": [ + 86 + ], + "existing": [ + 88 + ], + "works": [ + 89 + ], + "on": [ + 90, + 103 + ], + "this": [ + 91 + ], + "subject.": [ + 92 + ], + "In": [ + 93 + ], + "addition,": [ + 94 + ], + "building": [ + 97 + ], + "networks": [ + 99 + ], + "among": [ + 100 + ], + "organizations": [ + 101 + ], + "based": [ + 102 + ], + "mechanisms": [ + 105 + ], + "as": [ + 106 + ], + "an": [ + 107 + ], + "effective": [ + 108 + ], + "allowing": [ + 111 + ], + "knowledge": [ + 112 + ], + "be": [ + 114 + ], + "shared": [ + 115 + ], + "without": [ + 116 + ], + "compromising": [ + 117 + ], + "user": [ + 118 + ], + "privacy.": [ + 119 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 345 + }, + { + "year": 2025, + "cited_by_count": 1176 + }, + { + "year": 2024, + "cited_by_count": 1009 + }, + { + "year": 2023, + "cited_by_count": 939 + }, + { + "year": 2022, + "cited_by_count": 806 + }, + { + "year": 2021, + "cited_by_count": 932 + }, + { + "year": 2020, + "cited_by_count": 496 + }, + { + "year": 2019, + "cited_by_count": 85 + }, + { + "year": 2018, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2009086942", + "doi": "https://doi.org/10.1198/tech.2007.s518", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 4972.8193, + "publication_year": 2007, + "publication_date": "2007-08-01", + "ids": { + "openalex": "https://openalex.org/W2009086942", + "doi": "https://doi.org/10.1198/tech.2007.s518", + "mag": "2009086942" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1198/tech.2007.s518", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/tech.2007.s518", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5062571011", + "display_name": "Radford M. Neal", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Radford M Neal", + "raw_affiliation_strings": [ + "University of Toronto" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Toronto", + "institution_ids": [ + "https://openalex.org/I185261750" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5062571011" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I185261750" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 173.8255, + "has_fulltext": false, + "cited_by_count": 4651, + "citation_normalized_percentile": { + "value": 0.99994787, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 95, + "max": 100 + }, + "biblio": { + "volume": "49", + "issue": "3", + "first_page": "366", + "last_page": "366" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.23559999465942383, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.23559999465942383, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6036144495010376 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5715402960777283 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5367371439933777 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.4431344270706177 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6036144495010376 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5715402960777283 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5367371439933777 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.4431344270706177 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1198/tech.2007.s518", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/tech.2007.s518", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W2033914206", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "(2007).": [ + 0 + ], + "Pattern": [ + 1 + ], + "Recognition": [ + 2 + ], + "and": [ + 3 + ], + "Machine": [ + 4 + ], + "Learning.": [ + 5 + ], + "Technometrics:": [ + 6 + ], + "Vol.": [ + 7 + ], + "49,": [ + 8 + ], + "No.": [ + 9 + ], + "3,": [ + 10 + ], + "pp.": [ + 11 + ], + "366-366.": [ + 12 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 11 + }, + { + "year": 2024, + "cited_by_count": 227 + }, + { + "year": 2023, + "cited_by_count": 381 + }, + { + "year": 2022, + "cited_by_count": 433 + }, + { + "year": 2021, + "cited_by_count": 419 + }, + { + "year": 2020, + "cited_by_count": 369 + }, + { + "year": 2019, + "cited_by_count": 450 + }, + { + "year": 2018, + "cited_by_count": 372 + }, + { + "year": 2017, + "cited_by_count": 291 + }, + { + "year": 2016, + "cited_by_count": 284 + }, + { + "year": 2015, + "cited_by_count": 294 + }, + { + "year": 2014, + "cited_by_count": 222 + }, + { + "year": 2013, + "cited_by_count": 191 + }, + { + "year": 2012, + "cited_by_count": 178 + } + ], + "updated_date": "2026-05-19T08:33:51.333923", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2131241448", + "doi": "https://doi.org/10.48550/arxiv.1206.2944", + "title": "Practical Bayesian Optimization of Machine Learning Algorithms", + "display_name": "Practical Bayesian Optimization of Machine Learning Algorithms", + "relevance_score": 4882.38, + "publication_year": 2012, + "publication_date": "2012-06-13", + "ids": { + "openalex": "https://openalex.org/W2131241448", + "doi": "https://doi.org/10.48550/arxiv.1206.2944", + "mag": "2131241448" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1206.2944", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5112347601", + "display_name": "Jasper Snoek", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Snoek, Jasper", + "raw_affiliation_strings": [ + "[Department of Computer Science, University of Toronto]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Department of Computer Science, University of Toronto]", + "institution_ids": [ + "https://openalex.org/I185261750" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5019862529", + "display_name": "Hugo Larochelle", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I135117807", + "display_name": "Université de Sherbrooke", + "ror": "https://ror.org/00kybxq39", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I135117807" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Larochelle, Hugo", + "raw_affiliation_strings": [ + "Department of Computer Science, University of Sherbrooke," + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of Sherbrooke,", + "institution_ids": [ + "https://openalex.org/I135117807" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5007769527", + "display_name": "Ryan P. Adams", + "orcid": "https://orcid.org/0000-0002-5704-6654" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Adams, Ryan P.", + "raw_affiliation_strings": [ + "School of Engineering & Applied Sciences Harvard University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Engineering & Applied Sciences Harvard University", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5112347601" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I185261750" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 5659, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/bayesian-optimization", + "display_name": "Bayesian optimization", + "score": 0.6480942964553833 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6321470737457275 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.5293997526168823 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.49968791007995605 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4541047513484955 + }, + { + "id": "https://openalex.org/keywords/optimization-algorithm", + "display_name": "Optimization algorithm", + "score": 0.422710120677948 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4147215187549591 + }, + { + "id": "https://openalex.org/keywords/mathematical-optimization", + "display_name": "Mathematical optimization", + "score": 0.23351716995239258 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.17170017957687378 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778049539", + "wikidata": "https://www.wikidata.org/wiki/Q17002908", + "display_name": "Bayesian optimization", + "level": 2, + "score": 0.6480942964553833 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6321470737457275 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.5293997526168823 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.49968791007995605 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4541047513484955 + }, + { + "id": "https://openalex.org/C2987595161", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Optimization algorithm", + "level": 2, + "score": 0.422710120677948 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4147215187549591 + }, + { + "id": "https://openalex.org/C126255220", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Mathematical optimization", + "level": 1, + "score": 0.23351716995239258 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.17170017957687378 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1206.2944", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1206.2944", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 23, + "referenced_works": [ + "https://openalex.org/W60686164", + "https://openalex.org/W78356000", + "https://openalex.org/W84569508", + "https://openalex.org/W1497675750", + "https://openalex.org/W1746819321", + "https://openalex.org/W1973333099", + "https://openalex.org/W2061144551", + "https://openalex.org/W2097998348", + "https://openalex.org/W2099201756", + "https://openalex.org/W2106411961", + "https://openalex.org/W2106869737", + "https://openalex.org/W2119595900", + "https://openalex.org/W2129458072", + "https://openalex.org/W2132984949", + "https://openalex.org/W2141125852", + "https://openalex.org/W2147196093", + "https://openalex.org/W2151238122", + "https://openalex.org/W2165599843", + "https://openalex.org/W2189424119", + "https://openalex.org/W2197776371", + "https://openalex.org/W2951665052", + "https://openalex.org/W2964172739", + "https://openalex.org/W3118608800" + ], + "related_works": [ + "https://openalex.org/W3199608561", + "https://openalex.org/W4382049207", + "https://openalex.org/W4366549320", + "https://openalex.org/W4287863136", + "https://openalex.org/W3006015132", + "https://openalex.org/W2965078190", + "https://openalex.org/W3040644038", + "https://openalex.org/W4311207076", + "https://openalex.org/W3203633096", + "https://openalex.org/W2355226480" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 53, + 78, + 165, + 181 + ], + "algorithms": [ + 2, + 171, + 200, + 220 + ], + "frequently": [ + 3 + ], + "require": [ + 4 + ], + "careful": [ + 5 + ], + "tuning": [ + 6, + 17, + 67, + 163 + ], + "of": [ + 7, + 29, + 41, + 50, + 72, + 104, + 126, + 146, + 180, + 189, + 218 + ], + "model": [ + 8 + ], + "hyperparameters,": [ + 9 + ], + "regularization": [ + 10 + ], + "terms,": [ + 11 + ], + "and": [ + 12, + 131, + 183, + 206, + 227 + ], + "optimization": [ + 13, + 213 + ], + "parameters.": [ + 14 + ], + "Unfortunately,": [ + 15 + ], + "this": [ + 16, + 61 + ], + "is": [ + 18, + 38, + 82 + ], + "often": [ + 19 + ], + "a": [ + 20, + 51, + 77, + 85, + 88, + 138, + 215 + ], + "\"black": [ + 21 + ], + "art\"": [ + 22 + ], + "that": [ + 23, + 151, + 158, + 172, + 184, + 197 + ], + "requires": [ + 24 + ], + "expert": [ + 25 + ], + "experience,": [ + 26 + ], + "unwritten": [ + 27 + ], + "rules": [ + 28 + ], + "thumb,": [ + 30 + ], + "or": [ + 31, + 144, + 209 + ], + "sometimes": [ + 32 + ], + "brute-force": [ + 33 + ], + "search.": [ + 34 + ], + "Much": [ + 35 + ], + "more": [ + 36 + ], + "appealing": [ + 37 + ], + "the": [ + 39, + 48, + 56, + 65, + 70, + 98, + 105, + 124, + 127, + 132, + 142, + 176, + 187 + ], + "idea": [ + 40 + ], + "developing": [ + 42 + ], + "automatic": [ + 43, + 66, + 204 + ], + "approaches": [ + 44 + ], + "which": [ + 45, + 76 + ], + "can": [ + 46, + 136, + 154, + 185, + 207 + ], + "optimize": [ + 47 + ], + "performance": [ + 49, + 81, + 161 + ], + "given": [ + 52 + ], + "algorithm": [ + 54 + ], + "to": [ + 55, + 101, + 117, + 156 + ], + "task": [ + 57 + ], + "at": [ + 58 + ], + "hand.": [ + 59 + ], + "In": [ + 60 + ], + "work,": [ + 62 + ], + "we": [ + 63, + 121 + ], + "consider": [ + 64 + ], + "problem": [ + 68 + ], + "within": [ + 69 + ], + "framework": [ + 71 + ], + "Bayesian": [ + 73, + 147 + ], + "optimization,": [ + 74 + ], + "in": [ + 75, + 162 + ], + "algorithm's": [ + 79 + ], + "generalization": [ + 80 + ], + "modeled": [ + 83 + ], + "as": [ + 84 + ], + "sample": [ + 86 + ], + "from": [ + 87 + ], + "Gaussian": [ + 89, + 128 + ], + "process": [ + 90, + 129 + ], + "(GP).": [ + 91 + ], + "The": [ + 92 + ], + "tractable": [ + 93 + ], + "posterior": [ + 94 + ], + "distribution": [ + 95 + ], + "induced": [ + 96 + ], + "by": [ + 97, + 108 + ], + "GP": [ + 99 + ], + "leads": [ + 100 + ], + "efficient": [ + 102 + ], + "use": [ + 103 + ], + "information": [ + 106 + ], + "gathered": [ + 107 + ], + "previous": [ + 109, + 203 + ], + "experiments,": [ + 110 + ], + "enabling": [ + 111 + ], + "optimal": [ + 112 + ], + "choices": [ + 113, + 153 + ], + "about": [ + 114 + ], + "what": [ + 115 + ], + "parameters": [ + 116 + ], + "try": [ + 118 + ], + "next.": [ + 119 + ], + "Here": [ + 120 + ], + "show": [ + 122, + 150, + 196 + ], + "how": [ + 123 + ], + "effects": [ + 125 + ], + "prior": [ + 130 + ], + "associated": [ + 133 + ], + "inference": [ + 134 + ], + "procedure": [ + 135 + ], + "have": [ + 137 + ], + "large": [ + 139 + ], + "impact": [ + 140 + ], + "on": [ + 141, + 202, + 214 + ], + "success": [ + 143 + ], + "failure": [ + 145 + ], + "optimization.": [ + 148 + ], + "We": [ + 149, + 167, + 195 + ], + "thoughtful": [ + 152 + ], + "lead": [ + 155 + ], + "results": [ + 157 + ], + "exceed": [ + 159 + ], + "expert-level": [ + 160, + 212 + ], + "machine": [ + 164 + ], + "algorithms.": [ + 166 + ], + "also": [ + 168 + ], + "describe": [ + 169 + ], + "new": [ + 170 + ], + "take": [ + 173 + ], + "into": [ + 174 + ], + "account": [ + 175 + ], + "variable": [ + 177 + ], + "cost": [ + 178 + ], + "(duration)": [ + 179 + ], + "experiments": [ + 182 + ], + "leverage": [ + 186 + ], + "presence": [ + 188 + ], + "multiple": [ + 190 + ], + "cores": [ + 191 + ], + "for": [ + 192 + ], + "parallel": [ + 193 + ], + "experimentation.": [ + 194 + ], + "these": [ + 198 + ], + "proposed": [ + 199 + ], + "improve": [ + 201 + ], + "procedures": [ + 205 + ], + "reach": [ + 208 + ], + "surpass": [ + 210 + ], + "human": [ + 211 + ], + "diverse": [ + 216 + ], + "set": [ + 217 + ], + "contemporary": [ + 219 + ], + "including": [ + 221 + ], + "latent": [ + 222 + ], + "Dirichlet": [ + 223 + ], + "allocation,": [ + 224 + ], + "structured": [ + 225 + ], + "SVMs": [ + 226 + ], + "convolutional": [ + 228 + ], + "neural": [ + 229 + ], + "networks.": [ + 230 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 32 + }, + { + "year": 2025, + "cited_by_count": 500 + }, + { + "year": 2024, + "cited_by_count": 630 + }, + { + "year": 2023, + "cited_by_count": 637 + }, + { + "year": 2022, + "cited_by_count": 632 + }, + { + "year": 2021, + "cited_by_count": 872 + }, + { + "year": 2020, + "cited_by_count": 787 + }, + { + "year": 2019, + "cited_by_count": 613 + }, + { + "year": 2018, + "cited_by_count": 368 + }, + { + "year": 2017, + "cited_by_count": 201 + }, + { + "year": 2016, + "cited_by_count": 154 + }, + { + "year": 2015, + "cited_by_count": 113 + }, + { + "year": 2014, + "cited_by_count": 81 + }, + { + "year": 2013, + "cited_by_count": 31 + }, + { + "year": 2012, + "cited_by_count": 8 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2913668833", + "doi": null, + "title": "Proceedings of the 25th international conference on Machine learning", + "display_name": "Proceedings of the 25th international conference on Machine learning", + "relevance_score": 4811.663, + "publication_year": 2008, + "publication_date": "2008-07-05", + "ids": { + "openalex": "https://openalex.org/W2913668833", + "mag": "2913668833" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209046", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1390156", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5051617344", + "display_name": "William W. Cohen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "William W. Cohen", + "raw_affiliation_strings": [ + "Carnegie Mellon University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Carnegie Mellon University", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107835063", + "display_name": "Andrew McCallum", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I24603500", + "display_name": "University of Massachusetts Amherst", + "ror": "https://ror.org/0072zz521", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I24603500" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Andrew McCallum", + "raw_affiliation_strings": [ + "University of Massachusetts, Amherst" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Massachusetts, Amherst", + "institution_ids": [ + "https://openalex.org/I24603500" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5003010184", + "display_name": "Sam T. Roweis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sam T. Roweis", + "raw_affiliation_strings": [ + "University of Toronto and Google#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Toronto and Google#TAB#", + "institution_ids": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I185261750" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5051617344" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I74973139" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 211.7166, + "has_fulltext": false, + "cited_by_count": 5549, + "citation_normalized_percentile": { + "value": 0.99996634, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9751999974250793, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9751999974250793, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9610000252723694, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.949999988079071, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5605996251106262 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5152300000190735 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3871921896934509 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.3709452450275421 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.36655187606811523 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.28487396240234375 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5605996251106262 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5152300000190735 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3871921896934509 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.3709452450275421 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.36655187606811523 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.28487396240234375 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209046", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1390156", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:2913668833", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1390156", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306419644", + "display_name": "International Conference on Machine Learning", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "International Conference on Machine Learning", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Partnerships for the goals", + "id": "https://metadata.un.org/sdg/17", + "score": 0.4000000059604645 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [], + "abstract_inverted_index": { + "This": [ + 0, + 395, + 430 + ], + "volume": [ + 1 + ], + "contains": [ + 2 + ], + "the": [ + 3, + 7, + 18, + 22, + 33, + 41, + 62, + 74, + 84, + 128, + 132, + 145, + 158, + 169, + 175, + 178, + 182, + 203, + 215, + 221, + 225, + 285, + 290, + 315, + 330, + 344, + 355, + 422, + 427, + 439, + 442, + 499, + 515 + ], + "papers": [ + 4, + 96, + 199, + 219, + 239, + 251, + 267 + ], + "accepted": [ + 5, + 241 + ], + "to": [ + 6, + 99, + 125, + 127, + 205, + 242, + 307, + 310, + 343, + 450, + 475 + ], + "25th": [ + 8 + ], + "International": [ + 9, + 23 + ], + "Conference": [ + 10, + 77, + 86 + ], + "on": [ + 11, + 78, + 87, + 141, + 218 + ], + "Machine": [ + 12, + 24, + 516 + ], + "Learning": [ + 13, + 25, + 80, + 517 + ], + "(ICML": [ + 14 + ], + "2008).": [ + 15 + ], + "ICML": [ + 16, + 56, + 100, + 229, + 243, + 445, + 503 + ], + "is": [ + 17 + ], + "annual": [ + 19 + ], + "conference": [ + 20, + 292 + ], + "of": [ + 21, + 37, + 43, + 64, + 147, + 171, + 177, + 195, + 232, + 250, + 262, + 284, + 289, + 314, + 318, + 322, + 329, + 337, + 408, + 414, + 426, + 441, + 502, + 522 + ], + "Society": [ + 26 + ], + "(IMLS),": [ + 27 + ], + "and": [ + 28, + 35, + 69, + 82, + 131, + 144, + 166, + 188, + 220, + 270, + 325, + 334, + 364, + 369, + 377, + 382, + 387, + 392, + 404, + 418, + 467, + 470, + 481, + 494 + ], + "provides": [ + 29 + ], + "a": [ + 30, + 104, + 190, + 247, + 272, + 300, + 409, + 433, + 510 + ], + "venue": [ + 31 + ], + "for": [ + 32, + 193, + 228, + 277, + 436, + 490, + 519 + ], + "presentation": [ + 34 + ], + "discussion": [ + 36, + 154, + 180 + ], + "current": [ + 38 + ], + "research": [ + 39 + ], + "in": [ + 40, + 66, + 89, + 109, + 271, + 507 + ], + "field": [ + 42 + ], + "machine": [ + 44 + ], + "learning.": [ + 45 + ], + "These": [ + 46 + ], + "proceedings": [ + 47 + ], + "can": [ + 48 + ], + "also": [ + 49, + 349, + 487 + ], + "be": [ + 50, + 308 + ], + "found": [ + 51 + ], + "online": [ + 52, + 142 + ], + "at": [ + 53, + 61 + ], + "http://www.machinelearning.org.\r\n\r\nThis": [ + 54 + ], + "year,": [ + 55, + 245, + 444 + ], + "was": [ + 57, + 70, + 103, + 113 + ], + "held": [ + 58, + 353 + ], + "July": [ + 59 + ], + "5..9": [ + 60 + ], + "University": [ + 63 + ], + "Helsinki,": [ + 65, + 67 + ], + "Finland,": [ + 68 + ], + "co-located": [ + 71, + 511 + ], + "with": [ + 72, + 280, + 402, + 509 + ], + "COLT-2008,": [ + 73 + ], + "21st": [ + 75 + ], + "Annual": [ + 76 + ], + "Computational": [ + 79 + ], + "Theory,": [ + 81 + ], + "UAI-2008,": [ + 83 + ], + "24th": [ + 85 + ], + "Uncertainty": [ + 88 + ], + "Artificial": [ + 90 + ], + "Intelligence.": [ + 91 + ], + "No": [ + 92 + ], + "less": [ + 93 + ], + "than": [ + 94 + ], + "583": [ + 95 + ], + "were": [ + 97, + 123, + 152, + 200, + 240, + 253, + 304, + 399 + ], + "submitted": [ + 98 + ], + "2008.": [ + 101 + ], + "There": [ + 102, + 151 + ], + "very": [ + 105, + 305 + ], + "thorough": [ + 106 + ], + "review": [ + 107, + 192, + 226 + ], + "process,": [ + 108 + ], + "which": [ + 110, + 252 + ], + "each": [ + 111, + 194 + ], + "paper": [ + 112, + 501, + 524 + ], + "reviewed": [ + 114 + ], + "double-blind": [ + 115 + ], + "by": [ + 116, + 157, + 202, + 299, + 359, + 421 + ], + "three": [ + 117, + 428 + ], + "program": [ + 118, + 160 + ], + "committee": [ + 119, + 161 + ], + "(PC)": [ + 120 + ], + "members.": [ + 121 + ], + "Authors": [ + 122 + ], + "able": [ + 124, + 309 + ], + "respond": [ + 126 + ], + "initial": [ + 129 + ], + "reviews,": [ + 130 + ], + "PC": [ + 133 + ], + "members": [ + 134, + 184 + ], + "could": [ + 135 + ], + "then": [ + 136 + ], + "modify": [ + 137 + ], + "their": [ + 138, + 186, + 196, + 266 + ], + "reviews": [ + 139 + ], + "based": [ + 140 + ], + "discussions": [ + 143, + 279 + ], + "content": [ + 146 + ], + "this": [ + 148, + 244 + ], + "author": [ + 149, + 172 + ], + "response.": [ + 150 + ], + "two": [ + 153, + 296 + ], + "periods": [ + 155 + ], + "led": [ + 156 + ], + "senior": [ + 159 + ], + "(SPC),": [ + 162 + ], + "one": [ + 163, + 167, + 294 + ], + "just": [ + 164 + ], + "before": [ + 165, + 354 + ], + "after": [ + 168 + ], + "submission": [ + 170 + ], + "responses.": [ + 173 + ], + "At": [ + 174 + ], + "end": [ + 176 + ], + "second": [ + 179 + ], + "period,": [ + 181 + ], + "SPC": [ + 183 + ], + "gave": [ + 185, + 488 + ], + "recommendations": [ + 187 + ], + "provided": [ + 189, + 432 + ], + "summary": [ + 191 + ], + "papers.": [ + 197 + ], + "Some": [ + 198 + ], + "checked": [ + 201 + ], + "SPCs": [ + 204 + ], + "ensure": [ + 206 + ], + "that": [ + 207, + 231 + ], + "reviewer": [ + 208 + ], + "comments": [ + 209 + ], + "had": [ + 210 + ], + "been": [ + 211 + ], + "addressed.": [ + 212 + ], + "Apart": [ + 213 + ], + "from": [ + 214 + ], + "length": [ + 216 + ], + "restrictions": [ + 217 + ], + "compressed": [ + 222 + ], + "time": [ + 223, + 276 + ], + "frame,": [ + 224 + ], + "process": [ + 227 + ], + "resembles": [ + 230 + ], + "many": [ + 233 + ], + "journal": [ + 234 + ], + "publications.": [ + 235 + ], + "In": [ + 236, + 341, + 473 + ], + "total,": [ + 237 + ], + "158": [ + 238 + ], + "including": [ + 246 + ], + "small": [ + 248 + ], + "number": [ + 249 + ], + "initially": [ + 254 + ], + "conditionally": [ + 255 + ], + "accepted,": [ + 256 + ], + "yielding": [ + 257 + ], + "an": [ + 258 + ], + "overall": [ + 259 + ], + "acceptance": [ + 260 + ], + "rate": [ + 261 + ], + "27%.\r\n\r\nICML": [ + 263 + ], + "authors": [ + 264 + ], + "presented": [ + 265, + 358 + ], + "both": [ + 268 + ], + "orally": [ + 269 + ], + "poster": [ + 273 + ], + "session,": [ + 274 + ], + "allowing": [ + 275 + ], + "detailed": [ + 278 + ], + "any": [ + 281 + ], + "interested": [ + 282 + ], + "attendees": [ + 283, + 440 + ], + "conference.": [ + 286 + ], + "Each": [ + 287 + ], + "day": [ + 288, + 431 + ], + "main": [ + 291, + 356 + ], + "included": [ + 293, + 350 + ], + "or": [ + 295 + ], + "invited": [ + 297 + ], + "talks": [ + 298 + ], + "prominent": [ + 301 + ], + "researcher.": [ + 302 + ], + "We": [ + 303, + 456, + 513 + ], + "fortunate": [ + 306 + ], + "host": [ + 311 + ], + "Michael": [ + 312 + ], + "Collins,": [ + 313 + ], + "Massachusetts": [ + 316 + ], + "Institute": [ + 317 + ], + "Technology;": [ + 319 + ], + "Andrew": [ + 320 + ], + "Ng,": [ + 321 + ], + "Stanford": [ + 323 + ], + "University;": [ + 324 + ], + "Luc": [ + 326 + ], + "De": [ + 327 + ], + "Raedt,": [ + 328 + ], + "Katholieke": [ + 331 + ], + "Universiteit": [ + 332 + ], + "Leuven,": [ + 333 + ], + "John": [ + 335 + ], + "Winn": [ + 336 + ], + "Microsoft": [ + 338 + ], + "Research": [ + 339 + ], + "Cambridge.": [ + 340 + ], + "addition": [ + 342, + 474 + ], + "technical": [ + 345 + ], + "talks,": [ + 346 + ], + "ICML-": [ + 347 + ], + "2008": [ + 348 + ], + "nine": [ + 351 + ], + "tutorials": [ + 352 + ], + "conference,": [ + 357 + ], + "Alex": [ + 360 + ], + "Smola,": [ + 361 + ], + "Arthur": [ + 362 + ], + "Gretton,": [ + 363 + ], + "Kenji": [ + 365 + ], + "Fukumizu;": [ + 366 + ], + "Bert": [ + 367 + ], + "Kappen": [ + 368 + ], + "Marc": [ + 370 + ], + "Toussaint;": [ + 371 + ], + "Neil": [ + 372 + ], + "Lawrence;": [ + 373 + ], + "MartinWainwright;": [ + 374 + ], + "Ralf": [ + 375 + ], + "Herbrich": [ + 376 + ], + "Thore": [ + 378 + ], + "Graepel;": [ + 379 + ], + "Andreas": [ + 380 + ], + "Krause": [ + 381 + ], + "Carlos": [ + 383 + ], + "Guestrin;": [ + 384 + ], + "Shai": [ + 385 + ], + "Shalev-Shwartz": [ + 386 + ], + "Yoram": [ + 388 + ], + "Singer;": [ + 389 + ], + "Rob": [ + 390 + ], + "Fergus;": [ + 391 + ], + "Matthias": [ + 393 + ], + "Seeger.": [ + 394 + ], + "year": [ + 396 + ], + "our": [ + 397, + 462, + 465, + 476, + 523 + ], + "workshops": [ + 398, + 416 + ], + "organized": [ + 400 + ], + "jointly": [ + 401 + ], + "COLT": [ + 403 + ], + "UAI": [ + 405 + ], + "as": [ + 406 + ], + "part": [ + 407 + ], + "special": [ + 410 + ], + "overlap": [ + 411 + ], + "day,": [ + 412 + ], + "consisting": [ + 413 + ], + "eleven": [ + 415 + ], + "selected": [ + 417 + ], + "arranged": [ + 419 + ], + "collaboratively": [ + 420 + ], + "respective": [ + 423 + ], + "workshop": [ + 424 + ], + "chairs": [ + 425 + ], + "conferences.": [ + 429, + 455 + ], + "rich": [ + 434 + ], + "opportunity": [ + 435 + ], + "interaction": [ + 437 + ], + "among": [ + 438 + ], + "conferences.\r\n\r\nThis": [ + 443 + ], + "enlarged": [ + 446 + ], + "its": [ + 447 + ], + "award": [ + 448 + ], + "offerings": [ + 449 + ], + "match": [ + 451 + ], + "several": [ + 452 + ], + "other": [ + 453 + ], + "well-established": [ + 454 + ], + "hope": [ + 457 + ], + "these": [ + 458 + ], + "will": [ + 459 + ], + "help": [ + 460 + ], + "build": [ + 461 + ], + "community,": [ + 463 + ], + "celebrate": [ + 464 + ], + "advances,": [ + 466 + ], + "encourage": [ + 468 + ], + "applications": [ + 469 + ], + "long-term": [ + 471 + ], + "thinking.": [ + 472 + ], + "previously": [ + 477 + ], + "traditional": [ + 478 + ], + "Best": [ + 496 + ], + "Paper": [ + 480, + 484, + 493, + 497 + ], + "Student": [ + 483 + ], + "awards,": [ + 485 + ], + "we": [ + 486 + ], + "awards": [ + 489 + ], + "Application": [ + 492 + ], + "10-year": [ + 495 + ], + "(for": [ + 498 + ], + "best": [ + 500 + ], + "1998,": [ + 504 + ], + "optionally": [ + 505 + ], + "given": [ + 506 + ], + "conjunction": [ + 508 + ], + "conference).": [ + 512 + ], + "thank": [ + 514 + ], + "Journal": [ + 518 + ], + "sponsoring": [ + 520 + ], + "some": [ + 521 + ], + "awards.": [ + 525 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 1143 + }, + { + "year": 2023, + "cited_by_count": 870 + }, + { + "year": 2022, + "cited_by_count": 611 + }, + { + "year": 2021, + "cited_by_count": 497 + }, + { + "year": 2020, + "cited_by_count": 423 + }, + { + "year": 2019, + "cited_by_count": 289 + }, + { + "year": 2018, + "cited_by_count": 221 + }, + { + "year": 2017, + "cited_by_count": 220 + }, + { + "year": 2016, + "cited_by_count": 148 + }, + { + "year": 2015, + "cited_by_count": 122 + }, + { + "year": 2014, + "cited_by_count": 105 + }, + { + "year": 2013, + "cited_by_count": 109 + }, + { + "year": 2012, + "cited_by_count": 81 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2934399013", + "doi": "https://doi.org/10.1056/nejmra1814259", + "title": "Machine Learning in Medicine", + "display_name": "Machine Learning in Medicine", + "relevance_score": 4743.7256, + "publication_year": 2019, + "publication_date": "2019-04-03", + "ids": { + "openalex": "https://openalex.org/W2934399013", + "doi": "https://doi.org/10.1056/nejmra1814259", + "mag": "2934399013", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30943338" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1056/nejmra1814259", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmra1814259", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5022388476", + "display_name": "Alvin Rajkomar", + "orcid": "https://orcid.org/0000-0001-5750-5016" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Alvin Rajkomar", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Google, Mountain View, CA" + ], + "raw_orcid": "https://orcid.org/0000-0001-5750-5016", + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google, Mountain View, CA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jeffrey Dean", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Google, Mountain View, CA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google, Mountain View, CA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088509061", + "display_name": "Isaac S. Kohane", + "orcid": "https://orcid.org/0000-0003-2192-5160" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isaac Kohane", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Department of Biomedical Informatics, Harvard Medical School, Boston" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5022388476" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 204.0333, + "has_fulltext": false, + "cited_by_count": 3873, + "citation_normalized_percentile": { + "value": 0.99985435, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "380", + "issue": "14", + "first_page": "1347", + "last_page": "1358" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11636", + "display_name": "Artificial Intelligence in Healthcare and Education", + "score": 0.9979000091552734, + "subfield": { + "id": "https://openalex.org/subfields/2718", + "display_name": "Health Informatics" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T10350", + "display_name": "Electronic Health Records Systems", + "score": 0.9948999881744385, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/download", + "display_name": "Download", + "score": 0.6465957164764404 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.43065306544303894 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.39671552181243896 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.3796260952949524 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.37657836079597473 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.321466863155365 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.27166682481765747 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2780154274", + "wikidata": "https://www.wikidata.org/wiki/Q7126717", + "display_name": "Download", + "level": 2, + "score": 0.6465957164764404 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.43065306544303894 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.39671552181243896 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.3796260952949524 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.37657836079597473 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.321466863155365 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.27166682481765747 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1056/nejmra1814259", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmra1814259", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + { + "id": "pmid:30943338", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30943338", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The New England journal of medicine", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 78, + "referenced_works": [ + "https://openalex.org/W1524493166", + "https://openalex.org/W1529983430", + "https://openalex.org/W2005440935", + "https://openalex.org/W2009184733", + "https://openalex.org/W2009954208", + "https://openalex.org/W2027540165", + "https://openalex.org/W2033163059", + "https://openalex.org/W2033609349", + "https://openalex.org/W2043092953", + "https://openalex.org/W2054076956", + "https://openalex.org/W2083721602", + "https://openalex.org/W2096849439", + "https://openalex.org/W2103018059", + "https://openalex.org/W2103889389", + "https://openalex.org/W2119472226", + "https://openalex.org/W2137767404", + "https://openalex.org/W2147246123", + "https://openalex.org/W2166187912", + "https://openalex.org/W2167414941", + "https://openalex.org/W2174931596", + "https://openalex.org/W2267932926", + "https://openalex.org/W2276530525", + "https://openalex.org/W2337116044", + "https://openalex.org/W2415841860", + "https://openalex.org/W2468431774", + "https://openalex.org/W2512902140", + "https://openalex.org/W2515682654", + "https://openalex.org/W2528491735", + "https://openalex.org/W2530247697", + "https://openalex.org/W2548723212", + "https://openalex.org/W2557738935", + "https://openalex.org/W2581082771", + "https://openalex.org/W2598272139", + "https://openalex.org/W2732701910", + "https://openalex.org/W2734356183", + "https://openalex.org/W2738975713", + "https://openalex.org/W2740060821", + "https://openalex.org/W2752747624", + "https://openalex.org/W2753059860", + "https://openalex.org/W2754518417", + "https://openalex.org/W2758348074", + "https://openalex.org/W2762741128", + "https://openalex.org/W2772246530", + "https://openalex.org/W2772723798", + "https://openalex.org/W2782945064", + "https://openalex.org/W2784499877", + "https://openalex.org/W2785268987", + "https://openalex.org/W2785526886", + "https://openalex.org/W2788633781", + "https://openalex.org/W2789894922", + "https://openalex.org/W2790444357", + "https://openalex.org/W2791819448", + "https://openalex.org/W2792902933", + "https://openalex.org/W2793267369", + "https://openalex.org/W2794457162", + "https://openalex.org/W2799837895", + "https://openalex.org/W2804685074", + "https://openalex.org/W2809453031", + "https://openalex.org/W2886281300", + "https://openalex.org/W2887623535", + "https://openalex.org/W2887719255", + "https://openalex.org/W2888109941", + "https://openalex.org/W2889242407", + "https://openalex.org/W2889494558", + "https://openalex.org/W2894917609", + "https://openalex.org/W2896385413", + "https://openalex.org/W2896817483", + "https://openalex.org/W2897434820", + "https://openalex.org/W2899560923", + "https://openalex.org/W2902802452", + "https://openalex.org/W2908201961", + "https://openalex.org/W2914579361", + "https://openalex.org/W2916105049", + "https://openalex.org/W2919115771", + "https://openalex.org/W3098949126", + "https://openalex.org/W4205374244", + "https://openalex.org/W4212774754", + "https://openalex.org/W4296220420" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W4389568370", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W1489783725" + ], + "abstract_inverted_index": { + "Interview": [ + 0 + ], + "with": [ + 1, + 32 + ], + "Dr.": [ + 2 + ], + "Isaac": [ + 3 + ], + "Kohane": [ + 4 + ], + "on": [ + 5 + ], + "machine": [ + 6 + ], + "learning": [ + 7 + ], + "in": [ + 8 + ], + "medicine.": [ + 9 + ], + "(16:31)Download": [ + 10 + ], + "In": [ + 11 + ], + "this": [ + 12 + ], + "view": [ + 13 + ], + "of": [ + 14, + 17, + 28 + ], + "the": [ + 15, + 43 + ], + "future": [ + 16 + ], + "medicine,": [ + 18 + ], + "patient–provider": [ + 19 + ], + "interactions": [ + 20, + 31 + ], + "are": [ + 21, + 37 + ], + "informed": [ + 22 + ], + "and": [ + 23, + 39, + 47 + ], + "supported": [ + 24 + ], + "by": [ + 25 + ], + "massive": [ + 26 + ], + "amounts": [ + 27 + ], + "data": [ + 29, + 36 + ], + "from": [ + 30 + ], + "similar": [ + 33 + ], + "patients.": [ + 34 + ], + "These": [ + 35 + ], + "collected": [ + 38 + ], + "curated": [ + 40 + ], + "to": [ + 41 + ], + "provide": [ + 42 + ], + "latest": [ + 44 + ], + "evidence-based": [ + 45 + ], + "assessment": [ + 46 + ], + "recommendations.": [ + 48 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 438 + }, + { + "year": 2025, + "cited_by_count": 852 + }, + { + "year": 2024, + "cited_by_count": 636 + }, + { + "year": 2023, + "cited_by_count": 536 + }, + { + "year": 2022, + "cited_by_count": 465 + }, + { + "year": 2021, + "cited_by_count": 495 + }, + { + "year": 2020, + "cited_by_count": 354 + }, + { + "year": 2019, + "cited_by_count": 91 + }, + { + "year": 2018, + "cited_by_count": 2 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1485009520", + "doi": "https://doi.org/10.48550/arxiv.1506.04214", + "title": "Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting", + "display_name": "Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting", + "relevance_score": 4733.2676, + "publication_year": 2015, + "publication_date": "2015-06-13", + "ids": { + "openalex": "https://openalex.org/W1485009520", + "doi": "https://doi.org/10.48550/arxiv.1506.04214", + "mag": "1485009520" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1506.04214", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5091515481", + "display_name": "Xingjian Shi", + "orcid": "https://orcid.org/0000-0002-2700-7742" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": true, + "raw_author_name": "Shi, Xingjian", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018500051", + "display_name": "Zhourong Chen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Zhourong", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100663938", + "display_name": "Hao Wang", + "orcid": "https://orcid.org/0000-0003-0090-2840" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Wang, Hao", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073139380", + "display_name": "Dit‐Yan Yeung", + "orcid": "https://orcid.org/0000-0003-3716-8125" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Yeung, Dit-Yan", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101899480", + "display_name": "Wai Kin Wong", + "orcid": "https://orcid.org/0000-0001-8724-0696" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210104672", + "display_name": "Hong Kong Observatory", + "ror": "https://ror.org/01bvxvq19", + "country_code": "CN", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210104672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Wong, Wai-kin", + "raw_affiliation_strings": [ + "Hong Kong Observatory Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong Observatory Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I4210104672" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5057734311", + "display_name": "Wang‐chun Woo", + "orcid": "https://orcid.org/0000-0001-5401-0333" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210104672", + "display_name": "Hong Kong Observatory", + "ror": "https://ror.org/01bvxvq19", + "country_code": "CN", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210104672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Woo, Wang-chun", + "raw_affiliation_strings": [ + "Hong Kong Observatory Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong Observatory Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I4210104672" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5091515481" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I200769079" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 6642, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10466", + "display_name": "Meteorological Phenomena and Simulations", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/1902", + "display_name": "Atmospheric Science" + }, + "field": { + "id": "https://openalex.org/fields/19", + "display_name": "Earth and Planetary Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10466", + "display_name": "Meteorological Phenomena and Simulations", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/1902", + "display_name": "Atmospheric Science" + }, + "field": { + "id": "https://openalex.org/fields/19", + "display_name": "Earth and Planetary Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11490", + "display_name": "Hydrological Forecasting Using AI", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10930", + "display_name": "Flood Risk Assessment and Management", + "score": 0.9973999857902527, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/nowcasting", + "display_name": "Nowcasting", + "score": 0.9966049790382385 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7099078297615051 + }, + { + "id": "https://openalex.org/keywords/convolutional-neural-network", + "display_name": "Convolutional neural network", + "score": 0.6329242587089539 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5754866600036621 + }, + { + "id": "https://openalex.org/keywords/precipitation", + "display_name": "Precipitation", + "score": 0.5342473387718201 + }, + { + "id": "https://openalex.org/keywords/state", + "display_name": "State (computer science)", + "score": 0.4683465361595154 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4540000259876251 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.4144560396671295 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.3392675518989563 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.20132499933242798 + }, + { + "id": "https://openalex.org/keywords/meteorology", + "display_name": "Meteorology", + "score": 0.17883428931236267 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.09717044234275818 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781013037", + "wikidata": "https://www.wikidata.org/wiki/Q1433331", + "display_name": "Nowcasting", + "level": 2, + "score": 0.9966049790382385 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7099078297615051 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.6329242587089539 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5754866600036621 + }, + { + "id": "https://openalex.org/C107054158", + "wikidata": "https://www.wikidata.org/wiki/Q25257", + "display_name": "Precipitation", + "level": 2, + "score": 0.5342473387718201 + }, + { + "id": "https://openalex.org/C48103436", + "wikidata": "https://www.wikidata.org/wiki/Q599031", + "display_name": "State (computer science)", + "level": 2, + "score": 0.4683465361595154 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4540000259876251 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.4144560396671295 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.3392675518989563 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.20132499933242798 + }, + { + "id": "https://openalex.org/C153294291", + "wikidata": "https://www.wikidata.org/wiki/Q25261", + "display_name": "Meteorology", + "level": 1, + "score": 0.17883428931236267 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.09717044234275818 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1506.04214", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1506.04214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Climate action", + "id": "https://metadata.un.org/sdg/13", + "score": 0.8500000238418579 + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 27, + "referenced_works": [ + "https://openalex.org/W588441650", + "https://openalex.org/W962117656", + "https://openalex.org/W1514535095", + "https://openalex.org/W1568514080", + "https://openalex.org/W1606347560", + "https://openalex.org/W1810943226", + "https://openalex.org/W1815076433", + "https://openalex.org/W1867429401", + "https://openalex.org/W1903029394", + "https://openalex.org/W1905882502", + "https://openalex.org/W1947481528", + "https://openalex.org/W1982479097", + "https://openalex.org/W2024414272", + "https://openalex.org/W2030459037", + "https://openalex.org/W2064675550", + "https://openalex.org/W2079565659", + "https://openalex.org/W2116435618", + "https://openalex.org/W2130942839", + "https://openalex.org/W2157331557", + "https://openalex.org/W2557283755", + "https://openalex.org/W2787727108", + "https://openalex.org/W2950635152", + "https://openalex.org/W2951183276", + "https://openalex.org/W2952453038", + "https://openalex.org/W4233546237", + "https://openalex.org/W4294306266", + "https://openalex.org/W4308909683" + ], + "related_works": [ + "https://openalex.org/W2098567841", + "https://openalex.org/W3124209601", + "https://openalex.org/W2238969010", + "https://openalex.org/W2189249776", + "https://openalex.org/W1526105959", + "https://openalex.org/W3193710367", + "https://openalex.org/W3122492506", + "https://openalex.org/W4388046081", + "https://openalex.org/W1778290058", + "https://openalex.org/W1166616657" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 21 + ], + "precipitation": [ + 3, + 46, + 101, + 125 + ], + "nowcasting": [ + 4, + 47, + 102 + ], + "is": [ + 5 + ], + "to": [ + 6, + 73, + 93 + ], + "predict": [ + 7 + ], + "the": [ + 8, + 37, + 57, + 60, + 68, + 79, + 86, + 100, + 119 + ], + "future": [ + 9 + ], + "rainfall": [ + 10 + ], + "intensity": [ + 11 + ], + "in": [ + 12, + 54, + 77 + ], + "a": [ + 13, + 17, + 49 + ], + "local": [ + 14 + ], + "region": [ + 15 + ], + "over": [ + 16 + ], + "relatively": [ + 18 + ], + "short": [ + 19 + ], + "period": [ + 20 + ], + "time.": [ + 22 + ], + "Very": [ + 23 + ], + "few": [ + 24 + ], + "previous": [ + 25 + ], + "studies": [ + 26 + ], + "have": [ + 27, + 74 + ], + "examined": [ + 28 + ], + "this": [ + 29, + 42 + ], + "crucial": [ + 30 + ], + "and": [ + 31, + 59, + 81, + 90, + 114, + 118 + ], + "challenging": [ + 32 + ], + "weather": [ + 33 + ], + "forecasting": [ + 34, + 52 + ], + "problem": [ + 35, + 53 + ], + "from": [ + 36 + ], + "machine": [ + 38 + ], + "learning": [ + 39 + ], + "perspective.": [ + 40 + ], + "In": [ + 41 + ], + "paper,": [ + 43 + ], + "we": [ + 44, + 84 + ], + "formulate": [ + 45 + ], + "as": [ + 48 + ], + "spatiotemporal": [ + 50, + 64, + 111 + ], + "sequence": [ + 51 + ], + "which": [ + 55 + ], + "both": [ + 56, + 78 + ], + "input": [ + 58 + ], + "prediction": [ + 61 + ], + "target": [ + 62 + ], + "are": [ + 63 + ], + "sequences.": [ + 65 + ], + "By": [ + 66 + ], + "extending": [ + 67 + ], + "fully": [ + 69 + ], + "connected": [ + 70 + ], + "LSTM": [ + 71, + 88 + ], + "(FC-LSTM)": [ + 72 + ], + "convolutional": [ + 75, + 87 + ], + "structures": [ + 76 + ], + "input-to-state": [ + 80 + ], + "state-to-state": [ + 82 + ], + "transitions,": [ + 83 + ], + "propose": [ + 85 + ], + "(ConvLSTM)": [ + 89 + ], + "use": [ + 91 + ], + "it": [ + 92 + ], + "build": [ + 94 + ], + "an": [ + 95 + ], + "end-to-end": [ + 96 + ], + "trainable": [ + 97 + ], + "model": [ + 98 + ], + "for": [ + 99, + 124 + ], + "problem.": [ + 103 + ], + "Experiments": [ + 104 + ], + "show": [ + 105 + ], + "that": [ + 106 + ], + "our": [ + 107 + ], + "ConvLSTM": [ + 108 + ], + "network": [ + 109 + ], + "captures": [ + 110 + ], + "correlations": [ + 112 + ], + "better": [ + 113 + ], + "consistently": [ + 115 + ], + "outperforms": [ + 116 + ], + "FC-LSTM": [ + 117 + ], + "state-of-the-art": [ + 120 + ], + "operational": [ + 121 + ], + "ROVER": [ + 122 + ], + "algorithm": [ + 123 + ], + "nowcasting.": [ + 126 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 24 + }, + { + "year": 2025, + "cited_by_count": 513 + }, + { + "year": 2024, + "cited_by_count": 855 + }, + { + "year": 2023, + "cited_by_count": 1013 + }, + { + "year": 2022, + "cited_by_count": 1028 + }, + { + "year": 2021, + "cited_by_count": 1126 + }, + { + "year": 2020, + "cited_by_count": 926 + }, + { + "year": 2019, + "cited_by_count": 736 + }, + { + "year": 2018, + "cited_by_count": 294 + }, + { + "year": 2017, + "cited_by_count": 110 + }, + { + "year": 2016, + "cited_by_count": 15 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W114517082", + "doi": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "title": "Large-Scale Machine Learning with Stochastic Gradient Descent", + "display_name": "Large-Scale Machine Learning with Stochastic Gradient Descent", + "relevance_score": 4601.843, + "publication_year": 2010, + "publication_date": "2010-01-01", + "ids": { + "openalex": "https://openalex.org/W114517082", + "doi": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "mag": "114517082" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/978-3-7908-2604-3_16", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of COMPSTAT'2010", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5019206666", + "display_name": "Léon Bottou", + "orcid": "https://orcid.org/0000-0002-9894-8128" + }, + "institutions": [ + { + "id": "https://openalex.org/I20089843", + "display_name": "Princeton University", + "ror": "https://ror.org/00hx57361", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I20089843" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Léon Bottou", + "raw_affiliation_strings": [ + "NEC Labs America, Princeton, NJ, 08542, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "NEC Labs America, Princeton, NJ, 08542, USA", + "institution_ids": [ + "https://openalex.org/I20089843" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5019206666" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I20089843" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 33.3114, + "has_fulltext": false, + "cited_by_count": 5615, + "citation_normalized_percentile": { + "value": 0.99817643, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "177", + "last_page": "186" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.003100000089034438, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12101", + "display_name": "Advanced Bandit Algorithms Research", + "score": 0.0019000000320374966, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.8901551961898804 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6674743294715881 + }, + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6642521619796753 + }, + { + "id": "https://openalex.org/keywords/stochastic-optimization", + "display_name": "Stochastic optimization", + "score": 0.610326886177063 + }, + { + "id": "https://openalex.org/keywords/gradient-descent", + "display_name": "Gradient descent", + "score": 0.5460410714149475 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5359654426574707 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.5075844526290894 + }, + { + "id": "https://openalex.org/keywords/context", + "display_name": "Context (archaeology)", + "score": 0.5021035671234131 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.44076448678970337 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43065375089645386 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.3568766713142395 + }, + { + "id": "https://openalex.org/keywords/mathematical-optimization", + "display_name": "Mathematical optimization", + "score": 0.3531373143196106 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3442344069480896 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.26637405157089233 + }, + { + "id": "https://openalex.org/keywords/active-learning", + "display_name": "Active learning (machine learning)", + "score": 0.11679795384407043 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.10637149214744568 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.8901551961898804 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6674743294715881 + }, + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6642521619796753 + }, + { + "id": "https://openalex.org/C194387892", + "wikidata": "https://www.wikidata.org/wiki/Q1747770", + "display_name": "Stochastic optimization", + "level": 2, + "score": 0.610326886177063 + }, + { + "id": "https://openalex.org/C153258448", + "wikidata": "https://www.wikidata.org/wiki/Q1199743", + "display_name": "Gradient descent", + "level": 3, + "score": 0.5460410714149475 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5359654426574707 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.5075844526290894 + }, + { + "id": "https://openalex.org/C2779343474", + "wikidata": "https://www.wikidata.org/wiki/Q3109175", + "display_name": "Context (archaeology)", + "level": 2, + "score": 0.5021035671234131 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.44076448678970337 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43065375089645386 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.3568766713142395 + }, + { + "id": "https://openalex.org/C126255220", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Mathematical optimization", + "level": 1, + "score": 0.3531373143196106 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3442344069480896 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.26637405157089233 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.11679795384407043 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.10637149214744568 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C151730666", + "wikidata": "https://www.wikidata.org/wiki/Q7205", + "display_name": "Paleontology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1007/978-3-7908-2604-3_16", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of COMPSTAT'2010", + "raw_type": "book-chapter" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.419.462", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.419.462", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://leon.bottou.org/publications/pdf/compstat-2010.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W1505356468", + "https://openalex.org/W1535810436", + "https://openalex.org/W1629097610", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030811966", + "https://openalex.org/W2035720976", + "https://openalex.org/W2043919728", + "https://openalex.org/W2068484625", + "https://openalex.org/W2086161653", + "https://openalex.org/W2098921539", + "https://openalex.org/W2101159990", + "https://openalex.org/W2113651538", + "https://openalex.org/W2119821739", + "https://openalex.org/W2127218421", + "https://openalex.org/W2129191766", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137515395", + "https://openalex.org/W2147880316", + "https://openalex.org/W2150102617", + "https://openalex.org/W2154451187", + "https://openalex.org/W2322150470", + "https://openalex.org/W2416173357", + "https://openalex.org/W2766736793", + "https://openalex.org/W2990138404", + "https://openalex.org/W3207342693", + "https://openalex.org/W4238284510" + ], + "related_works": [ + "https://openalex.org/W2895097035", + "https://openalex.org/W4206903459", + "https://openalex.org/W2754816816", + "https://openalex.org/W4366280654", + "https://openalex.org/W4323366756", + "https://openalex.org/W4286899070", + "https://openalex.org/W4389775782", + "https://openalex.org/W4285259204", + "https://openalex.org/W3207830353", + "https://openalex.org/W114517082" + ], + "abstract_inverted_index": { + "During": [ + 0 + ], + "the": [ + 1, + 4, + 11, + 18, + 28, + 33, + 45, + 57, + 61, + 100 + ], + "last": [ + 2 + ], + "decade,": [ + 3 + ], + "data": [ + 5 + ], + "sizes": [ + 6 + ], + "have": [ + 7 + ], + "grown": [ + 8 + ], + "faster": [ + 9 + ], + "than": [ + 10, + 32 + ], + "speed": [ + 12 + ], + "of": [ + 13, + 20, + 47, + 60 + ], + "processors.": [ + 14 + ], + "In": [ + 15, + 82 + ], + "this": [ + 16 + ], + "context,": [ + 17 + ], + "capabilities": [ + 19 + ], + "statistical": [ + 21 + ], + "machine": [ + 22 + ], + "learning": [ + 23, + 51 + ], + "methods": [ + 24 + ], + "is": [ + 25 + ], + "limited": [ + 26 + ], + "by": [ + 27 + ], + "computing": [ + 29 + ], + "time": [ + 30 + ], + "rather": [ + 31 + ], + "sample": [ + 34 + ], + "size.": [ + 35 + ], + "A": [ + 36 + ], + "more": [ + 37 + ], + "precise": [ + 38 + ], + "analysis": [ + 39 + ], + "uncovers": [ + 40 + ], + "qualitatively": [ + 41 + ], + "different": [ + 42 + ], + "tradeoffs": [ + 43 + ], + "for": [ + 44, + 79 + ], + "case": [ + 46, + 55 + ], + "small-scale": [ + 48 + ], + "and": [ + 49, + 88 + ], + "large-scale": [ + 50, + 54, + 80 + ], + "problems.": [ + 52, + 81 + ], + "The": [ + 53 + ], + "involves": [ + 56 + ], + "computational": [ + 58 + ], + "complexity": [ + 59 + ], + "underlying": [ + 62 + ], + "optimization": [ + 63, + 69 + ], + "algorithm": [ + 64 + ], + "in": [ + 65 + ], + "non-trivial": [ + 66 + ], + "ways.": [ + 67 + ], + "Unlikely": [ + 68 + ], + "algorithms": [ + 70 + ], + "such": [ + 71 + ], + "as": [ + 72 + ], + "stochastic": [ + 73, + 86, + 90 + ], + "gradient": [ + 74, + 87, + 91 + ], + "descent": [ + 75 + ], + "show": [ + 76 + ], + "amazing": [ + 77 + ], + "performance": [ + 78 + ], + "particular,": [ + 83 + ], + "second": [ + 84 + ], + "order": [ + 85 + ], + "averaged": [ + 89 + ], + "are": [ + 92 + ], + "asymptotically": [ + 93 + ], + "efficient": [ + 94 + ], + "after": [ + 95 + ], + "a": [ + 96 + ], + "single": [ + 97 + ], + "pass": [ + 98 + ], + "on": [ + 99 + ], + "training": [ + 101 + ], + "set.": [ + 102 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 79 + }, + { + "year": 2025, + "cited_by_count": 338 + }, + { + "year": 2024, + "cited_by_count": 343 + }, + { + "year": 2023, + "cited_by_count": 392 + }, + { + "year": 2022, + "cited_by_count": 436 + }, + { + "year": 2021, + "cited_by_count": 796 + }, + { + "year": 2020, + "cited_by_count": 903 + }, + { + "year": 2019, + "cited_by_count": 787 + }, + { + "year": 2018, + "cited_by_count": 515 + }, + { + "year": 2017, + "cited_by_count": 392 + }, + { + "year": 2016, + "cited_by_count": 254 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 107 + }, + { + "year": 2013, + "cited_by_count": 66 + }, + { + "year": 2012, + "cited_by_count": 40 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2619383789", + "doi": "https://doi.org/10.1109/tpami.2018.2798607", + "title": "Multimodal Machine Learning: A Survey and Taxonomy", + "display_name": "Multimodal Machine Learning: A Survey and Taxonomy", + "relevance_score": 4482.5703, + "publication_year": 2018, + "publication_date": "2018-01-25", + "ids": { + "openalex": "https://openalex.org/W2619383789", + "doi": "https://doi.org/10.1109/tpami.2018.2798607", + "mag": "2619383789", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29994351" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tpami.2018.2798607", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2018.2798607", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058610902", + "display_name": "Tadas Baltrušaitis", + "orcid": "https://orcid.org/0000-0001-7923-8780" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210164937", + "display_name": "Microsoft Research (United Kingdom)", + "ror": "https://ror.org/05k87vq12", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253", + "https://openalex.org/I4210164937" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Tadas Baltrusaitis", + "raw_affiliation_strings": [ + "Microsoft Corporation, Cambridge, United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0001-7923-8780", + "affiliations": [ + { + "raw_affiliation_string": "Microsoft Corporation, Cambridge, United Kingdom", + "institution_ids": [ + "https://openalex.org/I4210164937" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050602513", + "display_name": "Chaitanya Ahuja", + "orcid": "https://orcid.org/0000-0003-4396-2050" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chaitanya Ahuja", + "raw_affiliation_strings": [ + "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA" + ], + "raw_orcid": "https://orcid.org/0000-0003-4396-2050", + "affiliations": [ + { + "raw_affiliation_string": "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5081398601", + "display_name": "Louis–Philippe Morency", + "orcid": "https://orcid.org/0000-0001-6376-7696" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Louis-Philippe Morency", + "raw_affiliation_strings": [ + "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA" + ], + "raw_orcid": "https://orcid.org/0000-0001-6376-7696", + "affiliations": [ + { + "raw_affiliation_string": "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5058610902" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210164937" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 162.1177, + "has_fulltext": false, + "cited_by_count": 4129, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "41", + "issue": "2", + "first_page": "423", + "last_page": "443" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11309", + "display_name": "Music and Audio Processing", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11309", + "display_name": "Music and Audio Processing", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13083", + "display_name": "Advanced Text Analysis Techniques", + "score": 0.9890000224113464, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11667", + "display_name": "Advanced Chemical Sensor Technologies", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/2204", + "display_name": "Biomedical Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/multimodal-learning", + "display_name": "Multimodal learning", + "score": 0.7634491920471191 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6933263540267944 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.644882082939148 + }, + { + "id": "https://openalex.org/keywords/modalities", + "display_name": "Modalities", + "score": 0.6390953063964844 + }, + { + "id": "https://openalex.org/keywords/taxonomy", + "display_name": "Taxonomy (biology)", + "score": 0.6077015399932861 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.5977133512496948 + }, + { + "id": "https://openalex.org/keywords/multimodality", + "display_name": "Multimodality", + "score": 0.4987671375274658 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.45902901887893677 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.42995545268058777 + }, + { + "id": "https://openalex.org/keywords/human–computer-interaction", + "display_name": "Human–computer interaction", + "score": 0.35926470160484314 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.08981871604919434 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2780660688", + "wikidata": "https://www.wikidata.org/wiki/Q25052564", + "display_name": "Multimodal learning", + "level": 2, + "score": 0.7634491920471191 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6933263540267944 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.644882082939148 + }, + { + "id": "https://openalex.org/C2779903281", + "wikidata": "https://www.wikidata.org/wiki/Q6888026", + "display_name": "Modalities", + "level": 2, + "score": 0.6390953063964844 + }, + { + "id": "https://openalex.org/C58642233", + "wikidata": "https://www.wikidata.org/wiki/Q8269924", + "display_name": "Taxonomy (biology)", + "level": 2, + "score": 0.6077015399932861 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.5977133512496948 + }, + { + "id": "https://openalex.org/C2780910867", + "wikidata": "https://www.wikidata.org/wiki/Q1952416", + "display_name": "Multimodality", + "level": 2, + "score": 0.4987671375274658 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.45902901887893677 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.42995545268058777 + }, + { + "id": "https://openalex.org/C107457646", + "wikidata": "https://www.wikidata.org/wiki/Q207434", + "display_name": "Human–computer interaction", + "level": 1, + "score": 0.35926470160484314 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.08981871604919434 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C36289849", + "wikidata": "https://www.wikidata.org/wiki/Q34749", + "display_name": "Social science", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/tpami.2018.2798607", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2018.2798607", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + { + "id": "pmid:29994351", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29994351", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE transactions on pattern analysis and machine intelligence", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 369, + "referenced_works": [ + "https://openalex.org/W8316075", + "https://openalex.org/W21006490", + "https://openalex.org/W22229905", + "https://openalex.org/W59175527", + "https://openalex.org/W68733909", + "https://openalex.org/W129606432", + "https://openalex.org/W155596317", + "https://openalex.org/W189596042", + "https://openalex.org/W199018803", + "https://openalex.org/W262578090", + "https://openalex.org/W854541894", + "https://openalex.org/W877909479", + "https://openalex.org/W956551720", + "https://openalex.org/W1123427201", + "https://openalex.org/W1480583224", + "https://openalex.org/W1481820510", + "https://openalex.org/W1488163396", + "https://openalex.org/W1503933356", + "https://openalex.org/W1514535095", + "https://openalex.org/W1522301498", + "https://openalex.org/W1523385540", + "https://openalex.org/W1527575280", + "https://openalex.org/W1528056001", + "https://openalex.org/W1533861849", + "https://openalex.org/W1540429825", + "https://openalex.org/W1555767263", + "https://openalex.org/W1566289585", + "https://openalex.org/W1572567476", + "https://openalex.org/W1573040851", + "https://openalex.org/W1586939924", + "https://openalex.org/W1601567445", + "https://openalex.org/W1628307106", + "https://openalex.org/W1651753422", + "https://openalex.org/W1664311846", + "https://openalex.org/W1686810756", + "https://openalex.org/W1687846465", + "https://openalex.org/W1753482797", + "https://openalex.org/W1762503104", + "https://openalex.org/W1766290689", + "https://openalex.org/W1773149199", + "https://openalex.org/W1811254738", + "https://openalex.org/W1822526425", + "https://openalex.org/W1828348983", + "https://openalex.org/W1836465849", + "https://openalex.org/W1858383477", + "https://openalex.org/W1870428314", + "https://openalex.org/W1872883209", + "https://openalex.org/W1883346539", + "https://openalex.org/W1889038981", + "https://openalex.org/W1889081078", + "https://openalex.org/W1893116441", + "https://openalex.org/W1895577753", + "https://openalex.org/W1897761818", + "https://openalex.org/W1905882502", + "https://openalex.org/W1906515132", + "https://openalex.org/W1922557984", + "https://openalex.org/W1931795219", + "https://openalex.org/W1933065844", + "https://openalex.org/W1933349210", + "https://openalex.org/W1956340063", + "https://openalex.org/W1963540633", + "https://openalex.org/W1964073652", + "https://openalex.org/W1966811077", + "https://openalex.org/W1969616664", + "https://openalex.org/W1970055505", + "https://openalex.org/W1971791733", + "https://openalex.org/W1976066595", + "https://openalex.org/W1977547683", + "https://openalex.org/W1985867508", + "https://openalex.org/W1986451414", + "https://openalex.org/W1987835821", + "https://openalex.org/W1996418862", + "https://openalex.org/W1996478295", + "https://openalex.org/W2000911139", + "https://openalex.org/W2003333103", + "https://openalex.org/W2006969979", + "https://openalex.org/W2009059481", + "https://openalex.org/W2012237712", + "https://openalex.org/W2015394094", + "https://openalex.org/W2015412875", + "https://openalex.org/W2019024625", + "https://openalex.org/W2022799064", + "https://openalex.org/W2025341678", + "https://openalex.org/W2025638820", + "https://openalex.org/W2026012689", + "https://openalex.org/W2026243162", + "https://openalex.org/W2038698865", + "https://openalex.org/W2041288440", + "https://openalex.org/W2042608483", + "https://openalex.org/W2048343491", + "https://openalex.org/W2048679005", + "https://openalex.org/W2051721233", + "https://openalex.org/W2053101950", + "https://openalex.org/W2057568625", + "https://openalex.org/W2058616948", + "https://openalex.org/W2061781940", + "https://openalex.org/W2062632672", + "https://openalex.org/W2062955551", + "https://openalex.org/W2063036810", + "https://openalex.org/W2063330527", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066667210", + "https://openalex.org/W2068676460", + "https://openalex.org/W2069682406", + "https://openalex.org/W2077395415", + "https://openalex.org/W2080576537", + "https://openalex.org/W2083885588", + "https://openalex.org/W2090048052", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096391593", + "https://openalex.org/W2098411764", + "https://openalex.org/W2098562545", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100235303", + "https://openalex.org/W2100561338", + "https://openalex.org/W2101105183", + "https://openalex.org/W2101534792", + "https://openalex.org/W2102765684", + "https://openalex.org/W2105103432", + "https://openalex.org/W2106277773", + "https://openalex.org/W2108710284", + "https://openalex.org/W2109586012", + "https://openalex.org/W2109743529", + "https://openalex.org/W2111078031", + "https://openalex.org/W2111645492", + "https://openalex.org/W2112019442", + "https://openalex.org/W2112184938", + "https://openalex.org/W2112912048", + "https://openalex.org/W2113507809", + "https://openalex.org/W2118714046", + "https://openalex.org/W2119288237", + "https://openalex.org/W2120776756", + "https://openalex.org/W2123024445", + "https://openalex.org/W2124033848", + "https://openalex.org/W2124372976", + "https://openalex.org/W2125336414", + "https://openalex.org/W2125366733", + "https://openalex.org/W2126598020", + "https://openalex.org/W2128856065", + "https://openalex.org/W2129142580", + "https://openalex.org/W2129360799", + "https://openalex.org/W2129382193", + "https://openalex.org/W2130055251", + "https://openalex.org/W2130162821", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131179926", + "https://openalex.org/W2133459682", + "https://openalex.org/W2133564696", + "https://openalex.org/W2135776491", + "https://openalex.org/W2136922672", + "https://openalex.org/W2136985729", + "https://openalex.org/W2137735870", + "https://openalex.org/W2137806537", + "https://openalex.org/W2141477623", + "https://openalex.org/W2142192571", + "https://openalex.org/W2142900973", + "https://openalex.org/W2143449221", + "https://openalex.org/W2143492886", + "https://openalex.org/W2143612262", + "https://openalex.org/W2143926884", + "https://openalex.org/W2145056192", + "https://openalex.org/W2147880316", + "https://openalex.org/W2147885303", + "https://openalex.org/W2148298736", + "https://openalex.org/W2149172860", + "https://openalex.org/W2149557440", + "https://openalex.org/W2149940198", + "https://openalex.org/W2150295085", + "https://openalex.org/W2150658333", + "https://openalex.org/W2150696241", + "https://openalex.org/W2150824314", + "https://openalex.org/W2151096985", + "https://openalex.org/W2151103935", + "https://openalex.org/W2152239535", + "https://openalex.org/W2153579005", + "https://openalex.org/W2153927146", + "https://openalex.org/W2156303437", + "https://openalex.org/W2156503193", + "https://openalex.org/W2159973364", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163108352", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2164186291", + "https://openalex.org/W2164450870", + "https://openalex.org/W2164587673", + "https://openalex.org/W2164699598", + "https://openalex.org/W2167103782", + "https://openalex.org/W2173180041", + "https://openalex.org/W2180844455", + "https://openalex.org/W2181691731", + "https://openalex.org/W2184045248", + "https://openalex.org/W2184188583", + "https://openalex.org/W2185175083", + "https://openalex.org/W2201007611", + "https://openalex.org/W2203543769", + "https://openalex.org/W2220981600", + "https://openalex.org/W2250742840", + "https://openalex.org/W2250842428", + "https://openalex.org/W2251353663", + "https://openalex.org/W2251394420", + "https://openalex.org/W2251885125", + "https://openalex.org/W2251970440", + "https://openalex.org/W2252122141", + "https://openalex.org/W2252238675", + "https://openalex.org/W2266728343", + "https://openalex.org/W2267126114", + "https://openalex.org/W2282219577", + "https://openalex.org/W2291822808", + "https://openalex.org/W2293453011", + "https://openalex.org/W2294797155", + "https://openalex.org/W2296613712", + "https://openalex.org/W2316138215", + "https://openalex.org/W2327501763", + "https://openalex.org/W2342662179", + "https://openalex.org/W2388114291", + "https://openalex.org/W2397159106", + "https://openalex.org/W2399507222", + "https://openalex.org/W2399733683", + "https://openalex.org/W2402955625", + "https://openalex.org/W2405756170", + "https://openalex.org/W2411037331", + "https://openalex.org/W2418349398", + "https://openalex.org/W2434537049", + "https://openalex.org/W2462496837", + "https://openalex.org/W2470413457", + "https://openalex.org/W2489434015", + "https://openalex.org/W2494980014", + "https://openalex.org/W2519091744", + "https://openalex.org/W2519656895", + "https://openalex.org/W2520160253", + "https://openalex.org/W2546919788", + "https://openalex.org/W2557865186", + "https://openalex.org/W2579317665", + "https://openalex.org/W2914699769", + "https://openalex.org/W2949465329", + "https://openalex.org/W2953318193", + "https://openalex.org/W2962706528", + "https://openalex.org/W2962756039", + "https://openalex.org/W2962835968", + "https://openalex.org/W2963082528", + "https://openalex.org/W2963109634", + "https://openalex.org/W2963143316", + "https://openalex.org/W2963192057", + "https://openalex.org/W2963260436", + "https://openalex.org/W2963324994", + "https://openalex.org/W2963383024", + "https://openalex.org/W2963389687", + "https://openalex.org/W2963410018", + "https://openalex.org/W2963576560", + "https://openalex.org/W2963579811", + "https://openalex.org/W2963605190", + "https://openalex.org/W2963656855", + "https://openalex.org/W2963735856", + "https://openalex.org/W2963811219", + "https://openalex.org/W2963899908", + "https://openalex.org/W2963954913", + "https://openalex.org/W2964040984", + "https://openalex.org/W2964118342", + "https://openalex.org/W2964121744", + "https://openalex.org/W2964217371", + "https://openalex.org/W2964241990", + "https://openalex.org/W2964308564", + "https://openalex.org/W2964345931", + "https://openalex.org/W3000384245", + "https://openalex.org/W3023993913", + "https://openalex.org/W3087871082", + "https://openalex.org/W3125032682", + "https://openalex.org/W4211232216", + "https://openalex.org/W4212844288", + "https://openalex.org/W4240592325", + "https://openalex.org/W4244018879", + "https://openalex.org/W4245655784", + "https://openalex.org/W4252331534", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293665662", + "https://openalex.org/W4294170691", + "https://openalex.org/W4297813007", + "https://openalex.org/W4299801216", + "https://openalex.org/W4302613066", + "https://openalex.org/W4320013936", + "https://openalex.org/W6600334730", + "https://openalex.org/W6600827882", + "https://openalex.org/W6605295763", + "https://openalex.org/W6606244218", + "https://openalex.org/W6606327593", + "https://openalex.org/W6607775107", + "https://openalex.org/W6608183366", + "https://openalex.org/W6623517193", + "https://openalex.org/W6623995992", + "https://openalex.org/W6625044600", + "https://openalex.org/W6628794645", + "https://openalex.org/W6629203210", + "https://openalex.org/W6630875275", + "https://openalex.org/W6631190155", + "https://openalex.org/W6631216910", + "https://openalex.org/W6631516269", + "https://openalex.org/W6631943919", + "https://openalex.org/W6634126550", + "https://openalex.org/W6636447180", + "https://openalex.org/W6636942303", + "https://openalex.org/W6637306801", + "https://openalex.org/W6637373629", + "https://openalex.org/W6637698695", + "https://openalex.org/W6637971603", + "https://openalex.org/W6637989529", + "https://openalex.org/W6638549007", + "https://openalex.org/W6638667902", + "https://openalex.org/W6638742206", + "https://openalex.org/W6639103823", + "https://openalex.org/W6639118148", + "https://openalex.org/W6639283537", + "https://openalex.org/W6639358663", + "https://openalex.org/W6639432524", + "https://openalex.org/W6639434097", + "https://openalex.org/W6640257717", + "https://openalex.org/W6640296258", + "https://openalex.org/W6640764460", + "https://openalex.org/W6650605322", + "https://openalex.org/W6652311901", + "https://openalex.org/W6674330103", + "https://openalex.org/W6675048546", + "https://openalex.org/W6676380891", + "https://openalex.org/W6676497082", + "https://openalex.org/W6676647902", + "https://openalex.org/W6676709516", + "https://openalex.org/W6678360021", + "https://openalex.org/W6678470764", + "https://openalex.org/W6678809451", + "https://openalex.org/W6679434410", + "https://openalex.org/W6679436768", + "https://openalex.org/W6680094886", + "https://openalex.org/W6680336390", + "https://openalex.org/W6681184217", + "https://openalex.org/W6682082992", + "https://openalex.org/W6682086108", + "https://openalex.org/W6682222085", + "https://openalex.org/W6682511423", + "https://openalex.org/W6682691769", + "https://openalex.org/W6682864246", + "https://openalex.org/W6683074461", + "https://openalex.org/W6683167905", + "https://openalex.org/W6683277684", + "https://openalex.org/W6684191040", + "https://openalex.org/W6684209796", + "https://openalex.org/W6685183736", + "https://openalex.org/W6685527872", + "https://openalex.org/W6686207219", + "https://openalex.org/W6687543112", + "https://openalex.org/W6687672932", + "https://openalex.org/W6688143368", + "https://openalex.org/W6691419566", + "https://openalex.org/W6691647468", + "https://openalex.org/W6692004142", + "https://openalex.org/W6696843773", + "https://openalex.org/W6697449767", + "https://openalex.org/W6712426025", + "https://openalex.org/W6712802073", + "https://openalex.org/W6713645886", + "https://openalex.org/W6717487601", + "https://openalex.org/W6726977916", + "https://openalex.org/W6727336983", + "https://openalex.org/W6729831399", + "https://openalex.org/W6730042849", + "https://openalex.org/W6730666313", + "https://openalex.org/W6732843983", + "https://openalex.org/W6845679800", + "https://openalex.org/W6898505805", + "https://openalex.org/W7011438494" + ], + "related_works": [ + "https://openalex.org/W4319049579", + "https://openalex.org/W2791907740", + "https://openalex.org/W2135449968", + "https://openalex.org/W2739856905", + "https://openalex.org/W1508553398", + "https://openalex.org/W2170966221", + "https://openalex.org/W1594974701", + "https://openalex.org/W4287761641", + "https://openalex.org/W3034009428", + "https://openalex.org/W2116664529" + ], + "abstract_inverted_index": { + "Our": [ + 0 + ], + "experience": [ + 1 + ], + "of": [ + 2, + 93, + 101, + 164 + ], + "the": [ + 3, + 23, + 56, + 110, + 128, + 162, + 165 + ], + "world": [ + 4, + 57 + ], + "is": [ + 5, + 30, + 36, + 88 + ], + "multimodal": [ + 6, + 39, + 68, + 105, + 114, + 143 + ], + "-": [ + 7 + ], + "we": [ + 8 + ], + "see": [ + 9 + ], + "objects,": [ + 10 + ], + "hear": [ + 11 + ], + "sounds,": [ + 12 + ], + "feel": [ + 13 + ], + "texture,": [ + 14 + ], + "smell": [ + 15 + ], + "odors,": [ + 16 + ], + "and": [ + 17, + 32, + 81, + 96, + 118, + 131, + 135, + 151, + 167 + ], + "taste": [ + 18 + ], + "flavors.": [ + 19 + ], + "Modality": [ + 20 + ], + "refers": [ + 21 + ], + "to": [ + 22, + 51, + 62, + 65, + 75, + 159 + ], + "way": [ + 24 + ], + "in": [ + 25, + 54, + 113, + 121 + ], + "which": [ + 26 + ], + "something": [ + 27 + ], + "happens": [ + 28 + ], + "or": [ + 29 + ], + "experienced": [ + 31 + ], + "a": [ + 33, + 89, + 122 + ], + "research": [ + 34 + ], + "problem": [ + 35 + ], + "characterized": [ + 37 + ], + "as": [ + 38 + ], + "when": [ + 40 + ], + "it": [ + 41, + 60 + ], + "includes": [ + 42 + ], + "multiple": [ + 43, + 85 + ], + "such": [ + 44, + 67 + ], + "modalities.": [ + 45, + 86 + ], + "In": [ + 46 + ], + "order": [ + 47 + ], + "for": [ + 48, + 170 + ], + "Artificial": [ + 49 + ], + "Intelligence": [ + 50 + ], + "make": [ + 52 + ], + "progress": [ + 53 + ], + "understanding": [ + 55 + ], + "around": [ + 58 + ], + "us,": [ + 59 + ], + "needs": [ + 61 + ], + "be": [ + 63 + ], + "able": [ + 64 + ], + "interpret": [ + 66 + ], + "signals": [ + 69 + ], + "together.": [ + 70 + ], + "Multimodal": [ + 71 + ], + "machine": [ + 72, + 115, + 144 + ], + "learning": [ + 73, + 116 + ], + "aims": [ + 74 + ], + "build": [ + 76 + ], + "models": [ + 77 + ], + "that": [ + 78, + 139 + ], + "can": [ + 79 + ], + "process": [ + 80 + ], + "relate": [ + 82 + ], + "information": [ + 83 + ], + "from": [ + 84 + ], + "It": [ + 87 + ], + "vibrant": [ + 90 + ], + "multi-disciplinary": [ + 91 + ], + "field": [ + 92, + 166 + ], + "increasing": [ + 94 + ], + "importance": [ + 95 + ], + "with": [ + 97 + ], + "extraordinary": [ + 98 + ], + "potential.": [ + 99 + ], + "Instead": [ + 100 + ], + "focusing": [ + 102 + ], + "on": [ + 103 + ], + "specific": [ + 104 + ], + "applications,": [ + 106 + ], + "this": [ + 107 + ], + "paper": [ + 108 + ], + "surveys": [ + 109 + ], + "recent": [ + 111 + ], + "advances": [ + 112 + ], + "itself": [ + 117 + ], + "presents": [ + 119 + ], + "them": [ + 120 + ], + "common": [ + 123 + ], + "taxonomy.": [ + 124 + ], + "We": [ + 125 + ], + "go": [ + 126 + ], + "beyond": [ + 127 + ], + "typical": [ + 129 + ], + "early": [ + 130 + ], + "late": [ + 132 + ], + "fusion": [ + 133 + ], + "categorization": [ + 134 + ], + "identify": [ + 136, + 168 + ], + "broader": [ + 137 + ], + "challenges": [ + 138 + ], + "are": [ + 140 + ], + "faced": [ + 141 + ], + "by": [ + 142 + ], + "learning,": [ + 145 + ], + "namely:": [ + 146 + ], + "representation,": [ + 147 + ], + "translation,": [ + 148 + ], + "alignment,": [ + 149 + ], + "fusion,": [ + 150 + ], + "co-learning.": [ + 152 + ], + "This": [ + 153 + ], + "new": [ + 154 + ], + "taxonomy": [ + 155 + ], + "will": [ + 156 + ], + "enable": [ + 157 + ], + "researchers": [ + 158 + ], + "better": [ + 160 + ], + "understand": [ + 161 + ], + "state": [ + 163 + ], + "directions": [ + 169 + ], + "future": [ + 171 + ], + "research.": [ + 172 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 418 + }, + { + "year": 2025, + "cited_by_count": 971 + }, + { + "year": 2024, + "cited_by_count": 697 + }, + { + "year": 2023, + "cited_by_count": 590 + }, + { + "year": 2022, + "cited_by_count": 477 + }, + { + "year": 2021, + "cited_by_count": 383 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 194 + }, + { + "year": 2018, + "cited_by_count": 63 + }, + { + "year": 2017, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2177870565", + "doi": "https://doi.org/10.1161/circulationaha.115.001593", + "title": "Machine Learning in Medicine", + "display_name": "Machine Learning in Medicine", + "relevance_score": 4470.496, + "publication_year": 2015, + "publication_date": "2015-11-16", + "ids": { + "openalex": "https://openalex.org/W2177870565", + "doi": "https://doi.org/10.1161/circulationaha.115.001593", + "mag": "2177870565", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/26572668" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1161/circulationaha.115.001593", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1161/circulationaha.115.001593", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S116251202", + "display_name": "Circulation", + "issn_l": "0009-7322", + "issn": [ + "0009-7322", + "1524-4539" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315671", + "host_organization_name": "Lippincott Williams & Wilkins", + "host_organization_lineage": [ + "https://openalex.org/P4310315671", + "https://openalex.org/P4310318547" + ], + "host_organization_lineage_names": [ + "Lippincott Williams & Wilkins", + "Wolters Kluwer" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5026141445", + "display_name": "Rahul C. Deo", + "orcid": "https://orcid.org/0000-0002-2791-9434" + }, + "institutions": [ + { + "id": "https://openalex.org/I103922791", + "display_name": "QB3", + "ror": "https://ror.org/04n1n3n22", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I103922791", + "https://openalex.org/I180670191", + "https://openalex.org/I185103710", + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Rahul C. Deo", + "raw_affiliation_strings": [ + "From Cardiovascular Research Institute, Department of Medicine and Institute for Human Genetics, University of California, San Francisco, and California Institute for Quantitative Biosciences, San Francisco" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Cardiovascular Research Institute, Department of Medicine and Institute for Human Genetics, University of California, San Francisco, and California Institute for Quantitative Biosciences, San Francisco", + "institution_ids": [ + "https://openalex.org/I103922791" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5026141445" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I103922791" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 79.7031, + "has_fulltext": false, + "cited_by_count": 3391, + "citation_normalized_percentile": { + "value": 0.99935472, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "132", + "issue": "20", + "first_page": "1920", + "last_page": "1930" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11021", + "display_name": "ECG Monitoring and Analysis", + "score": 0.9660999774932861, + "subfield": { + "id": "https://openalex.org/subfields/2705", + "display_name": "Cardiology and Cardiovascular Medicine" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9575999975204468, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.9206037521362305 + }, + { + "id": "https://openalex.org/keywords/medical-physics", + "display_name": "Medical physics", + "score": 0.36205965280532837 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.35273855924606323 + }, + { + "id": "https://openalex.org/keywords/intensive-care-medicine", + "display_name": "Intensive care medicine", + "score": 0.32538071274757385 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.9206037521362305 + }, + { + "id": "https://openalex.org/C19527891", + "wikidata": "https://www.wikidata.org/wiki/Q1120908", + "display_name": "Medical physics", + "level": 1, + "score": 0.36205965280532837 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.35273855924606323 + }, + { + "id": "https://openalex.org/C177713679", + "wikidata": "https://www.wikidata.org/wiki/Q679690", + "display_name": "Intensive care medicine", + "level": 1, + "score": 0.32538071274757385 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + } + ], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1161/circulationaha.115.001593", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1161/circulationaha.115.001593", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S116251202", + "display_name": "Circulation", + "issn_l": "0009-7322", + "issn": [ + "0009-7322", + "1524-4539" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315671", + "host_organization_name": "Lippincott Williams & Wilkins", + "host_organization_lineage": [ + "https://openalex.org/P4310315671", + "https://openalex.org/P4310318547" + ], + "host_organization_lineage_names": [ + "Lippincott Williams & Wilkins", + "Wolters Kluwer" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": "journal-article" + }, + { + "id": "pmid:26572668", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/26572668", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": null + }, + { + "id": "pmh:oai:escholarship.org:ark:/13030/qt3jv2494f", + "is_oa": false, + "landing_page_url": "https://escholarship.org/uc/item/3jv2494f", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation, vol 132, iss 20", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5831252", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "pmh:oai:pubmedcentral.nih.gov:5831252", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation", + "raw_type": "Text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320332161", + "display_name": "National Institutes of Health", + "ror": "https://ror.org/01cwqze88" + }, + { + "id": "https://openalex.org/F4320332622", + "display_name": "University of California, San Francisco", + "ror": "https://ror.org/043mz5j54" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 47, + "referenced_works": [ + "https://openalex.org/W40442397", + "https://openalex.org/W1480376833", + "https://openalex.org/W1678356000", + "https://openalex.org/W1808991731", + "https://openalex.org/W1902027874", + "https://openalex.org/W1976196376", + "https://openalex.org/W2011999110", + "https://openalex.org/W2021701428", + "https://openalex.org/W2029243817", + "https://openalex.org/W2052825782", + "https://openalex.org/W2072128103", + "https://openalex.org/W2073751243", + "https://openalex.org/W2105464873", + "https://openalex.org/W2106665921", + "https://openalex.org/W2110243528", + "https://openalex.org/W2112289645", + "https://openalex.org/W2112592817", + "https://openalex.org/W2113606819", + "https://openalex.org/W2116802246", + "https://openalex.org/W2119361626", + "https://openalex.org/W2120480077", + "https://openalex.org/W2121495423", + "https://openalex.org/W2122111042", + "https://openalex.org/W2127482775", + "https://openalex.org/W2135046866", + "https://openalex.org/W2139212933", + "https://openalex.org/W2147461734", + "https://openalex.org/W2149298154", + "https://openalex.org/W2152072062", + "https://openalex.org/W2158927033", + "https://openalex.org/W2162586165", + "https://openalex.org/W2163697531", + "https://openalex.org/W2164434252", + "https://openalex.org/W2345255551", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2912934387", + "https://openalex.org/W2963481018", + "https://openalex.org/W2998216295", + "https://openalex.org/W3099478002", + "https://openalex.org/W4212883601", + "https://openalex.org/W4231109964", + "https://openalex.org/W4243607236", + "https://openalex.org/W4285719527", + "https://openalex.org/W6601599523", + "https://openalex.org/W6676903177", + "https://openalex.org/W7066667914" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W4389568370", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W1489783725" + ], + "abstract_inverted_index": { + "Spurred": [ + 0 + ], + "by": [ + 1 + ], + "advances": [ + 2 + ], + "in": [ + 3, + 48, + 94, + 107, + 125, + 178 + ], + "processing": [ + 4 + ], + "power,": [ + 5 + ], + "memory,": [ + 6 + ], + "storage,": [ + 7 + ], + "and": [ + 8, + 45, + 80, + 115, + 140, + 150, + 216 + ], + "an": [ + 9 + ], + "unprecedented": [ + 10 + ], + "wealth": [ + 11 + ], + "of": [ + 12, + 35, + 40, + 67, + 99, + 156, + 175, + 185, + 194, + 210 + ], + "data,": [ + 13, + 44, + 164 + ], + "computers": [ + 14 + ], + "are": [ + 15, + 89, + 154 + ], + "being": [ + 16 + ], + "asked": [ + 17 + ], + "to": [ + 18, + 75, + 92, + 103, + 121, + 131, + 162, + 170, + 181, + 188, + 199, + 206 + ], + "tackle": [ + 19 + ], + "increasingly": [ + 20 + ], + "complex": [ + 21, + 72 + ], + "learning": [ + 22, + 113, + 142, + 160, + 187, + 214 + ], + "tasks,": [ + 23 + ], + "often": [ + 24 + ], + "with": [ + 25 + ], + "astonishing": [ + 26 + ], + "success.": [ + 27 + ], + "Computers": [ + 28 + ], + "have": [ + 29, + 55, + 144, + 167 + ], + "now": [ + 30 + ], + "mastered": [ + 31 + ], + "a": [ + 32 + ], + "popular": [ + 33 + ], + "variant": [ + 34 + ], + "poker,": [ + 36 + ], + "learned": [ + 37 + ], + "the": [ + 38, + 65, + 119, + 182, + 208 + ], + "laws": [ + 39 + ], + "physics": [ + 41 + ], + "from": [ + 42, + 111, + 118 + ], + "experimental": [ + 43 + ], + "become": [ + 46 + ], + "experts": [ + 47 + ], + "video": [ + 49 + ], + "games": [ + 50 + ], + "-": [ + 51 + ], + "tasks": [ + 52 + ], + "that": [ + 53, + 85, + 133 + ], + "would": [ + 54 + ], + "been": [ + 56, + 145 + ], + "deemed": [ + 57 + ], + "impossible": [ + 58 + ], + "not": [ + 59 + ], + "too": [ + 60 + ], + "long": [ + 61 + ], + "ago.": [ + 62 + ], + "In": [ + 63 + ], + "parallel,": [ + 64 + ], + "number": [ + 66 + ], + "companies": [ + 68, + 88 + ], + "centered": [ + 69 + ], + "on": [ + 70 + ], + "applying": [ + 71, + 158 + ], + "data": [ + 73, + 138 + ], + "analysis": [ + 74 + ], + "varying": [ + 76 + ], + "industries": [ + 77 + ], + "has": [ + 78 + ], + "exploded,": [ + 79 + ], + "it": [ + 81 + ], + "is": [ + 82, + 102, + 129 + ], + "thus": [ + 83 + ], + "unsurprising": [ + 84 + ], + "some": [ + 86 + ], + "analytic": [ + 87 + ], + "turning": [ + 90 + ], + "attention": [ + 91 + ], + "problems": [ + 93, + 106 + ], + "health": [ + 95 + ], + "care.": [ + 96, + 172 + ], + "The": [ + 97 + ], + "purpose": [ + 98 + ], + "this": [ + 100 + ], + "review": [ + 101 + ], + "explore": [ + 104 + ], + "what": [ + 105, + 201 + ], + "medicine": [ + 108, + 211 + ], + "might": [ + 109, + 220 + ], + "benefit": [ + 110 + ], + "such": [ + 112 + ], + "approaches": [ + 114 + ], + "use": [ + 116 + ], + "examples": [ + 117 + ], + "literature": [ + 120 + ], + "introduce": [ + 122 + ], + "basic": [ + 123 + ], + "concepts": [ + 124 + ], + "machine": [ + 126, + 159, + 186 + ], + "learning.": [ + 127 + ], + "It": [ + 128 + ], + "important": [ + 130 + ], + "note": [ + 132 + ], + "seemingly": [ + 134 + ], + "large": [ + 135 + ], + "enough": [ + 136 + ], + "medical": [ + 137, + 163 + ], + "sets": [ + 139 + ], + "adequate": [ + 141 + ], + "algorithms": [ + 143, + 161 + ], + "available": [ + 146 + ], + "for": [ + 147 + ], + "many": [ + 148, + 189 + ], + "decades,": [ + 149 + ], + "yet,": [ + 151 + ], + "although": [ + 152 + ], + "there": [ + 153, + 203 + ], + "thousands": [ + 155 + ], + "papers": [ + 157 + ], + "very": [ + 165 + ], + "few": [ + 166 + ], + "contributed": [ + 168 + ], + "meaningfully": [ + 169 + ], + "clinical": [ + 171 + ], + "This": [ + 173 + ], + "lack": [ + 174 + ], + "impact": [ + 176 + ], + "stands": [ + 177 + ], + "stark": [ + 179 + ], + "contrast": [ + 180 + ], + "enormous": [ + 183 + ], + "relevance": [ + 184 + ], + "other": [ + 190 + ], + "industries.": [ + 191 + ], + "Thus,": [ + 192 + ], + "part": [ + 193 + ], + "my": [ + 195 + ], + "effort": [ + 196 + ], + "will": [ + 197 + ], + "be": [ + 198, + 205, + 221 + ], + "identify": [ + 200 + ], + "obstacles": [ + 202 + ], + "may": [ + 204 + ], + "changing": [ + 207 + ], + "practice": [ + 209 + ], + "through": [ + 212 + ], + "statistical": [ + 213 + ], + "approaches,": [ + 215 + ], + "discuss": [ + 217 + ], + "how": [ + 218 + ], + "these": [ + 219 + ], + "overcome.": [ + 222 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 176 + }, + { + "year": 2025, + "cited_by_count": 522 + }, + { + "year": 2024, + "cited_by_count": 593 + }, + { + "year": 2023, + "cited_by_count": 500 + }, + { + "year": 2022, + "cited_by_count": 451 + }, + { + "year": 2021, + "cited_by_count": 454 + }, + { + "year": 2020, + "cited_by_count": 319 + }, + { + "year": 2019, + "cited_by_count": 194 + }, + { + "year": 2018, + "cited_by_count": 98 + }, + { + "year": 2017, + "cited_by_count": 55 + }, + { + "year": 2016, + "cited_by_count": 23 + }, + { + "year": 2015, + "cited_by_count": 3 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2750384547", + "doi": "https://doi.org/10.48550/arxiv.1708.07747", + "title": "Fashion-MNIST: a Novel Image Dataset for Benchmarking Machine Learning Algorithms", + "display_name": "Fashion-MNIST: a Novel Image Dataset for Benchmarking Machine Learning Algorithms", + "relevance_score": 4394.2183, + "publication_year": 2017, + "publication_date": "2017-08-25", + "ids": { + "openalex": "https://openalex.org/W2750384547", + "doi": "https://doi.org/10.48550/arxiv.1708.07747", + "mag": "2750384547" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1708.07747", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Xiao, Han", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Xiao, Han", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5075846365", + "display_name": "Kashif Rasul", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Rasul, Kashif", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5011375551", + "display_name": "Roland Vollgraf", + "orcid": "https://orcid.org/0000-0003-4658-0381" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vollgraf, Roland", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 6068, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10775", + "display_name": "Generative Adversarial Networks and Image Synthesis", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9972000122070312, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.9985602498054504 + }, + { + "id": "https://openalex.org/keywords/benchmarking", + "display_name": "Benchmarking", + "score": 0.8764249086380005 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6721041202545166 + }, + { + "id": "https://openalex.org/keywords/grayscale", + "display_name": "Grayscale", + "score": 0.6421833038330078 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6257829666137695 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5550878643989563 + }, + { + "id": "https://openalex.org/keywords/test-set", + "display_name": "Test set", + "score": 0.548558235168457 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.5261946320533752 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.5203016400337219 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5067091584205627 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.33083993196487427 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.2942641079425812 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.9985602498054504 + }, + { + "id": "https://openalex.org/C86251818", + "wikidata": "https://www.wikidata.org/wiki/Q816754", + "display_name": "Benchmarking", + "level": 2, + "score": 0.8764249086380005 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6721041202545166 + }, + { + "id": "https://openalex.org/C78201319", + "wikidata": "https://www.wikidata.org/wiki/Q685727", + "display_name": "Grayscale", + "level": 3, + "score": 0.6421833038330078 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6257829666137695 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5550878643989563 + }, + { + "id": "https://openalex.org/C169903167", + "wikidata": "https://www.wikidata.org/wiki/Q3985153", + "display_name": "Test set", + "level": 2, + "score": 0.548558235168457 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.5261946320533752 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.5203016400337219 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5067091584205627 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.33083993196487427 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.2942641079425812 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144133560", + "wikidata": "https://www.wikidata.org/wiki/Q4830453", + "display_name": "Business", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162853370", + "wikidata": "https://www.wikidata.org/wiki/Q39809", + "display_name": "Marketing", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1708.07747", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1708.07747", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 3, + "referenced_works": [ + "https://openalex.org/W4919037", + "https://openalex.org/W2112796928", + "https://openalex.org/W2590796488" + ], + "related_works": [ + "https://openalex.org/W4386603768", + "https://openalex.org/W2950475743", + "https://openalex.org/W2886711096", + "https://openalex.org/W2750384547", + "https://openalex.org/W4238897586", + "https://openalex.org/W4380078352", + "https://openalex.org/W3046591097", + "https://openalex.org/W2901671134", + "https://openalex.org/W4289293320", + "https://openalex.org/W2987302549" + ], + "abstract_inverted_index": { + "We": [ + 0 + ], + "present": [ + 1 + ], + "Fashion-MNIST,": [ + 2 + ], + "a": [ + 3, + 42 + ], + "new": [ + 4 + ], + "dataset": [ + 5, + 50, + 74 + ], + "comprising": [ + 6 + ], + "of": [ + 7, + 11, + 68 + ], + "28x28": [ + 8 + ], + "grayscale": [ + 9 + ], + "images": [ + 10, + 20, + 28 + ], + "70,000": [ + 12 + ], + "fashion": [ + 13 + ], + "products": [ + 14 + ], + "from": [ + 15 + ], + "10": [ + 16 + ], + "categories,": [ + 17 + ], + "with": [ + 18 + ], + "7,000": [ + 19 + ], + "per": [ + 21 + ], + "category.": [ + 22 + ], + "The": [ + 23, + 73 + ], + "training": [ + 24, + 69 + ], + "set": [ + 25, + 32 + ], + "has": [ + 26, + 33 + ], + "60,000": [ + 27 + ], + "and": [ + 29, + 65, + 70 + ], + "the": [ + 30, + 47, + 59, + 66 + ], + "test": [ + 31 + ], + "10,000": [ + 34 + ], + "images.": [ + 35 + ], + "Fashion-MNIST": [ + 36 + ], + "is": [ + 37, + 75 + ], + "intended": [ + 38 + ], + "to": [ + 39 + ], + "serve": [ + 40 + ], + "as": [ + 41, + 56 + ], + "direct": [ + 43 + ], + "drop-in": [ + 44 + ], + "replacement": [ + 45 + ], + "for": [ + 46, + 51 + ], + "original": [ + 48 + ], + "MNIST": [ + 49 + ], + "benchmarking": [ + 52 + ], + "machine": [ + 53 + ], + "learning": [ + 54 + ], + "algorithms,": [ + 55 + ], + "it": [ + 57 + ], + "shares": [ + 58 + ], + "same": [ + 60 + ], + "image": [ + 61 + ], + "size,": [ + 62 + ], + "data": [ + 63 + ], + "format": [ + 64 + ], + "structure": [ + 67 + ], + "testing": [ + 71 + ], + "splits.": [ + 72 + ], + "freely": [ + 76 + ], + "available": [ + 77 + ], + "at": [ + 78 + ], + "https://github.com/zalandoresearch/fashion-mnist": [ + 79 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 20 + }, + { + "year": 2025, + "cited_by_count": 272 + }, + { + "year": 2024, + "cited_by_count": 758 + }, + { + "year": 2023, + "cited_by_count": 967 + }, + { + "year": 2022, + "cited_by_count": 759 + }, + { + "year": 2021, + "cited_by_count": 1340 + }, + { + "year": 2020, + "cited_by_count": 1050 + }, + { + "year": 2019, + "cited_by_count": 625 + }, + { + "year": 2018, + "cited_by_count": 256 + }, + { + "year": 2017, + "cited_by_count": 21 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1873332500", + "doi": null, + "title": "Supervised Machine Learning: A Review of Classification Techniques", + "display_name": "Supervised Machine Learning: A Review of Classification Techniques", + "relevance_score": 4288.003, + "publication_year": 2007, + "publication_date": "2007-01-01", + "ids": { + "openalex": "https://openalex.org/W1873332500", + "mag": "1873332500" + }, + "language": "en", + "primary_location": { + "id": "mag:1873332500", + "is_oa": false, + "landing_page_url": "https://dblp.uni-trier.de/db/journals/informaticaSI/informaticaSI31.html#Kotsiantis07", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Informatica", + "raw_type": null + }, + "type": "review", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5066370772", + "display_name": "Sotiris Kotsiantis", + "orcid": "https://orcid.org/0000-0002-2247-3082" + }, + "institutions": [ + { + "id": "https://openalex.org/I158716096", + "display_name": "University of Peloponnese", + "ror": "https://ror.org/04d4d3c02", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I158716096" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Sotiris Kotsiantis", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-2247-3082", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5066370772" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I158716096" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 49.7093, + "has_fulltext": false, + "cited_by_count": 4147, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "160", + "issue": "3", + "first_page": "249", + "last_page": "24" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9936000108718872, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.9873999953269958, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7691857218742371 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7264007925987244 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7053093314170837 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.5915338397026062 + }, + { + "id": "https://openalex.org/keywords/supervised-learning", + "display_name": "Supervised learning", + "score": 0.5904386043548584 + }, + { + "id": "https://openalex.org/keywords/one-class-classification", + "display_name": "One-class classification", + "score": 0.5449395179748535 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.5347427725791931 + }, + { + "id": "https://openalex.org/keywords/semi-supervised-learning", + "display_name": "Semi-supervised learning", + "score": 0.4761357605457306 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.13000115752220154 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7691857218742371 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7264007925987244 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7053093314170837 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.5915338397026062 + }, + { + "id": "https://openalex.org/C136389625", + "wikidata": "https://www.wikidata.org/wiki/Q334384", + "display_name": "Supervised learning", + "level": 3, + "score": 0.5904386043548584 + }, + { + "id": "https://openalex.org/C34872919", + "wikidata": "https://www.wikidata.org/wiki/Q7092302", + "display_name": "One-class classification", + "level": 3, + "score": 0.5449395179748535 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.5347427725791931 + }, + { + "id": "https://openalex.org/C58973888", + "wikidata": "https://www.wikidata.org/wiki/Q1041418", + "display_name": "Semi-supervised learning", + "level": 2, + "score": 0.4761357605457306 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.13000115752220154 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "mag:1873332500", + "is_oa": false, + "landing_page_url": "https://dblp.uni-trier.de/db/journals/informaticaSI/informaticaSI31.html#Kotsiantis07", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Informatica", + "raw_type": null + }, + { + "id": "mag:2295155158", + "is_oa": false, + "landing_page_url": "https://datajobs.com/data-science-repo/Supervised-Learning-%5bSB-Kotsiantis%5d.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "mag:3136385871", + "is_oa": false, + "landing_page_url": "https://ebooks.iospress.nl/volumearticle/3666", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210201731", + "display_name": "Frontiers in artificial intelligence and applications", + "issn_l": "0922-6389", + "issn": [ + "0922-6389", + "1879-8314" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Frontiers in artificial intelligence and applications", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.4099999964237213, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 111, + "referenced_works": [ + "https://openalex.org/W5472403", + "https://openalex.org/W135311109", + "https://openalex.org/W177590838", + "https://openalex.org/W203696055", + "https://openalex.org/W1007293483", + "https://openalex.org/W1497605902", + "https://openalex.org/W1506588750", + "https://openalex.org/W1515851193", + "https://openalex.org/W1520605446", + "https://openalex.org/W1522114398", + "https://openalex.org/W1528113134", + "https://openalex.org/W1537143578", + "https://openalex.org/W1538041071", + "https://openalex.org/W1547833367", + "https://openalex.org/W1554309553", + "https://openalex.org/W1560955742", + "https://openalex.org/W1562368284", + "https://openalex.org/W1563088657", + "https://openalex.org/W1567012231", + "https://openalex.org/W1570329253", + "https://openalex.org/W1570448133", + "https://openalex.org/W1570706771", + "https://openalex.org/W1587647246", + "https://openalex.org/W1588516554", + "https://openalex.org/W1594031697", + "https://openalex.org/W1594781927", + "https://openalex.org/W1602492977", + "https://openalex.org/W1605688901", + "https://openalex.org/W1605844890", + "https://openalex.org/W1637435380", + "https://openalex.org/W1670263352", + "https://openalex.org/W1671614046", + "https://openalex.org/W1746680969", + "https://openalex.org/W1780185704", + "https://openalex.org/W1808644423", + "https://openalex.org/W1813387235", + "https://openalex.org/W1817561967", + "https://openalex.org/W1827261456", + "https://openalex.org/W1904009171", + "https://openalex.org/W1935515061", + "https://openalex.org/W1973991804", + "https://openalex.org/W1974545290", + "https://openalex.org/W1979711143", + "https://openalex.org/W1983479840", + "https://openalex.org/W1983690667", + "https://openalex.org/W1986883011", + "https://openalex.org/W1992419399", + "https://openalex.org/W1993066733", + "https://openalex.org/W2006345381", + "https://openalex.org/W2011101028", + "https://openalex.org/W2016441117", + "https://openalex.org/W2022058268", + "https://openalex.org/W2026718556", + "https://openalex.org/W2037322594", + "https://openalex.org/W2046649434", + "https://openalex.org/W2050829396", + "https://openalex.org/W2063783806", + "https://openalex.org/W2074584355", + "https://openalex.org/W2075932270", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096756482", + "https://openalex.org/W2104333211", + "https://openalex.org/W2110179049", + "https://openalex.org/W2119479037", + "https://openalex.org/W2120199131", + "https://openalex.org/W2122111042", + "https://openalex.org/W2122496402", + "https://openalex.org/W2123623606", + "https://openalex.org/W2125055259", + "https://openalex.org/W2126333738", + "https://openalex.org/W2128912745", + "https://openalex.org/W2133160781", + "https://openalex.org/W2133218851", + "https://openalex.org/W2133632100", + "https://openalex.org/W2136000097", + "https://openalex.org/W2136132422", + "https://openalex.org/W2137130182", + "https://openalex.org/W2139212933", + "https://openalex.org/W2140586694", + "https://openalex.org/W2140785063", + "https://openalex.org/W2142857211", + "https://openalex.org/W2143603257", + "https://openalex.org/W2144731007", + "https://openalex.org/W2145467382", + "https://openalex.org/W2145680191", + "https://openalex.org/W2150796457", + "https://openalex.org/W2151450140", + "https://openalex.org/W2156440942", + "https://openalex.org/W2156571267", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157815868", + "https://openalex.org/W2158724449", + "https://openalex.org/W2159895197", + "https://openalex.org/W2161349318", + "https://openalex.org/W2161782846", + "https://openalex.org/W2161960932", + "https://openalex.org/W2164359548", + "https://openalex.org/W2166985738", + "https://openalex.org/W2167277498", + "https://openalex.org/W2167467747", + "https://openalex.org/W2168754135", + "https://openalex.org/W2171265988", + "https://openalex.org/W2172429451", + "https://openalex.org/W2322002063", + "https://openalex.org/W2488399954", + "https://openalex.org/W2603390332", + "https://openalex.org/W2766736793", + "https://openalex.org/W2911678770", + "https://openalex.org/W2912276539", + "https://openalex.org/W2912934387", + "https://openalex.org/W3015462599" + ], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W3085162807", + "https://openalex.org/W2919115771", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2153635508", + "https://openalex.org/W2149706766", + "https://openalex.org/W2140190241", + "https://openalex.org/W2139212933", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2122111042", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119479037", + "https://openalex.org/W2101234009", + "https://openalex.org/W2096352448", + "https://openalex.org/W1680392829", + "https://openalex.org/W1663973292", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "The": [ + 0, + 22 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 11, + 14, + 19, + 39, + 48, + 73 + ], + "supervised": [ + 3, + 58, + 75 + ], + "learning": [ + 4, + 60, + 77 + ], + "is": [ + 5, + 25, + 52 + ], + "to": [ + 6, + 28, + 32, + 113 + ], + "build": [ + 7 + ], + "a": [ + 8, + 65, + 70 + ], + "concise": [ + 9 + ], + "model": [ + 10 + ], + "the": [ + 12, + 33, + 37, + 40, + 46, + 49, + 89, + 94, + 99 + ], + "distribution": [ + 13 + ], + "class": [ + 15, + 30, + 50 + ], + "labels": [ + 16, + 31 + ], + "in": [ + 17, + 101 + ], + "terms": [ + 18 + ], + "predictor": [ + 20, + 41 + ], + "features.": [ + 21 + ], + "resulting": [ + 23 + ], + "classifier": [ + 24 + ], + "then": [ + 26 + ], + "used": [ + 27 + ], + "assign": [ + 29 + ], + "testing": [ + 34 + ], + "instances": [ + 35 + ], + "where": [ + 36 + ], + "values": [ + 38 + ], + "features": [ + 42 + ], + "are": [ + 43 + ], + "known,": [ + 44 + ], + "but": [ + 45 + ], + "value": [ + 47 + ], + "label": [ + 51 + ], + "unknown.": [ + 53 + ], + "This": [ + 54 + ], + "paper": [ + 55 + ], + "describes": [ + 56 + ], + "various": [ + 57 + ], + "machine": [ + 59, + 76 + ], + "classification": [ + 61, + 78, + 83 + ], + "techniques.": [ + 62 + ], + "Of": [ + 63 + ], + "course,": [ + 64 + ], + "single": [ + 66 + ], + "chapter": [ + 67 + ], + "cannot": [ + 68 + ], + "be": [ + 69, + 114 + ], + "complete": [ + 71 + ], + "review": [ + 72 + ], + "all": [ + 74 + ], + "algorithms": [ + 79 + ], + "(also": [ + 80 + ], + "known": [ + 81 + ], + "induction": [ + 82 + ], + "algorithms),": [ + 84 + ], + "yet": [ + 85, + 112 + ], + "we": [ + 86 + ], + "hope": [ + 87 + ], + "that": [ + 88, + 110 + ], + "references": [ + 90 + ], + "cited": [ + 91 + ], + "will": [ + 92 + ], + "cover": [ + 93 + ], + "major": [ + 95 + ], + "theoretical": [ + 96 + ], + "issues,": [ + 97 + ], + "guiding": [ + 98 + ], + "researcher": [ + 100 + ], + "interesting": [ + 102 + ], + "research": [ + 103 + ], + "directions": [ + 104 + ], + "and": [ + 105 + ], + "suggesting": [ + 106 + ], + "possible": [ + 107 + ], + "bias": [ + 108 + ], + "combinations": [ + 109 + ], + "have": [ + 111 + ], + "explored.": [ + 115 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 99 + }, + { + "year": 2024, + "cited_by_count": 227 + }, + { + "year": 2023, + "cited_by_count": 300 + }, + { + "year": 2022, + "cited_by_count": 329 + }, + { + "year": 2021, + "cited_by_count": 490 + }, + { + "year": 2020, + "cited_by_count": 504 + }, + { + "year": 2019, + "cited_by_count": 464 + }, + { + "year": 2018, + "cited_by_count": 344 + }, + { + "year": 2017, + "cited_by_count": 252 + }, + { + "year": 2016, + "cited_by_count": 221 + }, + { + "year": 2015, + "cited_by_count": 233 + }, + { + "year": 2014, + "cited_by_count": 184 + }, + { + "year": 2013, + "cited_by_count": 168 + }, + { + "year": 2012, + "cited_by_count": 125 + } + ], + "updated_date": "2025-10-10T17:16:08.811792", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4236362309", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "title": "Understanding Machine Learning", + "display_name": "Understanding Machine Learning", + "relevance_score": 4238.3584, + "publication_year": 2014, + "publication_date": "2014-05-19", + "ids": { + "openalex": "https://openalex.org/W4236362309", + "doi": "https://doi.org/10.1017/cbo9781107298019" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9781107298019", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9781107298019", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5078263052", + "display_name": "Shai Shalev‐Shwartz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I197251160", + "display_name": "Hebrew University of Jerusalem", + "ror": "https://ror.org/03qxff017", + "country_code": "IL", + "type": "education", + "lineage": [ + "https://openalex.org/I197251160" + ] + } + ], + "countries": [ + "IL" + ], + "is_corresponding": true, + "raw_author_name": "Shai Shalev-Shwartz", + "raw_affiliation_strings": [ + "Hebrew University of Jerusalem" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hebrew University of Jerusalem", + "institution_ids": [ + "https://openalex.org/I197251160" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5112193907", + "display_name": "Shai Ben-David", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I151746483", + "display_name": "University of Waterloo", + "ror": "https://ror.org/01aff2v68", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I151746483" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Shai Ben-David", + "raw_affiliation_strings": [ + "University of Waterloo, Ontario" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Waterloo, Ontario", + "institution_ids": [ + "https://openalex.org/I151746483" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5078263052" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I197251160" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 13.8547, + "has_fulltext": false, + "cited_by_count": 2907, + "citation_normalized_percentile": { + "value": 0.98681112, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.5062000155448914, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.5062000155448914, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7047193050384521 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6659388542175293 + }, + { + "id": "https://openalex.org/keywords/stability", + "display_name": "Stability (learning theory)", + "score": 0.5692204236984253 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.5539110898971558 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.5352068543434143 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5332021117210388 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5140898823738098 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.5117306709289551 + }, + { + "id": "https://openalex.org/keywords/convexity", + "display_name": "Convexity", + "score": 0.51105797290802 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.44482100009918213 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.40191978216171265 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7047193050384521 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6659388542175293 + }, + { + "id": "https://openalex.org/C112972136", + "wikidata": "https://www.wikidata.org/wiki/Q7595718", + "display_name": "Stability (learning theory)", + "level": 2, + "score": 0.5692204236984253 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.5539110898971558 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.5352068543434143 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5332021117210388 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5140898823738098 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.5117306709289551 + }, + { + "id": "https://openalex.org/C72134830", + "wikidata": "https://www.wikidata.org/wiki/Q5166524", + "display_name": "Convexity", + "level": 2, + "score": 0.51105797290802 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.44482100009918213 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.40191978216171265 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106159729", + "wikidata": "https://www.wikidata.org/wiki/Q2294553", + "display_name": "Financial economics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1017/cbo9781107298019", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9781107298019", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.7200000286102295, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W36398315", + "https://openalex.org/W4286799911", + "https://openalex.org/W3176029617", + "https://openalex.org/W2109601080", + "https://openalex.org/W3031362111", + "https://openalex.org/W2183087249", + "https://openalex.org/W4234769374", + "https://openalex.org/W2774684800", + "https://openalex.org/W2339204188", + "https://openalex.org/W2170905826" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 46, + 86, + 135 + ], + "is": [ + 2, + 20 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 17, + 41, + 61, + 70, + 81, + 85, + 90, + 133 + ], + "the": [ + 5, + 26, + 42, + 48, + 62, + 64, + 82, + 88, + 113, + 126, + 129 + ], + "fastest": [ + 6 + ], + "growing": [ + 7 + ], + "areas": [ + 8 + ], + "computer": [ + 10, + 144 + ], + "science,": [ + 11, + 145 + ], + "with": [ + 12 + ], + "far-reaching": [ + 13 + ], + "applications.": [ + 14 + ], + "The": [ + 15, + 35 + ], + "aim": [ + 16 + ], + "this": [ + 18 + ], + "textbook": [ + 19 + ], + "to": [ + 21, + 137 + ], + "introduce": [ + 22 + ], + "machine": [ + 23, + 45, + 134 + ], + "learning,": [ + 24 + ], + "and": [ + 25, + 47, + 87, + 92, + 103, + 107, + 116, + 131, + 139, + 147 + ], + "algorithmic": [ + 27, + 95 + ], + "paradigms": [ + 28, + 96 + ], + "it": [ + 29 + ], + "offers,": [ + 30 + ], + "in": [ + 31, + 142 + ], + "a": [ + 32, + 38, + 59, + 67, + 79 + ], + "principled": [ + 33 + ], + "way.": [ + 34 + ], + "book": [ + 36, + 65 + ], + "provides": [ + 37 + ], + "theoretical": [ + 39, + 109 + ], + "account": [ + 40 + ], + "fundamentals": [ + 43, + 130 + ], + "underlying": [ + 44 + ], + "mathematical": [ + 49 + ], + "derivations": [ + 50 + ], + "that": [ + 51 + ], + "transform": [ + 52 + ], + "these": [ + 53 + ], + "principles": [ + 54 + ], + "into": [ + 55 + ], + "practical": [ + 56 + ], + "algorithms.": [ + 57 + ], + "Following": [ + 58 + ], + "presentation": [ + 60 + ], + "basics,": [ + 63 + ], + "covers": [ + 66 + ], + "wide": [ + 68 + ], + "array": [ + 69 + ], + "central": [ + 71 + ], + "topics": [ + 72 + ], + "unaddressed": [ + 73 + ], + "by": [ + 74 + ], + "previous": [ + 75 + ], + "textbooks.": [ + 76 + ], + "These": [ + 77 + ], + "include": [ + 78 + ], + "discussion": [ + 80 + ], + "computational": [ + 83 + ], + "complexity": [ + 84 + ], + "concepts": [ + 89, + 110 + ], + "convexity": [ + 91 + ], + "stability;": [ + 93 + ], + "important": [ + 94 + ], + "including": [ + 97 + ], + "stochastic": [ + 98 + ], + "gradient": [ + 99 + ], + "descent,": [ + 100 + ], + "neural": [ + 101 + ], + "networks,": [ + 102 + ], + "structured": [ + 104 + ], + "output": [ + 105 + ], + "learning;": [ + 106 + ], + "emerging": [ + 108 + ], + "such": [ + 111 + ], + "as": [ + 112 + ], + "PAC-Bayes": [ + 114 + ], + "approach": [ + 115 + ], + "compression-based": [ + 117 + ], + "bounds.": [ + 118 + ], + "Designed": [ + 119 + ], + "for": [ + 120 + ], + "advanced": [ + 121 + ], + "undergraduates": [ + 122 + ], + "or": [ + 123 + ], + "beginning": [ + 124 + ], + "graduates,": [ + 125 + ], + "text": [ + 127 + ], + "makes": [ + 128 + ], + "algorithms": [ + 132 + ], + "accessible": [ + 136 + ], + "students": [ + 138 + ], + "non-expert": [ + 140 + ], + "readers": [ + 141 + ], + "statistics,": [ + 143 + ], + "mathematics": [ + 146 + ], + "engineering.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 98 + }, + { + "year": 2025, + "cited_by_count": 375 + }, + { + "year": 2024, + "cited_by_count": 400 + }, + { + "year": 2023, + "cited_by_count": 421 + }, + { + "year": 2022, + "cited_by_count": 424 + }, + { + "year": 2021, + "cited_by_count": 368 + }, + { + "year": 2020, + "cited_by_count": 366 + }, + { + "year": 2019, + "cited_by_count": 192 + }, + { + "year": 2018, + "cited_by_count": 144 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 33 + }, + { + "year": 2015, + "cited_by_count": 17 + }, + { + "year": 2014, + "cited_by_count": 4 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2022-05-12T00:00:00" + }, + { + "id": "https://openalex.org/W3198350258", + "doi": "https://doi.org/10.1147/rd.33.0210", + "title": "Some Studies in Machine Learning Using the Game of Checkers", + "display_name": "Some Studies in Machine Learning Using the Game of Checkers", + "relevance_score": 4166.422, + "publication_year": 1959, + "publication_date": "1959-07-01", + "ids": { + "openalex": "https://openalex.org/W3198350258", + "doi": "https://doi.org/10.1147/rd.33.0210", + "mag": "3198350258" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1147/rd.33.0210", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1147/rd.33.0210", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210219925", + "display_name": "IBM Journal of Research and Development", + "issn_l": "0018-8646", + "issn": [ + "0018-8646", + "2151-8556" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320652", + "host_organization_name": "IBM", + "host_organization_lineage": [ + "https://openalex.org/P4310320652" + ], + "host_organization_lineage_names": [ + "IBM" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IBM Journal of Research and Development", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5103515726", + "display_name": "Arthur L. Samuel", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "A. L. Samuel", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5103515726" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 58.6681, + "has_fulltext": false, + "cited_by_count": 4330, + "citation_normalized_percentile": { + "value": 0.99739244, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "3", + "first_page": "210", + "last_page": "229" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11574", + "display_name": "Artificial Intelligence in Games", + "score": 0.8087999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11574", + "display_name": "Artificial Intelligence in Games", + "score": 0.8087999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7188340425491333 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5375511050224304 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3793615698814392 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7188340425491333 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5375511050224304 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3793615698814392 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1147/rd.33.0210", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1147/rd.33.0210", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210219925", + "display_name": "IBM Journal of Research and Development", + "issn_l": "0018-8646", + "issn": [ + "0018-8646", + "2151-8556" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320652", + "host_organization_name": "IBM", + "host_organization_lineage": [ + "https://openalex.org/P4310320652" + ], + "host_organization_lineage_names": [ + "IBM" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IBM Journal of Research and Development", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.5, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W4286629047", + "https://openalex.org/W4306321456", + "https://openalex.org/W4285260836", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4205958290", + "https://openalex.org/W3209574120" + ], + "abstract_inverted_index": { + "Two": [ + 0 + ], + "machine-learning": [ + 1 + ], + "procedures": [ + 2 + ], + "have": [ + 3, + 97 + ], + "been": [ + 4, + 17 + ], + "investigated": [ + 5 + ], + "in": [ + 6, + 59 + ], + "some": [ + 7 + ], + "detail": [ + 8 + ], + "using": [ + 9 + ], + "the": [ + 10, + 21, + 46, + 50, + 76, + 79, + 102 + ], + "game": [ + 11, + 38 + ], + "of": [ + 12, + 39, + 64, + 70, + 78, + 83, + 91, + 117, + 125 + ], + "checkers.": [ + 13 + ], + "Enough": [ + 14 + ], + "work": [ + 15 + ], + "has": [ + 16 + ], + "done": [ + 18 + ], + "to": [ + 19, + 34, + 56, + 96, + 99, + 128 + ], + "verify": [ + 20 + ], + "fact": [ + 22 + ], + "that": [ + 23, + 30 + ], + "a": [ + 24, + 36, + 60, + 81, + 86 + ], + "computer": [ + 25 + ], + "can": [ + 26, + 42, + 54 + ], + "be": [ + 27, + 43 + ], + "programmed": [ + 28 + ], + "so": [ + 29 + ], + "it": [ + 31, + 53 + ], + "will": [ + 32 + ], + "learn": [ + 33, + 55 + ], + "play": [ + 35 + ], + "better": [ + 37 + ], + "checkers": [ + 40 + ], + "than": [ + 41 + ], + "played": [ + 44 + ], + "by": [ + 45, + 121 + ], + "person": [ + 47 + ], + "who": [ + 48 + ], + "wrote": [ + 49 + ], + "program.": [ + 51 + ], + "Furthermore,": [ + 52 + ], + "do": [ + 57, + 100 + ], + "this": [ + 58 + ], + "remarkably": [ + 61 + ], + "short": [ + 62 + ], + "period": [ + 63 + ], + "time": [ + 65 + ], + "(8": [ + 66 + ], + "or": [ + 67 + ], + "10": [ + 68 + ], + "hours": [ + 69 + ], + "machine-playing": [ + 71 + ], + "time)": [ + 72 + ], + "when": [ + 73 + ], + "given": [ + 74 + ], + "only": [ + 75 + ], + "rules": [ + 77 + ], + "game,": [ + 80, + 103 + ], + "sense": [ + 82 + ], + "direction,": [ + 84 + ], + "and": [ + 85, + 88, + 108, + 113 + ], + "redundant": [ + 87 + ], + "incomplete": [ + 89 + ], + "list": [ + 90 + ], + "parameters": [ + 92 + ], + "which": [ + 93 + ], + "are": [ + 94, + 111 + ], + "thought": [ + 95 + ], + "something": [ + 98 + ], + "with": [ + 101 + ], + "but": [ + 104 + ], + "whose": [ + 105 + ], + "correct": [ + 106 + ], + "signs": [ + 107 + ], + "relative": [ + 109 + ], + "weights": [ + 110 + ], + "unknown": [ + 112 + ], + "unspecified.": [ + 114 + ], + "The": [ + 115 + ], + "principles": [ + 116 + ], + "machine": [ + 118 + ], + "learning": [ + 119 + ], + "verified": [ + 120 + ], + "these": [ + 122 + ], + "experiments": [ + 123 + ], + "are,": [ + 124 + ], + "course,": [ + 126 + ], + "applicable": [ + 127 + ], + "many": [ + 129 + ], + "other": [ + 130 + ], + "situations.": [ + 131 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 87 + }, + { + "year": 2025, + "cited_by_count": 322 + }, + { + "year": 2024, + "cited_by_count": 345 + }, + { + "year": 2023, + "cited_by_count": 343 + }, + { + "year": 2022, + "cited_by_count": 342 + }, + { + "year": 2021, + "cited_by_count": 398 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 352 + }, + { + "year": 2018, + "cited_by_count": 221 + }, + { + "year": 2017, + "cited_by_count": 147 + }, + { + "year": 2016, + "cited_by_count": 59 + }, + { + "year": 2015, + "cited_by_count": 42 + }, + { + "year": 2014, + "cited_by_count": 42 + }, + { + "year": 2013, + "cited_by_count": 52 + }, + { + "year": 2012, + "cited_by_count": 45 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2535690855", + "doi": "https://doi.org/10.1109/sp.2017.41", + "title": "Membership Inference Attacks Against Machine Learning Models", + "display_name": "Membership Inference Attacks Against Machine Learning Models", + "relevance_score": 4124.878, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2535690855", + "doi": "https://doi.org/10.1109/sp.2017.41", + "mag": "2535690855" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2017.41", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.41", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5084892128", + "display_name": "Reza Shokri", + "orcid": "https://orcid.org/0000-0001-9816-0173" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Reza Shokri", + "raw_affiliation_strings": [ + "Cornell Tech" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5086560283", + "display_name": "Marco Stronati", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Marco Stronati", + "raw_affiliation_strings": [ + "INRIA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "INRIA", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048446895", + "display_name": "Congzheng Song", + "orcid": "https://orcid.org/0000-0002-5076-7299" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Congzheng Song", + "raw_affiliation_strings": [ + "Cornell" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5038206174", + "display_name": "Vitaly Shmatikov", + "orcid": "https://orcid.org/0009-0002-1336-5714" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vitaly Shmatikov", + "raw_affiliation_strings": [ + "Cornell Tech" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5084892128" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I205783295" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 167.1932, + "has_fulltext": false, + "cited_by_count": 4176, + "citation_normalized_percentile": { + "value": 0.99981039, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "3", + "last_page": "18" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9768000245094299, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/inference", + "display_name": "Inference", + "score": 0.8516879081726074 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7886953949928284 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7878186702728271 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6666349768638611 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5839544534683228 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.5145570635795593 + }, + { + "id": "https://openalex.org/keywords/data-modeling", + "display_name": "Data modeling", + "score": 0.47366389632225037 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.4463120698928833 + }, + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.41243356466293335 + }, + { + "id": "https://openalex.org/keywords/database", + "display_name": "Database", + "score": 0.07796728610992432 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2776214188", + "wikidata": "https://www.wikidata.org/wiki/Q408386", + "display_name": "Inference", + "level": 2, + "score": 0.8516879081726074 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7886953949928284 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7878186702728271 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6666349768638611 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5839544534683228 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.5145570635795593 + }, + { + "id": "https://openalex.org/C67186912", + "wikidata": "https://www.wikidata.org/wiki/Q367664", + "display_name": "Data modeling", + "level": 2, + "score": 0.47366389632225037 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.4463120698928833 + }, + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.41243356466293335 + }, + { + "id": "https://openalex.org/C77088390", + "wikidata": "https://www.wikidata.org/wiki/Q8513", + "display_name": "Database", + "level": 1, + "score": 0.07796728610992432 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/sp.2017.41", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.41", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:scholarbank.nus.edu.sg:10635/172937", + "is_oa": false, + "landing_page_url": "https://scholarbank.nus.edu.sg/handle/10635/172937", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407052290", + "display_name": "National University of Singapore", + "issn_l": null, + "issn": [], + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Elements", + "raw_type": "Conference Paper" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.5699999928474426, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 54, + "referenced_works": [ + "https://openalex.org/W1473189865", + "https://openalex.org/W1510952750", + "https://openalex.org/W1528076390", + "https://openalex.org/W1535019556", + "https://openalex.org/W1554944419", + "https://openalex.org/W1760458529", + "https://openalex.org/W1811750039", + "https://openalex.org/W1821462560", + "https://openalex.org/W1826232489", + "https://openalex.org/W1873763122", + "https://openalex.org/W1992926795", + "https://openalex.org/W2009733253", + "https://openalex.org/W2024594469", + "https://openalex.org/W2040228409", + "https://openalex.org/W2051267297", + "https://openalex.org/W2053637704", + "https://openalex.org/W2077905990", + "https://openalex.org/W2095272373", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096633407", + "https://openalex.org/W2106313770", + "https://openalex.org/W2106463421", + "https://openalex.org/W2112380340", + "https://openalex.org/W2114229504", + "https://openalex.org/W2119874464", + "https://openalex.org/W2123147099", + "https://openalex.org/W2130051287", + "https://openalex.org/W2151320232", + "https://openalex.org/W2162379889", + "https://openalex.org/W2186645727", + "https://openalex.org/W2198253679", + "https://openalex.org/W2329660289", + "https://openalex.org/W2461943168", + "https://openalex.org/W2473418344", + "https://openalex.org/W2532520288", + "https://openalex.org/W2950943617", + "https://openalex.org/W2951114885", + "https://openalex.org/W2962835266", + "https://openalex.org/W2963794891", + "https://openalex.org/W2964318098", + "https://openalex.org/W3118608800", + "https://openalex.org/W3215186461", + "https://openalex.org/W4248649186", + "https://openalex.org/W6628547770", + "https://openalex.org/W6631628602", + "https://openalex.org/W6632160336", + "https://openalex.org/W6638214083", + "https://openalex.org/W6639246211", + "https://openalex.org/W6661425395", + "https://openalex.org/W6674330103", + "https://openalex.org/W6676639149", + "https://openalex.org/W6677855611", + "https://openalex.org/W6686761782", + "https://openalex.org/W6731627051" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2502115930", + "https://openalex.org/W2482350142", + "https://openalex.org/W4246396837", + "https://openalex.org/W3126451824", + "https://openalex.org/W1561927205", + "https://openalex.org/W3191453585", + "https://openalex.org/W4297672492", + "https://openalex.org/W4310988119", + "https://openalex.org/W4285226279" + ], + "abstract_inverted_index": { + "We": [ + 0, + 19, + 92, + 146 + ], + "quantitatively": [ + 1 + ], + "investigate": [ + 2, + 148 + ], + "how": [ + 3 + ], + "machine": [ + 4, + 60 + ], + "learning": [ + 5, + 61, + 105 + ], + "models": [ + 6, + 100, + 138 + ], + "leak": [ + 7 + ], + "information": [ + 8 + ], + "about": [ + 9 + ], + "the": [ + 10, + 22, + 39, + 43, + 72, + 77, + 84, + 131, + 149 + ], + "individual": [ + 11 + ], + "data": [ + 12, + 29 + ], + "records": [ + 13 + ], + "on": [ + 14, + 21, + 76, + 82, + 98 + ], + "which": [ + 15 + ], + "they": [ + 16 + ], + "were": [ + 17 + ], + "trained.": [ + 18 + ], + "focus": [ + 20 + ], + "basic": [ + 23 + ], + "membership": [ + 24, + 49, + 127, + 143 + ], + "inference": [ + 25, + 50, + 66, + 96, + 144 + ], + "attack:": [ + 26 + ], + "given": [ + 27 + ], + "a": [ + 28, + 35, + 52, + 107, + 122 + ], + "record": [ + 30, + 40 + ], + "and": [ + 31, + 62, + 113, + 118, + 155 + ], + "black-box": [ + 32 + ], + "access": [ + 33 + ], + "to": [ + 34, + 68, + 142 + ], + "model,": [ + 36, + 54 + ], + "determine": [ + 37 + ], + "if": [ + 38 + ], + "was": [ + 41 + ], + "in": [ + 42, + 71 + ], + "model's": [ + 44, + 74 + ], + "training": [ + 45 + ], + "dataset.": [ + 46 + ], + "To": [ + 47 + ], + "perform": [ + 48 + ], + "against": [ + 51 + ], + "target": [ + 53, + 73 + ], + "we": [ + 55, + 134 + ], + "make": [ + 56 + ], + "adversarial": [ + 57 + ], + "use": [ + 58 + ], + "of": [ + 59 + ], + "train": [ + 63, + 90 + ], + "our": [ + 64, + 95 + ], + "own": [ + 65 + ], + "model": [ + 67 + ], + "recognize": [ + 69 + ], + "differences": [ + 70 + ], + "predictions": [ + 75 + ], + "inputs": [ + 78, + 85 + ], + "that": [ + 79, + 86, + 136, + 151 + ], + "it": [ + 80, + 87 + ], + "trained": [ + 81, + 101 + ], + "versus": [ + 83 + ], + "did": [ + 88 + ], + "not": [ + 89 + ], + "on.": [ + 91 + ], + "empirically": [ + 93 + ], + "evaluate": [ + 94, + 156 + ], + "techniques": [ + 97 + ], + "classification": [ + 99, + 119 + ], + "by": [ + 102 + ], + "commercial": [ + 103 + ], + "\"machine": [ + 104 + ], + "as": [ + 106, + 111 + ], + "service\"": [ + 108 + ], + "providers": [ + 109 + ], + "such": [ + 110 + ], + "Google": [ + 112 + ], + "Amazon.": [ + 114 + ], + "Using": [ + 115 + ], + "realistic": [ + 116 + ], + "datasets": [ + 117 + ], + "tasks,": [ + 120 + ], + "including": [ + 121 + ], + "hospital": [ + 123 + ], + "discharge": [ + 124 + ], + "dataset": [ + 125 + ], + "whose": [ + 126 + ], + "is": [ + 128 + ], + "sensitive": [ + 129 + ], + "from": [ + 130 + ], + "privacy": [ + 132 + ], + "perspective,": [ + 133 + ], + "show": [ + 135 + ], + "these": [ + 137 + ], + "can": [ + 139 + ], + "be": [ + 140 + ], + "vulnerable": [ + 141 + ], + "attacks.": [ + 145 + ], + "then": [ + 147 + ], + "factors": [ + 150 + ], + "influence": [ + 152 + ], + "this": [ + 153 + ], + "leakage": [ + 154 + ], + "mitigation": [ + 157 + ], + "strategies.": [ + 158 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 198 + }, + { + "year": 2025, + "cited_by_count": 744 + }, + { + "year": 2024, + "cited_by_count": 706 + }, + { + "year": 2023, + "cited_by_count": 627 + }, + { + "year": 2022, + "cited_by_count": 513 + }, + { + "year": 2021, + "cited_by_count": 585 + }, + { + "year": 2020, + "cited_by_count": 445 + }, + { + "year": 2019, + "cited_by_count": 232 + }, + { + "year": 2018, + "cited_by_count": 101 + }, + { + "year": 2017, + "cited_by_count": 24 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2885770726", + "doi": "https://doi.org/10.3390/s18082674", + "title": "Machine Learning in Agriculture: A Review", + "display_name": "Machine Learning in Agriculture: A Review", + "relevance_score": 4124.347, + "publication_year": 2018, + "publication_date": "2018-08-14", + "ids": { + "openalex": "https://openalex.org/W2885770726", + "doi": "https://doi.org/10.3390/s18082674", + "mag": "2885770726", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30110960" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5085282864", + "display_name": "Κωνσταντίνος Λιάκος", + "orcid": "https://orcid.org/0000-0002-6866-0932" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantinos Liakos", + "raw_affiliation_strings": [ + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059581084", + "display_name": "Patrizia Busato", + "orcid": "https://orcid.org/0000-0001-9546-530X" + }, + "institutions": [ + { + "id": "https://openalex.org/I55143463", + "display_name": "University of Turin", + "ror": "https://ror.org/048tbm396", + "country_code": "IT", + "type": "education", + "lineage": [ + "https://openalex.org/I55143463" + ] + } + ], + "countries": [ + "IT" + ], + "is_corresponding": false, + "raw_author_name": "Patrizia Busato", + "raw_affiliation_strings": [ + "Department of Agriculture, Forestry and Food Sciences (DISAFA), Faculty of Agriculture, University of Turin, Largo Braccini 2, 10095 Grugliasco, Italy" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Agriculture, Forestry and Food Sciences (DISAFA), Faculty of Agriculture, University of Turin, Largo Braccini 2, 10095 Grugliasco, Italy", + "institution_ids": [ + "https://openalex.org/I55143463" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047144831", + "display_name": "Dimitrios Moshou", + "orcid": "https://orcid.org/0000-0001-7270-5307" + }, + "institutions": [ + { + "id": "https://openalex.org/I21370196", + "display_name": "Aristotle University of Thessaloniki", + "ror": "https://ror.org/02j61yw88", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I21370196" + ] + }, + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Dimitrios Moshou", + "raw_affiliation_strings": [ + "Agricultural Engineering Laboratory, Faculty of Agriculture, Aristotle University of Thessaloniki, 54124 Thessaloniki, Greece", + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Agricultural Engineering Laboratory, Faculty of Agriculture, Aristotle University of Thessaloniki, 54124 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I21370196" + ] + }, + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018447003", + "display_name": "Simon Pearson", + "orcid": "https://orcid.org/0000-0002-4297-4837" + }, + "institutions": [ + { + "id": "https://openalex.org/I51532219", + "display_name": "University of Lincoln", + "ror": "https://ror.org/03yeq9x20", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I51532219" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Simon Pearson", + "raw_affiliation_strings": [ + "Lincoln Institute for Agri-food Technology (LIAT), University of Lincoln, Brayford Way, Brayford Pool, Lincoln LN6 7TS, UK" + ], + "raw_orcid": "https://orcid.org/0000-0002-4297-4837", + "affiliations": [ + { + "raw_affiliation_string": "Lincoln Institute for Agri-food Technology (LIAT), University of Lincoln, Brayford Way, Brayford Pool, Lincoln LN6 7TS, UK", + "institution_ids": [ + "https://openalex.org/I51532219" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5073592501", + "display_name": "Dionysis Bochtis", + "orcid": "https://orcid.org/0000-0002-7058-5986" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Dionysis Bochtis", + "raw_affiliation_strings": [ + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0002-7058-5986", + "affiliations": [ + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5073592501" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210134249" + ], + "apc_list": { + "value": 2400, + "currency": "CHF", + "value_usd": 2598 + }, + "apc_paid": { + "value": 2400, + "currency": "CHF", + "value_usd": 2598 + }, + "fwci": 234.4049, + "has_fulltext": true, + "cited_by_count": 2977, + "citation_normalized_percentile": { + "value": 0.99998177, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "18", + "issue": "8", + "first_page": "2674", + "last_page": "2674" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10616", + "display_name": "Smart Agriculture and AI", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1110", + "display_name": "Plant Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10616", + "display_name": "Smart Agriculture and AI", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1110", + "display_name": "Plant Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10640", + "display_name": "Spectroscopy and Chemometric Analyses", + "score": 0.9825999736785889, + "subfield": { + "id": "https://openalex.org/subfields/1602", + "display_name": "Analytical Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/16", + "display_name": "Chemistry" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10111", + "display_name": "Remote Sensing in Agriculture", + "score": 0.958299994468689, + "subfield": { + "id": "https://openalex.org/subfields/2303", + "display_name": "Ecology" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/agriculture", + "display_name": "Agriculture", + "score": 0.5998008251190186 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5735517740249634 + }, + { + "id": "https://openalex.org/keywords/precision-agriculture", + "display_name": "Precision agriculture", + "score": 0.5354065895080566 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5236620306968689 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5148038268089294 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.4952518045902252 + }, + { + "id": "https://openalex.org/keywords/livestock", + "display_name": "Livestock", + "score": 0.43506547808647156 + }, + { + "id": "https://openalex.org/keywords/decision-support-system", + "display_name": "Decision support system", + "score": 0.41696614027023315 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3964245617389679 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.13465631008148193 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C118518473", + "wikidata": "https://www.wikidata.org/wiki/Q11451", + "display_name": "Agriculture", + "level": 2, + "score": 0.5998008251190186 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5735517740249634 + }, + { + "id": "https://openalex.org/C120217122", + "wikidata": "https://www.wikidata.org/wiki/Q740083", + "display_name": "Precision agriculture", + "level": 3, + "score": 0.5354065895080566 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5236620306968689 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5148038268089294 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.4952518045902252 + }, + { + "id": "https://openalex.org/C112964050", + "wikidata": "https://www.wikidata.org/wiki/Q103459", + "display_name": "Livestock", + "level": 2, + "score": 0.43506547808647156 + }, + { + "id": "https://openalex.org/C107327155", + "wikidata": "https://www.wikidata.org/wiki/Q330268", + "display_name": "Decision support system", + "level": 2, + "score": 0.41696614027023315 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3964245617389679 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.13465631008148193 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C18903297", + "wikidata": "https://www.wikidata.org/wiki/Q7150", + "display_name": "Ecology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 9, + "locations": [ + { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + { + "id": "pmid:30110960", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30110960", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors (Basel, Switzerland)", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:c6cd93144ea3478f860eb1f3766e5a43", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/c6cd93144ea3478f860eb1f3766e5a43", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors, Vol 18, Iss 8, p 2674 (2018)", + "raw_type": "article" + }, + { + "id": "pmh:oai:eprints.lincoln.ac.uk:33015", + "is_oa": true, + "landing_page_url": "http://eprints.lincoln.ac.uk/id/eprint/33015/1/htm", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196275", + "display_name": "Lincoln Repository (University of Lincoln)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I51532219", + "host_organization_name": "University of Lincoln", + "host_organization_lineage": [ + "https://openalex.org/I51532219" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + }, + { + "id": "pmh:oai:europepmc.org:5064788", + "is_oa": true, + "landing_page_url": "http://europepmc.org/pmc/articles/PMC6111295", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:figshare.com:article/24372634", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Machine_Learning_in_Agriculture_A_Review/24372634", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:iris.unito.it:2318/1679884", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/2318/1679884", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400637", + "display_name": "Institutional Research Information System University of Turin (University of Turin)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I55143463", + "host_organization_name": "University of Turin", + "host_organization_lineage": [ + "https://openalex.org/I55143463" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "info:eu-repo/semantics/article" + }, + { + "id": "pmh:oai:mdpi.com:/1424-8220/18/8/2674/", + "is_oa": true, + "landing_page_url": "http://dx.doi.org/10.3390/s18082674", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6111295", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6111295", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors (Basel)", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Zero hunger", + "score": 0.800000011920929, + "id": "https://metadata.un.org/sdg/2" + } + ], + "awards": [ + { + "id": "https://openalex.org/G3584239725", + "display_name": null, + "funder_award_id": "EP/R045127/1", + "funder_id": "https://openalex.org/F4320334627", + "funder_display_name": "Engineering and Physical Sciences Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320321917", + "display_name": "General Secretariat for Research and Technology", + "ror": "https://ror.org/04yeh8h63" + }, + { + "id": "https://openalex.org/F4320334627", + "display_name": "Engineering and Physical Sciences Research Council", + "ror": "https://ror.org/0439y7842" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2885770726.pdf", + "grobid_xml": "https://content.openalex.org/works/W2885770726.grobid-xml" + }, + "referenced_works_count": 112, + "referenced_works": [ + "https://openalex.org/W94523489", + "https://openalex.org/W189596042", + "https://openalex.org/W1179140510", + "https://openalex.org/W1496317909", + "https://openalex.org/W1596717185", + "https://openalex.org/W1689445748", + "https://openalex.org/W1916445479", + "https://openalex.org/W1963579367", + "https://openalex.org/W1963790103", + "https://openalex.org/W1966124853", + "https://openalex.org/W1967320885", + "https://openalex.org/W1968452917", + "https://openalex.org/W1984530193", + "https://openalex.org/W1990517717", + "https://openalex.org/W1995341919", + "https://openalex.org/W1998871699", + "https://openalex.org/W2000972253", + "https://openalex.org/W2001619934", + "https://openalex.org/W2009986810", + "https://openalex.org/W2015263929", + "https://openalex.org/W2018435387", + "https://openalex.org/W2019207321", + "https://openalex.org/W2024081693", + "https://openalex.org/W2025279987", + "https://openalex.org/W2028606616", + "https://openalex.org/W2040104179", + "https://openalex.org/W2040870580", + "https://openalex.org/W2049633694", + "https://openalex.org/W2063304499", + "https://openalex.org/W2065165083", + "https://openalex.org/W2072680624", + "https://openalex.org/W2075320162", + "https://openalex.org/W2076857888", + "https://openalex.org/W2081544115", + "https://openalex.org/W2087877962", + "https://openalex.org/W2095727900", + "https://openalex.org/W2102201073", + "https://openalex.org/W2106855632", + "https://openalex.org/W2108703480", + "https://openalex.org/W2110642273", + "https://openalex.org/W2111072639", + "https://openalex.org/W2119821739", + "https://openalex.org/W2128084896", + "https://openalex.org/W2138178898", + "https://openalex.org/W2143908786", + "https://openalex.org/W2149723649", + "https://openalex.org/W2150593711", + "https://openalex.org/W2153476503", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154350719", + "https://openalex.org/W2161673710", + "https://openalex.org/W2174918471", + "https://openalex.org/W2200121095", + "https://openalex.org/W2209382794", + "https://openalex.org/W2216013554", + "https://openalex.org/W2231576311", + "https://openalex.org/W2270460811", + "https://openalex.org/W2270641383", + "https://openalex.org/W2273322351", + "https://openalex.org/W2286091602", + "https://openalex.org/W2294798173", + "https://openalex.org/W2298521547", + "https://openalex.org/W2337945771", + "https://openalex.org/W2339447311", + "https://openalex.org/W2399675776", + "https://openalex.org/W2417395753", + "https://openalex.org/W2419137750", + "https://openalex.org/W2470803522", + "https://openalex.org/W2497210317", + "https://openalex.org/W2502044482", + "https://openalex.org/W2552660223", + "https://openalex.org/W2560811704", + "https://openalex.org/W2577148968", + "https://openalex.org/W2580808806", + "https://openalex.org/W2586821267", + "https://openalex.org/W2591104514", + "https://openalex.org/W2598645336", + "https://openalex.org/W2603364874", + "https://openalex.org/W2603417106", + "https://openalex.org/W2604196786", + "https://openalex.org/W2606244344", + "https://openalex.org/W2606916050", + "https://openalex.org/W2612828053", + "https://openalex.org/W2619390517", + "https://openalex.org/W2620473470", + "https://openalex.org/W2620542418", + "https://openalex.org/W2621525431", + "https://openalex.org/W2622758479", + "https://openalex.org/W2622999711", + "https://openalex.org/W2738911869", + "https://openalex.org/W2775111183", + "https://openalex.org/W2789255992", + "https://openalex.org/W2790639095", + "https://openalex.org/W2791690647", + "https://openalex.org/W2794415089", + "https://openalex.org/W2796501058", + "https://openalex.org/W2806779833", + "https://openalex.org/W2903950532", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W3125807057", + "https://openalex.org/W4210451417", + "https://openalex.org/W4212883601", + "https://openalex.org/W4232670376", + "https://openalex.org/W4239510810", + "https://openalex.org/W4250143236", + "https://openalex.org/W4400360174", + "https://openalex.org/W6607775107", + "https://openalex.org/W6632223008", + "https://openalex.org/W6675321329", + "https://openalex.org/W6675436802", + "https://openalex.org/W6676769703" + ], + "related_works": [ + "https://openalex.org/W1573929026", + "https://openalex.org/W4390608645", + "https://openalex.org/W4394895745", + "https://openalex.org/W4247566972", + "https://openalex.org/W3201212491", + "https://openalex.org/W4380767732", + "https://openalex.org/W4247744717", + "https://openalex.org/W3161605631", + "https://openalex.org/W2361557821", + "https://openalex.org/W2905677023" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 39, + 100, + 105 + ], + "has": [ + 2 + ], + "emerged": [ + 3 + ], + "with": [ + 4 + ], + "big": [ + 5 + ], + "data": [ + 6, + 16 + ], + "technologies": [ + 7 + ], + "and": [ + 8, + 64, + 75, + 81, + 87, + 125, + 131 + ], + "high-performance": [ + 9 + ], + "computing": [ + 10 + ], + "to": [ + 11, + 35, + 106 + ], + "create": [ + 12 + ], + "new": [ + 13 + ], + "opportunities": [ + 14 + ], + "for": [ + 15, + 127 + ], + "intensive": [ + 17 + ], + "science": [ + 18 + ], + "in": [ + 19, + 40, + 49 + ], + "the": [ + 20, + 90 + ], + "multi-disciplinary": [ + 21 + ], + "agri-technologies": [ + 22 + ], + "domain.": [ + 23 + ], + "In": [ + 24 + ], + "this": [ + 25 + ], + "paper,": [ + 26 + ], + "we": [ + 27 + ], + "present": [ + 28 + ], + "a": [ + 29 + ], + "comprehensive": [ + 30 + ], + "review": [ + 31 + ], + "of": [ + 32, + 37, + 89 + ], + "research": [ + 33 + ], + "dedicated": [ + 34 + ], + "applications": [ + 36, + 54, + 71 + ], + "machine": [ + 38, + 99, + 104 + ], + "agricultural": [ + 41 + ], + "production": [ + 42 + ], + "systems.": [ + 43 + ], + "The": [ + 44, + 85 + ], + "works": [ + 45 + ], + "analyzed": [ + 46 + ], + "were": [ + 47 + ], + "categorized": [ + 48 + ], + "(a)": [ + 50 + ], + "crop": [ + 51, + 62 + ], + "management,": [ + 52, + 69 + ], + "including": [ + 53, + 70 + ], + "on": [ + 55, + 72 + ], + "yield": [ + 56 + ], + "prediction,": [ + 57 + ], + "disease": [ + 58 + ], + "detection,": [ + 59 + ], + "weed": [ + 60 + ], + "detection": [ + 61 + ], + "quality,": [ + 63 + ], + "species": [ + 65 + ], + "recognition;": [ + 66 + ], + "(b)": [ + 67 + ], + "livestock": [ + 68, + 76 + ], + "animal": [ + 73 + ], + "welfare": [ + 74 + ], + "production;": [ + 77 + ], + "(c)": [ + 78 + ], + "water": [ + 79 + ], + "management;": [ + 80 + ], + "(d)": [ + 82 + ], + "soil": [ + 83 + ], + "management.": [ + 84 + ], + "filtering": [ + 86 + ], + "classification": [ + 88 + ], + "presented": [ + 91 + ], + "articles": [ + 92 + ], + "demonstrate": [ + 93 + ], + "how": [ + 94 + ], + "agriculture": [ + 95 + ], + "will": [ + 96 + ], + "benefit": [ + 97 + ], + "from": [ + 98 + ], + "technologies.": [ + 101 + ], + "By": [ + 102 + ], + "applying": [ + 103 + ], + "sensor": [ + 107 + ], + "data,": [ + 108 + ], + "farm": [ + 109 + ], + "management": [ + 110 + ], + "systems": [ + 111 + ], + "are": [ + 112 + ], + "evolving": [ + 113 + ], + "into": [ + 114 + ], + "real": [ + 115 + ], + "time": [ + 116 + ], + "artificial": [ + 117 + ], + "intelligence": [ + 118 + ], + "enabled": [ + 119 + ], + "programs": [ + 120 + ], + "that": [ + 121 + ], + "provide": [ + 122 + ], + "rich": [ + 123 + ], + "recommendations": [ + 124 + ], + "insights": [ + 126 + ], + "farmer": [ + 128 + ], + "decision": [ + 129 + ], + "support": [ + 130 + ], + "action.": [ + 132 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 274 + }, + { + "year": 2025, + "cited_by_count": 585 + }, + { + "year": 2024, + "cited_by_count": 449 + }, + { + "year": 2023, + "cited_by_count": 526 + }, + { + "year": 2022, + "cited_by_count": 448 + }, + { + "year": 2021, + "cited_by_count": 383 + }, + { + "year": 2020, + "cited_by_count": 235 + }, + { + "year": 2019, + "cited_by_count": 74 + }, + { + "year": 2018, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2588003345", + "doi": "https://doi.org/10.1371/journal.pone.0169748", + "title": "SoilGrids250m: Global gridded soil information based on machine learning", + "display_name": "SoilGrids250m: Global gridded soil information based on machine learning", + "relevance_score": 3983.277, + "publication_year": 2017, + "publication_date": "2017-02-16", + "ids": { + "openalex": "https://openalex.org/W2588003345", + "doi": "https://doi.org/10.1371/journal.pone.0169748", + "mag": "2588003345", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28207752" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5008884945", + "display_name": "Tomislav Hengl", + "orcid": "https://orcid.org/0000-0002-9921-5129" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": true, + "raw_author_name": "Tomislav Hengl", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": "https://orcid.org/0000-0002-9921-5129", + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5066931705", + "display_name": "Jorge Mendes de Jesus", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Jorge Mendes de Jesus", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5011620756", + "display_name": "G.B.M. Heuvelink", + "orcid": "https://orcid.org/0000-0003-0959-9358" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Gerard B. M. Heuvelink", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048983679", + "display_name": "M. Ruiperez González", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Maria Ruiperez Gonzalez", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5019218652", + "display_name": "Milan Kilibarda", + "orcid": "https://orcid.org/0000-0002-2930-3596" + }, + "institutions": [ + { + "id": "https://openalex.org/I4068193", + "display_name": "University of Belgrade", + "ror": "https://ror.org/02qsmb048", + "country_code": "RS", + "type": "education", + "lineage": [ + "https://openalex.org/I4068193" + ] + } + ], + "countries": [ + "RS" + ], + "is_corresponding": false, + "raw_author_name": "Milan Kilibarda", + "raw_affiliation_strings": [ + "Faculty of Civil Engineering, University of Belgrade, Belgrade, Serbia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Civil Engineering, University of Belgrade, Belgrade, Serbia", + "institution_ids": [ + "https://openalex.org/I4068193" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5079601401", + "display_name": "Aleksandar Blagotić", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Aleksandar Blagotić", + "raw_affiliation_strings": [ + "GILab Ltd, Belgrade, Serbia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "GILab Ltd, Belgrade, Serbia", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050326105", + "display_name": "Wei Shangguan", + "orcid": "https://orcid.org/0000-0001-7622-8210" + }, + "institutions": [ + { + "id": "https://openalex.org/I157773358", + "display_name": "Sun Yat-sen University", + "ror": "https://ror.org/0064kty71", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I157773358" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Wei Shangguan", + "raw_affiliation_strings": [ + "School of Atmospheric Sciences, Sun Yat-sen University, Guangzhou, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Atmospheric Sciences, Sun Yat-sen University, Guangzhou, China", + "institution_ids": [ + "https://openalex.org/I157773358" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5087084229", + "display_name": "Marvin N. Wright", + "orcid": "https://orcid.org/0000-0002-8542-6291" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210086407", + "display_name": "Institut für Medizinische Informatik, Biometrie und Epidemiologie", + "ror": "https://ror.org/00wqjrk21", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210086407" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Marvin N. Wright", + "raw_affiliation_strings": [ + "Institut für Medizinische Biometrie und Statistik, Lübeck, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut für Medizinische Biometrie und Statistik, Lübeck, Germany", + "institution_ids": [ + "https://openalex.org/I4210086407" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017091285", + "display_name": "Xiaoyuan Geng", + "orcid": "https://orcid.org/0000-0002-5391-6915" + }, + "institutions": [ + { + "id": "https://openalex.org/I1331897569", + "display_name": "Agriculture and Agri-Food Canada", + "ror": "https://ror.org/051dzs374", + "country_code": "CA", + "type": "government", + "lineage": [ + "https://openalex.org/I1331897569", + "https://openalex.org/I2802286613" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Xiaoyuan Geng", + "raw_affiliation_strings": [ + "Agriculture and Agri-Food Canada, Ottawa (Ontario), Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Agriculture and Agri-Food Canada, Ottawa (Ontario), Canada", + "institution_ids": [ + "https://openalex.org/I1331897569" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5033747033", + "display_name": "Bernhard Bauer-Marschallinger", + "orcid": "https://orcid.org/0000-0001-7356-7516" + }, + "institutions": [ + { + "id": "https://openalex.org/I145847075", + "display_name": "TU Wien", + "ror": "https://ror.org/04d836q62", + "country_code": "AT", + "type": "education", + "lineage": [ + "https://openalex.org/I145847075" + ] + } + ], + "countries": [ + "AT" + ], + "is_corresponding": false, + "raw_author_name": "Bernhard Bauer-Marschallinger", + "raw_affiliation_strings": [ + "Department of Geodesy and Geoinformation, Vienna University of Technology, Vienna, Austria" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Geodesy and Geoinformation, Vienna University of Technology, Vienna, Austria", + "institution_ids": [ + "https://openalex.org/I145847075" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047925002", + "display_name": "Mário Guevara", + "orcid": "https://orcid.org/0000-0002-9788-9947" + }, + "institutions": [ + { + "id": "https://openalex.org/I86501945", + "display_name": "University of Delaware", + "ror": "https://ror.org/01sbq1a82", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86501945" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mario Antonio Guevara", + "raw_affiliation_strings": [ + "University of Delaware, Newark (DE), United States of America" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Delaware, Newark (DE), United States of America", + "institution_ids": [ + "https://openalex.org/I86501945" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5051794236", + "display_name": "Rodrigo Vargas", + "orcid": "https://orcid.org/0000-0001-6829-5333" + }, + "institutions": [ + { + "id": "https://openalex.org/I86501945", + "display_name": "University of Delaware", + "ror": "https://ror.org/01sbq1a82", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86501945" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rodrigo Vargas", + "raw_affiliation_strings": [ + "University of Delaware, Newark (DE), United States of America" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Delaware, Newark (DE), United States of America", + "institution_ids": [ + "https://openalex.org/I86501945" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073655843", + "display_name": "R.A. MacMillan", + "orcid": "https://orcid.org/0000-0001-9063-3634" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Robert A. MacMillan", + "raw_affiliation_strings": [ + "LandMapper Environmental Solutions Inc., Edmonton (Alberta), Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LandMapper Environmental Solutions Inc., Edmonton (Alberta), Canada", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078952063", + "display_name": "N.H. Batjes", + "orcid": "https://orcid.org/0000-0003-2367-3067" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Niels H. Batjes", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5071302765", + "display_name": "J.G.B. Leenaars", + "orcid": "https://orcid.org/0000-0003-1091-7114" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Johan G. B. Leenaars", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5084085293", + "display_name": "Eloi Ribeiro", + "orcid": "https://orcid.org/0000-0002-2324-3000" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Eloi Ribeiro", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5037321926", + "display_name": "Ichsani Wheeler", + "orcid": "https://orcid.org/0000-0002-9425-9157" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ichsani Wheeler", + "raw_affiliation_strings": [ + "Envirometrix Inc., Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Envirometrix Inc., Wageningen, the Netherlands", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5091009469", + "display_name": "S. Mantel", + "orcid": "https://orcid.org/0000-0002-9623-0227" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Stephan Mantel", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5031737926", + "display_name": "Bas Kempen", + "orcid": "https://orcid.org/0000-0002-2841-0058" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Bas Kempen", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 7, + "institutions_distinct_count": 19, + "corresponding_author_ids": [ + "https://openalex.org/A5008884945" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I31761138" + ], + "apc_list": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "apc_paid": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "fwci": 145.6589, + "has_fulltext": true, + "cited_by_count": 4623, + "citation_normalized_percentile": { + "value": 0.99992747, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "12", + "issue": "2", + "first_page": "e0169748", + "last_page": "e0169748" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14339", + "display_name": "Image Processing and 3D Reconstruction", + "score": 0.9588000178337097, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10004", + "display_name": "Soil Carbon and Nitrogen Dynamics", + "score": 0.9283999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1111", + "display_name": "Soil Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.6831311583518982 + }, + { + "id": "https://openalex.org/keywords/landform", + "display_name": "Landform", + "score": 0.5974330902099609 + }, + { + "id": "https://openalex.org/keywords/soil-texture", + "display_name": "Soil texture", + "score": 0.5643965005874634 + }, + { + "id": "https://openalex.org/keywords/gradient-boosting", + "display_name": "Gradient boosting", + "score": 0.5401628613471985 + }, + { + "id": "https://openalex.org/keywords/soil-science", + "display_name": "Soil science", + "score": 0.48470354080200195 + }, + { + "id": "https://openalex.org/keywords/environmental-science", + "display_name": "Environmental science", + "score": 0.47415441274642944 + }, + { + "id": "https://openalex.org/keywords/soil-map", + "display_name": "Soil map", + "score": 0.4570498764514923 + }, + { + "id": "https://openalex.org/keywords/shuttle-radar-topography-mission", + "display_name": "Shuttle Radar Topography Mission", + "score": 0.45663928985595703 + }, + { + "id": "https://openalex.org/keywords/ensemble-learning", + "display_name": "Ensemble learning", + "score": 0.44700905680656433 + }, + { + "id": "https://openalex.org/keywords/spatial-variability", + "display_name": "Spatial variability", + "score": 0.4328833520412445 + }, + { + "id": "https://openalex.org/keywords/standard-deviation", + "display_name": "Standard deviation", + "score": 0.4192587435245514 + }, + { + "id": "https://openalex.org/keywords/land-cover", + "display_name": "Land cover", + "score": 0.4154254198074341 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3507459759712219 + }, + { + "id": "https://openalex.org/keywords/remote-sensing", + "display_name": "Remote sensing", + "score": 0.3381074368953705 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.279972106218338 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.2646501958370209 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2522737383842468 + }, + { + "id": "https://openalex.org/keywords/land-use", + "display_name": "Land use", + "score": 0.24553540349006653 + }, + { + "id": "https://openalex.org/keywords/digital-elevation-model", + "display_name": "Digital elevation model", + "score": 0.23033851385116577 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.22281324863433838 + }, + { + "id": "https://openalex.org/keywords/geology", + "display_name": "Geology", + "score": 0.2194647192955017 + }, + { + "id": "https://openalex.org/keywords/soil-water", + "display_name": "Soil water", + "score": 0.2089666724205017 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.6831311583518982 + }, + { + "id": "https://openalex.org/C108497213", + "wikidata": "https://www.wikidata.org/wiki/Q271669", + "display_name": "Landform", + "level": 2, + "score": 0.5974330902099609 + }, + { + "id": "https://openalex.org/C175963888", + "wikidata": "https://www.wikidata.org/wiki/Q5026010", + "display_name": "Soil texture", + "level": 3, + "score": 0.5643965005874634 + }, + { + "id": "https://openalex.org/C70153297", + "wikidata": "https://www.wikidata.org/wiki/Q5591907", + "display_name": "Gradient boosting", + "level": 3, + "score": 0.5401628613471985 + }, + { + "id": "https://openalex.org/C159390177", + "wikidata": "https://www.wikidata.org/wiki/Q9161265", + "display_name": "Soil science", + "level": 1, + "score": 0.48470354080200195 + }, + { + "id": "https://openalex.org/C39432304", + "wikidata": "https://www.wikidata.org/wiki/Q188847", + "display_name": "Environmental science", + "level": 0, + "score": 0.47415441274642944 + }, + { + "id": "https://openalex.org/C71864017", + "wikidata": "https://www.wikidata.org/wiki/Q889561", + "display_name": "Soil map", + "level": 3, + "score": 0.4570498764514923 + }, + { + "id": "https://openalex.org/C184149073", + "wikidata": "https://www.wikidata.org/wiki/Q965136", + "display_name": "Shuttle Radar Topography Mission", + "level": 3, + "score": 0.45663928985595703 + }, + { + "id": "https://openalex.org/C45942800", + "wikidata": "https://www.wikidata.org/wiki/Q245652", + "display_name": "Ensemble learning", + "level": 2, + "score": 0.44700905680656433 + }, + { + "id": "https://openalex.org/C94747663", + "wikidata": "https://www.wikidata.org/wiki/Q7574086", + "display_name": "Spatial variability", + "level": 2, + "score": 0.4328833520412445 + }, + { + "id": "https://openalex.org/C22679943", + "wikidata": "https://www.wikidata.org/wiki/Q159375", + "display_name": "Standard deviation", + "level": 2, + "score": 0.4192587435245514 + }, + { + "id": "https://openalex.org/C2780648208", + "wikidata": "https://www.wikidata.org/wiki/Q3001793", + "display_name": "Land cover", + "level": 3, + "score": 0.4154254198074341 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3507459759712219 + }, + { + "id": "https://openalex.org/C62649853", + "wikidata": "https://www.wikidata.org/wiki/Q199687", + "display_name": "Remote sensing", + "level": 1, + "score": 0.3381074368953705 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.279972106218338 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.2646501958370209 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2522737383842468 + }, + { + "id": "https://openalex.org/C4792198", + "wikidata": "https://www.wikidata.org/wiki/Q1165944", + "display_name": "Land use", + "level": 2, + "score": 0.24553540349006653 + }, + { + "id": "https://openalex.org/C181843262", + "wikidata": "https://www.wikidata.org/wiki/Q640492", + "display_name": "Digital elevation model", + "level": 2, + "score": 0.23033851385116577 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.22281324863433838 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.2194647192955017 + }, + { + "id": "https://openalex.org/C159750122", + "wikidata": "https://www.wikidata.org/wiki/Q96621023", + "display_name": "Soil water", + "level": 2, + "score": 0.2089666724205017 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C147176958", + "wikidata": "https://www.wikidata.org/wiki/Q77590", + "display_name": "Civil engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + { + "id": "pmid:28207752", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28207752", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PloS one", + "raw_type": null + }, + { + "id": "pmh:oai:library.wur.nl:wurpubs/526278", + "is_oa": true, + "landing_page_url": "https://research.wur.nl/en/publications/soilgrids250m-global-gridded-soil-information-based-on-machine-le", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210201231", + "display_name": "Socio-Environmental Systems Modeling", + "issn_l": "2663-3027", + "issn": [ + "2663-3027" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "acceptedVersion", + "is_accepted": true, + "is_published": false, + "raw_source_name": "ISSN: 1932-6203", + "raw_type": "Article/Letter to editor" + }, + { + "id": "pmh:oai:RePEc:plo:pone00:0169748", + "is_oa": false, + "landing_page_url": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0169748", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:doaj.org/article:ad46a8c2c401417e8b291d79603dfb3a", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/ad46a8c2c401417e8b291d79603dfb3a", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS ONE, Vol 12, Iss 2, p e0169748 (2017)", + "raw_type": "article" + }, + { + "id": "pmh:oai:grafar.grf.bg.ac.rs:123456789/885", + "is_oa": true, + "landing_page_url": "http://grafar.grf.bg.ac.rs/handle/123456789/885", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402541", + "display_name": "GraFar (University of Belgrade, Faculty of Civil Engineering)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210101313", + "host_organization_name": "University Hospital Center Dr Dragiša Mišović", + "host_organization_lineage": [ + "https://openalex.org/I4210101313" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLOS One", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5313206", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5313206", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS One", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Life in Land", + "score": 0.6600000262260437, + "id": "https://metadata.un.org/sdg/15" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2588003345.pdf", + "grobid_xml": "https://content.openalex.org/works/W2588003345.grobid-xml" + }, + "referenced_works_count": 96, + "referenced_works": [ + "https://openalex.org/W30646539", + "https://openalex.org/W92141931", + "https://openalex.org/W191102129", + "https://openalex.org/W429766147", + "https://openalex.org/W595863337", + "https://openalex.org/W1482533224", + "https://openalex.org/W1513618424", + "https://openalex.org/W1573647811", + "https://openalex.org/W1606754933", + "https://openalex.org/W1689749838", + "https://openalex.org/W1727844347", + "https://openalex.org/W1786856418", + "https://openalex.org/W1831050183", + "https://openalex.org/W1895518694", + "https://openalex.org/W1969543759", + "https://openalex.org/W1980225565", + "https://openalex.org/W1983650914", + "https://openalex.org/W1984828485", + "https://openalex.org/W1985839444", + "https://openalex.org/W1990590197", + "https://openalex.org/W1993415357", + "https://openalex.org/W2005164184", + "https://openalex.org/W2006929658", + "https://openalex.org/W2018337952", + "https://openalex.org/W2023312901", + "https://openalex.org/W2023942604", + "https://openalex.org/W2027120296", + "https://openalex.org/W2032518966", + "https://openalex.org/W2033585087", + "https://openalex.org/W2036376676", + "https://openalex.org/W2037789405", + "https://openalex.org/W2050179592", + "https://openalex.org/W2057779644", + "https://openalex.org/W2066626803", + "https://openalex.org/W2078720475", + "https://openalex.org/W2088449361", + "https://openalex.org/W2102467070", + "https://openalex.org/W2112776483", + "https://openalex.org/W2114727579", + "https://openalex.org/W2123845623", + "https://openalex.org/W2126822776", + "https://openalex.org/W2130089270", + "https://openalex.org/W2130560194", + "https://openalex.org/W2131347105", + "https://openalex.org/W2131822674", + "https://openalex.org/W2133505387", + "https://openalex.org/W2135479785", + "https://openalex.org/W2140389576", + "https://openalex.org/W2142800341", + "https://openalex.org/W2145126338", + "https://openalex.org/W2151135366", + "https://openalex.org/W2151666808", + "https://openalex.org/W2155544089", + "https://openalex.org/W2156713494", + "https://openalex.org/W2157395790", + "https://openalex.org/W2158441306", + "https://openalex.org/W2160615957", + "https://openalex.org/W2179669825", + "https://openalex.org/W2191676425", + "https://openalex.org/W2199578048", + "https://openalex.org/W2205945645", + "https://openalex.org/W2287354130", + "https://openalex.org/W2295598076", + "https://openalex.org/W2310573451", + "https://openalex.org/W2346841190", + "https://openalex.org/W2417209869", + "https://openalex.org/W2463898247", + "https://openalex.org/W2479339604", + "https://openalex.org/W2514977123", + "https://openalex.org/W2522985694", + "https://openalex.org/W2554693566", + "https://openalex.org/W2557963070", + "https://openalex.org/W2564901692", + "https://openalex.org/W2580821229", + "https://openalex.org/W2582718246", + "https://openalex.org/W2727623211", + "https://openalex.org/W2730460668", + "https://openalex.org/W2736166619", + "https://openalex.org/W2890624634", + "https://openalex.org/W2890805913", + "https://openalex.org/W2917425395", + "https://openalex.org/W2917661374", + "https://openalex.org/W3022713798", + "https://openalex.org/W3102027041", + "https://openalex.org/W3102476541", + "https://openalex.org/W3163617311", + "https://openalex.org/W4211056572", + "https://openalex.org/W4250720198", + "https://openalex.org/W4252713891", + "https://openalex.org/W4285719527", + "https://openalex.org/W4399271987", + "https://openalex.org/W4399569501", + "https://openalex.org/W6634147026", + "https://openalex.org/W6727196412", + "https://openalex.org/W6870084398", + "https://openalex.org/W6891733106" + ], + "related_works": [ + "https://openalex.org/W3208169454", + "https://openalex.org/W4322004982", + "https://openalex.org/W2981500096", + "https://openalex.org/W2362208029", + "https://openalex.org/W3161502711", + "https://openalex.org/W2096944896", + "https://openalex.org/W2620784765", + "https://openalex.org/W2896029770", + "https://openalex.org/W2383154062", + "https://openalex.org/W4220718694" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "paper": [ + 1 + ], + "describes": [ + 2 + ], + "the": [ + 3, + 10, + 17, + 78, + 151, + 166, + 187, + 191, + 199, + 220, + 293, + 335 + ], + "technical": [ + 4 + ], + "development": [ + 5, + 248, + 294 + ], + "and": [ + 6, + 13, + 47, + 60, + 71, + 83, + 104, + 124, + 127, + 142, + 157, + 174, + 239, + 260, + 268, + 323 + ], + "accuracy": [ + 7, + 189 + ], + "assessment": [ + 8 + ], + "of": [ + 9, + 16, + 67, + 73, + 107, + 137, + 161, + 177, + 183, + 193, + 202, + 222, + 226, + 243, + 249, + 254, + 262, + 271, + 284, + 289, + 295, + 300 + ], + "most": [ + 11 + ], + "recent": [ + 12 + ], + "improved": [ + 14 + ], + "version": [ + 15, + 201 + ], + "SoilGrids": [ + 18, + 26, + 203, + 250, + 301, + 331 + ], + "system": [ + 19 + ], + "at": [ + 20, + 50, + 204 + ], + "250m": [ + 21 + ], + "resolution": [ + 22, + 236 + ], + "(June": [ + 23 + ], + "2016": [ + 24 + ], + "update).": [ + 25 + ], + "provides": [ + 27 + ], + "global": [ + 28, + 125, + 325 + ], + "predictions": [ + 29, + 66, + 302 + ], + "for": [ + 30, + 102, + 281, + 297 + ], + "standard": [ + 31, + 52 + ], + "numeric": [ + 32 + ], + "soil": [ + 33, + 44, + 74, + 99, + 111, + 245, + 276, + 285, + 308, + 326 + ], + "properties": [ + 34 + ], + "(organic": [ + 35 + ], + "carbon,": [ + 36 + ], + "bulk": [ + 37 + ], + "density,": [ + 38 + ], + "Cation": [ + 39 + ], + "Exchange": [ + 40 + ], + "Capacity": [ + 41 + ], + "(CEC),": [ + 42 + ], + "pH,": [ + 43 + ], + "texture": [ + 45 + ], + "fractions": [ + 46 + ], + "coarse": [ + 48 + ], + "fragments)": [ + 49, + 173 + ], + "seven": [ + 51 + ], + "depths": [ + 53 + ], + "(0,": [ + 54 + ], + "5,": [ + 55 + ], + "15,": [ + 56 + ], + "30,": [ + 57 + ], + "60,": [ + 58 + ], + "100": [ + 59 + ], + "200": [ + 61 + ], + "cm),": [ + 62 + ], + "in": [ + 63, + 91, + 150, + 186, + 196, + 233 + ], + "addition": [ + 64 + ], + "to": [ + 65, + 69, + 133, + 198, + 212, + 230, + 241, + 256, + 312 + ], + "depth": [ + 68 + ], + "bedrock": [ + 70 + ], + "distribution": [ + 72 + ], + "classes": [ + 75 + ], + "based": [ + 76, + 95 + ], + "on": [ + 77, + 96 + ], + "World": [ + 79 + ], + "Reference": [ + 80 + ], + "Base": [ + 81, + 338 + ], + "(WRB)": [ + 82 + ], + "USDA": [ + 84 + ], + "classification": [ + 85 + ], + "systems": [ + 86 + ], + "(ca.": [ + 87 + ], + "280": [ + 88 + ], + "raster": [ + 89 + ], + "layers": [ + 90, + 238 + ], + "total).": [ + 92 + ], + "Predictions": [ + 93 + ], + "were": [ + 94, + 131 + ], + "ca.": [ + 97 + ], + "150,000": [ + 98 + ], + "profiles": [ + 100 + ], + "used": [ + 101, + 132 + ], + "training": [ + 103 + ], + "a": [ + 105 + ], + "stack": [ + 106 + ], + "158": [ + 108 + ], + "remote": [ + 109 + ], + "sensing-based": [ + 110 + ], + "covariates": [ + 112 + ], + "(primarily": [ + 113 + ], + "derived": [ + 114 + ], + "from": [ + 115, + 210 + ], + "MODIS": [ + 116 + ], + "land": [ + 117 + ], + "products,": [ + 118 + ], + "SRTM": [ + 119 + ], + "DEM": [ + 120 + ], + "derivatives,": [ + 121 + ], + "climatic": [ + 122 + ], + "images": [ + 123 + ], + "landform": [ + 126 + ], + "lithology": [ + 128 + ], + "maps),": [ + 129 + ], + "which": [ + 130 + ], + "fit": [ + 134 + ], + "an": [ + 135, + 180 + ], + "ensemble": [ + 136, + 167 + ], + "machine": [ + 138, + 223 + ], + "learning": [ + 139, + 224 + ], + "methods-random": [ + 140 + ], + "forest": [ + 141 + ], + "gradient": [ + 143 + ], + "boosting": [ + 144 + ], + "and/or": [ + 145, + 305 + ], + "multinomial": [ + 146 + ], + "logistic": [ + 147 + ], + "regression-as": [ + 148 + ], + "implemented": [ + 149 + ], + "R": [ + 152 + ], + "packages": [ + 153 + ], + "ranger,": [ + 154 + ], + "xgboost,": [ + 155 + ], + "nnet": [ + 156 + ], + "caret.": [ + 158 + ], + "The": [ + 159 + ], + "results": [ + 160 + ], + "10-fold": [ + 162 + ], + "cross-validation": [ + 163 + ], + "show": [ + 164 + ], + "that": [ + 165, + 275, + 318 + ], + "models": [ + 168 + ], + "explain": [ + 169 + ], + "between": [ + 170 + ], + "56%": [ + 171 + ], + "(coarse": [ + 172 + ], + "83%": [ + 175 + ], + "(pH)": [ + 176 + ], + "variation": [ + 178, + 194 + ], + "with": [ + 179, + 303 + ], + "overall": [ + 181 + ], + "average": [ + 182 + ], + "61%.": [ + 184 + ], + "Improvements": [ + 185, + 214 + ], + "relative": [ + 188 + ], + "considering": [ + 190 + ], + "amount": [ + 192 + ], + "explained,": [ + 195 + ], + "comparison": [ + 197 + ], + "previous": [ + 200 + ], + "1": [ + 205 + ], + "km": [ + 206 + ], + "spatial": [ + 207, + 272, + 315 + ], + "resolution,": [ + 208 + ], + "range": [ + 209 + ], + "60": [ + 211 + ], + "230%.": [ + 213 + ], + "can": [ + 215, + 278, + 328 + ], + "be": [ + 216, + 279, + 329 + ], + "attributed": [ + 217 + ], + "to:": [ + 218 + ], + "(1)": [ + 219 + ], + "use": [ + 221 + ], + "instead": [ + 225 + ], + "linear": [ + 227 + ], + "regression,": [ + 228 + ], + "(2)": [ + 229 + ], + "considerable": [ + 231 + ], + "investments": [ + 232 + ], + "preparing": [ + 234 + ], + "finer": [ + 235 + ], + "covariate": [ + 237 + ], + "(3)": [ + 240 + ], + "insertion": [ + 242 + ], + "additional": [ + 244 + ], + "profiles.": [ + 246 + ], + "Further": [ + 247 + ], + "could": [ + 251 + ], + "include": [ + 252 + ], + "refinement": [ + 253 + ], + "methods": [ + 255, + 296 + ], + "incorporate": [ + 257 + ], + "input": [ + 258 + ], + "uncertainties": [ + 259 + ], + "derivation": [ + 261 + ], + "posterior": [ + 263 + ], + "probability": [ + 264 + ], + "distributions": [ + 265 + ], + "(per": [ + 266 + ], + "pixel),": [ + 267 + ], + "further": [ + 269 + ], + "automation": [ + 270 + ], + "modeling": [ + 273 + ], + "so": [ + 274, + 317 + ], + "maps": [ + 277 + ], + "generated": [ + 280 + ], + "potentially": [ + 282 + ], + "hundreds": [ + 283 + ], + "variables.": [ + 286 + ], + "Another": [ + 287 + ], + "area": [ + 288 + ], + "future": [ + 290 + ], + "research": [ + 291 + ], + "is": [ + 292 + ], + "multiscale": [ + 298 + ], + "merging": [ + 299 + ], + "local": [ + 304 + ], + "national": [ + 306 + ], + "gridded": [ + 307 + ], + "products": [ + 309 + ], + "(e.g.": [ + 310 + ], + "up": [ + 311 + ], + "50": [ + 313 + ], + "m": [ + 314 + ], + "resolution)": [ + 316 + ], + "increasingly": [ + 319 + ], + "more": [ + 320 + ], + "accurate,": [ + 321 + ], + "complete": [ + 322 + ], + "consistent": [ + 324 + ], + "information": [ + 327 + ], + "produced.": [ + 330 + ], + "are": [ + 332 + ], + "available": [ + 333 + ], + "under": [ + 334 + ], + "Open": [ + 336 + ], + "Data": [ + 337 + ], + "License.": [ + 339 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 265 + }, + { + "year": 2025, + "cited_by_count": 669 + }, + { + "year": 2024, + "cited_by_count": 634 + }, + { + "year": 2023, + "cited_by_count": 702 + }, + { + "year": 2022, + "cited_by_count": 702 + }, + { + "year": 2021, + "cited_by_count": 699 + }, + { + "year": 2020, + "cited_by_count": 422 + }, + { + "year": 2019, + "cited_by_count": 281 + }, + { + "year": 2018, + "cited_by_count": 185 + }, + { + "year": 2017, + "cited_by_count": 57 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3153990350", + "doi": "https://doi.org/10.1007/s12525-021-00475-2", + "title": "Machine learning and deep learning", + "display_name": "Machine learning and deep learning", + "relevance_score": 3910.7214, + "publication_year": 2021, + "publication_date": "2021-04-08", + "ids": { + "openalex": "https://openalex.org/W3153990350", + "doi": "https://doi.org/10.1007/s12525-021-00475-2", + "mag": "3153990350" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "hybrid", + "oa_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Christian Janiesch", + "orcid": "https://orcid.org/0000-0002-8050-123X" + }, + "institutions": [ + { + "id": "https://openalex.org/I25974101", + "display_name": "University of Würzburg", + "ror": "https://ror.org/00fbnyb24", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I25974101" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Christian Janiesch", + "raw_affiliation_strings": [ + "Faculty of Business Management & Economics, University of Würzburg, Sanderring 2, 97070, Würzburg, Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-8050-123X", + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Business Management & Economics, University of Würzburg, Sanderring 2, 97070, Würzburg, Germany", + "institution_ids": [ + "https://openalex.org/I25974101" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Patrick Zschech", + "orcid": "https://orcid.org/0000-0002-1105-8086" + }, + "institutions": [ + { + "id": "https://openalex.org/I181369854", + "display_name": "Friedrich-Alexander-Universität Erlangen-Nürnberg", + "ror": "https://ror.org/00f7hpc57", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I181369854" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Patrick Zschech", + "raw_affiliation_strings": [ + "Institute of Information Systems, Friedrich-Alexander University Erlangen-Nürnberg, Lange Gasse 20, 90403, Nürnberg, Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-1105-8086", + "affiliations": [ + { + "raw_affiliation_string": "Institute of Information Systems, Friedrich-Alexander University Erlangen-Nürnberg, Lange Gasse 20, 90403, Nürnberg, Germany", + "institution_ids": [ + "https://openalex.org/I181369854" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Kai Heinrich", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95793202", + "display_name": "Otto-von-Guericke-Universität Magdeburg", + "ror": "https://ror.org/00ggpsq73", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I95793202" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Kai Heinrich", + "raw_affiliation_strings": [ + "Faculty of Economics and Management, Otto-von-Guericke-Universität Magdeburg, Universitätsplatz 2, 39106, Magdeburg, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Economics and Management, Otto-von-Guericke-Universität Magdeburg, Universitätsplatz 2, 39106, Magdeburg, Germany", + "institution_ids": [ + "https://openalex.org/I95793202" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I25974101" + ], + "apc_list": { + "value": 2590, + "currency": "EUR", + "value_usd": 3190 + }, + "apc_paid": { + "value": 2590, + "currency": "EUR", + "value_usd": 3190 + }, + "fwci": 395.9188, + "has_fulltext": true, + "cited_by_count": 2443, + "citation_normalized_percentile": { + "value": 0.9999934, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "31", + "issue": "3", + "first_page": "685", + "last_page": "695" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T14347", + "display_name": "Big Data and Digital Economy", + "score": 0.0794999971985817, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T14347", + "display_name": "Big Data and Digital Economy", + "score": 0.0794999971985817, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14222", + "display_name": "Knowledge Management and Technology", + "score": 0.03700000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T11891", + "display_name": "Big Data and Business Intelligence", + "score": 0.03220000118017197, + "subfield": { + "id": "https://openalex.org/subfields/1404", + "display_name": "Management Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/14", + "display_name": "Business, Management and Accounting" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.7547000050544739 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5849999785423279 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.5758000016212463 + }, + { + "id": "https://openalex.org/keywords/underpinning", + "display_name": "Underpinning", + "score": 0.5667999982833862 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5267999768257141 + }, + { + "id": "https://openalex.org/keywords/instance-based-learning", + "display_name": "Instance-based learning", + "score": 0.34700000286102295 + }, + { + "id": "https://openalex.org/keywords/hyper-heuristic", + "display_name": "Hyper-heuristic", + "score": 0.34619998931884766 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.3402000069618225 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.8934999704360962 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.8062000274658203 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.7547000050544739 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6575000286102295 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5849999785423279 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.5758000016212463 + }, + { + "id": "https://openalex.org/C2780871342", + "wikidata": "https://www.wikidata.org/wiki/Q7883752", + "display_name": "Underpinning", + "level": 2, + "score": 0.5667999982833862 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5267999768257141 + }, + { + "id": "https://openalex.org/C24138899", + "wikidata": "https://www.wikidata.org/wiki/Q17141258", + "display_name": "Instance-based learning", + "level": 3, + "score": 0.34700000286102295 + }, + { + "id": "https://openalex.org/C117270229", + "wikidata": "https://www.wikidata.org/wiki/Q5957539", + "display_name": "Hyper-heuristic", + "level": 5, + "score": 0.34619998931884766 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.3402000069618225 + }, + { + "id": "https://openalex.org/C188888258", + "wikidata": "https://www.wikidata.org/wiki/Q7353390", + "display_name": "Robot learning", + "level": 4, + "score": 0.32989999651908875 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.32100000977516174 + }, + { + "id": "https://openalex.org/C56397880", + "wikidata": "https://www.wikidata.org/wiki/Q6044094", + "display_name": "Intelligent decision support system", + "level": 2, + "score": 0.3176000118255615 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.30889999866485596 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.2793000042438507 + }, + { + "id": "https://openalex.org/C189474733", + "wikidata": "https://www.wikidata.org/wiki/Q917912", + "display_name": "Model building", + "level": 2, + "score": 0.2775000035762787 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.274399995803833 + }, + { + "id": "https://openalex.org/C97385483", + "wikidata": "https://www.wikidata.org/wiki/Q16954980", + "display_name": "Deep belief network", + "level": 3, + "score": 0.2669999897480011 + }, + { + "id": "https://openalex.org/C8038995", + "wikidata": "https://www.wikidata.org/wiki/Q1152135", + "display_name": "Unsupervised learning", + "level": 2, + "score": 0.2630999982357025 + }, + { + "id": "https://openalex.org/C67186912", + "wikidata": "https://www.wikidata.org/wiki/Q367664", + "display_name": "Data modeling", + "level": 2, + "score": 0.2572000026702881 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.2549999952316284 + }, + { + "id": "https://openalex.org/C157170001", + "wikidata": "https://www.wikidata.org/wiki/Q4781507", + "display_name": "Applications of artificial intelligence", + "level": 2, + "score": 0.2500999867916107 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:2104.05314", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/2104.05314", + "pdf_url": "https://arxiv.org/pdf/2104.05314", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:RePEc:spr:elmark:v:31:y:2021:i:3:d:10.1007_s12525-021-00475-2", + "is_oa": false, + "landing_page_url": "http://link.springer.com/10.1007/s12525-021-00475-2", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:econstor.eu:10419/287156", + "is_oa": true, + "landing_page_url": "https://hdl.handle.net/10419/287156", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401696", + "display_name": "Econstor (Econstor)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "doc-type:article" + }, + { + "id": "pmh:oai:opus.bibliothek.uni-wuerzburg.de:27015", + "is_oa": true, + "landing_page_url": "https://opus.bibliothek.uni-wuerzburg.de/frontdoor/index/index/docId/27015", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401635", + "display_name": "Online Publication Service of Würzburg University (Würzburg University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I25974101", + "host_organization_name": "University of Würzburg", + "host_organization_lineage": [ + "https://openalex.org/I25974101" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "article" + }, + { + "id": "pmh:oai:ub.uni-erlangen.de-opus:22263", + "is_oa": true, + "landing_page_url": "https://opus4.kobv.de/opus4-fau/frontdoor/index/index/docId/22263", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401636", + "display_name": "OPUS Repository (Kooperativer Bibliotheksverbund Berlin-Brandenburg)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G2151094965", + "display_name": null, + "funder_award_id": "DIK0143/02", + "funder_id": "https://openalex.org/F4320331012", + "funder_display_name": "Bayerische Staatsministerium für Wirtschaft, Landesentwicklung und Energie" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320331012", + "display_name": "Bayerische Staatsministerium für Wirtschaft, Landesentwicklung und Energie", + "ror": null + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3153990350.pdf", + "grobid_xml": "https://content.openalex.org/works/W3153990350.grobid-xml" + }, + "referenced_works_count": 53, + "referenced_works": [ + "https://openalex.org/W822801274", + "https://openalex.org/W1506806321", + "https://openalex.org/W1565746575", + "https://openalex.org/W1901616594", + "https://openalex.org/W1978394996", + "https://openalex.org/W2034059032", + "https://openalex.org/W2059111627", + "https://openalex.org/W2076063813", + "https://openalex.org/W2096352448", + "https://openalex.org/W2099419573", + "https://openalex.org/W2106577732", + "https://openalex.org/W2151103935", + "https://openalex.org/W2161969291", + "https://openalex.org/W2164598857", + "https://openalex.org/W2251410821", + "https://openalex.org/W2269742369", + "https://openalex.org/W2585169518", + "https://openalex.org/W2751039952", + "https://openalex.org/W2798302089", + "https://openalex.org/W2800722845", + "https://openalex.org/W2802955324", + "https://openalex.org/W2884001105", + "https://openalex.org/W2888794009", + "https://openalex.org/W2891503716", + "https://openalex.org/W2892341857", + "https://openalex.org/W2895991254", + "https://openalex.org/W2900453322", + "https://openalex.org/W2902907165", + "https://openalex.org/W2915015079", + "https://openalex.org/W2919115771", + "https://openalex.org/W2921353139", + "https://openalex.org/W2945976633", + "https://openalex.org/W2953189907", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963428668", + "https://openalex.org/W2964716450", + "https://openalex.org/W2981207549", + "https://openalex.org/W2989851933", + "https://openalex.org/W2995871253", + "https://openalex.org/W2999321020", + "https://openalex.org/W3000062802", + "https://openalex.org/W3005351117", + "https://openalex.org/W3025420269", + "https://openalex.org/W3094605956", + "https://openalex.org/W3095865939", + "https://openalex.org/W3118496513", + "https://openalex.org/W3120261410", + "https://openalex.org/W3150796314", + "https://openalex.org/W4212902066", + "https://openalex.org/W4236093597", + "https://openalex.org/W4255466416", + "https://openalex.org/W6730267373", + "https://openalex.org/W6750380350" + ], + "related_works": [], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "Today,": [ + 1 + ], + "intelligent": [ + 2, + 91, + 128 + ], + "systems": [ + 3, + 20, + 129 + ], + "that": [ + 4, + 123 + ], + "offer": [ + 5 + ], + "artificial": [ + 6, + 48, + 152 + ], + "intelligence": [ + 7, + 153 + ], + "capabilities": [ + 8 + ], + "often": [ + 9 + ], + "rely": [ + 10 + ], + "on": [ + 11, + 47 + ], + "machine": [ + 12, + 43, + 59, + 75, + 114 + ], + "learning.": [ + 13 + ], + "Machine": [ + 14 + ], + "learning": [ + 15, + 40, + 44, + 55, + 60, + 76, + 79, + 115 + ], + "describes": [ + 16 + ], + "the": [ + 17, + 29, + 72, + 86, + 106, + 121, + 131 + ], + "capacity": [ + 18 + ], + "of": [ + 19, + 31, + 74, + 85, + 89, + 108, + 133 + ], + "to": [ + 21, + 27, + 80 + ], + "learn": [ + 22 + ], + "from": [ + 23 + ], + "problem-specific": [ + 24 + ], + "training": [ + 25 + ], + "data": [ + 26, + 64 + ], + "automate": [ + 28 + ], + "process": [ + 30, + 107 + ], + "analytical": [ + 32, + 110 + ], + "model": [ + 33, + 111 + ], + "building": [ + 34, + 112 + ], + "and": [ + 35, + 62, + 77, + 103, + 116, + 119, + 136, + 145, + 151 + ], + "solve": [ + 36 + ], + "associated": [ + 37 + ], + "tasks.": [ + 38 + ], + "Deep": [ + 39 + ], + "is": [ + 41 + ], + "a": [ + 42, + 82, + 97 + ], + "concept": [ + 45 + ], + "based": [ + 46 + ], + "neural": [ + 49 + ], + "networks.": [ + 50 + ], + "For": [ + 51 + ], + "many": [ + 52 + ], + "applications,": [ + 53 + ], + "deep": [ + 54, + 78, + 117 + ], + "models": [ + 56, + 61 + ], + "outperform": [ + 57 + ], + "shallow": [ + 58 + ], + "traditional": [ + 63 + ], + "analysis": [ + 65 + ], + "approaches.": [ + 66 + ], + "In": [ + 67, + 93 + ], + "this": [ + 68 + ], + "article,": [ + 69 + ], + "we": [ + 70, + 95 + ], + "summarize": [ + 71 + ], + "fundamentals": [ + 73 + ], + "generate": [ + 81 + ], + "broader": [ + 83 + ], + "understanding": [ + 84 + ], + "methodical": [ + 87 + ], + "underpinning": [ + 88 + ], + "current": [ + 90 + ], + "systems.": [ + 92 + ], + "particular,": [ + 94 + ], + "provide": [ + 96 + ], + "conceptual": [ + 98 + ], + "distinction": [ + 99 + ], + "between": [ + 100 + ], + "relevant": [ + 101 + ], + "terms": [ + 102 + ], + "concepts,": [ + 104 + ], + "explain": [ + 105 + ], + "automated": [ + 109 + ], + "through": [ + 113 + ], + "learning,": [ + 118 + ], + "discuss": [ + 120 + ], + "challenges": [ + 122 + ], + "arise": [ + 124 + ], + "when": [ + 125 + ], + "implementing": [ + 126 + ], + "such": [ + 127 + ], + "in": [ + 130, + 148 + ], + "field": [ + 132 + ], + "electronic": [ + 134 + ], + "markets": [ + 135 + ], + "networked": [ + 137 + ], + "business.": [ + 138 + ], + "These": [ + 139 + ], + "naturally": [ + 140 + ], + "go": [ + 141 + ], + "beyond": [ + 142 + ], + "technological": [ + 143 + ], + "aspects": [ + 144 + ], + "highlight": [ + 146 + ], + "issues": [ + 147 + ], + "human-machine": [ + 149 + ], + "interaction": [ + 150 + ], + "servitization.": [ + 154 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 228 + }, + { + "year": 2025, + "cited_by_count": 823 + }, + { + "year": 2024, + "cited_by_count": 709 + }, + { + "year": 2023, + "cited_by_count": 463 + }, + { + "year": 2022, + "cited_by_count": 204 + }, + { + "year": 2021, + "cited_by_count": 16 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2021-04-26T00:00:00" + }, + { + "id": "https://openalex.org/W1495061682", + "doi": null, + "title": "Correlation-based Feature Selection for Machine Learning", + "display_name": "Correlation-based Feature Selection for Machine Learning", + "relevance_score": 3887.3452, + "publication_year": 1998, + "publication_date": "1998-01-01", + "ids": { + "openalex": "https://openalex.org/W1495061682", + "mag": "1495061682" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.149.3848", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.149.3848", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~ml/publications/1999/99MH-Thesis.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5056507889", + "display_name": "Mark Hall", + "orcid": "https://orcid.org/0000-0003-0081-4277" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Mark Hall", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0003-0081-4277", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5056507889" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 6.5111, + "has_fulltext": false, + "cited_by_count": 3502, + "citation_normalized_percentile": { + "value": 0.969452, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.992900013923645, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7863954305648804 + }, + { + "id": "https://openalex.org/keywords/feature-selection", + "display_name": "Feature selection", + "score": 0.7660661935806274 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6697717905044556 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.6554372310638428 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6124832630157471 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.5173172950744629 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.5164375901222229 + }, + { + "id": "https://openalex.org/keywords/naive-bayes-classifier", + "display_name": "Naive Bayes classifier", + "score": 0.5061132311820984 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.4775296449661255 + }, + { + "id": "https://openalex.org/keywords/correlation", + "display_name": "Correlation", + "score": 0.45613178610801697 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.44838523864746094 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.4388089179992676 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.329307496547699 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.2919524312019348 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.22016915678977966 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7863954305648804 + }, + { + "id": "https://openalex.org/C148483581", + "wikidata": "https://www.wikidata.org/wiki/Q446488", + "display_name": "Feature selection", + "level": 2, + "score": 0.7660661935806274 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6697717905044556 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.6554372310638428 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6124832630157471 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.5173172950744629 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.5164375901222229 + }, + { + "id": "https://openalex.org/C52001869", + "wikidata": "https://www.wikidata.org/wiki/Q812530", + "display_name": "Naive Bayes classifier", + "level": 3, + "score": 0.5061132311820984 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.4775296449661255 + }, + { + "id": "https://openalex.org/C117220453", + "wikidata": "https://www.wikidata.org/wiki/Q5172842", + "display_name": "Correlation", + "level": 2, + "score": 0.45613178610801697 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.44838523864746094 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.4388089179992676 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.329307496547699 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.2919524312019348 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.22016915678977966 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.149.3848", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.149.3848", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~ml/publications/1999/99MH-Thesis.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.37.4643", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.37.4643", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~mhall/thesis.ps.gz", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.455.4521", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.455.4521", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "https://www.lri.fr/~pierres/donn%E9es/save/these/articles/lpr-queue/hall99correlationbased.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.62.9584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.62.9584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~mhall/thesis.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:researchcommons.waikato.ac.nz:10289/15043", + "is_oa": false, + "landing_page_url": "https://hdl.handle.net/10289/15043", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400944", + "display_name": "Research Commons (University of Waikato)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I52179390", + "host_organization_name": "University of Waikato", + "host_organization_lineage": [ + "https://openalex.org/I52179390" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Thesis" + }, + { + "id": "mag:1495061682", + "is_oa": false, + "landing_page_url": "https://www.cs.waikato.ac.nz/~mhall/thesis.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.4300000071525574, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 88, + "referenced_works": [ + "https://openalex.org/W14420165", + "https://openalex.org/W23418094", + "https://openalex.org/W31783794", + "https://openalex.org/W32535764", + "https://openalex.org/W43179442", + "https://openalex.org/W124232507", + "https://openalex.org/W138217685", + "https://openalex.org/W149472151", + "https://openalex.org/W168332103", + "https://openalex.org/W184639320", + "https://openalex.org/W187357405", + "https://openalex.org/W1481111462", + "https://openalex.org/W1487306946", + "https://openalex.org/W1489725718", + "https://openalex.org/W1497256448", + "https://openalex.org/W1504694836", + "https://openalex.org/W1507029541", + "https://openalex.org/W1520687314", + "https://openalex.org/W1523989055", + "https://openalex.org/W1528176576", + "https://openalex.org/W1528489993", + "https://openalex.org/W1533544838", + "https://openalex.org/W1535723299", + "https://openalex.org/W1540113330", + "https://openalex.org/W1553244859", + "https://openalex.org/W1553313034", + "https://openalex.org/W1557564713", + "https://openalex.org/W1557923305", + "https://openalex.org/W1562345870", + "https://openalex.org/W1566376227", + "https://openalex.org/W1571061365", + "https://openalex.org/W1575869149", + "https://openalex.org/W1583700199", + "https://openalex.org/W1587362683", + "https://openalex.org/W1597910678", + "https://openalex.org/W1601529450", + "https://openalex.org/W1605844890", + "https://openalex.org/W1608549042", + "https://openalex.org/W1619226191", + "https://openalex.org/W1630964756", + "https://openalex.org/W1678889691", + "https://openalex.org/W1679846099", + "https://openalex.org/W1808644423", + "https://openalex.org/W1906182963", + "https://openalex.org/W1923673105", + "https://openalex.org/W1970406594", + "https://openalex.org/W1981251392", + "https://openalex.org/W1983661866", + "https://openalex.org/W1998523455", + "https://openalex.org/W2000613518", + "https://openalex.org/W2002150630", + "https://openalex.org/W2003048487", + "https://openalex.org/W2017337590", + "https://openalex.org/W2042385018", + "https://openalex.org/W2050297026", + "https://openalex.org/W2054658115", + "https://openalex.org/W2067098334", + "https://openalex.org/W2071817951", + "https://openalex.org/W2075038844", + "https://openalex.org/W2088658068", + "https://openalex.org/W2096581064", + "https://openalex.org/W2104626092", + "https://openalex.org/W2109293916", + "https://openalex.org/W2112076978", + "https://openalex.org/W2120216197", + "https://openalex.org/W2123865363", + "https://openalex.org/W2125055259", + "https://openalex.org/W2125412267", + "https://openalex.org/W2128420091", + "https://openalex.org/W2132166479", + "https://openalex.org/W2136000097", + "https://openalex.org/W2140785063", + "https://openalex.org/W2146257637", + "https://openalex.org/W2147169507", + "https://openalex.org/W2147409005", + "https://openalex.org/W2149706766", + "https://openalex.org/W2158000296", + "https://openalex.org/W2159080219", + "https://openalex.org/W2168165449", + "https://openalex.org/W2170120409", + "https://openalex.org/W2193378034", + "https://openalex.org/W2743477090", + "https://openalex.org/W2797502950", + "https://openalex.org/W2798455746", + "https://openalex.org/W2913283985", + "https://openalex.org/W2982720039", + "https://openalex.org/W2988864014", + "https://openalex.org/W3085162807" + ], + "related_works": [ + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2169038408", + "https://openalex.org/W2156571267", + "https://openalex.org/W2154053567", + "https://openalex.org/W2153635508", + "https://openalex.org/W2149706766", + "https://openalex.org/W2143426320", + "https://openalex.org/W2140190241", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119479037", + "https://openalex.org/W2119387367", + "https://openalex.org/W2017337590", + "https://openalex.org/W1808644423", + "https://openalex.org/W1661871015", + "https://openalex.org/W1619226191", + "https://openalex.org/W1583700199", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "A": [ + 0, + 62 + ], + "central": [ + 1, + 41 + ], + "problem": [ + 2, + 28 + ], + "in": [ + 3, + 200, + 255 + ], + "machine": [ + 4, + 33, + 113, + 197 + ], + "learning": [ + 5, + 34, + 114, + 198, + 238 + ], + "is": [ + 6, + 43, + 84 + ], + "identifying": [ + 7 + ], + "a": [ + 8, + 17, + 21, + 36, + 98, + 224, + 227 + ], + "representative": [ + 9 + ], + "set": [ + 10, + 184 + ], + "of": [ + 11, + 29, + 76, + 211, + 215, + 280, + 296 + ], + "features": [ + 12, + 49, + 151, + 204, + 297 + ], + "from": [ + 13, + 69 + ], + "which": [ + 14, + 207, + 271 + ], + "to": [ + 15, + 231, + 240, + 251, + 274, + 276, + 283, + 319 + ], + "construct": [ + 16 + ], + "classification": [ + 18, + 178 + ], + "model": [ + 19 + ], + "for": [ + 20, + 32 + ], + "particular": [ + 22 + ], + "task.": [ + 23 + ], + "This": [ + 24 + ], + "thesis": [ + 25 + ], + "addresses": [ + 26 + ], + "the": [ + 27, + 55, + 173, + 181, + 190, + 216, + 236, + 252, + 258, + 269, + 299, + 306, + 326 + ], + "feature": [ + 30, + 46, + 63, + 183, + 192, + 232, + 242, + 285, + 302 + ], + "selection": [ + 31, + 195, + 233 + ], + "through": [ + 35 + ], + "correlation": [ + 37, + 95 + ], + "based": [ + 38, + 66, + 81, + 127 + ], + "approach.": [ + 39 + ], + "The": [ + 40, + 292 + ], + "hypothesis": [ + 42 + ], + "that": [ + 44, + 50, + 87, + 137, + 234, + 314 + ], + "good": [ + 45 + ], + "sets": [ + 47 + ], + "contain": [ + 48 + ], + "are": [ + 51, + 287 + ], + "highly": [ + 52, + 209 + ], + "correlated": [ + 53 + ], + "with": [ + 54, + 59, + 92, + 223 + ], + "class,": [ + 56 + ], + "yet": [ + 57 + ], + "uncorrelated": [ + 58 + ], + "each": [ + 60 + ], + "other.": [ + 61 + ], + "evaluation": [ + 64, + 90 + ], + "formula,": [ + 65 + ], + "on": [ + 67, + 107, + 133, + 161, + 260, + 310 + ], + "ideas": [ + 68 + ], + "test": [ + 70 + ], + "theory,": [ + 71 + ], + "provides": [ + 72 + ], + "an": [ + 73, + 85, + 93 + ], + "operational": [ + 74 + ], + "definition": [ + 75 + ], + "this": [ + 77, + 89 + ], + "hypothesis.": [ + 78 + ], + "CFS": [ + 79, + 138, + 167, + 222, + 247, + 263, + 282 + ], + "(Correlation": [ + 80 + ], + "Feature": [ + 82, + 194 + ], + "Selection)": [ + 83 + ], + "algorithm": [ + 86, + 239 + ], + "couples": [ + 88 + ], + "formula": [ + 91 + ], + "appropriate": [ + 94 + ], + "measure": [ + 96 + ], + "and": [ + 97, + 109, + 129, + 141, + 145, + 148, + 254, + 289, + 298 + ], + "heuristic": [ + 99 + ], + "search": [ + 100 + ], + "strategy.": [ + 101 + ], + " \\n \\nCFS": [ + 102 + ], + "was": [ + 103 + ], + "evaluated": [ + 104 + ], + "by": [ + 105, + 305, + 337 + ], + "experiments": [ + 106, + 220 + ], + "artificial": [ + 108, + 134, + 311 + ], + "natural": [ + 110, + 165, + 324 + ], + "datasets.": [ + 111, + 262 + ], + "Three": [ + 112 + ], + "algorithms": [ + 115 + ], + "were": [ + 116, + 205, + 208, + 317 + ], + "used:": [ + 117 + ], + "C4.5": [ + 118 + ], + "(a": [ + 119 + ], + "decision": [ + 120 + ], + "tree": [ + 121 + ], + "learner),": [ + 122, + 128 + ], + "IB": [ + 123 + ], + "1": [ + 124 + ], + "(an": [ + 125 + ], + "instance": [ + 126, + 217 + ], + "naive": [ + 130 + ], + "Bayes.": [ + 131 + ], + "Experiments": [ + 132, + 309 + ], + "datasets": [ + 135 + ], + "showed": [ + 136, + 313 + ], + "quickly": [ + 139 + ], + "identifies": [ + 140, + 149 + ], + "screens": [ + 142 + ], + "irrelevant,": [ + 143 + ], + "redundant,": [ + 144 + ], + "noisy": [ + 146 + ], + "features,": [ + 147 + ], + "relevant": [ + 150 + ], + "as": [ + 152, + 154 + ], + "long": [ + 153 + ], + "their": [ + 155 + ], + "relevance": [ + 156 + ], + "does": [ + 157 + ], + "not": [ + 158 + ], + "strongly": [ + 159 + ], + "depend": [ + 160 + ], + "other": [ + 162 + ], + "features.": [ + 163, + 174, + 322 + ], + "On": [ + 164, + 323 + ], + "domains,": [ + 166, + 325 + ], + "typically": [ + 168 + ], + "eliminated": [ + 169, + 206 + ], + "well": [ + 170, + 228 + ], + "over": [ + 171 + ], + "half": [ + 172 + ], + "In": [ + 175, + 244 + ], + "most": [ + 176 + ], + "cases,": [ + 177 + ], + "accuracy": [ + 179, + 188 + ], + "using": [ + 180, + 189, + 334 + ], + "reduced": [ + 182 + ], + "equaled": [ + 185 + ], + "or": [ + 186 + ], + "bettered": [ + 187 + ], + "complete": [ + 191 + ], + "set.": [ + 193 + ], + "degraded": [ + 196 + ], + "performance": [ + 199 + ], + "cases": [ + 201, + 246 + ], + "where": [ + 202 + ], + "some": [ + 203 + ], + "predictive": [ + 210 + ], + "very": [ + 212 + ], + "small": [ + 213, + 261 + ], + "areas": [ + 214 + ], + "space.": [ + 218 + ], + " \\n \\nFurther": [ + 219 + ], + "compared": [ + 221 + ], + "wrapper": [ + 225, + 259 + ], + "-": [ + 226 + ], + "known": [ + 229 + ], + "approach": [ + 230 + ], + "employs": [ + 235 + ], + "target": [ + 237 + ], + "evaluate": [ + 241 + ], + "sets.": [ + 243 + ], + "many": [ + 245, + 265 + ], + "gave": [ + 248, + 329 + ], + "comparable": [ + 249 + ], + "results": [ + 250, + 332 + ], + "wrapper,": [ + 253, + 270 + ], + "general,": [ + 256 + ], + "outperformed": [ + 257 + ], + "executes": [ + 264 + ], + "times": [ + 266 + ], + "faster": [ + 267 + ], + "than": [ + 268, + 333 + ], + "allows": [ + 272 + ], + "it": [ + 273 + ], + "scale": [ + 275 + ], + "larger": [ + 277 + ], + "datasets. \\n \\nTwo": [ + 278 + ], + "methods": [ + 279, + 316 + ], + "extending": [ + 281 + ], + "handle": [ + 284 + ], + "interaction": [ + 286 + ], + "presented": [ + 288 + ], + "experimentally": [ + 290 + ], + "evaluated.": [ + 291 + ], + "first": [ + 293 + ], + "considers": [ + 294 + ], + "pairs": [ + 295 + ], + "second": [ + 300 + ], + "incorporates": [ + 301 + ], + "weights": [ + 303, + 335 + ], + "calculated": [ + 304 + ], + "RELIEF": [ + 307 + ], + "algorithm.": [ + 308 + ], + "domains": [ + 312 + ], + "both": [ + 315 + ], + "able": [ + 318 + ], + "identify": [ + 320 + ], + "interacting": [ + 321 + ], + "pairwise": [ + 327 + ], + "method": [ + 328 + ], + "more": [ + 330 + ], + "reliable": [ + 331 + ], + "provided": [ + 336 + ], + "RELIEF.": [ + 338 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 38 + }, + { + "year": 2024, + "cited_by_count": 89 + }, + { + "year": 2023, + "cited_by_count": 147 + }, + { + "year": 2022, + "cited_by_count": 181 + }, + { + "year": 2021, + "cited_by_count": 299 + }, + { + "year": 2020, + "cited_by_count": 287 + }, + { + "year": 2019, + "cited_by_count": 295 + }, + { + "year": 2018, + "cited_by_count": 296 + }, + { + "year": 2017, + "cited_by_count": 277 + }, + { + "year": 2016, + "cited_by_count": 271 + }, + { + "year": 2015, + "cited_by_count": 264 + }, + { + "year": 2014, + "cited_by_count": 238 + }, + { + "year": 2013, + "cited_by_count": 181 + }, + { + "year": 2012, + "cited_by_count": 163 + } + ], + "updated_date": "2025-11-06T04:12:42.849631", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2594183968", + "doi": "https://doi.org/10.1039/c7sc02664a", + "title": "MoleculeNet: a benchmark for molecular machine learning", + "display_name": "MoleculeNet: a benchmark for molecular machine learning", + "relevance_score": 3869.809, + "publication_year": 2017, + "publication_date": "2017-10-31", + "ids": { + "openalex": "https://openalex.org/W2594183968", + "doi": "https://doi.org/10.1039/c7sc02664a", + "mag": "2594183968", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29629118" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "diamond", + "oa_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5054988040", + "display_name": "Zhenqin Wu", + "orcid": "https://orcid.org/0000-0002-0148-7055" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zhenqin Wu", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0148-7055", + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039641760", + "display_name": "Bharath Ramsundar", + "orcid": "https://orcid.org/0000-0001-8450-4262" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Bharath Ramsundar", + "raw_affiliation_strings": [ + "Department of Computer Science", + "Stanford", + "Stanford University", + "USA", + "Department of Computer Science, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Computer Science, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5011983540", + "display_name": "Evan N. Feinberg", + "orcid": "https://orcid.org/0000-0002-7989-8751" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evan N. Feinberg", + "raw_affiliation_strings": [ + "Program in Biophysics", + "Stanford", + "Stanford School of Medicine", + "USA", + "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Program in Biophysics", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford School of Medicine", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5044158176", + "display_name": "Joseph Gomes", + "orcid": "https://orcid.org/0000-0002-0755-0641" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Joseph Gomes", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0755-0641", + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069546508", + "display_name": "Caleb Geniesse", + "orcid": "https://orcid.org/0000-0002-7897-8338" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Caleb Geniesse", + "raw_affiliation_strings": [ + "Program in Biophysics", + "Stanford", + "Stanford School of Medicine", + "USA", + "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Program in Biophysics", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford School of Medicine", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015493289", + "display_name": "Aneesh Pappu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Aneesh S. Pappu", + "raw_affiliation_strings": [ + "Department of Computer Science", + "Stanford", + "Stanford University", + "USA", + "Department of Computer Science, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Computer Science, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004322104", + "display_name": "Karl Leswing", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I203455613", + "display_name": "Schrodinger (United States)", + "ror": "https://ror.org/05a3z6914", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I203455613" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karl Leswing", + "raw_affiliation_strings": [ + "Schrodinger Inc", + "USA", + "Schrodinger Inc., USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Schrodinger Inc", + "institution_ids": [ + "https://openalex.org/I203455613" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Schrodinger Inc., USA", + "institution_ids": [ + "https://openalex.org/I203455613" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5032418986", + "display_name": "Vijay S. Pande", + "orcid": "https://orcid.org/0000-0003-2774-1178" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Vijay Pande", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 8, + "corresponding_author_ids": [ + "https://openalex.org/A5032418986" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 128.6995, + "has_fulltext": true, + "cited_by_count": 2910, + "citation_normalized_percentile": { + "value": 0.9998827, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "9", + "issue": "2", + "first_page": "513", + "last_page": "530" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10044", + "display_name": "Protein Structure and Dynamics", + "score": 0.9779999852180481, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/benchmark", + "display_name": "Benchmark (surveying)", + "score": 0.9469650983810425 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6600202322006226 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6345625519752502 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6119014024734497 + }, + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.5160343647003174 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.04847747087478638 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.04328623414039612 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C185798385", + "wikidata": "https://www.wikidata.org/wiki/Q1161707", + "display_name": "Benchmark (surveying)", + "level": 2, + "score": 0.9469650983810425 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6600202322006226 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6345625519752502 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6119014024734497 + }, + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.5160343647003174 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.04847747087478638 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.04328623414039612 + }, + { + "id": "https://openalex.org/C13280743", + "wikidata": "https://www.wikidata.org/wiki/Q131089", + "display_name": "Geodesy", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:29629118", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29629118", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical science", + "raw_type": null + }, + { + "id": "pmh:oai:europepmc.org:4794812", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5868307", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + }, + { + "id": "pmh:oai:hub.hku.hk:10722/354386", + "is_oa": false, + "landing_page_url": "https://hub.hku.hk/handle/10722/354386", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196271", + "display_name": "The HKU Scholars Hub (University of Hong Kong)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I889458895", + "host_organization_name": "University of Hong Kong", + "host_organization_lineage": [ + "https://openalex.org/I889458895" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Article" + } + ], + "best_oa_location": { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G4484533445", + "display_name": null, + "funder_award_id": "GM062868", + "funder_id": "https://openalex.org/F4320332161", + "funder_display_name": "National Institutes of Health" + }, + { + "id": "https://openalex.org/G7442115961", + "display_name": null, + "funder_award_id": "U19 AI109662", + "funder_id": "https://openalex.org/F4320332161", + "funder_display_name": "National Institutes of Health" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320308782", + "display_name": "Hertz Foundation", + "ror": "https://ror.org/01ycgxf29" + }, + { + "id": "https://openalex.org/F4320332161", + "display_name": "National Institutes of Health", + "ror": "https://ror.org/01cwqze88" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2594183968.pdf", + "grobid_xml": "https://content.openalex.org/works/W2594183968.grobid-xml" + }, + "referenced_works_count": 64, + "referenced_works": [ + "https://openalex.org/W655356045", + "https://openalex.org/W1579198272", + "https://openalex.org/W1601495365", + "https://openalex.org/W1678356000", + "https://openalex.org/W1738019091", + "https://openalex.org/W1780364926", + "https://openalex.org/W1964513093", + "https://openalex.org/W1975147762", + "https://openalex.org/W1985748743", + "https://openalex.org/W1988037271", + "https://openalex.org/W1993046136", + "https://openalex.org/W1993285168", + "https://openalex.org/W1995808589", + "https://openalex.org/W1996327711", + "https://openalex.org/W1998056319", + "https://openalex.org/W1999798000", + "https://openalex.org/W2001816314", + "https://openalex.org/W2008505552", + "https://openalex.org/W2010700988", + "https://openalex.org/W2019678805", + "https://openalex.org/W2024046085", + "https://openalex.org/W2025444507", + "https://openalex.org/W2033206800", + "https://openalex.org/W2046589863", + "https://openalex.org/W2060531713", + "https://openalex.org/W2060565460", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076498053", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081454243", + "https://openalex.org/W2081580037", + "https://openalex.org/W2085126686", + "https://openalex.org/W2085312881", + "https://openalex.org/W2092285329", + "https://openalex.org/W2096560421", + "https://openalex.org/W2101234009", + "https://openalex.org/W2104489082", + "https://openalex.org/W2114162221", + "https://openalex.org/W2114704115", + "https://openalex.org/W2117539524", + "https://openalex.org/W2119821739", + "https://openalex.org/W2127330184", + "https://openalex.org/W2127644822", + "https://openalex.org/W2139271038", + "https://openalex.org/W2145578524", + "https://openalex.org/W2153693853", + "https://openalex.org/W2170214641", + "https://openalex.org/W2171830166", + "https://openalex.org/W2290847742", + "https://openalex.org/W2319902168", + "https://openalex.org/W2406943157", + "https://openalex.org/W2461470610", + "https://openalex.org/W2461620095", + "https://openalex.org/W2473190403", + "https://openalex.org/W2606780347", + "https://openalex.org/W2734982589", + "https://openalex.org/W2753558426", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2914584698", + "https://openalex.org/W2919115771", + "https://openalex.org/W3100157108", + "https://openalex.org/W3102449990", + "https://openalex.org/W3102797483" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4387369504", + "https://openalex.org/W3046775127", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3107602296", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474" + ], + "abstract_inverted_index": { + "Molecular": [ + 0 + ], + "machine": [ + 1, + 22, + 82, + 128 + ], + "learning": [ + 2, + 23, + 106, + 129, + 177 + ], + "has": [ + 3, + 36 + ], + "been": [ + 4, + 37 + ], + "maturing": [ + 5 + ], + "rapidly": [ + 6 + ], + "over": [ + 7 + ], + "the": [ + 8, + 15, + 41, + 49, + 67, + 112, + 133, + 164 + ], + "last": [ + 9 + ], + "few": [ + 10 + ], + "years.": [ + 11 + ], + "Improved": [ + 12 + ], + "methods": [ + 13 + ], + "and": [ + 14, + 93, + 105, + 130, + 154, + 161 + ], + "presence": [ + 16 + ], + "of": [ + 17, + 43, + 51, + 69, + 99, + 111, + 166, + 175 + ], + "larger": [ + 18 + ], + "datasets": [ + 19, + 61 + ], + "have": [ + 20 + ], + "enabled": [ + 21 + ], + "algorithms": [ + 24, + 56, + 107 + ], + "to": [ + 25, + 40, + 47, + 65, + 146 + ], + "make": [ + 26 + ], + "increasingly": [ + 27 + ], + "accurate": [ + 28 + ], + "predictions": [ + 29 + ], + "about": [ + 30 + ], + "molecular": [ + 31, + 81, + 103, + 127 + ], + "properties.": [ + 32 + ], + "However,": [ + 33, + 136 + ], + "algorithmic": [ + 34 + ], + "progress": [ + 35 + ], + "limited": [ + 38 + ], + "due": [ + 39 + ], + "lack": [ + 42 + ], + "a": [ + 44, + 76 + ], + "standard": [ + 45 + ], + "benchmark": [ + 46, + 79 + ], + "compare": [ + 48 + ], + "efficacy": [ + 50 + ], + "proposed": [ + 52, + 70, + 102 + ], + "methods;": [ + 53 + ], + "most": [ + 54 + ], + "new": [ + 55 + ], + "are": [ + 57, + 123 + ], + "benchmarked": [ + 58 + ], + "on": [ + 59 + ], + "different": [ + 60 + ], + "making": [ + 62 + ], + "it": [ + 63 + ], + "challenging": [ + 64 + ], + "gauge": [ + 66 + ], + "quality": [ + 68, + 96 + ], + "methods.": [ + 71 + ], + "This": [ + 72 + ], + "work": [ + 73 + ], + "introduces": [ + 74 + ], + "MoleculeNet,": [ + 75 + ], + "large": [ + 77 + ], + "scale": [ + 78 + ], + "for": [ + 80, + 91, + 126 + ], + "learning.": [ + 83 + ], + "MoleculeNet": [ + 84, + 117 + ], + "curates": [ + 85 + ], + "multiple": [ + 86, + 100 + ], + "public": [ + 87 + ], + "datasets,": [ + 88, + 163 + ], + "establishes": [ + 89 + ], + "metrics": [ + 90 + ], + "evaluation,": [ + 92 + ], + "offers": [ + 94 + ], + "high": [ + 95 + ], + "open-source": [ + 97 + ], + "implementations": [ + 98 + ], + "previously": [ + 101 + ], + "featurization": [ + 104 + ], + "(released": [ + 108 + ], + "as": [ + 109 + ], + "part": [ + 110 + ], + "DeepChem": [ + 113 + ], + "open": [ + 114 + ], + "source": [ + 115 + ], + "library).": [ + 116 + ], + "benchmarks": [ + 118 + ], + "demonstrate": [ + 119 + ], + "that": [ + 120 + ], + "learnable": [ + 121 + ], + "representations": [ + 122, + 143 + ], + "powerful": [ + 124 + ], + "tools": [ + 125 + ], + "broadly": [ + 131 + ], + "offer": [ + 132 + ], + "best": [ + 134 + ], + "performance.": [ + 135 + ], + "this": [ + 137 + ], + "result": [ + 138 + ], + "comes": [ + 139 + ], + "with": [ + 140, + 148 + ], + "caveats.": [ + 141 + ], + "Learnable": [ + 142 + ], + "still": [ + 144 + ], + "struggle": [ + 145 + ], + "deal": [ + 147 + ], + "complex": [ + 149 + ], + "tasks": [ + 150 + ], + "under": [ + 151 + ], + "data": [ + 152 + ], + "scarcity": [ + 153 + ], + "highly": [ + 155 + ], + "imbalanced": [ + 156 + ], + "classification.": [ + 157 + ], + "For": [ + 158 + ], + "quantum": [ + 159 + ], + "mechanical": [ + 160 + ], + "biophysical": [ + 162 + ], + "use": [ + 165 + ], + "physics-aware": [ + 167 + ], + "featurizations": [ + 168 + ], + "can": [ + 169 + ], + "be": [ + 170 + ], + "more": [ + 171 + ], + "important": [ + 172 + ], + "than": [ + 173 + ], + "choice": [ + 174 + ], + "particular": [ + 176 + ], + "algorithm.": [ + 178 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 185 + }, + { + "year": 2025, + "cited_by_count": 534 + }, + { + "year": 2024, + "cited_by_count": 510 + }, + { + "year": 2023, + "cited_by_count": 422 + }, + { + "year": 2022, + "cited_by_count": 374 + }, + { + "year": 2021, + "cited_by_count": 351 + }, + { + "year": 2020, + "cited_by_count": 292 + }, + { + "year": 2019, + "cited_by_count": 157 + }, + { + "year": 2018, + "cited_by_count": 75 + }, + { + "year": 2017, + "cited_by_count": 6 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2594475271", + "doi": "https://doi.org/10.48550/arxiv.1702.08608", + "title": "Towards A Rigorous Science of Interpretable Machine Learning", + "display_name": "Towards A Rigorous Science of Interpretable Machine Learning", + "relevance_score": 3832.6755, + "publication_year": 2017, + "publication_date": "2017-02-28", + "ids": { + "openalex": "https://openalex.org/W2594475271", + "doi": "https://doi.org/10.48550/arxiv.1702.08608", + "mag": "2594475271" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1702.08608", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5038771285", + "display_name": "Finale Doshi‐Velez", + "orcid": "https://orcid.org/0000-0003-2886-3898" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Doshi-Velez, Finale", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5041405652", + "display_name": "Been Kim", + "orcid": "https://orcid.org/0000-0001-9938-2915" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kim, Been", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5038771285" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 3136, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9822999835014343, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.989424467086792 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7579805850982666 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.723967432975769 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6432822346687317 + }, + { + "id": "https://openalex.org/keywords/taxonomy", + "display_name": "Taxonomy (biology)", + "score": 0.535308837890625 + }, + { + "id": "https://openalex.org/keywords/position-paper", + "display_name": "Position paper", + "score": 0.4703657329082489 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.989424467086792 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7579805850982666 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.723967432975769 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6432822346687317 + }, + { + "id": "https://openalex.org/C58642233", + "wikidata": "https://www.wikidata.org/wiki/Q8269924", + "display_name": "Taxonomy (biology)", + "level": 2, + "score": 0.535308837890625 + }, + { + "id": "https://openalex.org/C78780964", + "wikidata": "https://www.wikidata.org/wiki/Q7233193", + "display_name": "Position paper", + "level": 2, + "score": 0.4703657329082489 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1702.08608", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1702.08608", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.4399999976158142, + "id": "https://metadata.un.org/sdg/16" + }, + { + "display_name": "Reduced inequalities", + "score": 0.4300000071525574, + "id": "https://metadata.un.org/sdg/10" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W65833265", + "https://openalex.org/W190506616", + "https://openalex.org/W214705575", + "https://openalex.org/W1570088706", + "https://openalex.org/W1757796397", + "https://openalex.org/W1983870751", + "https://openalex.org/W1994757764", + "https://openalex.org/W2008174170", + "https://openalex.org/W2100960835", + "https://openalex.org/W2119858020", + "https://openalex.org/W2132862423", + "https://openalex.org/W2159426623", + "https://openalex.org/W2160336621", + "https://openalex.org/W2187558068", + "https://openalex.org/W2189162242", + "https://openalex.org/W2257979135", + "https://openalex.org/W2336395599", + "https://openalex.org/W2367397349", + "https://openalex.org/W2440159969", + "https://openalex.org/W2462906003", + "https://openalex.org/W2493343568", + "https://openalex.org/W2528479067", + "https://openalex.org/W2560479124", + "https://openalex.org/W2567527106", + "https://openalex.org/W2951501516", + "https://openalex.org/W2964134873" + ], + "related_works": [ + "https://openalex.org/W1986582023", + "https://openalex.org/W2961085424", + "https://openalex.org/W2966829450", + "https://openalex.org/W4315864862", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694" + ], + "abstract_inverted_index": { + "As": [ + 0 + ], + "machine": [ + 1, + 15, + 53, + 100 + ], + "learning": [ + 2, + 54 + ], + "systems": [ + 3, + 17 + ], + "become": [ + 4 + ], + "ubiquitous,": [ + 5 + ], + "there": [ + 6, + 45 + ], + "has": [ + 7 + ], + "been": [ + 8 + ], + "a": [ + 9, + 84, + 94 + ], + "surge": [ + 10 + ], + "of": [ + 11, + 98 + ], + "interest": [ + 12, + 42 + ], + "in": [ + 13, + 43 + ], + "interpretable": [ + 14, + 52, + 99 + ], + "learning:": [ + 16 + ], + "that": [ + 18 + ], + "provide": [ + 19 + ], + "explanation": [ + 20 + ], + "for": [ + 21, + 86 + ], + "their": [ + 22 + ], + "outputs.": [ + 23 + ], + "These": [ + 24 + ], + "explanations": [ + 25 + ], + "are": [ + 26 + ], + "often": [ + 27 + ], + "used": [ + 28 + ], + "to": [ + 29 + ], + "qualitatively": [ + 30 + ], + "assess": [ + 31 + ], + "other": [ + 32 + ], + "criteria": [ + 33 + ], + "such": [ + 34 + ], + "as": [ + 35 + ], + "safety": [ + 36 + ], + "or": [ + 37 + ], + "non-discrimination.": [ + 38 + ], + "However,": [ + 39 + ], + "despite": [ + 40 + ], + "the": [ + 41 + ], + "interpretability,": [ + 44 + ], + "is": [ + 46, + 55, + 74, + 79 + ], + "very": [ + 47 + ], + "little": [ + 48 + ], + "consensus": [ + 49 + ], + "on": [ + 50 + ], + "what": [ + 51 + ], + "and": [ + 56, + 70, + 89 + ], + "how": [ + 57 + ], + "it": [ + 58, + 78 + ], + "should": [ + 59 + ], + "be": [ + 60 + ], + "measured.": [ + 61 + ], + "In": [ + 62 + ], + "this": [ + 63 + ], + "position": [ + 64 + ], + "paper,": [ + 65 + ], + "we": [ + 66, + 82 + ], + "first": [ + 67 + ], + "define": [ + 68 + ], + "interpretability": [ + 69, + 73 + ], + "describe": [ + 71 + ], + "when": [ + 72, + 77 + ], + "needed": [ + 75 + ], + "(and": [ + 76 + ], + "not).": [ + 80 + ], + "Next,": [ + 81 + ], + "suggest": [ + 83 + ], + "taxonomy": [ + 85 + ], + "rigorous": [ + 87, + 96 + ], + "evaluation": [ + 88 + ], + "expose": [ + 90 + ], + "open": [ + 91 + ], + "questions": [ + 92 + ], + "towards": [ + 93 + ], + "more": [ + 95 + ], + "science": [ + 97 + ], + "learning.": [ + 101 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 46 + }, + { + "year": 2025, + "cited_by_count": 334 + }, + { + "year": 2024, + "cited_by_count": 390 + }, + { + "year": 2023, + "cited_by_count": 427 + }, + { + "year": 2022, + "cited_by_count": 338 + }, + { + "year": 2021, + "cited_by_count": 597 + }, + { + "year": 2020, + "cited_by_count": 488 + }, + { + "year": 2019, + "cited_by_count": 319 + }, + { + "year": 2018, + "cited_by_count": 164 + }, + { + "year": 2017, + "cited_by_count": 32 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2007339694", + "doi": "https://doi.org/10.1109/msp.2012.2211477", + "title": "The MNIST Database of Handwritten Digit Images for Machine Learning Research [Best of the Web]", + "display_name": "The MNIST Database of Handwritten Digit Images for Machine Learning Research [Best of the Web]", + "relevance_score": 3801.1765, + "publication_year": 2012, + "publication_date": "2012-10-19", + "ids": { + "openalex": "https://openalex.org/W2007339694", + "doi": "https://doi.org/10.1109/msp.2012.2211477", + "mag": "2007339694" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/msp.2012.2211477", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/msp.2012.2211477", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S120977877", + "display_name": "IEEE Signal Processing Magazine", + "issn_l": "1053-5888", + "issn": [ + "1053-5888", + "1558-0792" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Signal Processing Magazine", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5100671326", + "display_name": "Li Deng", + "orcid": "https://orcid.org/0000-0002-7140-0701" + }, + "institutions": [ + { + "id": "https://openalex.org/I1290206253", + "display_name": "Microsoft (United States)", + "ror": "https://ror.org/00d0nc645", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Li Deng", + "raw_affiliation_strings": [ + "Microsoft Research, Redmond, WA, USA", + "[Microsoft Research,Redmond,WA,USA]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Microsoft Research, Redmond, WA, USA", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + }, + { + "raw_affiliation_string": "[Microsoft Research,Redmond,WA,USA]", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5100671326" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1290206253" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 4.4394, + "has_fulltext": false, + "cited_by_count": 4581, + "citation_normalized_percentile": { + "value": 0.95131101, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "29", + "issue": "6", + "first_page": "141", + "last_page": "142" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10601", + "display_name": "Handwritten Text Recognition Techniques", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10601", + "display_name": "Handwritten Text Recognition Techniques", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9983999729156494, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10627", + "display_name": "Advanced Image and Video Retrieval Techniques", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.9717313051223755 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8078590035438538 + }, + { + "id": "https://openalex.org/keywords/optical-character-recognition", + "display_name": "Optical character recognition", + "score": 0.6577181220054626 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6341533660888672 + }, + { + "id": "https://openalex.org/keywords/handwriting-recognition", + "display_name": "Handwriting recognition", + "score": 0.5454277992248535 + }, + { + "id": "https://openalex.org/keywords/numerical-digit", + "display_name": "Numerical digit", + "score": 0.544492244720459 + }, + { + "id": "https://openalex.org/keywords/digit-recognition", + "display_name": "Digit recognition", + "score": 0.5283616185188293 + }, + { + "id": "https://openalex.org/keywords/character", + "display_name": "Character (mathematics)", + "score": 0.5253086686134338 + }, + { + "id": "https://openalex.org/keywords/intelligent-word-recognition", + "display_name": "Intelligent word recognition", + "score": 0.47909122705459595 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.43089044094085693 + }, + { + "id": "https://openalex.org/keywords/character-recognition", + "display_name": "Character recognition", + "score": 0.4222016930580139 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.4071904420852661 + }, + { + "id": "https://openalex.org/keywords/speech-recognition", + "display_name": "Speech recognition", + "score": 0.39158111810684204 + }, + { + "id": "https://openalex.org/keywords/intelligent-character-recognition", + "display_name": "Intelligent character recognition", + "score": 0.3735637962818146 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.3423413634300232 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.27770859003067017 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.24367356300354004 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1194082498550415 + }, + { + "id": "https://openalex.org/keywords/arithmetic", + "display_name": "Arithmetic", + "score": 0.07683056592941284 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.07060250639915466 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.9717313051223755 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8078590035438538 + }, + { + "id": "https://openalex.org/C546480517", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Optical character recognition", + "level": 3, + "score": 0.6577181220054626 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6341533660888672 + }, + { + "id": "https://openalex.org/C112640561", + "wikidata": "https://www.wikidata.org/wiki/Q2440634", + "display_name": "Handwriting recognition", + "level": 3, + "score": 0.5454277992248535 + }, + { + "id": "https://openalex.org/C94957134", + "wikidata": "https://www.wikidata.org/wiki/Q82990", + "display_name": "Numerical digit", + "level": 2, + "score": 0.544492244720459 + }, + { + "id": "https://openalex.org/C2984784707", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Digit recognition", + "level": 3, + "score": 0.5283616185188293 + }, + { + "id": "https://openalex.org/C2780861071", + "wikidata": "https://www.wikidata.org/wiki/Q1062934", + "display_name": "Character (mathematics)", + "level": 2, + "score": 0.5253086686134338 + }, + { + "id": "https://openalex.org/C17649283", + "wikidata": "https://www.wikidata.org/wiki/Q6044162", + "display_name": "Intelligent word recognition", + "level": 5, + "score": 0.47909122705459595 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.43089044094085693 + }, + { + "id": "https://openalex.org/C2987247673", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Character recognition", + "level": 3, + "score": 0.4222016930580139 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.4071904420852661 + }, + { + "id": "https://openalex.org/C28490314", + "wikidata": "https://www.wikidata.org/wiki/Q189436", + "display_name": "Speech recognition", + "level": 1, + "score": 0.39158111810684204 + }, + { + "id": "https://openalex.org/C44868376", + "wikidata": "https://www.wikidata.org/wiki/Q3099089", + "display_name": "Intelligent character recognition", + "level": 4, + "score": 0.3735637962818146 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.3423413634300232 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.27770859003067017 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.24367356300354004 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1194082498550415 + }, + { + "id": "https://openalex.org/C94375191", + "wikidata": "https://www.wikidata.org/wiki/Q11205", + "display_name": "Arithmetic", + "level": 1, + "score": 0.07683056592941284 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.07060250639915466 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/msp.2012.2211477", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/msp.2012.2211477", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S120977877", + "display_name": "IEEE Signal Processing Magazine", + "issn_l": "1053-5888", + "issn": [ + "1053-5888", + "1558-0792" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Signal Processing Magazine", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 8, + "referenced_works": [ + "https://openalex.org/W2033154814", + "https://openalex.org/W2112796928", + "https://openalex.org/W2139622435", + "https://openalex.org/W2148461049", + "https://openalex.org/W2149600041", + "https://openalex.org/W2156163116", + "https://openalex.org/W2546302380", + "https://openalex.org/W6681813608" + ], + "related_works": [ + "https://openalex.org/W2218402054", + "https://openalex.org/W4384296853", + "https://openalex.org/W954954433", + "https://openalex.org/W4309724674", + "https://openalex.org/W2557740161", + "https://openalex.org/W2135329887", + "https://openalex.org/W2011042697", + "https://openalex.org/W3200113662", + "https://openalex.org/W2153054283", + "https://openalex.org/W3112133370" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "this": [ + 1 + ], + "issue,": [ + 2 + ], + "“Best": [ + 3 + ], + "of": [ + 4, + 12, + 19, + 22 + ], + "the": [ + 5, + 8 + ], + "Web”": [ + 6 + ], + "presents": [ + 7 + ], + "modified": [ + 9 + ], + "National": [ + 10 + ], + "Institute": [ + 11 + ], + "Standards": [ + 13 + ], + "and": [ + 14, + 32 + ], + "Technology": [ + 15 + ], + "(MNIST)": [ + 16 + ], + "resources,": [ + 17 + ], + "consisting": [ + 18 + ], + "a": [ + 20 + ], + "collection": [ + 21 + ], + "handwritten": [ + 23 + ], + "digit": [ + 24 + ], + "images": [ + 25 + ], + "used": [ + 26 + ], + "extensively": [ + 27 + ], + "in": [ + 28 + ], + "optical": [ + 29 + ], + "character": [ + 30 + ], + "recognition": [ + 31 + ], + "machine": [ + 33 + ], + "learning": [ + 34 + ], + "research.": [ + 35 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 234 + }, + { + "year": 2025, + "cited_by_count": 1000 + }, + { + "year": 2024, + "cited_by_count": 1002 + }, + { + "year": 2023, + "cited_by_count": 905 + }, + { + "year": 2022, + "cited_by_count": 527 + }, + { + "year": 2021, + "cited_by_count": 366 + }, + { + "year": 2020, + "cited_by_count": 258 + }, + { + "year": 2019, + "cited_by_count": 167 + }, + { + "year": 2018, + "cited_by_count": 50 + }, + { + "year": 2017, + "cited_by_count": 37 + }, + { + "year": 2016, + "cited_by_count": 19 + }, + { + "year": 2015, + "cited_by_count": 9 + }, + { + "year": 2014, + "cited_by_count": 5 + }, + { + "year": 2013, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W607505555", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "title": "Understanding Machine Learning: From Theory To Algorithms", + "display_name": "Understanding Machine Learning: From Theory To Algorithms", + "relevance_score": 3784.7166, + "publication_year": 2015, + "publication_date": "2015-01-01", + "ids": { + "openalex": "https://openalex.org/W607505555", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "mag": "607505555" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027241732", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027241732&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5078263052", + "display_name": "Shai Shalev‐Shwartz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I197251160", + "display_name": "Hebrew University of Jerusalem", + "ror": "https://ror.org/03qxff017", + "country_code": "IL", + "type": "education", + "lineage": [ + "https://openalex.org/I197251160" + ] + } + ], + "countries": [ + "IL" + ], + "is_corresponding": true, + "raw_author_name": "Shai Shalev‐Shwartz", + "raw_affiliation_strings": [ + "Hebrew University of Jerusalem ," + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hebrew University of Jerusalem ,", + "institution_ids": [ + "https://openalex.org/I197251160" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5112193907", + "display_name": "Shai Ben-David", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I151746483", + "display_name": "University of Waterloo", + "ror": "https://ror.org/01aff2v68", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I151746483" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Shai Ben-David", + "raw_affiliation_strings": [ + "University of Waterloo, Ontario#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Waterloo, Ontario#TAB#", + "institution_ids": [ + "https://openalex.org/I151746483" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5078263052" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I197251160" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 99.395, + "has_fulltext": false, + "cited_by_count": 3088, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12002", + "display_name": "Computability, Logic, AI Algorithms", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6889339685440063 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6654757261276245 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.6018842458724976 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5886845588684082 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.573776364326477 + }, + { + "id": "https://openalex.org/keywords/stability", + "display_name": "Stability (learning theory)", + "score": 0.5710829496383667 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.5549349784851074 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.5015144348144531 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4825989007949829 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.4673505127429962 + }, + { + "id": "https://openalex.org/keywords/convexity", + "display_name": "Convexity", + "score": 0.4466382563114166 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.4228948950767517 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.3927263915538788 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2105390727519989 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6889339685440063 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6654757261276245 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.6018842458724976 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5886845588684082 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.573776364326477 + }, + { + "id": "https://openalex.org/C112972136", + "wikidata": "https://www.wikidata.org/wiki/Q7595718", + "display_name": "Stability (learning theory)", + "level": 2, + "score": 0.5710829496383667 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.5549349784851074 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.5015144348144531 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4825989007949829 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.4673505127429962 + }, + { + "id": "https://openalex.org/C72134830", + "wikidata": "https://www.wikidata.org/wiki/Q5166524", + "display_name": "Convexity", + "level": 2, + "score": 0.4466382563114166 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.4228948950767517 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.3927263915538788 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2105390727519989 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106159729", + "wikidata": "https://www.wikidata.org/wiki/Q2294553", + "display_name": "Financial economics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027241732", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027241732&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028014298", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/CBO9781107298019", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:607505555", + "is_oa": false, + "landing_page_url": "https://www.cs.huji.ac.il/~shais/UnderstandingMachineLearning/understanding-machine-learning-theory-algorithms.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.699999988079071, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 192, + "referenced_works": [ + "https://openalex.org/W740415", + "https://openalex.org/W2169610", + "https://openalex.org/W27434444", + "https://openalex.org/W27926580", + "https://openalex.org/W60189517", + "https://openalex.org/W65382156", + "https://openalex.org/W88685657", + "https://openalex.org/W108503560", + "https://openalex.org/W182746352", + "https://openalex.org/W182881619", + "https://openalex.org/W1153891179", + "https://openalex.org/W1480376833", + "https://openalex.org/W1491105865", + "https://openalex.org/W1499397922", + "https://openalex.org/W1503398984", + "https://openalex.org/W1505356468", + "https://openalex.org/W1505731132", + "https://openalex.org/W1511986666", + "https://openalex.org/W1516903196", + "https://openalex.org/W1520252399", + "https://openalex.org/W1526146785", + "https://openalex.org/W1530699444", + "https://openalex.org/W1538131130", + "https://openalex.org/W1540155273", + "https://openalex.org/W1540586255", + "https://openalex.org/W1541527977", + "https://openalex.org/W1542886316", + "https://openalex.org/W1553702074", + "https://openalex.org/W1560724230", + "https://openalex.org/W1564947197", + "https://openalex.org/W1570963478", + "https://openalex.org/W1587157779", + "https://openalex.org/W1590183771", + "https://openalex.org/W1601740268", + "https://openalex.org/W1607832978", + "https://openalex.org/W1614597761", + "https://openalex.org/W1663973292", + "https://openalex.org/W1676820704", + "https://openalex.org/W1686946872", + "https://openalex.org/W1698155719", + "https://openalex.org/W1790582767", + "https://openalex.org/W1926592634", + "https://openalex.org/W1931645998", + "https://openalex.org/W1968934255", + "https://openalex.org/W1970074386", + "https://openalex.org/W1971361630", + "https://openalex.org/W1976697079", + "https://openalex.org/W1979711143", + "https://openalex.org/W1981207991", + "https://openalex.org/W1981340104", + "https://openalex.org/W1982381767", + "https://openalex.org/W1984876737", + "https://openalex.org/W1988355994", + "https://openalex.org/W1988790447", + "https://openalex.org/W1992208280", + "https://openalex.org/W1994520254", + "https://openalex.org/W1994584977", + "https://openalex.org/W1994616650", + "https://openalex.org/W2005140191", + "https://openalex.org/W2005306124", + "https://openalex.org/W2008652694", + "https://openalex.org/W2012400640", + "https://openalex.org/W2014384147", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015418199", + "https://openalex.org/W2016133707", + "https://openalex.org/W2017753243", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020913456", + "https://openalex.org/W2021302824", + "https://openalex.org/W2025263811", + "https://openalex.org/W2028781966", + "https://openalex.org/W2029029543", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030449718", + "https://openalex.org/W2030811966", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041613709", + "https://openalex.org/W2048448061", + "https://openalex.org/W2054658115", + "https://openalex.org/W2055186664", + "https://openalex.org/W2059507684", + "https://openalex.org/W2059811159", + "https://openalex.org/W2069936846", + "https://openalex.org/W2070771761", + "https://openalex.org/W2070902649", + "https://openalex.org/W2071846104", + "https://openalex.org/W2072128103", + "https://openalex.org/W2075567596", + "https://openalex.org/W2076451537", + "https://openalex.org/W2077008409", + "https://openalex.org/W2077424406", + "https://openalex.org/W2077723394", + "https://openalex.org/W2084544490", + "https://openalex.org/W2084840427", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087347434", + "https://openalex.org/W2091825929", + "https://openalex.org/W2093717447", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096879261", + "https://openalex.org/W2097931325", + "https://openalex.org/W2101276256", + "https://openalex.org/W2102486516", + "https://openalex.org/W2103194807", + "https://openalex.org/W2105594594", + "https://openalex.org/W2105644991", + "https://openalex.org/W2106596127", + "https://openalex.org/W2106948187", + "https://openalex.org/W2109943925", + "https://openalex.org/W2111004121", + "https://openalex.org/W2112269233", + "https://openalex.org/W2113651538", + "https://openalex.org/W2116314036", + "https://openalex.org/W2117049614", + "https://openalex.org/W2117130368", + "https://openalex.org/W2118075434", + "https://openalex.org/W2119479037", + "https://openalex.org/W2119821739", + "https://openalex.org/W2121127625", + "https://openalex.org/W2121367301", + "https://openalex.org/W2122111042", + "https://openalex.org/W2123921160", + "https://openalex.org/W2125055259", + "https://openalex.org/W2129113961", + "https://openalex.org/W2129131372", + "https://openalex.org/W2129160848", + "https://openalex.org/W2130325614", + "https://openalex.org/W2132914434", + "https://openalex.org/W2135046866", + "https://openalex.org/W2136885855", + "https://openalex.org/W2136922672", + "https://openalex.org/W2138263042", + "https://openalex.org/W2139338362", + "https://openalex.org/W2139427956", + "https://openalex.org/W2140095548", + "https://openalex.org/W2142623206", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148603752", + "https://openalex.org/W2148825261", + "https://openalex.org/W2149706766", + "https://openalex.org/W2150434953", + "https://openalex.org/W2150940164", + "https://openalex.org/W2151554678", + "https://openalex.org/W2151693816", + "https://openalex.org/W2154642048", + "https://openalex.org/W2154952480", + "https://openalex.org/W2155195660", + "https://openalex.org/W2155534369", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2160354932", + "https://openalex.org/W2162341153", + "https://openalex.org/W2164595191", + "https://openalex.org/W2168022998", + "https://openalex.org/W2170207925", + "https://openalex.org/W2222512263", + "https://openalex.org/W2253807446", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2296616510", + "https://openalex.org/W2329579984", + "https://openalex.org/W2395092015", + "https://openalex.org/W2399803916", + "https://openalex.org/W2401610261", + "https://openalex.org/W2402090481", + "https://openalex.org/W2416173357", + "https://openalex.org/W2429914308", + "https://openalex.org/W2493312408", + "https://openalex.org/W2547651473", + "https://openalex.org/W2579923771", + "https://openalex.org/W2592570088", + "https://openalex.org/W2611627047", + "https://openalex.org/W2613634265", + "https://openalex.org/W2798766386", + "https://openalex.org/W2799119698", + "https://openalex.org/W2911964244", + "https://openalex.org/W2952817049", + "https://openalex.org/W2964020133", + "https://openalex.org/W2964270981", + "https://openalex.org/W2971788173", + "https://openalex.org/W3021452258", + "https://openalex.org/W3034905139", + "https://openalex.org/W3038084247", + "https://openalex.org/W3083047178", + "https://openalex.org/W3085162807", + "https://openalex.org/W3100743579", + "https://openalex.org/W3124678630", + "https://openalex.org/W3140968660", + "https://openalex.org/W3141595720", + "https://openalex.org/W3149604617", + "https://openalex.org/W3214968550" + ], + "related_works": [ + "https://openalex.org/W3137695714", + "https://openalex.org/W3118608800", + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2579923771", + "https://openalex.org/W2296319761", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2156909104", + "https://openalex.org/W2148603752", + "https://openalex.org/W2139338362", + "https://openalex.org/W2112796928", + "https://openalex.org/W2101234009", + "https://openalex.org/W2029538739", + "https://openalex.org/W2019363670", + "https://openalex.org/W1944672", + "https://openalex.org/W1663973292", + "https://openalex.org/W1554944419", + "https://openalex.org/W1542886316" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 48, + 95, + 146 + ], + "is": [ + 2, + 20 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 17, + 42, + 63, + 66, + 75, + 90, + 94, + 99, + 144 + ], + "the": [ + 5, + 26, + 43, + 50, + 64, + 67, + 69, + 91, + 97, + 122, + 137, + 140 + ], + "fastest": [ + 6 + ], + "growing": [ + 7 + ], + "areas": [ + 8 + ], + "computer": [ + 10, + 155 + ], + "science,": [ + 11, + 156 + ], + "with": [ + 12 + ], + "far-reaching": [ + 13 + ], + "applications.": [ + 14 + ], + "The": [ + 15, + 35 + ], + "aim": [ + 16 + ], + "this": [ + 18 + ], + "textbook": [ + 19 + ], + "to": [ + 21, + 148 + ], + "introduce": [ + 22 + ], + "machine": [ + 23, + 47, + 145 + ], + "learning,": [ + 24 + ], + "and": [ + 25, + 49, + 96, + 101, + 112, + 116, + 125, + 142, + 150, + 158 + ], + "algorithmic": [ + 27, + 104 + ], + "paradigms": [ + 28, + 105 + ], + "it": [ + 29 + ], + "offers,": [ + 30 + ], + "in": [ + 31, + 153 + ], + "a": [ + 32, + 61, + 72, + 88 + ], + "principled": [ + 33 + ], + "way.": [ + 34 + ], + "book": [ + 36, + 70 + ], + "provides": [ + 37 + ], + "an": [ + 38, + 130 + ], + "extensive": [ + 39 + ], + "theoretical": [ + 40, + 118 + ], + "account": [ + 41 + ], + "fundamental": [ + 44 + ], + "ideas": [ + 45 + ], + "underlying": [ + 46 + ], + "mathematical": [ + 51 + ], + "derivations": [ + 52 + ], + "that": [ + 53, + 78 + ], + "transform": [ + 54 + ], + "these": [ + 55 + ], + "principles": [ + 56 + ], + "into": [ + 57 + ], + "practical": [ + 58 + ], + "algorithms.": [ + 59 + ], + "Following": [ + 60 + ], + "presentation": [ + 62 + ], + "basics": [ + 65 + ], + "field,": [ + 68 + ], + "covers": [ + 71 + ], + "wide": [ + 73 + ], + "array": [ + 74 + ], + "central": [ + 76 + ], + "topics": [ + 77 + ], + "have": [ + 79 + ], + "not": [ + 80 + ], + "been": [ + 81 + ], + "addressed": [ + 82 + ], + "by": [ + 83 + ], + "previous": [ + 84 + ], + "textbooks.": [ + 85 + ], + "These": [ + 86 + ], + "include": [ + 87 + ], + "discussion": [ + 89 + ], + "computational": [ + 92 + ], + "complexity": [ + 93 + ], + "concepts": [ + 98, + 119 + ], + "convexity": [ + 100 + ], + "stability;": [ + 102 + ], + "important": [ + 103 + ], + "including": [ + 106 + ], + "stochastic": [ + 107 + ], + "gradient": [ + 108 + ], + "descent,": [ + 109 + ], + "neural": [ + 110 + ], + "networks,": [ + 111 + ], + "structured": [ + 113 + ], + "output": [ + 114 + ], + "learning;": [ + 115 + ], + "emerging": [ + 117 + ], + "such": [ + 120 + ], + "as": [ + 121 + ], + "PAC-Bayes": [ + 123 + ], + "approach": [ + 124 + ], + "compression-based": [ + 126 + ], + "bounds.": [ + 127 + ], + "Designed": [ + 128 + ], + "for": [ + 129 + ], + "advanced": [ + 131 + ], + "undergraduate": [ + 132 + ], + "or": [ + 133 + ], + "beginning": [ + 134 + ], + "graduate": [ + 135 + ], + "course,": [ + 136 + ], + "text": [ + 138 + ], + "makes": [ + 139 + ], + "fundamentals": [ + 141 + ], + "algorithms": [ + 143 + ], + "accessible": [ + 147 + ], + "students": [ + 149 + ], + "non-expert": [ + 151 + ], + "readers": [ + 152 + ], + "statistics,": [ + 154 + ], + "mathematics,": [ + 157 + ], + "engineering.": [ + 159 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 80 + }, + { + "year": 2024, + "cited_by_count": 167 + }, + { + "year": 2023, + "cited_by_count": 278 + }, + { + "year": 2022, + "cited_by_count": 265 + }, + { + "year": 2021, + "cited_by_count": 621 + }, + { + "year": 2020, + "cited_by_count": 630 + }, + { + "year": 2019, + "cited_by_count": 453 + }, + { + "year": 2018, + "cited_by_count": 267 + }, + { + "year": 2017, + "cited_by_count": 152 + }, + { + "year": 2016, + "cited_by_count": 110 + }, + { + "year": 2015, + "cited_by_count": 46 + }, + { + "year": 2014, + "cited_by_count": 13 + }, + { + "year": 2013, + "cited_by_count": 3 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2115252128", + "doi": "https://doi.org/10.5555/1577069.1755843", + "title": "Dlib-ml: A Machine Learning Toolkit", + "display_name": "Dlib-ml: A Machine Learning Toolkit", + "relevance_score": 3735.6973, + "publication_year": 2009, + "publication_date": "2009-12-01", + "ids": { + "openalex": "https://openalex.org/W2115252128", + "doi": "https://doi.org/10.5555/1577069.1755843", + "mag": "2115252128" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.156.3584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.156.3584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.jmlr.org/papers/volume10/king09a/king09a.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5055606271", + "display_name": "Davis E. King", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Davis E. King", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5055606271" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 4.9979, + "has_fulltext": false, + "cited_by_count": 2921, + "citation_normalized_percentile": { + "value": 0.95441293, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "10", + "issue": "60", + "first_page": "1755", + "last_page": "1758" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.9950000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.9950000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11447", + "display_name": "Blind Source Separation Techniques", + "score": 0.9936000108718872, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9926000237464905, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8153140544891357 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.7605270147323608 + }, + { + "id": "https://openalex.org/keywords/debugging", + "display_name": "Debugging", + "score": 0.6248811483383179 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6037954092025757 + }, + { + "id": "https://openalex.org/keywords/cluster-analysis", + "display_name": "Cluster analysis", + "score": 0.553378701210022 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.4825972318649292 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.4804627299308777 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4792616367340088 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.46823209524154663 + }, + { + "id": "https://openalex.org/keywords/documentation", + "display_name": "Documentation", + "score": 0.4525264799594879 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.4523027539253235 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3667660355567932 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8153140544891357 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.7605270147323608 + }, + { + "id": "https://openalex.org/C168065819", + "wikidata": "https://www.wikidata.org/wiki/Q845566", + "display_name": "Debugging", + "level": 2, + "score": 0.6248811483383179 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6037954092025757 + }, + { + "id": "https://openalex.org/C73555534", + "wikidata": "https://www.wikidata.org/wiki/Q622825", + "display_name": "Cluster analysis", + "level": 2, + "score": 0.553378701210022 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.4825972318649292 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.4804627299308777 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4792616367340088 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.46823209524154663 + }, + { + "id": "https://openalex.org/C56666940", + "wikidata": "https://www.wikidata.org/wiki/Q788790", + "display_name": "Documentation", + "level": 2, + "score": 0.4525264799594879 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.4523027539253235 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3667660355567932 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.156.3584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.156.3584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.jmlr.org/papers/volume10/king09a/king09a.pdf", + "raw_type": "text" + }, + { + "id": "mag:2115252128", + "is_oa": false, + "landing_page_url": "https://jmlr.csail.mit.edu/papers/volume10/king09a/king09a.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "score": 0.5400000214576721, + "id": "https://metadata.un.org/sdg/9" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 9, + "referenced_works": [ + "https://openalex.org/W1486089539", + "https://openalex.org/W1494068061", + "https://openalex.org/W1618905105", + "https://openalex.org/W1633751774", + "https://openalex.org/W2125993116", + "https://openalex.org/W2142623206", + "https://openalex.org/W2153290280", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154462399" + ], + "related_works": [ + "https://openalex.org/W3101998545", + "https://openalex.org/W3099206234", + "https://openalex.org/W3097096317", + "https://openalex.org/W2964121744", + "https://openalex.org/W2963073614", + "https://openalex.org/W2325939864", + "https://openalex.org/W2301937176", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2161969291", + "https://openalex.org/W2145287260", + "https://openalex.org/W2108598243", + "https://openalex.org/W2103943262", + "https://openalex.org/W2099471712", + "https://openalex.org/W2097117768", + "https://openalex.org/W2087681821", + "https://openalex.org/W1901129140", + "https://openalex.org/W1834627138", + "https://openalex.org/W1782590233", + "https://openalex.org/W1686810756" + ], + "abstract_inverted_index": { + "There": [ + 0 + ], + "are": [ + 1 + ], + "many": [ + 2 + ], + "excellent": [ + 3 + ], + "toolkits": [ + 4 + ], + "which": [ + 5, + 33, + 105 + ], + "provide": [ + 6, + 36 + ], + "support": [ + 7 + ], + "for": [ + 8, + 41, + 71, + 80 + ], + "developing": [ + 9, + 42 + ], + "machine": [ + 10, + 43 + ], + "learning": [ + 11, + 44 + ], + "software": [ + 12, + 45 + ], + "in": [ + 13, + 46, + 62, + 74 + ], + "Python,": [ + 14 + ], + "R,": [ + 15 + ], + "Matlab,": [ + 16 + ], + "and": [ + 17, + 30, + 77, + 86, + 108 + ], + "similar": [ + 18 + ], + "environments.": [ + 19 + ], + "Dlib-ml": [ + 20 + ], + "is": [ + 21 + ], + "an": [ + 22, + 55 + ], + "open": [ + 23 + ], + "source": [ + 24 + ], + "library,": [ + 25 + ], + "targeted": [ + 26 + ], + "at": [ + 27 + ], + "both": [ + 28 + ], + "engineers": [ + 29 + ], + "research": [ + 31 + ], + "scientists,": [ + 32 + ], + "aims": [ + 34 + ], + "to": [ + 35 + ], + "a": [ + 37 + ], + "similarly": [ + 38 + ], + "rich": [ + 39 + ], + "environment": [ + 40 + ], + "the": [ + 47, + 96 + ], + "C++": [ + 48 + ], + "language.": [ + 49 + ], + "Towards": [ + 50 + ], + "this": [ + 51 + ], + "end,": [ + 52 + ], + "dlib-ml": [ + 53 + ], + "contains": [ + 54 + ], + "extensible": [ + 56 + ], + "linear": [ + 57 + ], + "algebra": [ + 58 + ], + "toolkit": [ + 59 + ], + "with": [ + 60, + 102 + ], + "built": [ + 61 + ], + "BLAS": [ + 63 + ], + "support.": [ + 64 + ], + "It": [ + 65 + ], + "also": [ + 66 + ], + "houses": [ + 67 + ], + "implementations": [ + 68 + ], + "of": [ + 69, + 93 + ], + "algorithms": [ + 70 + ], + "performing": [ + 72 + ], + "inference": [ + 73 + ], + "Bayesian": [ + 75, + 124 + ], + "networks": [ + 76, + 125 + ], + "kernel-based": [ + 78 + ], + "methods": [ + 79 + ], + "classification,": [ + 81 + ], + "regression,": [ + 82 + ], + "clustering,": [ + 83, + 122 + ], + "anomaly": [ + 84 + ], + "detection,": [ + 85 + ], + "feature": [ + 87 + ], + "ranking.": [ + 88 + ], + "To": [ + 89 + ], + "enable": [ + 90 + ], + "easy": [ + 91 + ], + "use": [ + 92 + ], + "these": [ + 94 + ], + "tools,": [ + 95 + ], + "entire": [ + 97 + ], + "library": [ + 98 + ], + "has": [ + 99 + ], + "been": [ + 100 + ], + "developed": [ + 101 + ], + "contract": [ + 103 + ], + "programming,": [ + 104 + ], + "provides": [ + 106 + ], + "complete": [ + 107 + ], + "precise": [ + 109 + ], + "documentation": [ + 110 + ], + "as": [ + 111, + 113 + ], + "well": [ + 112 + ], + "powerful": [ + 114 + ], + "debugging": [ + 115 + ], + "tools.": [ + 116 + ], + "Keywords:": [ + 117 + ], + "kernel-methods,": [ + 118 + ], + "svm,": [ + 119 + ], + "rvm,": [ + 120 + ], + "kernel": [ + 121 + ], + "C++,": [ + 123 + ], + "1.": [ + 126 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 74 + }, + { + "year": 2024, + "cited_by_count": 194 + }, + { + "year": 2023, + "cited_by_count": 292 + }, + { + "year": 2022, + "cited_by_count": 336 + }, + { + "year": 2021, + "cited_by_count": 479 + }, + { + "year": 2020, + "cited_by_count": 446 + }, + { + "year": 2019, + "cited_by_count": 400 + }, + { + "year": 2018, + "cited_by_count": 319 + }, + { + "year": 2017, + "cited_by_count": 190 + }, + { + "year": 2016, + "cited_by_count": 113 + }, + { + "year": 2015, + "cited_by_count": 44 + }, + { + "year": 2014, + "cited_by_count": 14 + }, + { + "year": 2013, + "cited_by_count": 5 + }, + { + "year": 2012, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-08T15:41:06.802602", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4400134761", + "doi": "https://doi.org/10.21275/art20203995", + "title": "Machine Learning Algorithms - A Review", + "display_name": "Machine Learning Algorithms - A Review", + "relevance_score": 3665.777, + "publication_year": 2020, + "publication_date": "2020-01-05", + "ids": { + "openalex": "https://openalex.org/W4400134761", + "doi": "https://doi.org/10.21275/art20203995" + }, + "language": "en", + "primary_location": { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "diamond", + "oa_url": "https://doi.org/10.21275/art20203995", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5113270062", + "display_name": "Batta Mahesh", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Batta Mahesh", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5113270062" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 300.9528, + "has_fulltext": false, + "cited_by_count": 2453, + "citation_normalized_percentile": { + "value": 0.99993518, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "9", + "issue": "1", + "first_page": "381", + "last_page": "386" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.19280000030994415, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.19280000030994415, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5793123245239258 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.46341603994369507 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.44169795513153076 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4307257831096649 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5793123245239258 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.46341603994369507 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.44169795513153076 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4307257831096649 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W4400134761.pdf" + }, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W328766226", + "https://openalex.org/W1549998098", + "https://openalex.org/W2040895929", + "https://openalex.org/W2091005538", + "https://openalex.org/W2223344998", + "https://openalex.org/W4236558809" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 61, + 93, + 125 + ], + "(ML)": [ + 2 + ], + "is": [ + 3, + 44, + 58, + 94 + ], + "the": [ + 4, + 48, + 52, + 120 + ], + "scientific": [ + 5 + ], + "study": [ + 6 + ], + "of": [ + 7, + 34, + 51, + 90, + 119, + 123 + ], + "algorithms": [ + 8, + 26, + 70, + 126 + ], + "and": [ + 9, + 116 + ], + "statistical": [ + 10 + ], + "models": [ + 11 + ], + "that": [ + 12, + 54 + ], + "computer": [ + 13 + ], + "systems": [ + 14 + ], + "use": [ + 15, + 33 + ], + "to": [ + 16, + 46, + 66, + 84, + 101 + ], + "perform": [ + 17 + ], + "a": [ + 18, + 38, + 60, + 86, + 113 + ], + "specific": [ + 19 + ], + "task": [ + 20 + ], + "without": [ + 21 + ], + "being": [ + 22 + ], + "explicitly": [ + 23 + ], + "programmed.": [ + 24 + ], + "Learning": [ + 25 + ], + "in": [ + 27 + ], + "many": [ + 28 + ], + "applications": [ + 29, + 122 + ], + "that's": [ + 30 + ], + "we": [ + 31 + ], + "make": [ + 32 + ], + "daily.": [ + 35 + ], + "Every": [ + 36 + ], + "time": [ + 37 + ], + "web": [ + 39, + 68 + ], + "search": [ + 40, + 47 + ], + "engine": [ + 41 + ], + "like": [ + 42, + 76 + ], + "Google": [ + 43 + ], + "used": [ + 45, + 72 + ], + "internet,": [ + 49 + ], + "one": [ + 50 + ], + "reasons": [ + 53 + ], + "work": [ + 55, + 109 + ], + "so": [ + 56 + ], + "well": [ + 57 + ], + "because": [ + 59 + ], + "algorithm": [ + 62, + 98 + ], + "thathas": [ + 63 + ], + "learned": [ + 64 + ], + "how": [ + 65 + ], + "rank": [ + 67 + ], + "pages.These": [ + 69 + ], + "are": [ + 71 + ], + "for": [ + 73 + ], + "various": [ + 74 + ], + "purposes": [ + 75 + ], + "data": [ + 77 + ], + "mining,": [ + 78 + ], + "image": [ + 79 + ], + "processing,": [ + 80 + ], + "predictive": [ + 81 + ], + "analytics,": [ + 82 + ], + "etc.": [ + 83 + ], + "name": [ + 85 + ], + "few.The": [ + 87 + ], + "main": [ + 88 + ], + "advantage": [ + 89 + ], + "using": [ + 91 + ], + "machine": [ + 92, + 124 + ], + "that,": [ + 95 + ], + "once": [ + 96 + ], + "an": [ + 97 + ], + "learns": [ + 99 + ], + "what": [ + 100 + ], + "do": [ + 102, + 107 + ], + "with": [ + 103 + ], + "data,": [ + 104 + ], + "it": [ + 105 + ], + "can": [ + 106 + ], + "its": [ + 108 + ], + "automatically.In": [ + 110 + ], + "this": [ + 111 + ], + "paper,": [ + 112 + ], + "brief": [ + 114 + ], + "review": [ + 115 + ], + "future": [ + 117 + ], + "prospect": [ + 118 + ], + "vast": [ + 121 + ], + "has": [ + 127 + ], + "been": [ + 128 + ], + "made.": [ + 129 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 103 + }, + { + "year": 2025, + "cited_by_count": 646 + }, + { + "year": 2024, + "cited_by_count": 720 + }, + { + "year": 2023, + "cited_by_count": 608 + }, + { + "year": 2022, + "cited_by_count": 271 + }, + { + "year": 2021, + "cited_by_count": 68 + }, + { + "year": 2020, + "cited_by_count": 27 + }, + { + "year": 2019, + "cited_by_count": 7 + }, + { + "year": 2018, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2161336914", + "doi": "https://doi.org/10.1145/2347736.2347755", + "title": "A few useful things to know about machine learning", + "display_name": "A few useful things to know about machine learning", + "relevance_score": 3658.7053, + "publication_year": 2012, + "publication_date": "2012-09-25", + "ids": { + "openalex": "https://openalex.org/W2161336914", + "doi": "https://doi.org/10.1145/2347736.2347755", + "mag": "2161336914" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/2347736.2347755", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2347736.2347755", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5018711331", + "display_name": "Pedro Domingos", + "orcid": "https://orcid.org/0000-0003-4523-5631" + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + }, + { + "id": "https://openalex.org/I58610484", + "display_name": "Seattle University", + "ror": "https://ror.org/02jqc0m91", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I58610484" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Pedro Domingos", + "raw_affiliation_strings": [ + "University of Washington, Seattle" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Washington, Seattle", + "institution_ids": [ + "https://openalex.org/I58610484", + "https://openalex.org/I201448701" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5018711331" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I201448701", + "https://openalex.org/I58610484" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 103.0331, + "has_fulltext": false, + "cited_by_count": 3232, + "citation_normalized_percentile": { + "value": 0.99977527, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "55", + "issue": "10", + "first_page": "78", + "last_page": "87" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9976000189781189, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9976000189781189, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11303", + "display_name": "Bayesian Modeling and Causal Inference", + "score": 0.9958000183105469, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6615294218063354 + }, + { + "id": "https://openalex.org/keywords/need-to-know", + "display_name": "Need to know", + "score": 0.5620318651199341 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43639615178108215 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.35491612553596497 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.22050878405570984 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6615294218063354 + }, + { + "id": "https://openalex.org/C2778519782", + "wikidata": "https://www.wikidata.org/wiki/Q1974060", + "display_name": "Need to know", + "level": 2, + "score": 0.5620318651199341 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43639615178108215 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.35491612553596497 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.22050878405570984 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1145/2347736.2347755", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2347736.2347755", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.353.7232", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.353.7232", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://homes.cs.washington.edu/~pedrod/papers/cacm12.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.3497", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.3497", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://pantherfile.uwm.edu/borji/www/lecturesML/Reviews/cacm12.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.85", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.85", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://haralick.org/ML/useful_things_about_machine_learning.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.47999998927116394, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 31, + "referenced_works": [ + "https://openalex.org/W1486658274", + "https://openalex.org/W1494137514", + "https://openalex.org/W1504694836", + "https://openalex.org/W1521062204", + "https://openalex.org/W1570448133", + "https://openalex.org/W1583837637", + "https://openalex.org/W1585009072", + "https://openalex.org/W1761022139", + "https://openalex.org/W1977970897", + "https://openalex.org/W2001141328", + "https://openalex.org/W2039683780", + "https://openalex.org/W2063961549", + "https://openalex.org/W2070902649", + "https://openalex.org/W2072128103", + "https://openalex.org/W2089624555", + "https://openalex.org/W2100483895", + "https://openalex.org/W2110065044", + "https://openalex.org/W2110228583", + "https://openalex.org/W2125055259", + "https://openalex.org/W2140785063", + "https://openalex.org/W2143891888", + "https://openalex.org/W2152761983", + "https://openalex.org/W2156909104", + "https://openalex.org/W2400138769", + "https://openalex.org/W2966207845", + "https://openalex.org/W3133236490", + "https://openalex.org/W3135029803", + "https://openalex.org/W4231109964", + "https://openalex.org/W4232632925", + "https://openalex.org/W4299515571", + "https://openalex.org/W6791387550" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W4286629047", + "https://openalex.org/W4306321456", + "https://openalex.org/W4285260836", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4205958290", + "https://openalex.org/W3209574120" + ], + "abstract_inverted_index": { + "Tapping": [ + 0 + ], + "into": [ + 1 + ], + "the": [ + 2 + ], + "\"folk": [ + 3 + ], + "knowledge\"": [ + 4 + ], + "needed": [ + 5 + ], + "to": [ + 6 + ], + "advance": [ + 7 + ], + "machine": [ + 8 + ], + "learning": [ + 9 + ], + "applications.": [ + 10 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 111 + }, + { + "year": 2025, + "cited_by_count": 349 + }, + { + "year": 2024, + "cited_by_count": 298 + }, + { + "year": 2023, + "cited_by_count": 268 + }, + { + "year": 2022, + "cited_by_count": 283 + }, + { + "year": 2021, + "cited_by_count": 310 + }, + { + "year": 2020, + "cited_by_count": 391 + }, + { + "year": 2019, + "cited_by_count": 326 + }, + { + "year": 2018, + "cited_by_count": 261 + }, + { + "year": 2017, + "cited_by_count": 248 + }, + { + "year": 2016, + "cited_by_count": 153 + }, + { + "year": 2015, + "cited_by_count": 106 + }, + { + "year": 2014, + "cited_by_count": 80 + }, + { + "year": 2013, + "cited_by_count": 45 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2151591509", + "doi": "https://doi.org/10.3389/fninf.2014.00014", + "title": "Machine learning for neuroimaging with scikit-learn", + "display_name": "Machine learning for neuroimaging with scikit-learn", + "relevance_score": 3625.0486, + "publication_year": 2014, + "publication_date": "2014-01-01", + "ids": { + "openalex": "https://openalex.org/W2151591509", + "doi": "https://doi.org/10.3389/fninf.2014.00014", + "mag": "2151591509", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/24600388" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5033483167", + "display_name": "Alexandre Abraham", + "orcid": "https://orcid.org/0000-0003-3693-0560" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": true, + "raw_author_name": "Alexandre Abraham", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108143968", + "display_name": "Fabian Pedregosa", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Fabian Pedregosa", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5065146930", + "display_name": "Michael Eickenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Michael Eickenberg", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5001112573", + "display_name": "Philippe Gervais", + "orcid": "https://orcid.org/0000-0003-2172-879X" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Philippe Gervais", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088500114", + "display_name": "Andreas Mueller", + "orcid": "https://orcid.org/0000-0002-2349-9428" + }, + "institutions": [ + { + "id": "https://openalex.org/I135140700", + "display_name": "University of Bonn", + "ror": "https://ror.org/041nas322", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I135140700" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Andreas Mueller", + "raw_affiliation_strings": [ + "Institute of Computer Science VI, University of Bonn Bonn, Germany", + "Institute of Computer Science VI, University of Bonn, Bonn, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute of Computer Science VI, University of Bonn Bonn, Germany", + "institution_ids": [ + "https://openalex.org/I135140700" + ] + }, + { + "raw_affiliation_string": "Institute of Computer Science VI, University of Bonn, Bonn, Germany", + "institution_ids": [ + "https://openalex.org/I135140700" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006048318", + "display_name": "Jean Kossaifi", + "orcid": "https://orcid.org/0000-0002-4445-3429" + }, + "institutions": [ + { + "id": "https://openalex.org/I47508984", + "display_name": "Imperial College London", + "ror": "https://ror.org/041kmwe10", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I47508984" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Jean Kossaifi", + "raw_affiliation_strings": [ + "Department of Computing, Imperial College London London, UK", + "Department of Computing, Imperial College London, London, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computing, Imperial College London London, UK", + "institution_ids": [ + "https://openalex.org/I47508984" + ] + }, + { + "raw_affiliation_string": "Department of Computing, Imperial College London, London, UK", + "institution_ids": [ + "https://openalex.org/I47508984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018256474", + "display_name": "Alexandre Gramfort", + "orcid": "https://orcid.org/0000-0001-9791-4404" + }, + "institutions": [ + { + "id": "https://openalex.org/I12356871", + "display_name": "Télécom Paris", + "ror": "https://ror.org/01naq7912", + "country_code": "FR", + "type": "education", + "lineage": [ + "https://openalex.org/I12356871", + "https://openalex.org/I205703379", + "https://openalex.org/I4210145102" + ] + }, + { + "id": "https://openalex.org/I1294671590", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1294671590" + ] + }, + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I205703379", + "display_name": "Institut Mines-Télécom", + "ror": "https://ror.org/025vp2923", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I205703379" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + }, + { + "id": "https://openalex.org/I4210165912", + "display_name": "Laboratoire Traitement et Communication de l’Information", + "ror": "https://ror.org/057er4c39", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I12356871", + "https://openalex.org/I205703379", + "https://openalex.org/I4210145102", + "https://openalex.org/I4210165912" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Alexandre Gramfort", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France ; Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI Paris, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI, Paris, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France ; Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI Paris, France", + "institution_ids": [ + "https://openalex.org/I1294671590", + "https://openalex.org/I205703379", + "https://openalex.org/I4210128565", + "https://openalex.org/I4210165912", + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI, Paris, France", + "institution_ids": [ + "https://openalex.org/I205703379", + "https://openalex.org/I12356871", + "https://openalex.org/I4210165912", + "https://openalex.org/I1294671590" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026762833", + "display_name": "Bertrand Thirion", + "orcid": "https://orcid.org/0000-0001-5018-7895" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Bertrand Thirion", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5074733625", + "display_name": "Gaël Varoquaux", + "orcid": "https://orcid.org/0000-0003-1076-5122" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Gaël Varoquaux", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 9, + "corresponding_author_ids": [ + "https://openalex.org/A5033483167" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210126360", + "https://openalex.org/I4210128565" + ], + "apc_list": { + "value": 2950, + "currency": "USD", + "value_usd": 2950 + }, + "apc_paid": { + "value": 2950, + "currency": "USD", + "value_usd": 2950 + }, + "fwci": 22.8931, + "has_fulltext": true, + "cited_by_count": 2628, + "citation_normalized_percentile": { + "value": 0.99795549, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "8", + "issue": null, + "first_page": "14", + "last_page": "14" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10581", + "display_name": "Neural dynamics and brain function", + "score": 0.9987999796867371, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10378", + "display_name": "Advanced MRI Techniques and Applications", + "score": 0.9851999878883362, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/neuroimaging", + "display_name": "Neuroimaging", + "score": 0.8332920074462891 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6829519271850586 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6763078570365906 + }, + { + "id": "https://openalex.org/keywords/unsupervised-learning", + "display_name": "Unsupervised learning", + "score": 0.633687436580658 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6015421152114868 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.5471705794334412 + }, + { + "id": "https://openalex.org/keywords/functional-neuroimaging", + "display_name": "Functional neuroimaging", + "score": 0.5229871273040771 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.40410205721855164 + }, + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.1943330466747284 + }, + { + "id": "https://openalex.org/keywords/neuroscience", + "display_name": "Neuroscience", + "score": 0.13872376084327698 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C58693492", + "wikidata": "https://www.wikidata.org/wiki/Q551875", + "display_name": "Neuroimaging", + "level": 2, + "score": 0.8332920074462891 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6829519271850586 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6763078570365906 + }, + { + "id": "https://openalex.org/C8038995", + "wikidata": "https://www.wikidata.org/wiki/Q1152135", + "display_name": "Unsupervised learning", + "level": 2, + "score": 0.633687436580658 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6015421152114868 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.5471705794334412 + }, + { + "id": "https://openalex.org/C52338299", + "wikidata": "https://www.wikidata.org/wiki/Q1004354", + "display_name": "Functional neuroimaging", + "level": 3, + "score": 0.5229871273040771 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.40410205721855164 + }, + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.1943330466747284 + }, + { + "id": "https://openalex.org/C169760540", + "wikidata": "https://www.wikidata.org/wiki/Q207011", + "display_name": "Neuroscience", + "level": 1, + "score": 0.13872376084327698 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + { + "id": "pmid:24600388", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/24600388", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in neuroinformatics", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:2202.11333", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/2202.11333", + "pdf_url": "https://arxiv.org/pdf/2202.11333", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-01093971v1", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-01093971", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Frontiers in Neuroscience, 2013, pp.15. ⟨10.3389/fninf.2014.00014⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:HAL:hal-03187887v3", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-03187887", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Neuroinformatics, 2022, ⟨10.3389/fninf.2014.00014⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:doaj.org/article:055de24a9c3540b6b3884081362be90d", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/055de24a9c3540b6b3884081362be90d", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Frontiers in Neuroinformatics, Vol 8 (2014)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:2928056", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/3930868", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.6600000262260437, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [ + { + "id": "https://openalex.org/G2501487254", + "display_name": null, + "funder_award_id": "R21 DA034954", + "funder_id": "https://openalex.org/F4320337347", + "funder_display_name": "National Institute on Drug Abuse" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320337347", + "display_name": "National Institute on Drug Abuse", + "ror": "https://ror.org/00fq5cm18" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 71, + "referenced_works": [ + "https://openalex.org/W758533152", + "https://openalex.org/W1480376833", + "https://openalex.org/W1528119265", + "https://openalex.org/W1548802052", + "https://openalex.org/W1569370144", + "https://openalex.org/W1571024744", + "https://openalex.org/W1906883763", + "https://openalex.org/W1970956440", + "https://openalex.org/W1974687978", + "https://openalex.org/W1985327120", + "https://openalex.org/W1988045490", + "https://openalex.org/W1996510233", + "https://openalex.org/W2001399171", + "https://openalex.org/W2006096283", + "https://openalex.org/W2007581301", + "https://openalex.org/W2009494091", + "https://openalex.org/W2011301426", + "https://openalex.org/W2011650426", + "https://openalex.org/W2023633168", + "https://openalex.org/W2024933578", + "https://openalex.org/W2040305148", + "https://openalex.org/W2040566369", + "https://openalex.org/W2040974372", + "https://openalex.org/W2048476135", + "https://openalex.org/W2048631316", + "https://openalex.org/W2052451171", + "https://openalex.org/W2056465968", + "https://openalex.org/W2060259639", + "https://openalex.org/W2063951486", + "https://openalex.org/W2063978378", + "https://openalex.org/W2073683361", + "https://openalex.org/W2077745487", + "https://openalex.org/W2079450984", + "https://openalex.org/W2079785597", + "https://openalex.org/W2089632738", + "https://openalex.org/W2096230777", + "https://openalex.org/W2097267381", + "https://openalex.org/W2097850441", + "https://openalex.org/W2101234009", + "https://openalex.org/W2102729564", + "https://openalex.org/W2113619522", + "https://openalex.org/W2116328702", + "https://openalex.org/W2117621792", + "https://openalex.org/W2122457251", + "https://openalex.org/W2123649031", + "https://openalex.org/W2133990480", + "https://openalex.org/W2134585061", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137966626", + "https://openalex.org/W2140255740", + "https://openalex.org/W2140587192", + "https://openalex.org/W2145217719", + "https://openalex.org/W2145487185", + "https://openalex.org/W2146292423", + "https://openalex.org/W2148601705", + "https://openalex.org/W2151130155", + "https://openalex.org/W2151286458", + "https://openalex.org/W2151591509", + "https://openalex.org/W2158485497", + "https://openalex.org/W2164025570", + "https://openalex.org/W2179752489", + "https://openalex.org/W2240767875", + "https://openalex.org/W2540277519", + "https://openalex.org/W2752197104", + "https://openalex.org/W2810031488", + "https://openalex.org/W3132053208", + "https://openalex.org/W4206031975", + "https://openalex.org/W6633893416", + "https://openalex.org/W6675354045", + "https://openalex.org/W6959406008", + "https://openalex.org/W7074038129" + ], + "related_works": [ + "https://openalex.org/W2506266834", + "https://openalex.org/W2499037785", + "https://openalex.org/W2028174874", + "https://openalex.org/W2351278828", + "https://openalex.org/W4308957544", + "https://openalex.org/W2239282469", + "https://openalex.org/W67648935", + "https://openalex.org/W1993895507", + "https://openalex.org/W2122202779", + "https://openalex.org/W1995600417" + ], + "abstract_inverted_index": { + "Statistical": [ + 0 + ], + "machine": [ + 1, + 84 + ], + "learning": [ + 2, + 32, + 52, + 85, + 104 + ], + "methods": [ + 3 + ], + "are": [ + 4 + ], + "increasingly": [ + 5 + ], + "used": [ + 6, + 35, + 89 + ], + "for": [ + 7 + ], + "neuroimaging": [ + 8, + 76, + 114 + ], + "data": [ + 9, + 115 + ], + "analysis.": [ + 10 + ], + "Their": [ + 11 + ], + "main": [ + 12 + ], + "virtue": [ + 13 + ], + "is": [ + 14, + 33 + ], + "their": [ + 15 + ], + "ability": [ + 16 + ], + "to": [ + 17, + 41, + 45, + 90, + 113, + 120 + ], + "model": [ + 18 + ], + "high-dimensional": [ + 19 + ], + "datasets,": [ + 20 + ], + "e.g.,": [ + 21 + ], + "multivariate": [ + 22 + ], + "analysis": [ + 23, + 94 + ], + "of": [ + 24, + 59, + 102 + ], + "activation": [ + 25 + ], + "images": [ + 26, + 44, + 60 + ], + "or": [ + 27, + 38, + 47, + 66 + ], + "resting-state": [ + 28 + ], + "time": [ + 29 + ], + "series.": [ + 30 + ], + "Supervised": [ + 31 + ], + "typically": [ + 34 + ], + "in": [ + 36, + 57, + 69 + ], + "decoding": [ + 37 + ], + "encoding": [ + 39 + ], + "settings": [ + 40 + ], + "relate": [ + 42 + ], + "brain": [ + 43 + ], + "behavioral": [ + 46 + ], + "clinical": [ + 48 + ], + "observations,": [ + 49 + ], + "while": [ + 50 + ], + "unsupervised": [ + 51 + ], + "can": [ + 53, + 87 + ], + "uncover": [ + 54 + ], + "hidden": [ + 55 + ], + "structures": [ + 56 + ], + "sets": [ + 58 + ], + "(e.g.,": [ + 61 + ], + "resting": [ + 62 + ], + "state": [ + 63 + ], + "functional": [ + 64, + 75 + ], + "MRI)": [ + 65 + ], + "find": [ + 67 + ], + "sub-populations": [ + 68 + ], + "large": [ + 70, + 100 + ], + "cohorts.": [ + 71 + ], + "By": [ + 72 + ], + "considering": [ + 73 + ], + "different": [ + 74 + ], + "applications,": [ + 77 + ], + "we": [ + 78 + ], + "illustrate": [ + 79 + ], + "how": [ + 80 + ], + "scikit-learn,": [ + 81 + ], + "a": [ + 82, + 98, + 117 + ], + "Python": [ + 83 + ], + "library,": [ + 86 + ], + "be": [ + 88 + ], + "perform": [ + 91 + ], + "some": [ + 92 + ], + "key": [ + 93 + ], + "steps.": [ + 95 + ], + "Scikit-learn": [ + 96 + ], + "contains": [ + 97 + ], + "very": [ + 99 + ], + "set": [ + 101 + ], + "statistical": [ + 103 + ], + "algorithms,": [ + 105 + ], + "both": [ + 106 + ], + "supervised": [ + 107 + ], + "and": [ + 108, + 110 + ], + "unsupervised,": [ + 109 + ], + "its": [ + 111 + ], + "application": [ + 112 + ], + "provides": [ + 116 + ], + "versatile": [ + 118 + ], + "tool": [ + 119 + ], + "study": [ + 121 + ], + "the": [ + 122 + ], + "brain.": [ + 123 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 129 + }, + { + "year": 2025, + "cited_by_count": 383 + }, + { + "year": 2024, + "cited_by_count": 443 + }, + { + "year": 2023, + "cited_by_count": 381 + }, + { + "year": 2022, + "cited_by_count": 338 + }, + { + "year": 2021, + "cited_by_count": 320 + }, + { + "year": 2020, + "cited_by_count": 244 + }, + { + "year": 2019, + "cited_by_count": 151 + }, + { + "year": 2018, + "cited_by_count": 92 + }, + { + "year": 2017, + "cited_by_count": 61 + }, + { + "year": 2016, + "cited_by_count": 43 + }, + { + "year": 2015, + "cited_by_count": 29 + }, + { + "year": 2014, + "cited_by_count": 12 + }, + { + "year": 2013, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2973119841", + "doi": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "title": "Machine Learning for Fluid Mechanics", + "display_name": "Machine Learning for Fluid Mechanics", + "relevance_score": 3608.3281, + "publication_year": 2019, + "publication_date": "2019-09-12", + "ids": { + "openalex": "https://openalex.org/W2973119841", + "doi": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "mag": "2973119841" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1146/annurev-fluid-010719-060214", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S169493037", + "display_name": "Annual Review of Fluid Mechanics", + "issn_l": "0066-4189", + "issn": [ + "0066-4189", + "1545-4479" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320373", + "host_organization_name": "Annual Reviews", + "host_organization_lineage": [ + "https://openalex.org/P4310320373" + ], + "host_organization_lineage_names": [ + "Annual Reviews" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Annual Review of Fluid Mechanics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1905.11075", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Steven L. Brunton", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Steven L. Brunton", + "raw_affiliation_strings": [ + "Department of Mechanical Engineering, University of Washington, Seattle, Washington 98195, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Mechanical Engineering, University of Washington, Seattle, Washington 98195, USA", + "institution_ids": [ + "https://openalex.org/I201448701" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Bernd R. Noack", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1294671590", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1294671590" + ] + }, + { + "id": "https://openalex.org/I277688954", + "display_name": "Université Paris-Saclay", + "ror": "https://ror.org/03xjwb503", + "country_code": "FR", + "type": "education", + "lineage": [ + "https://openalex.org/I277688954" + ] + }, + { + "id": "https://openalex.org/I4210115485", + "display_name": "Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur", + "ror": "https://ror.org/01raq4x89", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I102197404", + "https://openalex.org/I1294671590", + "https://openalex.org/I4210115485", + "https://openalex.org/I4210159245" + ] + }, + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + } + ], + "countries": [ + "DE", + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Bernd R. Noack", + "raw_affiliation_strings": [ + "Institut für Strömungsmechanik und Technische Akustik, Technische Universität Berlin, D-10634 Berlin, Germany", + "LIMSI (Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur), CNRS UPR 3251, Université Paris-Saclay, F-91403 Orsay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut für Strömungsmechanik und Technische Akustik, Technische Universität Berlin, D-10634 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "LIMSI (Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur), CNRS UPR 3251, Université Paris-Saclay, F-91403 Orsay, France", + "institution_ids": [ + "https://openalex.org/I277688954", + "https://openalex.org/I4210115485", + "https://openalex.org/I1294671590" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Petros Koumoutsakos", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I35440088", + "display_name": "ETH Zurich", + "ror": "https://ror.org/05a28rw58", + "country_code": "CH", + "type": "education", + "lineage": [ + "https://openalex.org/I2799323385", + "https://openalex.org/I35440088" + ] + } + ], + "countries": [ + "CH" + ], + "is_corresponding": false, + "raw_author_name": "Petros Koumoutsakos", + "raw_affiliation_strings": [ + "Computational Science and Engineering Laboratory, ETH Zurich, CH-8092 Zurich, Switzerland;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Computational Science and Engineering Laboratory, ETH Zurich, CH-8092 Zurich, Switzerland;", + "institution_ids": [ + "https://openalex.org/I35440088" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 4, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I201448701" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 117.0585, + "has_fulltext": true, + "cited_by_count": 2557, + "citation_normalized_percentile": { + "value": 0.99990047, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "52", + "issue": "1", + "first_page": "477", + "last_page": "508" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11206", + "display_name": "Model Reduction and Neural Networks", + "score": 0.9092000126838684, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11206", + "display_name": "Model Reduction and Neural Networks", + "score": 0.9092000126838684, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10775", + "display_name": "Generative Adversarial Networks and Image Synthesis", + "score": 0.01759999990463257, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.012000000104308128, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/fluid-mechanics", + "display_name": "Fluid mechanics", + "score": 0.7289000153541565 + }, + { + "id": "https://openalex.org/keywords/current", + "display_name": "Current (fluid)", + "score": 0.5666999816894531 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5497000217437744 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5285000205039978 + }, + { + "id": "https://openalex.org/keywords/fluid-dynamics", + "display_name": "Fluid dynamics", + "score": 0.5188999772071838 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.4918000102043152 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C43133876", + "wikidata": "https://www.wikidata.org/wiki/Q172145", + "display_name": "Fluid mechanics", + "level": 2, + "score": 0.7289000153541565 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7146999835968018 + }, + { + "id": "https://openalex.org/C148043351", + "wikidata": "https://www.wikidata.org/wiki/Q4456944", + "display_name": "Current (fluid)", + "level": 2, + "score": 0.5666999816894531 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5497000217437744 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5285000205039978 + }, + { + "id": "https://openalex.org/C90278072", + "wikidata": "https://www.wikidata.org/wiki/Q216320", + "display_name": "Fluid dynamics", + "level": 2, + "score": 0.5188999772071838 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5113000273704529 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.4918000102043152 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.43700000643730164 + }, + { + "id": "https://openalex.org/C207685749", + "wikidata": "https://www.wikidata.org/wiki/Q2088941", + "display_name": "Domain knowledge", + "level": 2, + "score": 0.38100001215934753 + }, + { + "id": "https://openalex.org/C38349280", + "wikidata": "https://www.wikidata.org/wiki/Q1434290", + "display_name": "Flow (mathematics)", + "level": 2, + "score": 0.3517000079154968 + }, + { + "id": "https://openalex.org/C99874945", + "wikidata": "https://www.wikidata.org/wiki/Q188715", + "display_name": "Statistical mechanics", + "level": 2, + "score": 0.2985999882221222 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.2874999940395355 + }, + { + "id": "https://openalex.org/C2984161354", + "wikidata": "https://www.wikidata.org/wiki/Q216320", + "display_name": "Fluid motion", + "level": 2, + "score": 0.2538999915122986 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1146/annurev-fluid-010719-060214", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S169493037", + "display_name": "Annual Review of Fluid Mechanics", + "issn_l": "0066-4189", + "issn": [ + "0066-4189", + "1545-4479" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320373", + "host_organization_name": "Annual Reviews", + "host_organization_lineage": [ + "https://openalex.org/P4310320373" + ], + "host_organization_lineage_names": [ + "Annual Reviews" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Annual Review of Fluid Mechanics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1905.11075", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1905.11075", + "pdf_url": "https://arxiv.org/pdf/1905.11075", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-02398670v1", + "is_oa": false, + "landing_page_url": "https://hal.science/hal-02398670", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annual Review of Fluid Mechanics, 2020, 52 (1), pp.477-508. ⟨10.1146/annurev-fluid-010719-060214⟩", + "raw_type": "Journal articles" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1905.11075", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1905.11075", + "pdf_url": "https://arxiv.org/pdf/1905.11075", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G1483361726", + "display_name": null, + "funder_award_id": "W911NF-17-1-0422", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G1523888516", + "display_name": null, + "funder_award_id": "FA9550-", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G3655914848", + "display_name": null, + "funder_award_id": "W911NF-17-1-0306", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G4205652870", + "display_name": null, + "funder_award_id": "W911NF-17-1-0422", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G5809100787", + "display_name": null, + "funder_award_id": "FA9550", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G7042399192", + "display_name": null, + "funder_award_id": "AFOSR FA9550-18-1-0200", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G7452299184", + "display_name": null, + "funder_award_id": "W911NF", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G8202574490", + "display_name": null, + "funder_award_id": "FA9550-18-1-0200", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G8249314747", + "display_name": null, + "funder_award_id": "ARO W911NF-17-1-0306", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320322892", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73" + }, + { + "id": "https://openalex.org/F4320338279", + "display_name": "Air Force Office of Scientific Research", + "ror": "https://ror.org/011e9bt93" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2973119841.pdf", + "grobid_xml": "https://content.openalex.org/works/W2973119841.grobid-xml" + }, + "referenced_works_count": 139, + "referenced_works": [ + "https://openalex.org/W54257720", + "https://openalex.org/W119114865", + "https://openalex.org/W1479971399", + "https://openalex.org/W1498436455", + "https://openalex.org/W1528439235", + "https://openalex.org/W1590183771", + "https://openalex.org/W1606265566", + "https://openalex.org/W1614107838", + "https://openalex.org/W1633869374", + "https://openalex.org/W1650825897", + "https://openalex.org/W1685006559", + "https://openalex.org/W1954793758", + "https://openalex.org/W1967011375", + "https://openalex.org/W1967963082", + "https://openalex.org/W1970454553", + "https://openalex.org/W1972005403", + "https://openalex.org/W1976068300", + "https://openalex.org/W1979769287", + "https://openalex.org/W1992462433", + "https://openalex.org/W1996773027", + "https://openalex.org/W1997126009", + "https://openalex.org/W2008125068", + "https://openalex.org/W2010459912", + "https://openalex.org/W2012725996", + "https://openalex.org/W2014356541", + "https://openalex.org/W2017479642", + "https://openalex.org/W2027964569", + "https://openalex.org/W2030450972", + "https://openalex.org/W2031349338", + "https://openalex.org/W2034541995", + "https://openalex.org/W2040387238", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041754533", + "https://openalex.org/W2050195777", + "https://openalex.org/W2051465149", + "https://openalex.org/W2054881170", + "https://openalex.org/W2055503573", + "https://openalex.org/W2056653303", + "https://openalex.org/W2064675550", + "https://openalex.org/W2067472975", + "https://openalex.org/W2070246049", + "https://openalex.org/W2074447412", + "https://openalex.org/W2076110561", + "https://openalex.org/W2078626246", + "https://openalex.org/W2097074225", + "https://openalex.org/W2102162541", + "https://openalex.org/W2103626435", + "https://openalex.org/W2104578628", + "https://openalex.org/W2108380954", + "https://openalex.org/W2109177042", + "https://openalex.org/W2109883840", + "https://openalex.org/W2110418811", + "https://openalex.org/W2113553269", + "https://openalex.org/W2113640817", + "https://openalex.org/W2117756735", + "https://openalex.org/W2118944048", + "https://openalex.org/W2121058967", + "https://openalex.org/W2122861381", + "https://openalex.org/W2123381477", + "https://openalex.org/W2126999002", + "https://openalex.org/W2127129738", + "https://openalex.org/W2128084896", + "https://openalex.org/W2129812935", + "https://openalex.org/W2130259898", + "https://openalex.org/W2131847304", + "https://openalex.org/W2134692705", + "https://openalex.org/W2137595289", + "https://openalex.org/W2137983211", + "https://openalex.org/W2138537392", + "https://openalex.org/W2139960762", + "https://openalex.org/W2145339207", + "https://openalex.org/W2150559081", + "https://openalex.org/W2158985775", + "https://openalex.org/W2164954534", + "https://openalex.org/W2168479071", + "https://openalex.org/W2179833213", + "https://openalex.org/W2239232218", + "https://openalex.org/W2239916406", + "https://openalex.org/W2257979135", + "https://openalex.org/W2266714625", + "https://openalex.org/W2335276023", + "https://openalex.org/W2339890646", + "https://openalex.org/W2345737627", + "https://openalex.org/W2346717862", + "https://openalex.org/W2395962256", + "https://openalex.org/W2465244584", + "https://openalex.org/W2487365028", + "https://openalex.org/W2490045648", + "https://openalex.org/W2494808947", + "https://openalex.org/W2517135970", + "https://openalex.org/W2525748878", + "https://openalex.org/W2534240011", + "https://openalex.org/W2556930732", + "https://openalex.org/W2573798107", + "https://openalex.org/W2584231952", + "https://openalex.org/W2586197373", + "https://openalex.org/W2594632285", + "https://openalex.org/W2730644873", + "https://openalex.org/W2745110207", + "https://openalex.org/W2748760860", + "https://openalex.org/W2751013712", + "https://openalex.org/W2758626922", + "https://openalex.org/W2765372792", + "https://openalex.org/W2765861397", + "https://openalex.org/W2768911907", + "https://openalex.org/W2770660451", + "https://openalex.org/W2777417212", + "https://openalex.org/W2782714865", + "https://openalex.org/W2787894218", + "https://openalex.org/W2788403524", + "https://openalex.org/W2794371820", + "https://openalex.org/W2795982117", + "https://openalex.org/W2799103053", + "https://openalex.org/W2805869290", + "https://openalex.org/W2887432454", + "https://openalex.org/W2888317899", + "https://openalex.org/W2891423421", + "https://openalex.org/W2899283552", + "https://openalex.org/W2900119356", + "https://openalex.org/W2902480423", + "https://openalex.org/W2902946198", + "https://openalex.org/W2909451642", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W2950974717", + "https://openalex.org/W2962757926", + "https://openalex.org/W2962761333", + "https://openalex.org/W2962899390", + "https://openalex.org/W2963448313", + "https://openalex.org/W2964027982", + "https://openalex.org/W2964059953", + "https://openalex.org/W2964128214", + "https://openalex.org/W2964129632", + "https://openalex.org/W2971781109", + "https://openalex.org/W4210968171", + "https://openalex.org/W4213332169", + "https://openalex.org/W4233518571", + "https://openalex.org/W4238160257", + "https://openalex.org/W4250955649" + ], + "related_works": [ + "https://openalex.org/W2772595360", + "https://openalex.org/W2221523880", + "https://openalex.org/W3046946477", + "https://openalex.org/W2010181683", + "https://openalex.org/W2778641779", + "https://openalex.org/W2967095864", + "https://openalex.org/W2056815676", + "https://openalex.org/W2284359467", + "https://openalex.org/W204992595", + "https://openalex.org/W2049238023" + ], + "abstract_inverted_index": { + "The": [ + 0, + 100 + ], + "field": [ + 1, + 16 + ], + "of": [ + 2, + 12, + 31, + 70, + 78, + 104, + 112, + 122, + 142 + ], + "fluid": [ + 3, + 47, + 81, + 98, + 143 + ], + "mechanics": [ + 4, + 144 + ], + "is": [ + 5 + ], + "rapidly": [ + 6 + ], + "advancing,": [ + 7 + ], + "driven": [ + 8 + ], + "by": [ + 9 + ], + "unprecedented": [ + 10 + ], + "volumes": [ + 11 + ], + "data": [ + 13, + 37, + 117 + ], + "from": [ + 14, + 36, + 109 + ], + "experiments,": [ + 15, + 124 + ], + "measurements,": [ + 17 + ], + "and": [ + 18, + 56, + 63, + 75, + 88, + 96, + 102, + 125, + 136, + 146 + ], + "large-scale": [ + 19 + ], + "simulations": [ + 20 + ], + "at": [ + 21 + ], + "multiple": [ + 22 + ], + "spatiotemporal": [ + 23 + ], + "scales.": [ + 24 + ], + "Machine": [ + 25 + ], + "learning": [ + 26 + ], + "(ML)": [ + 27 + ], + "offers": [ + 28 + ], + "a": [ + 29, + 129 + ], + "wealth": [ + 30 + ], + "techniques": [ + 32 + ], + "to": [ + 33, + 60 + ], + "extract": [ + 34 + ], + "information": [ + 35 + ], + "that": [ + 38, + 115, + 133 + ], + "can": [ + 39, + 52, + 134 + ], + "be": [ + 40 + ], + "translated": [ + 41 + ], + "into": [ + 42 + ], + "knowledge": [ + 43, + 55 + ], + "about": [ + 44 + ], + "the": [ + 45, + 110 + ], + "underlying": [ + 46 + ], + "mechanics.": [ + 48, + 82 + ], + "Moreover,": [ + 49 + ], + "ML": [ + 50, + 79, + 86, + 127 + ], + "algorithms": [ + 51 + ], + "augment": [ + 53 + ], + "domain": [ + 54 + ], + "automate": [ + 57 + ], + "tasks": [ + 58 + ], + "related": [ + 59 + ], + "flow": [ + 61 + ], + "control": [ + 62 + ], + "optimization.": [ + 64 + ], + "This": [ + 65 + ], + "article": [ + 66 + ], + "presents": [ + 67 + ], + "an": [ + 68, + 119 + ], + "overview": [ + 69 + ], + "past": [ + 71 + ], + "history,": [ + 72 + ], + "current": [ + 73, + 140 + ], + "developments,": [ + 74 + ], + "emerging": [ + 76 + ], + "opportunities": [ + 77 + ], + "for": [ + 80, + 92 + ], + "We": [ + 83 + ], + "outline": [ + 84 + ], + "fundamental": [ + 85 + ], + "methodologies": [ + 87 + ], + "discuss": [ + 89 + ], + "their": [ + 90 + ], + "uses": [ + 91 + ], + "understanding,": [ + 93 + ], + "modeling,": [ + 94, + 123 + ], + "optimizing,": [ + 95 + ], + "controlling": [ + 97 + ], + "flows.": [ + 99 + ], + "strengths": [ + 101 + ], + "limitations": [ + 103 + ], + "these": [ + 105 + ], + "methods": [ + 106 + ], + "are": [ + 107 + ], + "addressed": [ + 108 + ], + "perspective": [ + 111 + ], + "scientific": [ + 113 + ], + "inquiry": [ + 114 + ], + "considers": [ + 116 + ], + "as": [ + 118 + ], + "inherent": [ + 120 + ], + "part": [ + 121 + ], + "simulations.": [ + 126 + ], + "provides": [ + 128 + ], + "powerful": [ + 130 + ], + "information-processing": [ + 131 + ], + "framework": [ + 132 + ], + "augment,": [ + 135 + ], + "possibly": [ + 137 + ], + "even": [ + 138 + ], + "transform,": [ + 139 + ], + "lines": [ + 141 + ], + "research": [ + 145 + ], + "industrial": [ + 147 + ], + "applications.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 236 + }, + { + "year": 2025, + "cited_by_count": 548 + }, + { + "year": 2024, + "cited_by_count": 526 + }, + { + "year": 2023, + "cited_by_count": 435 + }, + { + "year": 2022, + "cited_by_count": 396 + }, + { + "year": 2021, + "cited_by_count": 285 + }, + { + "year": 2020, + "cited_by_count": 121 + }, + { + "year": 2019, + "cited_by_count": 10 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2019-09-19T00:00:00" + }, + { + "id": "https://openalex.org/W2525984666", + "doi": "https://doi.org/10.1056/nejmp1606181", + "title": "Predicting the Future — Big Data, Machine Learning, and Clinical Medicine", + "display_name": "Predicting the Future — Big Data, Machine Learning, and Clinical Medicine", + "relevance_score": 3578.4949, + "publication_year": 2016, + "publication_date": "2016-09-28", + "ids": { + "openalex": "https://openalex.org/W2525984666", + "doi": "https://doi.org/10.1056/nejmp1606181", + "mag": "2525984666" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1056/nejmp1606181", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmp1606181", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5017000481", + "display_name": "Ziad Obermeyer", + "orcid": "https://orcid.org/0000-0002-4563-5849" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Ziad Obermeyer", + "raw_affiliation_strings": [ + "Department of Health Care Policy, Harvard Medical School, Boston, and the Department of Medical Ethics and Health Policy, Perelman School of Medicine" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Health Care Policy, Harvard Medical School, Boston, and the Department of Medical Ethics and Health Policy, Perelman School of Medicine", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5012567636", + "display_name": "Ezekiel Emanuel", + "orcid": "https://orcid.org/0000-0002-9796-5735" + }, + "institutions": [ + { + "id": "https://openalex.org/I79576946", + "display_name": "University of Pennsylvania", + "ror": "https://ror.org/00b30xv10", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I79576946" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ezekiel J. Emanuel", + "raw_affiliation_strings": [ + "Department of Health Care Management, Wharton School, University of Pennsylvania, Philadelphia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Health Care Management, Wharton School, University of Pennsylvania, Philadelphia", + "institution_ids": [ + "https://openalex.org/I79576946" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5017000481" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 397.1409, + "has_fulltext": false, + "cited_by_count": 3452, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "375", + "issue": "13", + "first_page": "1216", + "last_page": "1219" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9932000041007996, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9932000041007996, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11636", + "display_name": "Artificial Intelligence in Healthcare and Education", + "score": 0.991599977016449, + "subfield": { + "id": "https://openalex.org/subfields/2718", + "display_name": "Health Informatics" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9872000217437744, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.766974925994873 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6763951182365417 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6183133125305176 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.47957199811935425 + }, + { + "id": "https://openalex.org/keywords/precision-medicine", + "display_name": "Precision medicine", + "score": 0.46924924850463867 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.45585569739341736 + }, + { + "id": "https://openalex.org/keywords/scale-invariant-feature-transform", + "display_name": "Scale-invariant feature transform", + "score": 0.4480826258659363 + }, + { + "id": "https://openalex.org/keywords/medline", + "display_name": "MEDLINE", + "score": 0.42730244994163513 + }, + { + "id": "https://openalex.org/keywords/medical-physics", + "display_name": "Medical physics", + "score": 0.41148635745048523 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.21748274564743042 + }, + { + "id": "https://openalex.org/keywords/pathology", + "display_name": "Pathology", + "score": 0.20210126042366028 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.19222670793533325 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.09807196259498596 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.766974925994873 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6763951182365417 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6183133125305176 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.47957199811935425 + }, + { + "id": "https://openalex.org/C163763905", + "wikidata": "https://www.wikidata.org/wiki/Q17075943", + "display_name": "Precision medicine", + "level": 2, + "score": 0.46924924850463867 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.45585569739341736 + }, + { + "id": "https://openalex.org/C61265191", + "wikidata": "https://www.wikidata.org/wiki/Q767770", + "display_name": "Scale-invariant feature transform", + "level": 3, + "score": 0.4480826258659363 + }, + { + "id": "https://openalex.org/C2779473830", + "wikidata": "https://www.wikidata.org/wiki/Q1540899", + "display_name": "MEDLINE", + "level": 2, + "score": 0.42730244994163513 + }, + { + "id": "https://openalex.org/C19527891", + "wikidata": "https://www.wikidata.org/wiki/Q1120908", + "display_name": "Medical physics", + "level": 1, + "score": 0.41148635745048523 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.21748274564743042 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.20210126042366028 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.19222670793533325 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.09807196259498596 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1056/nejmp1606181", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmp1606181", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5070532", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "N Engl J Med", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "pmh:oai:pubmedcentral.nih.gov:5070532", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "N Engl J Med", + "raw_type": "Text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W2020506948", + "https://openalex.org/W2103018059", + "https://openalex.org/W2203167467", + "https://openalex.org/W2341256599", + "https://openalex.org/W2610886376" + ], + "related_works": [ + "https://openalex.org/W3014300295", + "https://openalex.org/W2297410961", + "https://openalex.org/W2548459112", + "https://openalex.org/W2905881943", + "https://openalex.org/W4224276240", + "https://openalex.org/W4312569874", + "https://openalex.org/W2946781799", + "https://openalex.org/W2588050043", + "https://openalex.org/W2531479711", + "https://openalex.org/W2191030086" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "algorithms": [ + 1 + ], + "of": [ + 2, + 11, + 25, + 28 + ], + "machine": [ + 3 + ], + "learning,": [ + 4 + ], + "which": [ + 5 + ], + "can": [ + 6 + ], + "sift": [ + 7 + ], + "through": [ + 8 + ], + "vast": [ + 9 + ], + "numbers": [ + 10 + ], + "variables": [ + 12 + ], + "looking": [ + 13 + ], + "for": [ + 14 + ], + "combinations": [ + 15 + ], + "that": [ + 16 + ], + "reliably": [ + 17 + ], + "predict": [ + 18 + ], + "outcomes,": [ + 19 + ], + "will": [ + 20 + ], + "improve": [ + 21, + 34 + ], + "prognosis,": [ + 22 + ], + "displace": [ + 23 + ], + "much": [ + 24 + ], + "the": [ + 26 + ], + "work": [ + 27 + ], + "radiologists": [ + 29 + ], + "and": [ + 30, + 33 + ], + "anatomical": [ + 31 + ], + "pathologists,": [ + 32 + ], + "diagnostic": [ + 35 + ], + "accuracy.": [ + 36 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 203 + }, + { + "year": 2025, + "cited_by_count": 588 + }, + { + "year": 2024, + "cited_by_count": 517 + }, + { + "year": 2023, + "cited_by_count": 393 + }, + { + "year": 2022, + "cited_by_count": 380 + }, + { + "year": 2021, + "cited_by_count": 405 + }, + { + "year": 2020, + "cited_by_count": 372 + }, + { + "year": 2019, + "cited_by_count": 283 + }, + { + "year": 2018, + "cited_by_count": 205 + }, + { + "year": 2017, + "cited_by_count": 98 + }, + { + "year": 2016, + "cited_by_count": 3 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2111547563", + "doi": "https://doi.org/10.1016/j.csbj.2014.11.005", + "title": "Machine learning applications in cancer prognosis and prediction", + "display_name": "Machine learning applications in cancer prognosis and prediction", + "relevance_score": 3577.737, + "publication_year": 2014, + "publication_date": "2014-11-15", + "ids": { + "openalex": "https://openalex.org/W2111547563", + "doi": "https://doi.org/10.1016/j.csbj.2014.11.005", + "mag": "2111547563", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/25750696" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5067569191", + "display_name": "Κωνσταντίνα Κούρου", + "orcid": "https://orcid.org/0000-0003-4310-2739" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantina Kourou", + "raw_affiliation_strings": [ + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104150275", + "display_name": "Themis P. Exarchos", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + }, + { + "id": "https://openalex.org/I4210105723", + "display_name": "FORTH Institute of Molecular Biology and Biotechnology", + "ror": "https://ror.org/01gzszr18", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210105723", + "https://openalex.org/I8901234" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Themis P. Exarchos", + "raw_affiliation_strings": [ + "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I4210105723" + ] + }, + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017880834", + "display_name": "Konstantinos Exarchos", + "orcid": "https://orcid.org/0000-0002-4754-7623" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantinos P. Exarchos", + "raw_affiliation_strings": [ + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5084550691", + "display_name": "Michalis V. Karamouzis", + "orcid": "https://orcid.org/0000-0003-1369-8201" + }, + "institutions": [ + { + "id": "https://openalex.org/I200777214", + "display_name": "National and Kapodistrian University of Athens", + "ror": "https://ror.org/04gnjpq42", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I200777214" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Michalis V. Karamouzis", + "raw_affiliation_strings": [ + "Molecular Oncology Unit, Department of Biological Chemistry, Medical School, University of Athens, Athens, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Molecular Oncology Unit, Department of Biological Chemistry, Medical School, University of Athens, Athens, Greece", + "institution_ids": [ + "https://openalex.org/I200777214" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5037813012", + "display_name": "Dimitrios I. Fotiadis", + "orcid": "https://orcid.org/0000-0002-7362-5082" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + }, + { + "id": "https://openalex.org/I4210105723", + "display_name": "FORTH Institute of Molecular Biology and Biotechnology", + "ror": "https://ror.org/01gzszr18", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210105723", + "https://openalex.org/I8901234" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Dimitrios I. Fotiadis", + "raw_affiliation_strings": [ + "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I4210105723" + ] + }, + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5037813012" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I194019607", + "https://openalex.org/I4210105723" + ], + "apc_list": { + "value": 2450, + "currency": "EUR", + "value_usd": 2642 + }, + "apc_paid": { + "value": 2450, + "currency": "EUR", + "value_usd": 2642 + }, + "fwci": 61.3227, + "has_fulltext": false, + "cited_by_count": 3275, + "citation_normalized_percentile": { + "value": 0.99922624, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "13", + "issue": null, + "first_page": "8", + "last_page": "17" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9977999925613403, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9977999925613403, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9937999844551086, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9843000173568726, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7670019865036011 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6441092491149902 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6317405104637146 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6097581386566162 + }, + { + "id": "https://openalex.org/keywords/cancer", + "display_name": "Cancer", + "score": 0.567906379699707 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5353600978851318 + }, + { + "id": "https://openalex.org/keywords/bayesian-network", + "display_name": "Bayesian network", + "score": 0.5231181979179382 + }, + { + "id": "https://openalex.org/keywords/clinical-practice", + "display_name": "Clinical Practice", + "score": 0.46658024191856384 + }, + { + "id": "https://openalex.org/keywords/variety", + "display_name": "Variety (cybernetics)", + "score": 0.4417306184768677 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.43627700209617615 + }, + { + "id": "https://openalex.org/keywords/predictive-modelling", + "display_name": "Predictive modelling", + "score": 0.4162035584449768 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2604517340660095 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.08188235759735107 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7670019865036011 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6441092491149902 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6317405104637146 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6097581386566162 + }, + { + "id": "https://openalex.org/C121608353", + "wikidata": "https://www.wikidata.org/wiki/Q12078", + "display_name": "Cancer", + "level": 2, + "score": 0.567906379699707 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5353600978851318 + }, + { + "id": "https://openalex.org/C33724603", + "wikidata": "https://www.wikidata.org/wiki/Q812540", + "display_name": "Bayesian network", + "level": 2, + "score": 0.5231181979179382 + }, + { + "id": "https://openalex.org/C2779974597", + "wikidata": "https://www.wikidata.org/wiki/Q28448986", + "display_name": "Clinical Practice", + "level": 2, + "score": 0.46658024191856384 + }, + { + "id": "https://openalex.org/C136197465", + "wikidata": "https://www.wikidata.org/wiki/Q1729295", + "display_name": "Variety (cybernetics)", + "level": 2, + "score": 0.4417306184768677 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.43627700209617615 + }, + { + "id": "https://openalex.org/C45804977", + "wikidata": "https://www.wikidata.org/wiki/Q7239673", + "display_name": "Predictive modelling", + "level": 2, + "score": 0.4162035584449768 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2604517340660095 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.08188235759735107 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126322002", + "wikidata": "https://www.wikidata.org/wiki/Q11180", + "display_name": "Internal medicine", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C512399662", + "wikidata": "https://www.wikidata.org/wiki/Q3505712", + "display_name": "Family medicine", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + { + "id": "pmid:25750696", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/25750696", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and structural biotechnology journal", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:35b9fc4c35f148889aab32c978d9a58b", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/35b9fc4c35f148889aab32c978d9a58b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Computational and Structural Biotechnology Journal, Vol 13, Iss C, Pp 8-17 (2015)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:3318377", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/4348437", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.4099999964237213, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320338370", + "display_name": "FP7 Information and Communication Technologies", + "ror": null + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 74, + "referenced_works": [ + "https://openalex.org/W1491953704", + "https://openalex.org/W1500572886", + "https://openalex.org/W1517879388", + "https://openalex.org/W1519433744", + "https://openalex.org/W1565377632", + "https://openalex.org/W1570448133", + "https://openalex.org/W1591717158", + "https://openalex.org/W1651586605", + "https://openalex.org/W1663973292", + "https://openalex.org/W1960669649", + "https://openalex.org/W1971005400", + "https://openalex.org/W1978761216", + "https://openalex.org/W1983024255", + "https://openalex.org/W1985663400", + "https://openalex.org/W1987776395", + "https://openalex.org/W1989628460", + "https://openalex.org/W1992297816", + "https://openalex.org/W1993628165", + "https://openalex.org/W1995199599", + "https://openalex.org/W2007265575", + "https://openalex.org/W2011021469", + "https://openalex.org/W2014510428", + "https://openalex.org/W2017337590", + "https://openalex.org/W2020402396", + "https://openalex.org/W2021100122", + "https://openalex.org/W2025060250", + "https://openalex.org/W2025738103", + "https://openalex.org/W2036839465", + "https://openalex.org/W2041652340", + "https://openalex.org/W2048701123", + "https://openalex.org/W2053522428", + "https://openalex.org/W2058089746", + "https://openalex.org/W2062364738", + "https://openalex.org/W2083780116", + "https://openalex.org/W2088338744", + "https://openalex.org/W2089927030", + "https://openalex.org/W2091947792", + "https://openalex.org/W2097554668", + "https://openalex.org/W2105882193", + "https://openalex.org/W2109103446", + "https://openalex.org/W2109896839", + "https://openalex.org/W2111461407", + "https://openalex.org/W2116841457", + "https://openalex.org/W2117692326", + "https://openalex.org/W2118366842", + "https://openalex.org/W2119782683", + "https://openalex.org/W2122227569", + "https://openalex.org/W2123696692", + "https://openalex.org/W2126009609", + "https://openalex.org/W2128767954", + "https://openalex.org/W2130338776", + "https://openalex.org/W2132619562", + "https://openalex.org/W2133601033", + "https://openalex.org/W2140218006", + "https://openalex.org/W2148078825", + "https://openalex.org/W2152121590", + "https://openalex.org/W2154362705", + "https://openalex.org/W2155461561", + "https://openalex.org/W2156483112", + "https://openalex.org/W2157132621", + "https://openalex.org/W2157239837", + "https://openalex.org/W2163042952", + "https://openalex.org/W2167645795", + "https://openalex.org/W2167769381", + "https://openalex.org/W2170379523", + "https://openalex.org/W2324845196", + "https://openalex.org/W2431164060", + "https://openalex.org/W2476253186", + "https://openalex.org/W2977661550", + "https://openalex.org/W4205774955", + "https://openalex.org/W4255865525", + "https://openalex.org/W4296886862", + "https://openalex.org/W6660969321", + "https://openalex.org/W6663876547" + ], + "related_works": [ + "https://openalex.org/W2032233321", + "https://openalex.org/W3121970507", + "https://openalex.org/W2110028391", + "https://openalex.org/W54497855", + "https://openalex.org/W217960748", + "https://openalex.org/W3125814499", + "https://openalex.org/W2090827041", + "https://openalex.org/W2565703248", + "https://openalex.org/W187246281", + "https://openalex.org/W2143548620" + ], + "abstract_inverted_index": { + "Cancer": [ + 0 + ], + "has": [ + 1, + 51 + ], + "been": [ + 2, + 76, + 129 + ], + "characterized": [ + 3 + ], + "as": [ + 4, + 29, + 78, + 216, + 218, + 250 + ], + "a": [ + 5, + 19, + 24, + 191 + ], + "heterogeneous": [ + 6 + ], + "disease": [ + 7 + ], + "consisting": [ + 8 + ], + "of": [ + 9, + 18, + 37, + 41, + 67, + 87, + 94, + 109, + 138, + 156, + 163, + 169, + 193, + 201, + 233 + ], + "many": [ + 10, + 53 + ], + "different": [ + 11, + 220 + ], + "subtypes.": [ + 12 + ], + "The": [ + 13, + 39, + 204 + ], + "early": [ + 14 + ], + "diagnosis": [ + 15 + ], + "and": [ + 16, + 59, + 85, + 124, + 144, + 223 + ], + "prognosis": [ + 17 + ], + "cancer": [ + 20, + 27, + 43, + 133, + 164, + 202, + 237, + 255 + ], + "type": [ + 21 + ], + "have": [ + 22, + 75, + 128 + ], + "become": [ + 23 + ], + "necessity": [ + 25 + ], + "in": [ + 26, + 132, + 142, + 173, + 181, + 198, + 236 + ], + "research,": [ + 28, + 238 + ], + "it": [ + 30, + 150 + ], + "can": [ + 31, + 159 + ], + "facilitate": [ + 32 + ], + "the": [ + 33, + 57, + 60, + 65, + 83, + 92, + 136, + 154, + 182, + 199, + 227, + 231, + 242 + ], + "subsequent": [ + 34 + ], + "clinical": [ + 35, + 184 + ], + "management": [ + 36 + ], + "patients.": [ + 38 + ], + "importance": [ + 40 + ], + "classifying": [ + 42 + ], + "patients": [ + 44 + ], + "into": [ + 45 + ], + "high": [ + 46 + ], + "or": [ + 47, + 257 + ], + "low": [ + 48 + ], + "risk": [ + 49, + 256 + ], + "groups": [ + 50 + ], + "led": [ + 52 + ], + "research": [ + 54, + 134 + ], + "teams,": [ + 55 + ], + "from": [ + 56, + 101 + ], + "biomedical": [ + 58 + ], + "bioinformatics": [ + 61 + ], + "field,": [ + 62 + ], + "to": [ + 63, + 81, + 97, + 178, + 253 + ], + "study": [ + 64 + ], + "application": [ + 66, + 232 + ], + "machine": [ + 68 + ], + "learning": [ + 69 + ], + "(ML)": [ + 70 + ], + "methods.": [ + 71 + ], + "Therefore,": [ + 72 + ], + "these": [ + 73, + 110, + 176, + 248 + ], + "techniques": [ + 74, + 215, + 249 + ], + "utilized": [ + 77 + ], + "an": [ + 79, + 166, + 251 + ], + "aim": [ + 80, + 252 + ], + "model": [ + 82, + 254 + ], + "progression": [ + 84 + ], + "treatment": [ + 86 + ], + "cancerous": [ + 88 + ], + "conditions.": [ + 89 + ], + "In": [ + 90, + 186 + ], + "addition,": [ + 91 + ], + "ability": [ + 93 + ], + "ML": [ + 95, + 157, + 195, + 214, + 234 + ], + "tools": [ + 96 + ], + "detect": [ + 98 + ], + "key": [ + 99 + ], + "features": [ + 100, + 222 + ], + "complex": [ + 102 + ], + "datasets": [ + 103 + ], + "reveals": [ + 104 + ], + "their": [ + 105 + ], + "importance.": [ + 106 + ], + "A": [ + 107 + ], + "variety": [ + 108 + ], + "techniques,": [ + 111 + ], + "including": [ + 112 + ], + "Artificial": [ + 113 + ], + "Neural": [ + 114 + ], + "Networks": [ + 115, + 118 + ], + "(ANNs),": [ + 116 + ], + "Bayesian": [ + 117 + ], + "(BNs),": [ + 119 + ], + "Support": [ + 120 + ], + "Vector": [ + 121 + ], + "Machines": [ + 122 + ], + "(SVMs)": [ + 123 + ], + "Decision": [ + 125 + ], + "Trees": [ + 126 + ], + "(DTs)": [ + 127 + ], + "widely": [ + 130 + ], + "applied": [ + 131 + ], + "for": [ + 135, + 175 + ], + "development": [ + 137 + ], + "predictive": [ + 139, + 205 + ], + "models,": [ + 140 + ], + "resulting": [ + 141 + ], + "effective": [ + 143 + ], + "accurate": [ + 145 + ], + "decision": [ + 146 + ], + "making.": [ + 147 + ], + "Even": [ + 148 + ], + "though": [ + 149 + ], + "is": [ + 151, + 171 + ], + "evident": [ + 152 + ], + "that": [ + 153, + 246 + ], + "use": [ + 155 + ], + "methods": [ + 158, + 177, + 235 + ], + "improve": [ + 160 + ], + "our": [ + 161 + ], + "understanding": [ + 162 + ], + "progression,": [ + 165 + ], + "appropriate": [ + 167 + ], + "level": [ + 168 + ], + "validation": [ + 170 + ], + "needed": [ + 172 + ], + "order": [ + 174 + ], + "be": [ + 179 + ], + "considered": [ + 180 + ], + "everyday": [ + 183 + ], + "practice.": [ + 185 + ], + "this": [ + 187 + ], + "work,": [ + 188 + ], + "we": [ + 189, + 239 + ], + "present": [ + 190, + 240 + ], + "review": [ + 192 + ], + "recent": [ + 194, + 244 + ], + "approaches": [ + 196 + ], + "employed": [ + 197 + ], + "modeling": [ + 200 + ], + "progression.": [ + 203 + ], + "models": [ + 206 + ], + "discussed": [ + 207 + ], + "here": [ + 208, + 241 + ], + "are": [ + 209 + ], + "based": [ + 210 + ], + "on": [ + 211, + 219, + 230 + ], + "various": [ + 212 + ], + "supervised": [ + 213 + ], + "well": [ + 217 + ], + "input": [ + 221 + ], + "data": [ + 224 + ], + "samples.": [ + 225 + ], + "Given": [ + 226 + ], + "growing": [ + 228 + ], + "trend": [ + 229 + ], + "most": [ + 243 + ], + "publications": [ + 245 + ], + "employ": [ + 247 + ], + "patient": [ + 258 + ], + "outcomes.": [ + 259 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 131 + }, + { + "year": 2025, + "cited_by_count": 408 + }, + { + "year": 2024, + "cited_by_count": 427 + }, + { + "year": 2023, + "cited_by_count": 421 + }, + { + "year": 2022, + "cited_by_count": 411 + }, + { + "year": 2021, + "cited_by_count": 446 + }, + { + "year": 2020, + "cited_by_count": 441 + }, + { + "year": 2019, + "cited_by_count": 280 + }, + { + "year": 2018, + "cited_by_count": 165 + }, + { + "year": 2017, + "cited_by_count": 84 + }, + { + "year": 2016, + "cited_by_count": 49 + }, + { + "year": 2015, + "cited_by_count": 11 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2923537029", + "doi": "https://doi.org/10.1103/revmodphys.91.045002", + "title": "Machine learning and the physical sciences", + "display_name": "Machine learning and the physical sciences", + "relevance_score": 3569.3367, + "publication_year": 2019, + "publication_date": "2019-12-06", + "ids": { + "openalex": "https://openalex.org/W2923537029", + "doi": "https://doi.org/10.1103/revmodphys.91.045002", + "mag": "2923537029" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/revmodphys.91.045002", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/revmodphys.91.045002", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S73260565", + "display_name": "Reviews of Modern Physics", + "issn_l": "0034-6861", + "issn": [ + "0034-6861", + "1538-4527", + "1539-0756" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1903.10563", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5007408828", + "display_name": "Giuseppe Carleo", + "orcid": "https://orcid.org/0000-0002-8887-4356" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Giuseppe Carleo", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-8887-4356", + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5083228566", + "display_name": "J. I. Cirac", + "orcid": "https://orcid.org/0000-0003-3359-1743" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ignacio Cirac", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108167175", + "display_name": "K. Cranmer", + "orcid": "https://orcid.org/0000-0002-5769-7094" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kyle Cranmer", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5058259063", + "display_name": "Laurent Daudet", + "orcid": "https://orcid.org/0000-0001-5811-1078" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Laurent Daudet", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073832417", + "display_name": "Maria Schuld", + "orcid": "https://orcid.org/0000-0001-8626-168X" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004273274", + "display_name": "Naftali Tishby", + "orcid": "https://orcid.org/0000-0002-8086-4436" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Naftali Tishby", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024209749", + "display_name": "Leslie Vogt-Maranto", + "orcid": "https://orcid.org/0000-0002-7006-4582" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Leslie Vogt-Maranto", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-7006-4582", + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5089268172", + "display_name": "Lenka Zdeborová", + "orcid": "https://orcid.org/0000-0002-8377-3978" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lenka Zdeborová", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 8, + "corresponding_author_ids": [ + "https://openalex.org/A5007408828" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210153546" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 98.7524, + "has_fulltext": false, + "cited_by_count": 2413, + "citation_normalized_percentile": { + "value": 0.99995195, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "91", + "issue": "4", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.9898999929428101, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11804", + "display_name": "Quantum many-body systems", + "score": 0.9840999841690063, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.8221291899681091 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.517598032951355 + }, + { + "id": "https://openalex.org/keywords/column", + "display_name": "Column (typography)", + "score": 0.5173665881156921 + }, + { + "id": "https://openalex.org/keywords/engineering-physics", + "display_name": "Engineering physics", + "score": 0.3996226489543915 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.3428024649620056 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.33104032278060913 + }, + { + "id": "https://openalex.org/keywords/engineering-ethics", + "display_name": "Engineering ethics", + "score": 0.3266659080982208 + }, + { + "id": "https://openalex.org/keywords/mechanical-engineering", + "display_name": "Mechanical engineering", + "score": 0.10730153322219849 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.08470335602760315 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.08188295364379883 + }, + { + "id": "https://openalex.org/keywords/connection", + "display_name": "Connection (principal bundle)", + "score": 0.05932199954986572 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.8221291899681091 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.517598032951355 + }, + { + "id": "https://openalex.org/C2780551164", + "wikidata": "https://www.wikidata.org/wiki/Q2306599", + "display_name": "Column (typography)", + "level": 3, + "score": 0.5173665881156921 + }, + { + "id": "https://openalex.org/C61696701", + "wikidata": "https://www.wikidata.org/wiki/Q770766", + "display_name": "Engineering physics", + "level": 1, + "score": 0.3996226489543915 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.3428024649620056 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.33104032278060913 + }, + { + "id": "https://openalex.org/C55587333", + "wikidata": "https://www.wikidata.org/wiki/Q1133029", + "display_name": "Engineering ethics", + "level": 1, + "score": 0.3266659080982208 + }, + { + "id": "https://openalex.org/C78519656", + "wikidata": "https://www.wikidata.org/wiki/Q101333", + "display_name": "Mechanical engineering", + "level": 1, + "score": 0.10730153322219849 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.08470335602760315 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.08188295364379883 + }, + { + "id": "https://openalex.org/C13355873", + "wikidata": "https://www.wikidata.org/wiki/Q2920850", + "display_name": "Connection (principal bundle)", + "level": 2, + "score": 0.05932199954986572 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1103/revmodphys.91.045002", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/revmodphys.91.045002", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S73260565", + "display_name": "Reviews of Modern Physics", + "issn_l": "0034-6861", + "issn": [ + "0034-6861", + "1538-4527", + "1539-0756" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1903.10563", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1903.10563", + "pdf_url": "https://arxiv.org/pdf/1903.10563", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-02101667v1", + "is_oa": false, + "landing_page_url": "https://hal.science/hal-02101667", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Rev.Mod.Phys., 2019, 91 (4), pp.045002. ⟨10.1103/RevModPhys.91.045002⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:283035", + "is_oa": true, + "landing_page_url": "https://infoscience.epfl.ch/handle/20.500.14299/175040", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "research article" + }, + { + "id": "pmh:oai:pure.mpg.de:item_3192298", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/21.11116/0000-0005-B0C5-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1903.10563", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1903.10563", + "pdf_url": "https://arxiv.org/pdf/1903.10563", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G162064734", + "display_name": null, + "funder_award_id": "W911NF-13-1-0387", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G3038972242", + "display_name": null, + "funder_award_id": "714608-SMiLe", + "funder_id": "https://openalex.org/F4320338335", + "funder_display_name": "H2020 European Research Council" + }, + { + "id": "https://openalex.org/G3228186847", + "display_name": null, + "funder_award_id": "ACI-1450310", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G346715306", + "display_name": null, + "funder_award_id": "OAC-1836650", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6221687394", + "display_name": null, + "funder_award_id": "DMR-1420073", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + }, + { + "id": "https://openalex.org/F4320338335", + "display_name": "H2020 European Research Council", + "ror": "https://ror.org/0472cxd90" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 580, + "referenced_works": [ + "https://openalex.org/W32507011", + "https://openalex.org/W41554520", + "https://openalex.org/W51943945", + "https://openalex.org/W577274971", + "https://openalex.org/W632087424", + "https://openalex.org/W659070123", + "https://openalex.org/W965729195", + "https://openalex.org/W1490670270", + "https://openalex.org/W1501987263", + "https://openalex.org/W1510052597", + "https://openalex.org/W1527520754", + "https://openalex.org/W1529624360", + "https://openalex.org/W1543736766", + "https://openalex.org/W1555084454", + "https://openalex.org/W1579940749", + "https://openalex.org/W1594031697", + "https://openalex.org/W1631356911", + "https://openalex.org/W1650706190", + "https://openalex.org/W1668248414", + "https://openalex.org/W1694049600", + "https://openalex.org/W1731081199", + "https://openalex.org/W1813659000", + "https://openalex.org/W1825525822", + "https://openalex.org/W1871641673", + "https://openalex.org/W1890000358", + "https://openalex.org/W1896203379", + "https://openalex.org/W1959879694", + "https://openalex.org/W1963762696", + "https://openalex.org/W1970789124", + "https://openalex.org/W1973128603", + "https://openalex.org/W1975907901", + "https://openalex.org/W1983959825", + "https://openalex.org/W1984793731", + "https://openalex.org/W1988369744", + "https://openalex.org/W1988790447", + "https://openalex.org/W1990124919", + "https://openalex.org/W1990755770", + "https://openalex.org/W1993482030", + "https://openalex.org/W1994395934", + "https://openalex.org/W1995842804", + "https://openalex.org/W1998515260", + "https://openalex.org/W1999383621", + "https://openalex.org/W1999975338", + "https://openalex.org/W2004531067", + "https://openalex.org/W2007749676", + "https://openalex.org/W2010536552", + "https://openalex.org/W2011535927", + "https://openalex.org/W2012895716", + "https://openalex.org/W2015990127", + "https://openalex.org/W2019781611", + "https://openalex.org/W2020452821", + "https://openalex.org/W2020786104", + "https://openalex.org/W2024514015", + "https://openalex.org/W2025444507", + "https://openalex.org/W2029007937", + "https://openalex.org/W2029413789", + "https://openalex.org/W2029507757", + "https://openalex.org/W2030450972", + "https://openalex.org/W2034451938", + "https://openalex.org/W2036463035", + "https://openalex.org/W2037768897", + "https://openalex.org/W2040171281", + "https://openalex.org/W2042318263", + "https://openalex.org/W2045973738", + "https://openalex.org/W2049530405", + "https://openalex.org/W2053881994", + "https://openalex.org/W2062363822", + "https://openalex.org/W2063397409", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066424095", + "https://openalex.org/W2068476337", + "https://openalex.org/W2069129925", + "https://openalex.org/W2072420187", + "https://openalex.org/W2072637332", + "https://openalex.org/W2073065445", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076476236", + "https://openalex.org/W2079488937", + "https://openalex.org/W2080021732", + "https://openalex.org/W2080173214", + "https://openalex.org/W2080531309", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081119846", + "https://openalex.org/W2081748565", + "https://openalex.org/W2083415705", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087375161", + "https://openalex.org/W2088025933", + "https://openalex.org/W2090614046", + "https://openalex.org/W2093437356", + "https://openalex.org/W2096391265", + "https://openalex.org/W2097714737", + "https://openalex.org/W2103496339", + "https://openalex.org/W2104489082", + "https://openalex.org/W2105724942", + "https://openalex.org/W2112370854", + "https://openalex.org/W2116064496", + "https://openalex.org/W2116416291", + "https://openalex.org/W2118706537", + "https://openalex.org/W2120802379", + "https://openalex.org/W2121863487", + "https://openalex.org/W2125621954", + "https://openalex.org/W2127048411", + "https://openalex.org/W2128084896", + "https://openalex.org/W2132914434", + "https://openalex.org/W2134344701", + "https://openalex.org/W2139812092", + "https://openalex.org/W2140862024", + "https://openalex.org/W2148539882", + "https://openalex.org/W2151729750", + "https://openalex.org/W2151781750", + "https://openalex.org/W2152876174", + "https://openalex.org/W2155413623", + "https://openalex.org/W2161966883", + "https://openalex.org/W2165960883", + "https://openalex.org/W2167298647", + "https://openalex.org/W2168029744", + "https://openalex.org/W2171253836", + "https://openalex.org/W2209668876", + "https://openalex.org/W2211979669", + "https://openalex.org/W2226799981", + "https://openalex.org/W2240020188", + "https://openalex.org/W2244690429", + "https://openalex.org/W2246040896", + "https://openalex.org/W2257086086", + "https://openalex.org/W2257617748", + "https://openalex.org/W2257937122", + "https://openalex.org/W2267648874", + "https://openalex.org/W2325907229", + "https://openalex.org/W2326812357", + "https://openalex.org/W2337082154", + "https://openalex.org/W2339008828", + "https://openalex.org/W2341702711", + "https://openalex.org/W2347891459", + "https://openalex.org/W2394697995", + "https://openalex.org/W2414456771", + "https://openalex.org/W2419175238", + "https://openalex.org/W2486570794", + "https://openalex.org/W2490183153", + "https://openalex.org/W2491766731", + "https://openalex.org/W2494808947", + "https://openalex.org/W2515276161", + "https://openalex.org/W2516533688", + "https://openalex.org/W2516912949", + "https://openalex.org/W2517648041", + "https://openalex.org/W2520022941", + "https://openalex.org/W2521066248", + "https://openalex.org/W2525193548", + "https://openalex.org/W2528697476", + "https://openalex.org/W2528710350", + "https://openalex.org/W2530117613", + "https://openalex.org/W2530819665", + "https://openalex.org/W2531147647", + "https://openalex.org/W2533940598", + "https://openalex.org/W2541404351", + "https://openalex.org/W2543804629", + "https://openalex.org/W2547192247", + "https://openalex.org/W2547447472", + "https://openalex.org/W2548129158", + "https://openalex.org/W2549491455", + "https://openalex.org/W2556341799", + "https://openalex.org/W2557778781", + "https://openalex.org/W2558748708", + "https://openalex.org/W2559394418", + "https://openalex.org/W2559655401", + "https://openalex.org/W2562250282", + "https://openalex.org/W2563240863", + "https://openalex.org/W2563437659", + "https://openalex.org/W2565722603", + "https://openalex.org/W2566505556", + "https://openalex.org/W2572438701", + "https://openalex.org/W2580506952", + "https://openalex.org/W2580838454", + "https://openalex.org/W2582157661", + "https://openalex.org/W2582761306", + "https://openalex.org/W2582886917", + "https://openalex.org/W2588219153", + "https://openalex.org/W2588591043", + "https://openalex.org/W2592570417", + "https://openalex.org/W2593634001", + "https://openalex.org/W2593807178", + "https://openalex.org/W2594041373", + "https://openalex.org/W2594639291", + "https://openalex.org/W2594780084", + "https://openalex.org/W2594983911", + "https://openalex.org/W2604272474", + "https://openalex.org/W2604506260", + "https://openalex.org/W2604901683", + "https://openalex.org/W2605800822", + "https://openalex.org/W2606429533", + "https://openalex.org/W2606470147", + "https://openalex.org/W2607662938", + "https://openalex.org/W2607839392", + "https://openalex.org/W2610038766", + "https://openalex.org/W2611652092", + "https://openalex.org/W2612065714", + "https://openalex.org/W2612690371", + "https://openalex.org/W2614083378", + "https://openalex.org/W2614157797", + "https://openalex.org/W2615473567", + "https://openalex.org/W2618159897", + "https://openalex.org/W2618574512", + "https://openalex.org/W2618646460", + "https://openalex.org/W2618945100", + "https://openalex.org/W2620286290", + "https://openalex.org/W2623750799", + "https://openalex.org/W2624637765", + "https://openalex.org/W2626454479", + "https://openalex.org/W2649051464", + "https://openalex.org/W2727796268", + "https://openalex.org/W2731335845", + "https://openalex.org/W2736592352", + "https://openalex.org/W2737327729", + "https://openalex.org/W2739440074", + "https://openalex.org/W2740976142", + "https://openalex.org/W2742127985", + "https://openalex.org/W2743218360", + "https://openalex.org/W2744415540", + "https://openalex.org/W2745533326", + "https://openalex.org/W2746272096", + "https://openalex.org/W2746470301", + "https://openalex.org/W2750458571", + "https://openalex.org/W2750586355", + "https://openalex.org/W2750673150", + "https://openalex.org/W2752849906", + "https://openalex.org/W2753545915", + "https://openalex.org/W2753962198", + "https://openalex.org/W2755157865", + "https://openalex.org/W2755190613", + "https://openalex.org/W2755695124", + "https://openalex.org/W2756015143", + "https://openalex.org/W2756291233", + "https://openalex.org/W2761015455", + "https://openalex.org/W2761329292", + "https://openalex.org/W2761704992", + "https://openalex.org/W2762549329", + "https://openalex.org/W2762761825", + "https://openalex.org/W2763146374", + "https://openalex.org/W2763850513", + "https://openalex.org/W2763894180", + "https://openalex.org/W2764347725", + "https://openalex.org/W2765128778", + "https://openalex.org/W2765372792", + "https://openalex.org/W2765499180", + "https://openalex.org/W2765597272", + "https://openalex.org/W2765861397", + "https://openalex.org/W2765910566", + "https://openalex.org/W2766140179", + "https://openalex.org/W2766183519", + "https://openalex.org/W2766323574", + "https://openalex.org/W2766572821", + "https://openalex.org/W2766678531", + "https://openalex.org/W2767545053", + "https://openalex.org/W2767713609", + "https://openalex.org/W2768213699", + "https://openalex.org/W2769068614", + "https://openalex.org/W2769287225", + "https://openalex.org/W2772549578", + "https://openalex.org/W2774682142", + "https://openalex.org/W2775562332", + "https://openalex.org/W2775599538", + "https://openalex.org/W2775970449", + "https://openalex.org/W2778051509", + "https://openalex.org/W2778530713", + "https://openalex.org/W2779710223", + "https://openalex.org/W2780640308", + "https://openalex.org/W2781708744", + "https://openalex.org/W2782213776", + "https://openalex.org/W2782714865", + "https://openalex.org/W2782719466", + "https://openalex.org/W2783102654", + "https://openalex.org/W2785331752", + "https://openalex.org/W2785813126", + "https://openalex.org/W2785838999", + "https://openalex.org/W2785942752", + "https://openalex.org/W2786295636", + "https://openalex.org/W2786721297", + "https://openalex.org/W2786956473", + "https://openalex.org/W2787088079", + "https://openalex.org/W2787955889", + "https://openalex.org/W2788379092", + "https://openalex.org/W2788577944", + "https://openalex.org/W2788652239", + "https://openalex.org/W2788808196", + "https://openalex.org/W2788824392", + "https://openalex.org/W2789327225", + "https://openalex.org/W2789590546", + "https://openalex.org/W2789706299", + "https://openalex.org/W2790105002", + "https://openalex.org/W2791995286", + "https://openalex.org/W2792137452", + "https://openalex.org/W2792315573", + "https://openalex.org/W2792351009", + "https://openalex.org/W2792521034", + "https://openalex.org/W2792944272", + "https://openalex.org/W2792946961", + "https://openalex.org/W2793087725", + "https://openalex.org/W2793179281", + "https://openalex.org/W2793645414", + "https://openalex.org/W2793709686", + "https://openalex.org/W2794727009", + "https://openalex.org/W2795016065", + "https://openalex.org/W2795407028", + "https://openalex.org/W2796506892", + "https://openalex.org/W2796744096", + "https://openalex.org/W2798084934", + "https://openalex.org/W2798368581", + "https://openalex.org/W2798398359", + "https://openalex.org/W2798434869", + "https://openalex.org/W2798439837", + "https://openalex.org/W2798701005", + "https://openalex.org/W2798718650", + "https://openalex.org/W2799038815", + "https://openalex.org/W2800301423", + "https://openalex.org/W2803163155", + "https://openalex.org/W2803328959", + "https://openalex.org/W2803439868", + "https://openalex.org/W2804425690", + "https://openalex.org/W2804639765", + "https://openalex.org/W2805461540", + "https://openalex.org/W2805827569", + "https://openalex.org/W2806094831", + "https://openalex.org/W2806315097", + "https://openalex.org/W2806607279", + "https://openalex.org/W2806687966", + "https://openalex.org/W2807616984", + "https://openalex.org/W2808455355", + "https://openalex.org/W2809092000", + "https://openalex.org/W2810437889", + "https://openalex.org/W2810441707", + "https://openalex.org/W2810443692", + "https://openalex.org/W2820787925", + "https://openalex.org/W2837143805", + "https://openalex.org/W2845055700", + "https://openalex.org/W2883445762", + "https://openalex.org/W2883954259", + "https://openalex.org/W2884430236", + "https://openalex.org/W2884564258", + "https://openalex.org/W2884817966", + "https://openalex.org/W2885278795", + "https://openalex.org/W2886382778", + "https://openalex.org/W2886408278", + "https://openalex.org/W2888720512", + "https://openalex.org/W2888774813", + "https://openalex.org/W2889149492", + "https://openalex.org/W2891423421", + "https://openalex.org/W2892666903", + "https://openalex.org/W2893674448", + "https://openalex.org/W2894980093", + "https://openalex.org/W2895363620", + "https://openalex.org/W2895846750", + "https://openalex.org/W2896410853", + "https://openalex.org/W2896564495", + "https://openalex.org/W2896712926", + "https://openalex.org/W2896817368", + "https://openalex.org/W2897050953", + "https://openalex.org/W2897760057", + "https://openalex.org/W2898121159", + "https://openalex.org/W2898391453", + "https://openalex.org/W2898595154", + "https://openalex.org/W2898966067", + "https://openalex.org/W2899415024", + "https://openalex.org/W2899961353", + "https://openalex.org/W2900466252", + "https://openalex.org/W2901551902", + "https://openalex.org/W2902247106", + "https://openalex.org/W2902639110", + "https://openalex.org/W2903935053", + "https://openalex.org/W2905527813", + "https://openalex.org/W2907627375", + "https://openalex.org/W2910259907", + "https://openalex.org/W2912516940", + "https://openalex.org/W2913063022", + "https://openalex.org/W2914465168", + "https://openalex.org/W2914520121", + "https://openalex.org/W2914529849", + "https://openalex.org/W2914982345", + "https://openalex.org/W2915156775", + "https://openalex.org/W2916052864", + "https://openalex.org/W2916528205", + "https://openalex.org/W2917217327", + "https://openalex.org/W2918745211", + "https://openalex.org/W2919115771", + "https://openalex.org/W2919751573", + "https://openalex.org/W2923779858", + "https://openalex.org/W2935584311", + "https://openalex.org/W2940305049", + "https://openalex.org/W2940425080", + "https://openalex.org/W2941443959", + "https://openalex.org/W2949158470", + "https://openalex.org/W2949697408", + "https://openalex.org/W2950881872", + "https://openalex.org/W2950999850", + "https://openalex.org/W2951004968", + "https://openalex.org/W2951993056", + "https://openalex.org/W2952177798", + "https://openalex.org/W2952203743", + "https://openalex.org/W2952877407", + "https://openalex.org/W2953283096", + "https://openalex.org/W2953495237", + "https://openalex.org/W2953581299", + "https://openalex.org/W2954332695", + "https://openalex.org/W2954692534", + "https://openalex.org/W2962730419", + "https://openalex.org/W2962929001", + "https://openalex.org/W2962938080", + "https://openalex.org/W2962947392", + "https://openalex.org/W2962999242", + "https://openalex.org/W2963071675", + "https://openalex.org/W2963072996", + "https://openalex.org/W2963173679", + "https://openalex.org/W2963784808", + "https://openalex.org/W2963819344", + "https://openalex.org/W2963827891", + "https://openalex.org/W2963886912", + "https://openalex.org/W2964156139", + "https://openalex.org/W2964268718", + "https://openalex.org/W2964313985", + "https://openalex.org/W2971059194", + "https://openalex.org/W2972246420", + "https://openalex.org/W2974176966", + "https://openalex.org/W2979001666", + "https://openalex.org/W2991697224", + "https://openalex.org/W2993717751", + "https://openalex.org/W2997073156", + "https://openalex.org/W2999905431", + "https://openalex.org/W3006317140", + "https://openalex.org/W3006943238", + "https://openalex.org/W3022095225", + "https://openalex.org/W3022539872", + "https://openalex.org/W3026847731", + "https://openalex.org/W3037108023", + "https://openalex.org/W3098229010", + "https://openalex.org/W3098509317", + "https://openalex.org/W3098558521", + "https://openalex.org/W3098574683", + "https://openalex.org/W3098827579", + "https://openalex.org/W3098847359", + "https://openalex.org/W3099013266", + "https://openalex.org/W3099014823", + "https://openalex.org/W3099142519", + "https://openalex.org/W3099186397", + "https://openalex.org/W3099267591", + "https://openalex.org/W3099305384", + "https://openalex.org/W3099381338", + "https://openalex.org/W3099423575", + "https://openalex.org/W3099659109", + "https://openalex.org/W3099680657", + "https://openalex.org/W3099765109", + "https://openalex.org/W3099782627", + "https://openalex.org/W3099813870", + "https://openalex.org/W3099950071", + "https://openalex.org/W3099956647", + "https://openalex.org/W3100009607", + "https://openalex.org/W3100068159", + "https://openalex.org/W3100072999", + "https://openalex.org/W3100127953", + "https://openalex.org/W3100248348", + "https://openalex.org/W3100294950", + "https://openalex.org/W3100492156", + "https://openalex.org/W3100511033", + "https://openalex.org/W3100550188", + "https://openalex.org/W3100571530", + "https://openalex.org/W3100749134", + "https://openalex.org/W3100757891", + "https://openalex.org/W3100942527", + "https://openalex.org/W3101119258", + "https://openalex.org/W3101214870", + "https://openalex.org/W3101363214", + "https://openalex.org/W3101493857", + "https://openalex.org/W3101501459", + "https://openalex.org/W3101542436", + "https://openalex.org/W3101643101", + "https://openalex.org/W3101696966", + "https://openalex.org/W3101749733", + "https://openalex.org/W3101949649", + "https://openalex.org/W3102014803", + "https://openalex.org/W3102038441", + "https://openalex.org/W3102180547", + "https://openalex.org/W3102400420", + "https://openalex.org/W3102409313", + "https://openalex.org/W3102548437", + "https://openalex.org/W3102549167", + "https://openalex.org/W3102617294", + "https://openalex.org/W3102641634", + "https://openalex.org/W3102678975", + "https://openalex.org/W3102776521", + "https://openalex.org/W3102844577", + "https://openalex.org/W3102885034", + "https://openalex.org/W3102926255", + "https://openalex.org/W3102929400", + "https://openalex.org/W3103002362", + "https://openalex.org/W3103107186", + "https://openalex.org/W3103289362", + "https://openalex.org/W3103328814", + "https://openalex.org/W3103393581", + "https://openalex.org/W3103574448", + "https://openalex.org/W3103589224", + "https://openalex.org/W3103722330", + "https://openalex.org/W3103746320", + "https://openalex.org/W3103863530", + "https://openalex.org/W3104065018", + "https://openalex.org/W3104289311", + "https://openalex.org/W3104300173", + "https://openalex.org/W3104403078", + "https://openalex.org/W3104481216", + "https://openalex.org/W3104496372", + "https://openalex.org/W3104536462", + "https://openalex.org/W3104644561", + "https://openalex.org/W3104674222", + "https://openalex.org/W3104690326", + "https://openalex.org/W3104771979", + "https://openalex.org/W3104864936", + "https://openalex.org/W3104962094", + "https://openalex.org/W3105233262", + "https://openalex.org/W3105377867", + "https://openalex.org/W3105494006", + "https://openalex.org/W3105570377", + "https://openalex.org/W3105585588", + "https://openalex.org/W3105977603", + "https://openalex.org/W3106144922", + "https://openalex.org/W3106166086", + "https://openalex.org/W3106193592", + "https://openalex.org/W3106214974", + "https://openalex.org/W3106310231", + "https://openalex.org/W3106418633", + "https://openalex.org/W3106447034", + "https://openalex.org/W3106469526", + "https://openalex.org/W3112028493", + "https://openalex.org/W3121355058", + "https://openalex.org/W3121659139", + "https://openalex.org/W3123261968", + "https://openalex.org/W3124956069", + "https://openalex.org/W3132379378", + "https://openalex.org/W3137695714", + "https://openalex.org/W3140960170", + "https://openalex.org/W3147165232", + "https://openalex.org/W4212774754", + "https://openalex.org/W4236747242", + "https://openalex.org/W4237249260", + "https://openalex.org/W4238893454", + "https://openalex.org/W4239969927", + "https://openalex.org/W4244364296", + "https://openalex.org/W4248685136", + "https://openalex.org/W4250955649", + "https://openalex.org/W4252579706", + "https://openalex.org/W4253029311", + "https://openalex.org/W4253271028", + "https://openalex.org/W4255056905", + "https://openalex.org/W4285719527", + "https://openalex.org/W4288418124", + "https://openalex.org/W4288616930", + "https://openalex.org/W4288622534", + "https://openalex.org/W4289108190", + "https://openalex.org/W4289305635", + "https://openalex.org/W4289389579", + "https://openalex.org/W4289543312", + "https://openalex.org/W4289751512", + "https://openalex.org/W4289761856", + "https://openalex.org/W4293358966", + "https://openalex.org/W4295111187", + "https://openalex.org/W4295769412", + "https://openalex.org/W4295837399", + "https://openalex.org/W4297749952", + "https://openalex.org/W4297802696", + "https://openalex.org/W4298125159", + "https://openalex.org/W4298201378", + "https://openalex.org/W4299295087", + "https://openalex.org/W4299565696", + "https://openalex.org/W4299971819", + "https://openalex.org/W4300852227", + "https://openalex.org/W4300885568", + "https://openalex.org/W4300921457", + "https://openalex.org/W4300946572", + "https://openalex.org/W4300990119", + "https://openalex.org/W4301055545", + "https://openalex.org/W4301057100", + "https://openalex.org/W4301369164", + "https://openalex.org/W4302549904", + "https://openalex.org/W4394667618" + ], + "related_works": [ + "https://openalex.org/W2181722423", + "https://openalex.org/W2347222412", + "https://openalex.org/W2085601491", + "https://openalex.org/W2375996887", + "https://openalex.org/W4322723290", + "https://openalex.org/W2368976073", + "https://openalex.org/W2948237757", + "https://openalex.org/W2376548177", + "https://openalex.org/W2808994565", + "https://openalex.org/W2769449614" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "October": [ + 1 + ], + "2018": [ + 2 + ], + "an": [ + 3 + ], + "APS": [ + 4 + ], + "Physics": [ + 5 + ], + "Next": [ + 6 + ], + "Workshop": [ + 7 + ], + "on": [ + 8 + ], + "Machine": [ + 9 + ], + "Learning": [ + 10 + ], + "was": [ + 11 + ], + "held": [ + 12 + ], + "in": [ + 13, + 34 + ], + "Riverhead,": [ + 14 + ], + "NY.": [ + 15 + ], + "This": [ + 16 + ], + "article": [ + 17 + ], + "reviews": [ + 18 + ], + "and": [ + 19 + ], + "summarizes": [ + 20 + ], + "the": [ + 21, + 35 + ], + "proceedings": [ + 22 + ], + "of": [ + 23 + ], + "this": [ + 24 + ], + "very": [ + 25 + ], + "broad,": [ + 26 + ], + "emerging": [ + 27 + ], + "field.This": [ + 28 + ], + "needs": [ + 29 + ], + "to": [ + 30 + ], + "be": [ + 31 + ], + "a": [ + 32, + 39 + ], + "placard": [ + 33 + ], + "left-hand": [ + 36 + ], + "column,": [ + 37 + ], + "with": [ + 38 + ], + "custom": [ + 40 + ], + "tag.": [ + 41 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 114 + }, + { + "year": 2025, + "cited_by_count": 374 + }, + { + "year": 2024, + "cited_by_count": 374 + }, + { + "year": 2023, + "cited_by_count": 477 + }, + { + "year": 2022, + "cited_by_count": 416 + }, + { + "year": 2021, + "cited_by_count": 429 + }, + { + "year": 2020, + "cited_by_count": 209 + }, + { + "year": 2019, + "cited_by_count": 19 + }, + { + "year": 2018, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2603766943", + "doi": "https://doi.org/10.1145/3052973.3053009", + "title": "Practical Black-Box Attacks against Machine Learning", + "display_name": "Practical Black-Box Attacks against Machine Learning", + "relevance_score": 3520.3503, + "publication_year": 2017, + "publication_date": "2017-03-31", + "ids": { + "openalex": "https://openalex.org/W2603766943", + "doi": "https://doi.org/10.1145/3052973.3053009", + "mag": "2603766943" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3052973.3053009", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3052973.3053009", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5018809423", + "display_name": "Nicolas Papernot", + "orcid": "https://orcid.org/0000-0001-5078-7233" + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nicolas Papernot", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055368149", + "display_name": "Patrick McDaniel", + "orcid": "https://orcid.org/0000-0003-2091-7484" + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Patrick McDaniel", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004271128", + "display_name": "Ian Goodfellow", + "orcid": "https://orcid.org/0000-0003-3937-2322" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210161460", + "display_name": "OpenAI (United States)", + "ror": "https://ror.org/05wx9n238", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210161460" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ian Goodfellow", + "raw_affiliation_strings": [ + "OpenAI, San Francisco, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "OpenAI, San Francisco, CA, USA", + "institution_ids": [ + "https://openalex.org/I4210161460" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088826068", + "display_name": "Somesh Jha", + "orcid": "https://orcid.org/0000-0001-5877-0436" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Somesh Jha", + "raw_affiliation_strings": [ + "University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Z. Berkay Celik", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Z. Berkay Celik", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5103191815", + "display_name": "Ananthram Swami", + "orcid": "https://orcid.org/0000-0003-1439-332X" + }, + "institutions": [ + { + "id": "https://openalex.org/I166416128", + "display_name": "DEVCOM Army Research Laboratory", + "ror": "https://ror.org/011hc8f90", + "country_code": "US", + "type": "government", + "lineage": [ + "https://openalex.org/I1304082316", + "https://openalex.org/I1330347796", + "https://openalex.org/I166416128", + "https://openalex.org/I2802705668", + "https://openalex.org/I4210154437" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ananthram Swami", + "raw_affiliation_strings": [ + "US Army Research Laboratory, Adelphi, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "US Army Research Laboratory, Adelphi, MD, USA", + "institution_ids": [ + "https://openalex.org/I166416128" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5018809423" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I130769515" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 282.6909, + "has_fulltext": false, + "cited_by_count": 3465, + "citation_normalized_percentile": { + "value": 0.99991872, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "506", + "last_page": "519" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9490000009536743, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.8607215881347656 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7777668237686157 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.7760648727416992 + }, + { + "id": "https://openalex.org/keywords/black-box", + "display_name": "Black box", + "score": 0.7213448286056519 + }, + { + "id": "https://openalex.org/keywords/malware", + "display_name": "Malware", + "score": 0.7048903107643127 + }, + { + "id": "https://openalex.org/keywords/deep-neural-networks", + "display_name": "Deep neural networks", + "score": 0.65977942943573 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6321082711219788 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.6107656955718994 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5658857226371765 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.559665858745575 + }, + { + "id": "https://openalex.org/keywords/adversarial-machine-learning", + "display_name": "Adversarial machine learning", + "score": 0.5187221169471741 + }, + { + "id": "https://openalex.org/keywords/threat-model", + "display_name": "Threat model", + "score": 0.4236634075641632 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.32835885882377625 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.8607215881347656 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7777668237686157 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.7760648727416992 + }, + { + "id": "https://openalex.org/C94966114", + "wikidata": "https://www.wikidata.org/wiki/Q29256", + "display_name": "Black box", + "level": 2, + "score": 0.7213448286056519 + }, + { + "id": "https://openalex.org/C541664917", + "wikidata": "https://www.wikidata.org/wiki/Q14001", + "display_name": "Malware", + "level": 2, + "score": 0.7048903107643127 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.65977942943573 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6321082711219788 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.6107656955718994 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5658857226371765 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.559665858745575 + }, + { + "id": "https://openalex.org/C2778403875", + "wikidata": "https://www.wikidata.org/wiki/Q20312394", + "display_name": "Adversarial machine learning", + "level": 3, + "score": 0.5187221169471741 + }, + { + "id": "https://openalex.org/C140547941", + "wikidata": "https://www.wikidata.org/wiki/Q7797194", + "display_name": "Threat model", + "level": 2, + "score": 0.4236634075641632 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.32835885882377625 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3052973.3053009", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3052973.3053009", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.6399999856948853, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [ + { + "id": "https://openalex.org/G2043895709", + "display_name": null, + "funder_award_id": "W911NF-13-2-0045", + "funder_id": "https://openalex.org/F4320338295", + "funder_display_name": "Army Research Laboratory" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320338295", + "display_name": "Army Research Laboratory", + "ror": "https://ror.org/011hc8f90" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 18, + "referenced_works": [ + "https://openalex.org/W9657784", + "https://openalex.org/W581033782", + "https://openalex.org/W1510924833", + "https://openalex.org/W2038296020", + "https://openalex.org/W2045638068", + "https://openalex.org/W2067713319", + "https://openalex.org/W2095577883", + "https://openalex.org/W2119885577", + "https://openalex.org/W2151298633", + "https://openalex.org/W2174868984", + "https://openalex.org/W2180612164", + "https://openalex.org/W2252814878", + "https://openalex.org/W2461943168", + "https://openalex.org/W2475730566", + "https://openalex.org/W2535873859", + "https://openalex.org/W2574797807", + "https://openalex.org/W2963207607", + "https://openalex.org/W2964153729" + ], + "related_works": [ + "https://openalex.org/W4312601715", + "https://openalex.org/W3159204880", + "https://openalex.org/W2982631433", + "https://openalex.org/W4377865163", + "https://openalex.org/W4392828243", + "https://openalex.org/W4312822655", + "https://openalex.org/W3157170264", + "https://openalex.org/W4298185893", + "https://openalex.org/W4402427143", + "https://openalex.org/W2896078964" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 161 + ], + "(ML)": [ + 2 + ], + "models,": [ + 3 + ], + "e.g.,": [ + 4 + ], + "deep": [ + 5, + 160 + ], + "neural": [ + 6 + ], + "networks": [ + 7 + ], + "(DNNs),": [ + 8 + ], + "are": [ + 9, + 138 + ], + "vulnerable": [ + 10 + ], + "to": [ + 11, + 17, + 25, + 87, + 94, + 106, + 130, + 186, + 237 + ], + "adversarial": [ + 12, + 46, + 132, + 172, + 208, + 239 + ], + "examples:": [ + 13 + ], + "malicious": [ + 14, + 32 + ], + "inputs": [ + 15, + 113 + ], + "modified": [ + 16 + ], + "yield": [ + 18, + 207 + ], + "erroneous": [ + 19 + ], + "model": [ + 20, + 54, + 105 + ], + "outputs,": [ + 21 + ], + "while": [ + 22 + ], + "appearing": [ + 23 + ], + "unmodified": [ + 24 + ], + "human": [ + 26 + ], + "observers.": [ + 27 + ], + "Potential": [ + 28 + ], + "attacks": [ + 29, + 48 + ], + "include": [ + 30 + ], + "having": [ + 31 + ], + "content": [ + 33 + ], + "like": [ + 34 + ], + "malware": [ + 35 + ], + "identified": [ + 36 + ], + "as": [ + 37 + ], + "legitimate": [ + 38 + ], + "or": [ + 39, + 56 + ], + "controlling": [ + 40, + 69 + ], + "vehicle": [ + 41 + ], + "behavior.": [ + 42 + ], + "Yet,": [ + 43 + ], + "all": [ + 44 + ], + "existing": [ + 45 + ], + "example": [ + 47, + 240 + ], + "require": [ + 49 + ], + "knowledge": [ + 50 + ], + "of": [ + 51, + 66, + 82, + 170, + 183, + 217, + 231 + ], + "either": [ + 52 + ], + "the": [ + 53, + 62, + 79, + 92, + 109, + 122, + 127, + 141, + 171, + 180, + 192 + ], + "internals": [ + 55 + ], + "its": [ + 57 + ], + "training": [ + 58, + 102 + ], + "data.": [ + 59 + ], + "We": [ + 60, + 125, + 163, + 178, + 221 + ], + "introduce": [ + 61 + ], + "first": [ + 63 + ], + "practical": [ + 64 + ], + "demonstration": [ + 65 + ], + "an": [ + 67, + 117, + 158 + ], + "attacker": [ + 68 + ], + "a": [ + 70, + 103, + 146, + 153 + ], + "remotely": [ + 71 + ], + "hosted": [ + 72, + 155, + 197 + ], + "DNN": [ + 73, + 93, + 154, + 167 + ], + "with": [ + 74, + 175 + ], + "no": [ + 75 + ], + "such": [ + 76 + ], + "knowledge.": [ + 77 + ], + "Indeed,": [ + 78 + ], + "only": [ + 80 + ], + "capability": [ + 81 + ], + "our": [ + 83, + 176, + 184 + ], + "black-box": [ + 84, + 226 + ], + "adversary": [ + 85, + 118 + ], + "is": [ + 86, + 229 + ], + "observe": [ + 88 + ], + "labels": [ + 89 + ], + "given": [ + 90 + ], + "by": [ + 91, + 116, + 121, + 140, + 156, + 190, + 198, + 211 + ], + "chosen": [ + 95 + ], + "inputs.": [ + 96 + ], + "Our": [ + 97 + ], + "attack": [ + 98, + 152, + 194, + 227 + ], + "strategy": [ + 99, + 185, + 228 + ], + "consists": [ + 100 + ], + "in": [ + 101 + ], + "local": [ + 104, + 128 + ], + "substitute": [ + 107, + 129 + ], + "for": [ + 108 + ], + "target": [ + 110, + 123 + ], + "DNN,": [ + 111 + ], + "using": [ + 112, + 202 + ], + "synthetically": [ + 114 + ], + "generated": [ + 115 + ], + "and": [ + 119, + 134, + 148, + 200, + 213, + 219 + ], + "labeled": [ + 120 + ], + "DNN.": [ + 124, + 143 + ], + "use": [ + 126 + ], + "craft": [ + 131 + ], + "examples,": [ + 133 + ], + "find": [ + 135, + 164, + 223 + ], + "that": [ + 136, + 165, + 224 + ], + "they": [ + 137 + ], + "misclassified": [ + 139, + 210 + ], + "targeted": [ + 142 + ], + "To": [ + 144 + ], + "perform": [ + 145 + ], + "real-world": [ + 147 + ], + "properly-blinded": [ + 149 + ], + "evaluation,": [ + 150 + ], + "we": [ + 151 + ], + "MetaMind,": [ + 157 + ], + "online": [ + 159 + ], + "API.": [ + 162 + ], + "their": [ + 166 + ], + "misclassifies": [ + 168 + ], + "84.24%": [ + 169 + ], + "examples": [ + 173, + 209 + ], + "crafted": [ + 174 + ], + "substitute.": [ + 177 + ], + "demonstrate": [ + 179 + ], + "general": [ + 181 + ], + "applicability": [ + 182 + ], + "many": [ + 187 + ], + "ML": [ + 188 + ], + "techniques": [ + 189 + ], + "conducting": [ + 191 + ], + "same": [ + 193 + ], + "against": [ + 195 + ], + "models": [ + 196 + ], + "Amazon": [ + 199, + 212 + ], + "Google,": [ + 201 + ], + "logistic": [ + 203 + ], + "regression": [ + 204 + ], + "substitutes.": [ + 205 + ], + "They": [ + 206 + ], + "Google": [ + 214 + ], + "at": [ + 215 + ], + "rates": [ + 216 + ], + "96.19%": [ + 218 + ], + "88.94%.": [ + 220 + ], + "also": [ + 222 + ], + "this": [ + 225 + ], + "capable": [ + 230 + ], + "evading": [ + 232 + ], + "defense": [ + 233 + ], + "strategies": [ + 234 + ], + "previously": [ + 235 + ], + "found": [ + 236 + ], + "make": [ + 238 + ], + "crafting": [ + 241 + ], + "harder.": [ + 242 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 65 + }, + { + "year": 2025, + "cited_by_count": 289 + }, + { + "year": 2024, + "cited_by_count": 377 + }, + { + "year": 2023, + "cited_by_count": 396 + }, + { + "year": 2022, + "cited_by_count": 409 + }, + { + "year": 2021, + "cited_by_count": 569 + }, + { + "year": 2020, + "cited_by_count": 590 + }, + { + "year": 2019, + "cited_by_count": 476 + }, + { + "year": 2018, + "cited_by_count": 240 + }, + { + "year": 2017, + "cited_by_count": 52 + }, + { + "year": 2016, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2914584698", + "doi": null, + "title": "Proceedings of the 23rd international conference on Machine learning", + "display_name": "Proceedings of the 23rd international conference on Machine learning", + "relevance_score": 3418.8123, + "publication_year": 2006, + "publication_date": "2006-06-25", + "ids": { + "openalex": "https://openalex.org/W2914584698", + "mag": "2914584698" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209271", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5051617344", + "display_name": "William W. Cohen", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "William W. Cohen", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5101927521", + "display_name": "Andrew Moore", + "orcid": "https://orcid.org/0000-0002-3395-0841" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Andrew Moore", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-3395-0841", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5051617344" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 2.9972, + "has_fulltext": false, + "cited_by_count": 2592, + "citation_normalized_percentile": { + "value": 0.91286853, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.6675000190734863, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.6675000190734863, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.6546000242233276, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.64774489402771 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5538260340690613 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5068791508674622 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3816671371459961 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.338736891746521 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.23399221897125244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.64774489402771 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5538260340690613 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5068791508674622 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3816671371459961 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.338736891746521 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.23399221897125244 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209271", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:2914584698", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [], + "abstract_inverted_index": { + "This": [ + 0, + 52, + 138 + ], + "volume,": [ + 1 + ], + "which": [ + 2, + 92, + 295 + ], + "is": [ + 3, + 34 + ], + "also": [ + 4, + 81, + 123, + 288 + ], + "available": [ + 5 + ], + "from": [ + 6, + 165 + ], + "http://www.machinelearning.org,": [ + 7 + ], + "the": [ + 8, + 12, + 18, + 26, + 43, + 47, + 69, + 82, + 85, + 128, + 158, + 163, + 166, + 179, + 201, + 215, + 223, + 231, + 239, + 249, + 264, + 269, + 284, + 301, + 325, + 330, + 353, + 370 + ], + "home": [ + 9 + ], + "page": [ + 10 + ], + "of": [ + 11, + 42, + 49, + 98, + 127, + 130, + 182, + 222, + 238, + 261, + 280, + 324, + 329, + 352, + 355, + 362, + 369 + ], + "International": [ + 13, + 28 + ], + "Machine": [ + 14, + 31, + 89 + ], + "Learning": [ + 15, + 75, + 90 + ], + "Society,": [ + 16 + ], + "contains": [ + 17 + ], + "technical": [ + 19, + 285 + ], + "papers": [ + 20, + 148, + 164, + 170, + 253, + 307 + ], + "accepted": [ + 21, + 252, + 274 + ], + "for": [ + 22, + 38, + 84, + 275, + 317 + ], + "presentation": [ + 23, + 39 + ], + "at": [ + 24, + 57, + 357 + ], + "ICML-2006,": [ + 25 + ], + "23rd": [ + 27 + ], + "Conference": [ + 29, + 72 + ], + "on": [ + 30, + 73 + ], + "Learning.": [ + 32 + ], + "ICML": [ + 33, + 54 + ], + "an": [ + 35, + 106, + 197, + 257, + 277, + 334 + ], + "international": [ + 36 + ], + "forum": [ + 37 + ], + "and": [ + 40, + 64, + 113, + 122, + 204, + 292, + 299, + 310, + 365 + ], + "discussion": [ + 41, + 221 + ], + "latest": [ + 44 + ], + "results": [ + 45 + ], + "in": [ + 46, + 61, + 95, + 136, + 157, + 219, + 236, + 311 + ], + "field": [ + 48, + 129 + ], + "machine": [ + 50, + 131 + ], + "learning.": [ + 51 + ], + "year,": [ + 53 + ], + "was": [ + 55, + 65, + 80, + 93, + 102 + ], + "held": [ + 56, + 94, + 297 + ], + "Carnegie": [ + 58, + 77 + ], + "Mellon": [ + 59, + 78 + ], + "University,": [ + 60 + ], + "Pittsburgh,": [ + 62 + ], + "Pennsylvania,": [ + 63 + ], + "co-located": [ + 66 + ], + "with": [ + 67, + 162, + 320 + ], + "COLT-2006,": [ + 68 + ], + "19th": [ + 70 + ], + "Annual": [ + 71 + ], + "Computational": [ + 74 + ], + "Theory.Coincidentally,": [ + 76 + ], + "University": [ + 79, + 354 + ], + "venue": [ + 83 + ], + "first": [ + 86, + 167, + 180 + ], + "ICML---the": [ + 87 + ], + "First": [ + 88 + ], + "Workshop,": [ + 91 + ], + "1980.": [ + 96 + ], + "Instead": [ + 97 + ], + "proceedings,": [ + 99 + ], + "a": [ + 100, + 124, + 174, + 210, + 220, + 228, + 312, + 338 + ], + "book": [ + 101 + ], + "published": [ + 103, + 161 + ], + "(Machine": [ + 104 + ], + "Learning:": [ + 105 + ], + "Artificial": [ + 107 + ], + "Intelligence": [ + 108 + ], + "Approach,": [ + 109 + ], + "ed.": [ + 110 + ], + "Michalski,": [ + 111 + ], + "Carbonell,": [ + 112 + ], + "Mitchell,": [ + 114 + ], + "Morgan": [ + 115 + ], + "Kaufman,": [ + 116 + ], + "1983)": [ + 117 + ], + "containing": [ + 118 + ], + "sixteen": [ + 119 + ], + "research": [ + 120 + ], + "papers,": [ + 121 + ], + "comprehensive": [ + 125, + 159 + ], + "bibliography": [ + 139 + ], + "learning,": [ + 132 + ], + "as": [ + 133, + 153, + 155 + ], + "it": [ + 134 + ], + "stood": [ + 135 + ], + "1983.": [ + 137 + ], + "contained": [ + 140 + ], + "572": [ + 141 + ], + "entries.In": [ + 142 + ], + "2006,": [ + 143 + ], + "no": [ + 144 + ], + "less": [ + 145 + ], + "than": [ + 146 + ], + "548": [ + 147, + 270 + ], + "were": [ + 149, + 156, + 171, + 194, + 254, + 273, + 296, + 342 + ], + "submitted": [ + 150 + ], + "to": [ + 151, + 173, + 199, + 206, + 227, + 256, + 283, + 345, + 348 + ], + "ICML---nearly": [ + 152 + ], + "many": [ + 154 + ], + "ICML.": [ + 168 + ], + "These": [ + 169 + ], + "subjected": [ + 172 + ], + "thorough": [ + 175 + ], + "review": [ + 176, + 262 + ], + "process.": [ + 177 + ], + "In": [ + 178 + ], + "round": [ + 181, + 260 + ], + "reviewing,": [ + 183 + ], + "every": [ + 184 + ], + "paper": [ + 185 + ], + "received": [ + 186 + ], + "three": [ + 187 + ], + "reviews": [ + 188, + 203 + ], + "by": [ + 189, + 209, + 230, + 263, + 337 + ], + "program": [ + 190 + ], + "committee": [ + 191 + ], + "members.": [ + 192 + ], + "Authors": [ + 193, + 304 + ], + "then": [ + 195, + 217 + ], + "given": [ + 196 + ], + "opportunity": [ + 198 + ], + "view": [ + 200 + ], + "first-round": [ + 202 + ], + "respond": [ + 205 + ], + "them.": [ + 207 + ], + "Led": [ + 208 + ], + "Senior": [ + 211, + 232, + 265 + ], + "Program": [ + 212, + 233, + 266 + ], + "Committee": [ + 213, + 234 + ], + "member,": [ + 214 + ], + "reviewers": [ + 216 + ], + "engaged": [ + 218 + ], + "paper,": [ + 224 + ], + "leading": [ + 225 + ], + "finally": [ + 226 + ], + "decision": [ + 229 + ], + "member": [ + 235 + ], + "charge": [ + 237 + ], + "paper.": [ + 240 + ], + "Papers": [ + 241 + ], + "could": [ + 242 + ], + "be": [ + 243, + 346 + ], + "accepted,": [ + 244 + ], + "rejected,": [ + 245 + ], + "or": [ + 246 + ], + "conditionally": [ + 247, + 251 + ], + "accepted;": [ + 248 + ], + "36": [ + 250 + ], + "subject": [ + 255 + ], + "additional": [ + 258 + ], + "final": [ + 259 + ], + "Committee.": [ + 267 + ], + "Of": [ + 268 + ], + "submissions,": [ + 271 + ], + "140": [ + 272 + ], + "publication,": [ + 276 + ], + "acceptance": [ + 278 + ], + "rate": [ + 279 + ], + "25.5%.In": [ + 281 + ], + "addition": [ + 282 + ], + "talks,": [ + 286 + ], + "ICML-2006": [ + 287 + ], + "included": [ + 289, + 333 + ], + "seven": [ + 290 + ], + "tutorials": [ + 291 + ], + "eleven": [ + 293 + ], + "workshops,": [ + 294 + ], + "before": [ + 298 + ], + "after": [ + 300 + ], + "conference,": [ + 302 + ], + "respectively.": [ + 303 + ], + "presented": [ + 305 + ], + "their": [ + 306 + ], + "both": [ + 308 + ], + "orally": [ + 309 + ], + "poster": [ + 313 + ], + "session,": [ + 314 + ], + "allowing": [ + 315 + ], + "time": [ + 316 + ], + "detailed": [ + 318 + ], + "discussions": [ + 319 + ], + "any": [ + 321 + ], + "interested": [ + 322 + ], + "attendees": [ + 323 + ], + "conference.": [ + 326 + ], + "Each": [ + 327 + ], + "day": [ + 328 + ], + "main": [ + 331 + ], + "conference": [ + 332 + ], + "invited": [ + 335 + ], + "talk": [ + 336 + ], + "prominent": [ + 339 + ], + "researcher.": [ + 340 + ], + "We": [ + 341 + ], + "very": [ + 343 + ], + "fortunate": [ + 344 + ], + "able": [ + 347 + ], + "host": [ + 349 + ], + "David": [ + 350 + ], + "Haussler,": [ + 351 + ], + "California": [ + 356 + ], + "Santa": [ + 358 + ], + "Cruz;": [ + 359 + ], + "Robert": [ + 360 + ], + "Schapire,": [ + 361 + ], + "Princeton": [ + 363 + ], + "University;": [ + 364 + ], + "Mandyam": [ + 366 + ], + "V.": [ + 367 + ], + "Srinivasan,": [ + 368 + ], + "Australian": [ + 371 + ], + "National": [ + 372 + ], + "University.": [ + 373 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 295 + }, + { + "year": 2024, + "cited_by_count": 391 + }, + { + "year": 2023, + "cited_by_count": 338 + }, + { + "year": 2022, + "cited_by_count": 297 + }, + { + "year": 2021, + "cited_by_count": 262 + }, + { + "year": 2020, + "cited_by_count": 272 + }, + { + "year": 2019, + "cited_by_count": 207 + }, + { + "year": 2018, + "cited_by_count": 147 + }, + { + "year": 2017, + "cited_by_count": 134 + }, + { + "year": 2016, + "cited_by_count": 74 + }, + { + "year": 2015, + "cited_by_count": 37 + }, + { + "year": 2014, + "cited_by_count": 40 + }, + { + "year": 2013, + "cited_by_count": 21 + }, + { + "year": 2012, + "cited_by_count": 20 + } + ], + "updated_date": "2025-11-06T04:12:42.849631", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3116286104", + "doi": "https://doi.org/10.3390/e23010018", + "title": "Explainable AI: A Review of Machine Learning Interpretability Methods", + "display_name": "Explainable AI: A Review of Machine Learning Interpretability Methods", + "relevance_score": 3376.3457, + "publication_year": 2020, + "publication_date": "2020-12-25", + "ids": { + "openalex": "https://openalex.org/W3116286104", + "doi": "https://doi.org/10.3390/e23010018", + "mag": "3116286104", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/33375658" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5074689646", + "display_name": "Pantelis Linardatos", + "orcid": "https://orcid.org/0000-0003-1132-4724" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Pantelis Linardatos", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0003-1132-4724", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5057093696", + "display_name": "Vasilis Papastefanopoulos", + "orcid": "https://orcid.org/0000-0001-8169-1373" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Vasilis Papastefanopoulos", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0001-8169-1373", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5066370772", + "display_name": "Sotiris Kotsiantis", + "orcid": "https://orcid.org/0000-0002-2247-3082" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Sotiris Kotsiantis", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0002-2247-3082", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5074689646" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I174878644" + ], + "apc_list": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "apc_paid": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "fwci": 147.8795, + "has_fulltext": false, + "cited_by_count": 2703, + "citation_normalized_percentile": { + "value": 0.99982619, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 89, + "max": 100 + }, + "biblio": { + "volume": "23", + "issue": "1", + "first_page": "18", + "last_page": "18" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.972599983215332, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.881382167339325 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.77054762840271 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7226959466934204 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6755812764167786 + }, + { + "id": "https://openalex.org/keywords/ambiguity", + "display_name": "Ambiguity", + "score": 0.6382596492767334 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5369188189506531 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.5124835968017578 + }, + { + "id": "https://openalex.org/keywords/black-box", + "display_name": "Black box", + "score": 0.43949806690216064 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.3528066873550415 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.34925395250320435 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.10554653406143188 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.10227954387664795 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.881382167339325 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.77054762840271 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7226959466934204 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6755812764167786 + }, + { + "id": "https://openalex.org/C2780522230", + "wikidata": "https://www.wikidata.org/wiki/Q1140419", + "display_name": "Ambiguity", + "level": 2, + "score": 0.6382596492767334 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5369188189506531 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.5124835968017578 + }, + { + "id": "https://openalex.org/C94966114", + "wikidata": "https://www.wikidata.org/wiki/Q29256", + "display_name": "Black box", + "level": 2, + "score": 0.43949806690216064 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.3528066873550415 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.34925395250320435 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.10554653406143188 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.10227954387664795 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + { + "id": "pmid:33375658", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/33375658", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy (Basel, Switzerland)", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:36ca352966604ee69cce840410673de9", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/36ca352966604ee69cce840410673de9", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy, Vol 23, Iss 1, p 18 (2020)", + "raw_type": "article" + }, + { + "id": "pmh:oai:mdpi.com:/1099-4300/23/1/18/", + "is_oa": true, + "landing_page_url": "https://dx.doi.org/10.3390/e23010018", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy; Volume 23; Issue 1; Pages: 18", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:7824368", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7824368", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy (Basel)", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3116286104.pdf" + }, + "referenced_works_count": 184, + "referenced_works": [ + "https://openalex.org/W100464641", + "https://openalex.org/W273955616", + "https://openalex.org/W999207820", + "https://openalex.org/W1678356000", + "https://openalex.org/W1787224781", + "https://openalex.org/W1825675169", + "https://openalex.org/W1849277567", + "https://openalex.org/W1901616594", + "https://openalex.org/W1942214758", + "https://openalex.org/W1945616565", + "https://openalex.org/W1961345416", + "https://openalex.org/W1979362125", + "https://openalex.org/W1979769549", + "https://openalex.org/W1994080277", + "https://openalex.org/W1996796871", + "https://openalex.org/W2014352947", + "https://openalex.org/W2029767409", + "https://openalex.org/W2035363534", + "https://openalex.org/W2044639673", + "https://openalex.org/W2046945713", + "https://openalex.org/W2066238228", + "https://openalex.org/W2088765131", + "https://openalex.org/W2097246321", + "https://openalex.org/W2100960835", + "https://openalex.org/W2101589741", + "https://openalex.org/W2102636708", + "https://openalex.org/W2116572416", + "https://openalex.org/W2116666691", + "https://openalex.org/W2116984840", + "https://openalex.org/W2123045220", + "https://openalex.org/W2125283600", + "https://openalex.org/W2125847307", + "https://openalex.org/W2128272608", + "https://openalex.org/W2141200610", + "https://openalex.org/W2141755357", + "https://openalex.org/W2151868609", + "https://openalex.org/W2157928966", + "https://openalex.org/W2163605009", + "https://openalex.org/W2164878629", + "https://openalex.org/W2180612164", + "https://openalex.org/W2195388612", + "https://openalex.org/W2243397390", + "https://openalex.org/W2282821441", + "https://openalex.org/W2295107390", + "https://openalex.org/W2295598076", + "https://openalex.org/W2336525064", + "https://openalex.org/W2396394641", + "https://openalex.org/W2440159969", + "https://openalex.org/W2483215953", + "https://openalex.org/W2484189903", + "https://openalex.org/W2492294785", + "https://openalex.org/W2535873859", + "https://openalex.org/W2543927648", + "https://openalex.org/W2551974706", + "https://openalex.org/W2556096924", + "https://openalex.org/W2570685808", + "https://openalex.org/W2594475271", + "https://openalex.org/W2597603852", + "https://openalex.org/W2603766943", + "https://openalex.org/W2605409611", + "https://openalex.org/W2609368435", + "https://openalex.org/W2618851150", + "https://openalex.org/W2626639386", + "https://openalex.org/W2732560823", + "https://openalex.org/W2734421735", + "https://openalex.org/W2739220786", + "https://openalex.org/W2745565856", + "https://openalex.org/W2746600820", + "https://openalex.org/W2755655609", + "https://openalex.org/W2765424254", + "https://openalex.org/W2765793020", + "https://openalex.org/W2768894107", + "https://openalex.org/W2770312844", + "https://openalex.org/W2773022113", + "https://openalex.org/W2773497437", + "https://openalex.org/W2774644650", + "https://openalex.org/W2785699986", + "https://openalex.org/W2787955716", + "https://openalex.org/W2788199784", + "https://openalex.org/W2788403449", + "https://openalex.org/W2789160704", + "https://openalex.org/W2792942633", + "https://openalex.org/W2796215194", + "https://openalex.org/W2796885425", + "https://openalex.org/W2798312813", + "https://openalex.org/W2799194071", + "https://openalex.org/W2803831897", + "https://openalex.org/W2809136100", + "https://openalex.org/W2887252986", + "https://openalex.org/W2888078780", + "https://openalex.org/W2888421747", + "https://openalex.org/W2889210204", + "https://openalex.org/W2889252776", + "https://openalex.org/W2891503716", + "https://openalex.org/W2905526464", + "https://openalex.org/W2905810301", + "https://openalex.org/W2909878761", + "https://openalex.org/W2910705748", + "https://openalex.org/W2914598080", + "https://openalex.org/W2919115771", + "https://openalex.org/W2943646750", + "https://openalex.org/W2949128310", + "https://openalex.org/W2949197630", + "https://openalex.org/W2949200088", + "https://openalex.org/W2953911539", + "https://openalex.org/W2954503794", + "https://openalex.org/W2955782190", + "https://openalex.org/W2962718684", + "https://openalex.org/W2962772482", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962816513", + "https://openalex.org/W2962818281", + "https://openalex.org/W2962858109", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963100392", + "https://openalex.org/W2963116854", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963126845", + "https://openalex.org/W2963165363", + "https://openalex.org/W2963233086", + "https://openalex.org/W2963382180", + "https://openalex.org/W2963483561", + "https://openalex.org/W2963615251", + "https://openalex.org/W2963847595", + "https://openalex.org/W2963857521", + "https://openalex.org/W2963859254", + "https://openalex.org/W2963969878", + "https://openalex.org/W2964082701", + "https://openalex.org/W2965749257", + "https://openalex.org/W2966149470", + "https://openalex.org/W2971970905", + "https://openalex.org/W2981731882", + "https://openalex.org/W2988194011", + "https://openalex.org/W2998277219", + "https://openalex.org/W3000208741", + "https://openalex.org/W3003420231", + "https://openalex.org/W3013371788", + "https://openalex.org/W3015625436", + "https://openalex.org/W3023553115", + "https://openalex.org/W3027870051", + "https://openalex.org/W3035517615", + "https://openalex.org/W3035736465", + "https://openalex.org/W3037881545", + "https://openalex.org/W3098276446", + "https://openalex.org/W3098278632", + "https://openalex.org/W3099126561", + "https://openalex.org/W3101449015", + "https://openalex.org/W3102476541", + "https://openalex.org/W3103557498", + "https://openalex.org/W3104423855", + "https://openalex.org/W3104570147", + "https://openalex.org/W3106412272", + "https://openalex.org/W3121410165", + "https://openalex.org/W3121588992", + "https://openalex.org/W3138819813", + "https://openalex.org/W4238293282", + "https://openalex.org/W4241793634", + "https://openalex.org/W4251708881", + "https://openalex.org/W4288625073", + "https://openalex.org/W4289258088", + "https://openalex.org/W4300337452", + "https://openalex.org/W6610017368", + "https://openalex.org/W6637162671", + "https://openalex.org/W6684072790", + "https://openalex.org/W6703326205", + "https://openalex.org/W6719080892", + "https://openalex.org/W6728551298", + "https://openalex.org/W6733049761", + "https://openalex.org/W6734194636", + "https://openalex.org/W6739575509", + "https://openalex.org/W6740085662", + "https://openalex.org/W6744110554", + "https://openalex.org/W6745730051", + "https://openalex.org/W6747473890", + "https://openalex.org/W6748377460", + "https://openalex.org/W6750628419", + "https://openalex.org/W6750829902", + "https://openalex.org/W6751569023", + "https://openalex.org/W6751776086", + "https://openalex.org/W6752083044", + "https://openalex.org/W6755768460", + "https://openalex.org/W6762840784", + "https://openalex.org/W6765646913", + "https://openalex.org/W7014198846" + ], + "related_works": [ + "https://openalex.org/W2797441709", + "https://openalex.org/W2346578521", + "https://openalex.org/W4297660007", + "https://openalex.org/W4377704659", + "https://openalex.org/W2886918272", + "https://openalex.org/W4387589990", + "https://openalex.org/W2943982549", + "https://openalex.org/W3101055019", + "https://openalex.org/W2910028250", + "https://openalex.org/W4241566321" + ], + "abstract_inverted_index": { + "Recent": [ + 0 + ], + "advances": [ + 1 + ], + "in": [ + 2, + 20, + 29, + 76, + 95, + 156 + ], + "artificial": [ + 3 + ], + "intelligence": [ + 4 + ], + "(AI)": [ + 5 + ], + "have": [ + 6 + ], + "led": [ + 7 + ], + "to": [ + 8, + 61, + 73, + 152 + ], + "its": [ + 9 + ], + "widespread": [ + 10 + ], + "industrial": [ + 11 + ], + "adoption,": [ + 12 + ], + "with": [ + 13, + 108 + ], + "machine": [ + 14, + 70, + 118, + 132 + ], + "learning": [ + 15, + 71, + 119, + 133 + ], + "systems": [ + 16, + 41, + 72 + ], + "demonstrating": [ + 17 + ], + "superhuman": [ + 18 + ], + "performance": [ + 19 + ], + "a": [ + 21, + 91, + 103, + 138, + 165 + ], + "significant": [ + 22 + ], + "number": [ + 23 + ], + "of": [ + 24, + 98, + 111, + 143 + ], + "tasks.": [ + 25 + ], + "However,": [ + 26 + ], + "this": [ + 27, + 160 + ], + "surge": [ + 28 + ], + "performance,": [ + 30 + ], + "has": [ + 31, + 65, + 121 + ], + "often": [ + 32 + ], + "been": [ + 33, + 122 + ], + "achieved": [ + 34 + ], + "through": [ + 35 + ], + "increased": [ + 36 + ], + "model": [ + 37 + ], + "complexity,": [ + 38 + ], + "turning": [ + 39 + ], + "such": [ + 40, + 87 + ], + "into": [ + 42 + ], + "\"black": [ + 43 + ], + "box\"": [ + 44 + ], + "approaches": [ + 45 + ], + "and": [ + 46, + 116, + 141, + 171 + ], + "causing": [ + 47 + ], + "uncertainty": [ + 48 + ], + "regarding": [ + 49 + ], + "the": [ + 50, + 56, + 96, + 109, + 157 + ], + "way": [ + 51, + 57 + ], + "they": [ + 52, + 59 + ], + "operate": [ + 53 + ], + "and,": [ + 54 + ], + "ultimately,": [ + 55 + ], + "that": [ + 58, + 105, + 114, + 159 + ], + "come": [ + 60 + ], + "decisions.": [ + 62 + ], + "This": [ + 63, + 128 + ], + "ambiguity": [ + 64 + ], + "made": [ + 66 + ], + "it": [ + 67 + ], + "problematic": [ + 68 + ], + "for": [ + 69, + 168 + ], + "be": [ + 74, + 85 + ], + "adopted": [ + 75 + ], + "sensitive": [ + 77 + ], + "yet": [ + 78 + ], + "critical": [ + 79 + ], + "domains,": [ + 80 + ], + "where": [ + 81 + ], + "their": [ + 82, + 153 + ], + "value": [ + 83 + ], + "could": [ + 84 + ], + "immense,": [ + 86 + ], + "as": [ + 88, + 148, + 150, + 164 + ], + "healthcare.": [ + 89 + ], + "As": [ + 90 + ], + "result,": [ + 92 + ], + "scientific": [ + 93 + ], + "interest": [ + 94 + ], + "field": [ + 97, + 104 + ], + "Explainable": [ + 99 + ], + "Artificial": [ + 100 + ], + "Intelligence": [ + 101 + ], + "(XAI),": [ + 102 + ], + "is": [ + 106 + ], + "concerned": [ + 107 + ], + "development": [ + 110 + ], + "new": [ + 112 + ], + "methods": [ + 113, + 145 + ], + "explain": [ + 115 + ], + "interpret": [ + 117 + ], + "models,": [ + 120 + ], + "tremendously": [ + 123 + ], + "reignited": [ + 124 + ], + "over": [ + 125 + ], + "recent": [ + 126 + ], + "years.": [ + 127 + ], + "study": [ + 129 + ], + "focuses": [ + 130 + ], + "on": [ + 131 + ], + "interpretability": [ + 134 + ], + "methods;": [ + 135 + ], + "more": [ + 136 + ], + "specifically,": [ + 137 + ], + "literature": [ + 139 + ], + "review": [ + 140 + ], + "taxonomy": [ + 142 + ], + "these": [ + 144 + ], + "are": [ + 146 + ], + "presented,": [ + 147 + ], + "well": [ + 149 + ], + "links": [ + 151 + ], + "programming": [ + 154 + ], + "implementations,": [ + 155 + ], + "hope": [ + 158 + ], + "survey": [ + 161 + ], + "would": [ + 162 + ], + "serve": [ + 163 + ], + "reference": [ + 166 + ], + "point": [ + 167 + ], + "both": [ + 169 + ], + "theorists": [ + 170 + ], + "practitioners.": [ + 172 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 210 + }, + { + "year": 2025, + "cited_by_count": 702 + }, + { + "year": 2024, + "cited_by_count": 707 + }, + { + "year": 2023, + "cited_by_count": 591 + }, + { + "year": 2022, + "cited_by_count": 382 + }, + { + "year": 2021, + "cited_by_count": 109 + }, + { + "year": 2020, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2142334564", + "doi": "https://doi.org/10.2307/1269742", + "title": "Machine Learning, Neural and Statistical Classification", + "display_name": "Machine Learning, Neural and Statistical Classification", + "relevance_score": 3336.3496, + "publication_year": 1995, + "publication_date": "1995-11-01", + "ids": { + "openalex": "https://openalex.org/W2142334564", + "doi": "https://doi.org/10.2307/1269742", + "mag": "2142334564" + }, + "language": "en", + "primary_location": { + "id": "doi:10.2307/1269742", + "is_oa": false, + "landing_page_url": "https://doi.org/10.2307/1269742", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021483518", + "display_name": "Bill Fulkerson", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I5490798", + "display_name": "John Deere (Germany)", + "ror": "https://ror.org/02xc43e34", + "country_code": "DE", + "type": "company", + "lineage": [ + "https://openalex.org/I4210096981", + "https://openalex.org/I5490798" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Bill Fulkerson", + "raw_affiliation_strings": [ + "Deere & Company", + "University of Edinburgh U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "Deere & Company", + "institution_ids": [ + "https://openalex.org/I5490798" + ] + }, + { + "raw_affiliation_string": "University of Edinburgh U.K", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006171154", + "display_name": "D. Michie", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "D. Michie", + "raw_affiliation_strings": [ + "University of Edinburgh , U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "University of Edinburgh , U.K", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080673459", + "display_name": "D. J. Spiegelhalter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "D. J. Spiegelhalter", + "raw_affiliation_strings": [ + "Univ. Forvie Site, Cambridge, U.K.#TAB#" + ], + "affiliations": [ + { + "raw_affiliation_string": "Univ. Forvie Site, Cambridge, U.K.#TAB#", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5111533856", + "display_name": "C. C. W. Taylor", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "C. C. Taylor", + "raw_affiliation_strings": [ + "University of Leeds; U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "University of Leeds; U.K", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5021483518" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I5490798" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 121.1376, + "has_fulltext": false, + "cited_by_count": 2191, + "citation_normalized_percentile": { + "value": 0.99989156, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "37", + "issue": "4", + "first_page": "459", + "last_page": "459" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9955999851226807, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9955999851226807, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9819999933242798, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14351", + "display_name": "Statistical and Computational Modeling", + "score": 0.9731000065803528, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6783725023269653 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6460950374603271 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.638775646686554 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5508975982666016 + }, + { + "id": "https://openalex.org/keywords/statistical-learning", + "display_name": "Statistical learning", + "score": 0.4216362535953522 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6783725023269653 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6460950374603271 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.638775646686554 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5508975982666016 + }, + { + "id": "https://openalex.org/C2982736386", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Statistical learning", + "level": 2, + "score": 0.4216362535953522 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.2307/1269742", + "is_oa": false, + "landing_page_url": "https://doi.org/10.2307/1269742", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 7, + "referenced_works": [ + "https://openalex.org/W1515620500", + "https://openalex.org/W1602329118", + "https://openalex.org/W1704669313", + "https://openalex.org/W1770912791", + "https://openalex.org/W2023837194", + "https://openalex.org/W2488901271", + "https://openalex.org/W3014310718" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Survey": [ + 0 + ], + "of": [ + 1, + 8 + ], + "previous": [ + 2 + ], + "comparisons": [ + 3 + ], + "and": [ + 4, + 15 + ], + "theoretical": [ + 5 + ], + "work": [ + 6 + ], + "descriptions": [ + 7, + 11 + ], + "methods": [ + 9 + ], + "dataset": [ + 10 + ], + "criteria": [ + 12 + ], + "for": [ + 13 + ], + "comparison": [ + 14 + ], + "methodology": [ + 16 + ], + "(including": [ + 17 + ], + "validation)": [ + 18 + ], + "empirical": [ + 19 + ], + "results": [ + 20 + ], + "machine": [ + 21, + 24 + ], + "learning": [ + 22 + ], + "on": [ + 23 + ], + "learning.": [ + 25 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 17 + }, + { + "year": 2023, + "cited_by_count": 45 + }, + { + "year": 2022, + "cited_by_count": 44 + }, + { + "year": 2021, + "cited_by_count": 64 + }, + { + "year": 2020, + "cited_by_count": 70 + }, + { + "year": 2019, + "cited_by_count": 65 + }, + { + "year": 2018, + "cited_by_count": 65 + }, + { + "year": 2017, + "cited_by_count": 80 + }, + { + "year": 2016, + "cited_by_count": 58 + }, + { + "year": 2015, + "cited_by_count": 64 + }, + { + "year": 2014, + "cited_by_count": 78 + }, + { + "year": 2013, + "cited_by_count": 68 + }, + { + "year": 2012, + "cited_by_count": 84 + } + ], + "updated_date": "2026-04-04T16:13:02.066488", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2962727772", + "doi": null, + "title": "Automatic differentiation in machine learning: a survey", + "display_name": "Automatic differentiation in machine learning: a survey", + "relevance_score": 3317.6707, + "publication_year": 2015, + "publication_date": "2015-01-01", + "ids": { + "openalex": "https://openalex.org/W2962727772", + "mag": "2962727772" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5063994783", + "display_name": "Atılım Güneş Baydin", + "orcid": "https://orcid.org/0000-0001-9854-8100" + }, + "institutions": [ + { + "id": "https://openalex.org/I40120149", + "display_name": "University of Oxford", + "ror": "https://ror.org/052gg0110", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I40120149" + ] + }, + { + "id": "https://openalex.org/I4210146410", + "display_name": "Science Oxford", + "ror": "https://ror.org/04j8yhy50", + "country_code": "GB", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210146410" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Atılım Güneş Baydin", + "raw_affiliation_strings": [ + "Department of Engineering Science; University of Oxford; Oxford United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0001-9854-8100", + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering Science; University of Oxford; Oxford United Kingdom", + "institution_ids": [ + "https://openalex.org/I4210146410", + "https://openalex.org/I40120149" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009984528", + "display_name": "Barak A. Pearlmutter", + "orcid": "https://orcid.org/0000-0003-0521-4553" + }, + "institutions": [ + { + "id": "https://openalex.org/I157286207", + "display_name": "National University of Ireland, Maynooth", + "ror": "https://ror.org/048nfjm95", + "country_code": "IE", + "type": "education", + "lineage": [ + "https://openalex.org/I157286207" + ] + } + ], + "countries": [ + "IE" + ], + "is_corresponding": false, + "raw_author_name": "Barak A. Pearlmutter", + "raw_affiliation_strings": [ + "Department of Computer Science , National University of Ireland Maynooth , Maynooth, Co. Kildare, Ireland" + ], + "raw_orcid": "https://orcid.org/0000-0003-0521-4553", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , National University of Ireland Maynooth , Maynooth, Co. Kildare, Ireland", + "institution_ids": [ + "https://openalex.org/I157286207" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055832270", + "display_name": "Alexey Radul", + "orcid": "https://orcid.org/0000-0002-7251-4057" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alexey Radul", + "raw_affiliation_strings": [ + "Department of Brain and Cognitive Sciences, Massachusetts Institute of Technology, Cambridge, MA" + ], + "raw_orcid": "https://orcid.org/0000-0002-7251-4057", + "affiliations": [ + { + "raw_affiliation_string": "Department of Brain and Cognitive Sciences, Massachusetts Institute of Technology, Cambridge, MA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5079140683", + "display_name": "Jeffrey Mark Siskind", + "orcid": "https://orcid.org/0000-0002-0105-6503" + }, + "institutions": [ + { + "id": "https://openalex.org/I219193219", + "display_name": "Purdue University West Lafayette", + "ror": "https://ror.org/02dqehb95", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I219193219" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jeffrey Mark Siskind", + "raw_affiliation_strings": [ + "School of Electrical & Computer Engineering, Purdue University, West Lafayette, IN" + ], + "raw_orcid": "https://orcid.org/0000-0002-0105-6503", + "affiliations": [ + { + "raw_affiliation_string": "School of Electrical & Computer Engineering, Purdue University, West Lafayette, IN", + "institution_ids": [ + "https://openalex.org/I219193219" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5063994783" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I40120149", + "https://openalex.org/I4210146410" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 5.8829, + "has_fulltext": true, + "cited_by_count": 2097, + "citation_normalized_percentile": { + "value": 0.96990496, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 97, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9828000068664551, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.9753999710083008, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7707252502441406 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6958426833152771 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.6952723264694214 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6923137903213501 + }, + { + "id": "https://openalex.org/keywords/automatic-differentiation", + "display_name": "Automatic differentiation", + "score": 0.5773985385894775 + }, + { + "id": "https://openalex.org/keywords/differentiable-function", + "display_name": "Differentiable function", + "score": 0.5487818717956543 + }, + { + "id": "https://openalex.org/keywords/clarity", + "display_name": "CLARITY", + "score": 0.49600204825401306 + }, + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.47601065039634705 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.47393471002578735 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.4503173828125 + }, + { + "id": "https://openalex.org/keywords/active-learning", + "display_name": "Active learning (machine learning)", + "score": 0.41797730326652527 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.36606842279434204 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.18022793531417847 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.14339032769203186 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.09765636920928955 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7707252502441406 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6958426833152771 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.6952723264694214 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6923137903213501 + }, + { + "id": "https://openalex.org/C133512626", + "wikidata": "https://www.wikidata.org/wiki/Q787371", + "display_name": "Automatic differentiation", + "level": 3, + "score": 0.5773985385894775 + }, + { + "id": "https://openalex.org/C202615002", + "wikidata": "https://www.wikidata.org/wiki/Q783507", + "display_name": "Differentiable function", + "level": 2, + "score": 0.5487818717956543 + }, + { + "id": "https://openalex.org/C2777146004", + "wikidata": "https://www.wikidata.org/wiki/Q14949826", + "display_name": "CLARITY", + "level": 2, + "score": 0.49600204825401306 + }, + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.47601065039634705 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.47393471002578735 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.4503173828125 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.41797730326652527 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.36606842279434204 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.18022793531417847 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.14339032769203186 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.09765636920928955 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C55493867", + "wikidata": "https://www.wikidata.org/wiki/Q7094", + "display_name": "Biochemistry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + } + ], + "best_oa_location": { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6346593773", + "display_name": null, + "funder_award_id": "09/IN.1/I2637", + "funder_id": "https://openalex.org/F4320320847", + "funder_display_name": "Science Foundation Ireland" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320320847", + "display_name": "Science Foundation Ireland", + "ror": "https://ror.org/0271asj38" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2962727772.pdf", + "grobid_xml": "https://content.openalex.org/works/W2962727772.grobid-xml" + }, + "referenced_works_count": 165, + "referenced_works": [ + "https://openalex.org/W10127936", + "https://openalex.org/W24803201", + "https://openalex.org/W32371573", + "https://openalex.org/W54927611", + "https://openalex.org/W56900066", + "https://openalex.org/W79234129", + "https://openalex.org/W96156603", + "https://openalex.org/W114517082", + "https://openalex.org/W150071318", + "https://openalex.org/W163279865", + "https://openalex.org/W178772886", + "https://openalex.org/W183071939", + "https://openalex.org/W195465510", + "https://openalex.org/W199058730", + "https://openalex.org/W658381347", + "https://openalex.org/W1448623749", + "https://openalex.org/W1491719553", + "https://openalex.org/W1498436455", + "https://openalex.org/W1508921047", + "https://openalex.org/W1510408204", + "https://openalex.org/W1526743513", + "https://openalex.org/W1531185881", + "https://openalex.org/W1531720974", + "https://openalex.org/W1533682968", + "https://openalex.org/W1545319692", + "https://openalex.org/W1554025628", + "https://openalex.org/W1554447113", + "https://openalex.org/W1555213329", + "https://openalex.org/W1556604985", + "https://openalex.org/W1558109178", + "https://openalex.org/W1579027943", + "https://openalex.org/W1585773866", + "https://openalex.org/W1593851055", + "https://openalex.org/W1597010871", + "https://openalex.org/W1597497095", + "https://openalex.org/W1601796594", + "https://openalex.org/W1602017060", + "https://openalex.org/W1667652561", + "https://openalex.org/W1732222442", + "https://openalex.org/W1746819321", + "https://openalex.org/W1781063653", + "https://openalex.org/W1786620475", + "https://openalex.org/W1833324609", + "https://openalex.org/W1841592590", + "https://openalex.org/W1868018859", + "https://openalex.org/W1902934009", + "https://openalex.org/W1906598733", + "https://openalex.org/W1909320841", + "https://openalex.org/W1959608418", + "https://openalex.org/W1960579544", + "https://openalex.org/W1964298340", + "https://openalex.org/W1965256357", + "https://openalex.org/W1976804081", + "https://openalex.org/W1980177911", + "https://openalex.org/W1981814724", + "https://openalex.org/W1983864872", + "https://openalex.org/W1984176077", + "https://openalex.org/W1985280181", + "https://openalex.org/W1987027398", + "https://openalex.org/W1988141348", + "https://openalex.org/W1991173503", + "https://openalex.org/W1996647346", + "https://openalex.org/W1996852196", + "https://openalex.org/W1997030105", + "https://openalex.org/W1999333806", + "https://openalex.org/W2004750113", + "https://openalex.org/W2005126631", + "https://openalex.org/W2006903949", + "https://openalex.org/W2008957460", + "https://openalex.org/W2017000414", + "https://openalex.org/W2018435387", + "https://openalex.org/W2030762303", + "https://openalex.org/W2031070741", + "https://openalex.org/W2039708501", + "https://openalex.org/W2042661604", + "https://openalex.org/W2057377421", + "https://openalex.org/W2058760524", + "https://openalex.org/W2058821858", + "https://openalex.org/W2062422869", + "https://openalex.org/W2065468339", + "https://openalex.org/W2069077343", + "https://openalex.org/W2069563463", + "https://openalex.org/W2070389042", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076554018", + "https://openalex.org/W2077306381", + "https://openalex.org/W2083381683", + "https://openalex.org/W2084689793", + "https://openalex.org/W2084818100", + "https://openalex.org/W2087169336", + "https://openalex.org/W2098694378", + "https://openalex.org/W2106164382", + "https://openalex.org/W2108207895", + "https://openalex.org/W2109189215", + "https://openalex.org/W2112796928", + "https://openalex.org/W2119717200", + "https://openalex.org/W2120420045", + "https://openalex.org/W2124313187", + "https://openalex.org/W2129142203", + "https://openalex.org/W2129288307", + "https://openalex.org/W2133400152", + "https://openalex.org/W2133564696", + "https://openalex.org/W2134275125", + "https://openalex.org/W2136985729", + "https://openalex.org/W2137808436", + "https://openalex.org/W2141524150", + "https://openalex.org/W2146502635", + "https://openalex.org/W2146534684", + "https://openalex.org/W2146856863", + "https://openalex.org/W2157488230", + "https://openalex.org/W2161239884", + "https://openalex.org/W2161969291", + "https://openalex.org/W2163248562", + "https://openalex.org/W2163922914", + "https://openalex.org/W2167315686", + "https://openalex.org/W2167839676", + "https://openalex.org/W2171928131", + "https://openalex.org/W2250861254", + "https://openalex.org/W2271840356", + "https://openalex.org/W2271982975", + "https://openalex.org/W2327562811", + "https://openalex.org/W2382989034", + "https://openalex.org/W2396666011", + "https://openalex.org/W2403726878", + "https://openalex.org/W2405844906", + "https://openalex.org/W2423581336", + "https://openalex.org/W2464234964", + "https://openalex.org/W2478429860", + "https://openalex.org/W2482888308", + "https://openalex.org/W2496722619", + "https://openalex.org/W2509865812", + "https://openalex.org/W2513383847", + "https://openalex.org/W2539792571", + "https://openalex.org/W2566652804", + "https://openalex.org/W2572175727", + "https://openalex.org/W2574963492", + "https://openalex.org/W2577537660", + "https://openalex.org/W2578556340", + "https://openalex.org/W2586661897", + "https://openalex.org/W2597452529", + "https://openalex.org/W2606594511", + "https://openalex.org/W2618530766", + "https://openalex.org/W2754835109", + "https://openalex.org/W2768092088", + "https://openalex.org/W2778749116", + "https://openalex.org/W2786741601", + "https://openalex.org/W2899771611", + "https://openalex.org/W2919115771", + "https://openalex.org/W2948461586", + "https://openalex.org/W2950999850", + "https://openalex.org/W2951008357", + "https://openalex.org/W2952339051", + "https://openalex.org/W2953146438", + "https://openalex.org/W2962994101", + "https://openalex.org/W2963042536", + "https://openalex.org/W2963264829", + "https://openalex.org/W2963773578", + "https://openalex.org/W2963977107", + "https://openalex.org/W2964121744", + "https://openalex.org/W2986953278", + "https://openalex.org/W3004157836", + "https://openalex.org/W3087399931", + "https://openalex.org/W3100141945", + "https://openalex.org/W3121926921", + "https://openalex.org/W3123351260" + ], + "related_works": [ + "https://openalex.org/W3146803896", + "https://openalex.org/W3101260193", + "https://openalex.org/W3003922491", + "https://openalex.org/W2970971581", + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2899771611", + "https://openalex.org/W2899283552", + "https://openalex.org/W2803629276", + "https://openalex.org/W2749028154", + "https://openalex.org/W2745110207", + "https://openalex.org/W2402144811", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2064675550", + "https://openalex.org/W2051434435", + "https://openalex.org/W1585773866", + "https://openalex.org/W1533861849", + "https://openalex.org/W1498436455", + "https://openalex.org/W2963112935" + ], + "abstract_inverted_index": { + "Derivatives,": [ + 0 + ], + "mostly": [ + 1 + ], + "in": [ + 2, + 11, + 34, + 51, + 97 + ], + "the": [ + 3, + 72, + 84, + 98, + 114, + 119 + ], + "form": [ + 4 + ], + "of": [ + 5, + 23, + 67, + 74, + 100, + 116 + ], + "gradients": [ + 6 + ], + "and": [ + 7, + 31, + 43, + 49, + 63, + 76, + 91 + ], + "Hessians,": [ + 8 + ], + "are": [ + 9 + ], + "ubiquitous": [ + 10 + ], + "machine": [ + 12, + 54, + 77, + 120 + ], + "learning.": [ + 13 + ], + "Automatic": [ + 14 + ], + "differentiation": [ + 15 + ], + "(AD)": [ + 16 + ], + "is": [ + 17 + ], + "a": [ + 18, + 88 + ], + "technique": [ + 19 + ], + "for": [ + 20 + ], + "calculating": [ + 21 + ], + "derivatives": [ + 22 + ], + "numeric": [ + 24 + ], + "functions": [ + 25 + ], + "expressed": [ + 26 + ], + "as": [ + 27, + 37 + ], + "computer": [ + 28 + ], + "programs": [ + 29 + ], + "efficiently": [ + 30 + ], + "accurately,": [ + 32 + ], + "used": [ + 33 + ], + "fields": [ + 35 + ], + "such": [ + 36 + ], + "computational": [ + 38 + ], + "fluid": [ + 39 + ], + "dynamics,": [ + 40 + ], + "nuclear": [ + 41 + ], + "engineering,": [ + 42 + ], + "atmospheric": [ + 44 + ], + "sciences.": [ + 45 + ], + "Despite": [ + 46 + ], + "its": [ + 47 + ], + "advantages": [ + 48 + ], + "use": [ + 50, + 66, + 115 + ], + "other": [ + 52 + ], + "fields,": [ + 53 + ], + "learning": [ + 55, + 121 + ], + "practitioners": [ + 56 + ], + "have": [ + 57, + 112 + ], + "been": [ + 58 + ], + "little": [ + 59 + ], + "influenced": [ + 60 + ], + "by": [ + 61 + ], + "AD": [ + 62, + 75, + 82, + 117 + ], + "make": [ + 64, + 87 + ], + "scant": [ + 65 + ], + "available": [ + 68 + ], + "tools.": [ + 69 + ], + "We": [ + 70, + 103 + ], + "survey": [ + 71 + ], + "intersection": [ + 73 + ], + "learning,": [ + 78 + ], + "cover": [ + 79 + ], + "applications": [ + 80 + ], + "where": [ + 81 + ], + "has": [ + 83 + ], + "potential": [ + 85 + ], + "to": [ + 86, + 105 + ], + "big": [ + 89 + ], + "impact,": [ + 90 + ], + "report": [ + 92 + ], + "on": [ + 93 + ], + "some": [ + 94, + 107 + ], + "recent": [ + 95 + ], + "developments": [ + 96 + ], + "adoption": [ + 99 + ], + "this": [ + 101 + ], + "technique.": [ + 102 + ], + "aim": [ + 104 + ], + "dispel": [ + 106 + ], + "misconceptions": [ + 108 + ], + "that": [ + 109 + ], + "we": [ + 110 + ], + "contend": [ + 111 + ], + "impeded": [ + 113 + ], + "within": [ + 118 + ], + "community.": [ + 122 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 252 + }, + { + "year": 2024, + "cited_by_count": 379 + }, + { + "year": 2023, + "cited_by_count": 398 + }, + { + "year": 2022, + "cited_by_count": 312 + }, + { + "year": 2021, + "cited_by_count": 381 + }, + { + "year": 2020, + "cited_by_count": 242 + }, + { + "year": 2019, + "cited_by_count": 99 + }, + { + "year": 2018, + "cited_by_count": 24 + }, + { + "year": 2017, + "cited_by_count": 6 + }, + { + "year": 2016, + "cited_by_count": 4 + } + ], + "updated_date": "2026-05-21T09:19:25.381259", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2751318774", + "doi": "https://doi.org/10.1142/9789811201967_0001", + "title": "Introduction to Machine Learning", + "display_name": "Introduction to Machine Learning", + "relevance_score": 3261.247, + "publication_year": 2019, + "publication_date": "2019-02-27", + "ids": { + "openalex": "https://openalex.org/W2751318774", + "doi": "https://doi.org/10.1142/9789811201967_0001", + "mag": "2751318774" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1142/9789811201967_0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/9789811201967_0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210240769", + "display_name": "Series in machine perception and artificial intelligence", + "issn_l": "1793-0839", + "issn": [ + "1793-0839" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "book series" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Series in Machine Perception and Artificial Intelligence", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 45.4453, + "has_fulltext": false, + "cited_by_count": 1659, + "citation_normalized_percentile": { + "value": 0.9987236, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "1", + "last_page": "22" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.3314000070095062, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.3314000070095062, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.49732616543769836 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.354877233505249 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.49732616543769836 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.354877233505249 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1142/9789811201967_0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/9789811201967_0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210240769", + "display_name": "Series in machine perception and artificial intelligence", + "issn_l": "1793-0839", + "issn": [ + "1793-0839" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "book series" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Series in Machine Perception and Artificial Intelligence", + "raw_type": "book-chapter" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2382290278", + "https://openalex.org/W2096946506", + "https://openalex.org/W2350741829", + "https://openalex.org/W3004735627", + "https://openalex.org/W3107474891" + ], + "abstract_inverted_index": { + "The": [ + 0, + 140 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 24, + 74, + 91, + 187, + 197, + 252, + 265 + ], + "machine": [ + 3, + 25, + 81, + 92, + 198, + 266 + ], + "learning": [ + 4, + 26, + 82, + 93, + 119, + 199, + 267 + ], + "is": [ + 5, + 63 + ], + "to": [ + 6, + 9, + 16, + 36, + 60, + 86, + 136, + 171, + 224, + 254 + ], + "program": [ + 7 + ], + "computers": [ + 8 + ], + "use": [ + 10 + ], + "example": [ + 11 + ], + "data": [ + 12, + 35, + 116 + ], + "or": [ + 13 + ], + "past": [ + 14, + 33 + ], + "experience": [ + 15 + ], + "solve": [ + 17 + ], + "a": [ + 18, + 45, + 64, + 71, + 88, + 137, + 191 + ], + "given": [ + 19 + ], + "problem.": [ + 20 + ], + "Many": [ + 21 + ], + "successful": [ + 22 + ], + "applications": [ + 23 + ], + "exist": [ + 27 + ], + "already,": [ + 28 + ], + "including": [ + 29, + 104 + ], + "systems": [ + 30 + ], + "that": [ + 31, + 44, + 124 + ], + "analyze": [ + 32 + ], + "sales": [ + 34 + ], + "predict": [ + 37 + ], + "customer": [ + 38 + ], + "behavior,": [ + 39 + ], + "optimize": [ + 40 + ], + "robot": [ + 41 + ], + "behavior": [ + 42 + ], + "so": [ + 43, + 123 + ], + "task": [ + 46 + ], + "can": [ + 47, + 127, + 227 + ], + "be": [ + 48, + 228, + 251 + ], + "completed": [ + 49, + 238 + ], + "using": [ + 50 + ], + "minimum": [ + 51 + ], + "resources,": [ + 52 + ], + "and": [ + 53, + 95, + 115, + 163, + 167, + 182, + 195, + 212, + 221, + 233, + 245, + 271 + ], + "extract": [ + 54 + ], + "knowledge": [ + 55 + ], + "from": [ + 56, + 101, + 130 + ], + "bioinformatics": [ + 57 + ], + "data.": [ + 58 + ], + "Introduction": [ + 59, + 223 + ], + "Machine": [ + 61, + 225, + 272 + ], + "Learning": [ + 62, + 226, + 273 + ], + "comprehensive": [ + 65 + ], + "textbook": [ + 66 + ], + "on": [ + 67, + 177, + 193, + 204 + ], + "the": [ + 68, + 125, + 131, + 134, + 172, + 205, + 257, + 263 + ], + "subject,": [ + 69 + ], + "covering": [ + 70 + ], + "broad": [ + 72 + ], + "array": [ + 73 + ], + "topics": [ + 75, + 144 + ], + "not": [ + 76 + ], + "usually": [ + 77 + ], + "included": [ + 78 + ], + "in": [ + 79, + 133, + 190, + 240, + 256 + ], + "introductory": [ + 80 + ], + "texts.": [ + 83 + ], + "In": [ + 84 + ], + "order": [ + 85 + ], + "present": [ + 87 + ], + "unified": [ + 89 + ], + "treatment": [ + 90 + ], + "problems": [ + 94 + ], + "solutions,": [ + 96 + ], + "it": [ + 97 + ], + "discusses": [ + 98 + ], + "many": [ + 99, + 213 + ], + "methods": [ + 100 + ], + "different": [ + 102 + ], + "fields,": [ + 103 + ], + "statistics,": [ + 105 + ], + "pattern": [ + 106 + ], + "recognition,": [ + 107 + ], + "neural": [ + 108 + ], + "networks,": [ + 109 + ], + "artificial": [ + 110 + ], + "intelligence,": [ + 111 + ], + "signal": [ + 112 + ], + "processing,": [ + 113 + ], + "control,": [ + 114 + ], + "mining.": [ + 117 + ], + "All": [ + 118, + 216 + ], + "algorithms": [ + 120 + ], + "are": [ + 121, + 175, + 260 + ], + "explained": [ + 122 + ], + "student": [ + 126 + ], + "easily": [ + 128 + ], + "move": [ + 129 + ], + "equations": [ + 132 + ], + "book": [ + 135 + ], + "computer": [ + 138, + 241 + ], + "program.": [ + 139 + ], + "text": [ + 141 + ], + "covers": [ + 142 + ], + "such": [ + 143 + ], + "as": [ + 145 + ], + "supervised": [ + 146 + ], + "learning,": [ + 147 + ], + "Bayesian": [ + 148, + 183 + ], + "decision": [ + 149 + ], + "theory,": [ + 150 + ], + "parametric": [ + 151 + ], + "methods,": [ + 152, + 154 + ], + "multivariate": [ + 153 + ], + "multilayer": [ + 155 + ], + "perceptrons,": [ + 156 + ], + "local": [ + 157 + ], + "models,": [ + 158, + 161, + 181 + ], + "hidden": [ + 159 + ], + "Markov": [ + 160 + ], + "assessing": [ + 162 + ], + "comparing": [ + 164 + ], + "classification": [ + 165 + ], + "algorithms,": [ + 166 + ], + "reinforcement": [ + 168 + ], + "learning.": [ + 169 + ], + "New": [ + 170 + ], + "second": [ + 173 + ], + "edition": [ + 174 + ], + "chapters": [ + 176, + 217 + ], + "kernel": [ + 178 + ], + "machines,": [ + 179 + ], + "graphical": [ + 180 + ], + "estimation;": [ + 184 + ], + "expanded": [ + 185 + ], + "coverage": [ + 186 + ], + "statistical": [ + 188 + ], + "tests": [ + 189 + ], + "chapter": [ + 192 + ], + "design": [ + 194 + ], + "analysis": [ + 196 + ], + "experiments;": [ + 200 + ], + "case": [ + 201 + ], + "studies": [ + 202 + ], + "available": [ + 203 + ], + "Web": [ + 206 + ], + "(with": [ + 207 + ], + "downloadable": [ + 208 + ], + "results": [ + 209 + ], + "for": [ + 210 + ], + "instructors);": [ + 211 + ], + "additional": [ + 214 + ], + "exercises.": [ + 215 + ], + "have": [ + 218, + 237 + ], + "been": [ + 219 + ], + "revised": [ + 220 + ], + "updated.": [ + 222 + ], + "used": [ + 229 + ], + "by": [ + 230 + ], + "advanced": [ + 231 + ], + "undergraduates": [ + 232 + ], + "graduate": [ + 234 + ], + "students": [ + 235 + ], + "who": [ + 236, + 259 + ], + "courses": [ + 239 + ], + "programming,": [ + 242 + ], + "probability,": [ + 243 + ], + "calculus,": [ + 244 + ], + "linear": [ + 246 + ], + "algebra.": [ + 247 + ], + "It": [ + 248 + ], + "will": [ + 249 + ], + "also": [ + 250 + ], + "interest": [ + 253 + ], + "engineers": [ + 255 + ], + "field": [ + 258 + ], + "concerned": [ + 261 + ], + "with": [ + 262 + ], + "application": [ + 264 + ], + "methods.": [ + 268 + ], + "Adaptive": [ + 269 + ], + "Computation": [ + 270 + ], + "series": [ + 274 + ] + }, + "counts_by_year": [ + { + "year": 2024, + "cited_by_count": 2 + }, + { + "year": 2023, + "cited_by_count": 3 + }, + { + "year": 2022, + "cited_by_count": 6 + }, + { + "year": 2021, + "cited_by_count": 46 + }, + { + "year": 2020, + "cited_by_count": 57 + }, + { + "year": 2019, + "cited_by_count": 56 + }, + { + "year": 2018, + "cited_by_count": 50 + }, + { + "year": 2017, + "cited_by_count": 63 + }, + { + "year": 2016, + "cited_by_count": 108 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 168 + }, + { + "year": 2013, + "cited_by_count": 151 + }, + { + "year": 2012, + "cited_by_count": 140 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4205539948", + "doi": "https://doi.org/10.1093/rfs/hhaa009", + "title": "Empirical Asset Pricing via Machine Learning", + "display_name": "Empirical Asset Pricing via Machine Learning", + "relevance_score": 3166.7078, + "publication_year": 2020, + "publication_date": "2020-02-20", + "ids": { + "openalex": "https://openalex.org/W4205539948", + "doi": "https://doi.org/10.1093/rfs/hhaa009" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5025931561", + "display_name": "Shihao Gu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Shihao Gu", + "raw_affiliation_strings": [ + "Booth School of Business, University of Chicago" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Booth School of Business, University of Chicago", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101435735", + "display_name": "Bryan Kelly", + "orcid": "https://orcid.org/0000-0001-6752-822X" + }, + "institutions": [ + { + "id": "https://openalex.org/I139787848", + "display_name": "Capital University", + "ror": "https://ror.org/00jy9e726", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I139787848" + ] + }, + { + "id": "https://openalex.org/I32971472", + "display_name": "Yale University", + "ror": "https://ror.org/03v76x132", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I32971472" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Bryan Kelly", + "raw_affiliation_strings": [ + "Yale University, AQR Capital Management, and NBER" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Yale University, AQR Capital Management, and NBER", + "institution_ids": [ + "https://openalex.org/I139787848", + "https://openalex.org/I32971472" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5050253426", + "display_name": "Dacheng Xiu", + "orcid": "https://orcid.org/0000-0002-2250-0861" + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dacheng Xiu", + "raw_affiliation_strings": [ + "Booth School of Business, University of Chicago" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Booth School of Business, University of Chicago", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5025931561" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I40347166" + ], + "apc_list": { + "value": 3724, + "currency": "USD", + "value_usd": 3724 + }, + "apc_paid": null, + "fwci": 221.2533, + "has_fulltext": true, + "cited_by_count": 2188, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "33", + "issue": "5", + "first_page": "2223", + "last_page": "2273" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10047", + "display_name": "Financial Markets and Investment Strategies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10047", + "display_name": "Financial Markets and Investment Strategies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T11326", + "display_name": "Stock Market Forecasting Methods", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10282", + "display_name": "Financial Risk and Volatility Modeling", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/capital-asset-pricing-model", + "display_name": "Capital asset pricing model", + "score": 0.7436144351959229 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6426714658737183 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6057676076889038 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5858373641967773 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5564541816711426 + }, + { + "id": "https://openalex.org/keywords/volatility", + "display_name": "Volatility (finance)", + "score": 0.5285476446151733 + }, + { + "id": "https://openalex.org/keywords/market-liquidity", + "display_name": "Market liquidity", + "score": 0.519666314125061 + }, + { + "id": "https://openalex.org/keywords/econometrics", + "display_name": "Econometrics", + "score": 0.5052424073219299 + }, + { + "id": "https://openalex.org/keywords/asset", + "display_name": "Asset (computer security)", + "score": 0.485171377658844 + }, + { + "id": "https://openalex.org/keywords/trace", + "display_name": "TRACE (psycholinguistics)", + "score": 0.45744583010673523 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4424659311771393 + }, + { + "id": "https://openalex.org/keywords/economics", + "display_name": "Economics", + "score": 0.3305661678314209 + }, + { + "id": "https://openalex.org/keywords/finance", + "display_name": "Finance", + "score": 0.1892847716808319 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C181236170", + "wikidata": "https://www.wikidata.org/wiki/Q848354", + "display_name": "Capital asset pricing model", + "level": 2, + "score": 0.7436144351959229 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6426714658737183 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6057676076889038 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5858373641967773 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5564541816711426 + }, + { + "id": "https://openalex.org/C91602232", + "wikidata": "https://www.wikidata.org/wiki/Q756115", + "display_name": "Volatility (finance)", + "level": 2, + "score": 0.5285476446151733 + }, + { + "id": "https://openalex.org/C183582576", + "wikidata": "https://www.wikidata.org/wiki/Q184783", + "display_name": "Market liquidity", + "level": 2, + "score": 0.519666314125061 + }, + { + "id": "https://openalex.org/C149782125", + "wikidata": "https://www.wikidata.org/wiki/Q160039", + "display_name": "Econometrics", + "level": 1, + "score": 0.5052424073219299 + }, + { + "id": "https://openalex.org/C76178495", + "wikidata": "https://www.wikidata.org/wiki/Q4808784", + "display_name": "Asset (computer security)", + "level": 2, + "score": 0.485171377658844 + }, + { + "id": "https://openalex.org/C75291252", + "wikidata": "https://www.wikidata.org/wiki/Q1315756", + "display_name": "TRACE (psycholinguistics)", + "level": 2, + "score": 0.45744583010673523 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4424659311771393 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.3305661678314209 + }, + { + "id": "https://openalex.org/C10138342", + "wikidata": "https://www.wikidata.org/wiki/Q43015", + "display_name": "Finance", + "level": 1, + "score": 0.1892847716808319 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:RePEc:oup:revfin:v:33:y:2020:i:5:p:2223-2273.", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/10.1093/rfs/hhaa009", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W4205539948.pdf", + "grobid_xml": "https://content.openalex.org/works/W4205539948.grobid-xml" + }, + "referenced_works_count": 70, + "referenced_works": [ + "https://openalex.org/W608042232", + "https://openalex.org/W1503022246", + "https://openalex.org/W1522301498", + "https://openalex.org/W1533618852", + "https://openalex.org/W1534477342", + "https://openalex.org/W1594031697", + "https://openalex.org/W1678356000", + "https://openalex.org/W1789808336", + "https://openalex.org/W1969404656", + "https://openalex.org/W1971217947", + "https://openalex.org/W1976251851", + "https://openalex.org/W1995834279", + "https://openalex.org/W2007694684", + "https://openalex.org/W2024046085", + "https://openalex.org/W2046033161", + "https://openalex.org/W2048662624", + "https://openalex.org/W2063730763", + "https://openalex.org/W2070534370", + "https://openalex.org/W2103496339", + "https://openalex.org/W2135293965", + "https://openalex.org/W2136922672", + "https://openalex.org/W2137983211", + "https://openalex.org/W2139753118", + "https://openalex.org/W2144570112", + "https://openalex.org/W2154987621", + "https://openalex.org/W2194775991", + "https://openalex.org/W2265274622", + "https://openalex.org/W2291108100", + "https://openalex.org/W2319405822", + "https://openalex.org/W2338469198", + "https://openalex.org/W2503100348", + "https://openalex.org/W2546302380", + "https://openalex.org/W2560674852", + "https://openalex.org/W2741371467", + "https://openalex.org/W2787894218", + "https://openalex.org/W2799643291", + "https://openalex.org/W2911964244", + "https://openalex.org/W2938815980", + "https://openalex.org/W2967005703", + "https://openalex.org/W3001826040", + "https://openalex.org/W3004050393", + "https://openalex.org/W3004732066", + "https://openalex.org/W3018089439", + "https://openalex.org/W3121274430", + "https://openalex.org/W3121588992", + "https://openalex.org/W3122020290", + "https://openalex.org/W3122118888", + "https://openalex.org/W3123267500", + "https://openalex.org/W3123752263", + "https://openalex.org/W3124436545", + "https://openalex.org/W3125696988", + "https://openalex.org/W3125950889", + "https://openalex.org/W3126032681", + "https://openalex.org/W3126136988", + "https://openalex.org/W3131102529", + "https://openalex.org/W4211170237", + "https://openalex.org/W4237239309", + "https://openalex.org/W4242067316", + "https://openalex.org/W4297853882", + "https://openalex.org/W4388297464", + "https://openalex.org/W6637242042", + "https://openalex.org/W6637404493", + "https://openalex.org/W6638667902", + "https://openalex.org/W6660794422", + "https://openalex.org/W6682889407", + "https://openalex.org/W6684409620", + "https://openalex.org/W6691187937", + "https://openalex.org/W6694527737", + "https://openalex.org/W6736719330", + "https://openalex.org/W6781003217" + ], + "related_works": [ + "https://openalex.org/W2512907043", + "https://openalex.org/W4248657878", + "https://openalex.org/W1985218057", + "https://openalex.org/W4313341805", + "https://openalex.org/W2167647189", + "https://openalex.org/W4390564844", + "https://openalex.org/W2131958170", + "https://openalex.org/W2061122711", + "https://openalex.org/W2273754158", + "https://openalex.org/W4313341917" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "We": [ + 1, + 22, + 46 + ], + "perform": [ + 2 + ], + "a": [ + 3, + 80 + ], + "comparative": [ + 4 + ], + "analysis": [ + 5 + ], + "of": [ + 6, + 14, + 39, + 76 + ], + "machine": [ + 7, + 30 + ], + "learning": [ + 8, + 31 + ], + "methods": [ + 9, + 50, + 70 + ], + "for": [ + 10 + ], + "the": [ + 11, + 37, + 44, + 48, + 73, + 100, + 108, + 111 + ], + "canonical": [ + 12 + ], + "problem": [ + 13 + ], + "empirical": [ + 15 + ], + "asset": [ + 16, + 19 + ], + "pricing:": [ + 17 + ], + "measuring": [ + 18 + ], + "risk": [ + 20 + ], + "premiums.": [ + 21 + ], + "demonstrate": [ + 23 + ], + "large": [ + 24 + ], + "economic": [ + 25 + ], + "gains": [ + 26, + 59 + ], + "to": [ + 27, + 60, + 107, + 110 + ], + "investors": [ + 28 + ], + "using": [ + 29 + ], + "forecasts,": [ + 32 + ], + "in": [ + 33 + ], + "some": [ + 34 + ], + "cases": [ + 35 + ], + "doubling": [ + 36 + ], + "performance": [ + 38 + ], + "leading": [ + 40 + ], + "regression-based": [ + 41 + ], + "strategies": [ + 42 + ], + "from": [ + 43 + ], + "literature.": [ + 45 + ], + "identify": [ + 47 + ], + "best-performing": [ + 49 + ], + "(trees": [ + 51 + ], + "and": [ + 52, + 55, + 88 + ], + "neural": [ + 53 + ], + "networks)": [ + 54 + ], + "trace": [ + 56 + ], + "their": [ + 57 + ], + "predictive": [ + 58, + 78 + ], + "allowing": [ + 61 + ], + "nonlinear": [ + 62 + ], + "predictor": [ + 63 + ], + "interactions": [ + 64 + ], + "missed": [ + 65 + ], + "by": [ + 66 + ], + "other": [ + 67 + ], + "methods.": [ + 68 + ], + "All": [ + 69 + ], + "agree": [ + 71 + ], + "on": [ + 72, + 85, + 99 + ], + "same": [ + 74 + ], + "set": [ + 75, + 81 + ], + "dominant": [ + 77 + ], + "signals,": [ + 79 + ], + "that": [ + 82 + ], + "includes": [ + 83 + ], + "variations": [ + 84 + ], + "momentum,": [ + 86 + ], + "liquidity,": [ + 87 + ], + "volatility.": [ + 89 + ], + "Authors": [ + 90 + ], + "have": [ + 91 + ], + "furnished": [ + 92 + ], + "an": [ + 93 + ], + "Internet": [ + 94 + ], + "Appendix,": [ + 95 + ], + "which": [ + 96 + ], + "is": [ + 97 + ], + "available": [ + 98 + ], + "Oxford": [ + 101 + ], + "University": [ + 102 + ], + "Press": [ + 103 + ], + "Web": [ + 104 + ], + "site": [ + 105 + ], + "next": [ + 106 + ], + "link": [ + 109 + ], + "final": [ + 112 + ], + "published": [ + 113 + ], + "paper": [ + 114 + ], + "online.": [ + 115 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 261 + }, + { + "year": 2025, + "cited_by_count": 533 + }, + { + "year": 2024, + "cited_by_count": 433 + }, + { + "year": 2023, + "cited_by_count": 355 + }, + { + "year": 2022, + "cited_by_count": 246 + }, + { + "year": 2021, + "cited_by_count": 212 + }, + { + "year": 2020, + "cited_by_count": 105 + }, + { + "year": 2019, + "cited_by_count": 18 + }, + { + "year": 2018, + "cited_by_count": 13 + }, + { + "year": 2017, + "cited_by_count": 5 + }, + { + "year": 2016, + "cited_by_count": 3 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1993220166", + "doi": "https://doi.org/10.1145/1007730.1007735", + "title": "A study of the behavior of several methods for balancing machine learning training data", + "display_name": "A study of the behavior of several methods for balancing machine learning training data", + "relevance_score": 3145.3699, + "publication_year": 2004, + "publication_date": "2004-06-01", + "ids": { + "openalex": "https://openalex.org/W1993220166", + "doi": "https://doi.org/10.1145/1007730.1007735", + "mag": "1993220166" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/1007730.1007735", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1007730.1007735", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210176598", + "display_name": "ACM SIGKDD Explorations Newsletter", + "issn_l": "1931-0145", + "issn": [ + "1931-0145", + "1931-0153" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM SIGKDD Explorations Newsletter", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5102371518", + "display_name": "Gustavo E. A. P. A. Batista", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": true, + "raw_author_name": "Gustavo E. A. P. A. Batista", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5005717519", + "display_name": "Ronaldo C. Prati", + "orcid": "https://orcid.org/0000-0001-8597-4987" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": false, + "raw_author_name": "Ronaldo C. Prati", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5000813310", + "display_name": "Maria Carolina Monard", + "orcid": "https://orcid.org/0000-0001-6004-7407" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": false, + "raw_author_name": "Maria Carolina Monard", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5102371518" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210131883" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 37.4612, + "has_fulltext": false, + "cited_by_count": 4104, + "citation_normalized_percentile": { + "value": 0.99786653, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "6", + "issue": "1", + "first_page": "20", + "last_page": "29" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9883999824523926, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8465416431427002 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.7231571078300476 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7109780311584473 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6125052571296692 + }, + { + "id": "https://openalex.org/keywords/sampling", + "display_name": "Sampling (signal processing)", + "score": 0.5954932570457458 + }, + { + "id": "https://openalex.org/keywords/simple-random-sample", + "display_name": "Simple random sample", + "score": 0.5651431083679199 + }, + { + "id": "https://openalex.org/keywords/event", + "display_name": "Event (particle physics)", + "score": 0.47093668580055237 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.44805052876472473 + }, + { + "id": "https://openalex.org/keywords/simple", + "display_name": "Simple (philosophy)", + "score": 0.44138047099113464 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8465416431427002 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.7231571078300476 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7109780311584473 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6125052571296692 + }, + { + "id": "https://openalex.org/C140779682", + "wikidata": "https://www.wikidata.org/wiki/Q210868", + "display_name": "Sampling (signal processing)", + "level": 3, + "score": 0.5954932570457458 + }, + { + "id": "https://openalex.org/C20353970", + "wikidata": "https://www.wikidata.org/wiki/Q1056998", + "display_name": "Simple random sample", + "level": 3, + "score": 0.5651431083679199 + }, + { + "id": "https://openalex.org/C2779662365", + "wikidata": "https://www.wikidata.org/wiki/Q5416694", + "display_name": "Event (particle physics)", + "level": 2, + "score": 0.47093668580055237 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.44805052876472473 + }, + { + "id": "https://openalex.org/C2780586882", + "wikidata": "https://www.wikidata.org/wiki/Q7520643", + "display_name": "Simple (philosophy)", + "level": 2, + "score": 0.44138047099113464 + }, + { + "id": "https://openalex.org/C2908647359", + "wikidata": "https://www.wikidata.org/wiki/Q2625603", + "display_name": "Population", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106131492", + "wikidata": "https://www.wikidata.org/wiki/Q3072260", + "display_name": "Filter (signal processing)", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C149923435", + "wikidata": "https://www.wikidata.org/wiki/Q37732", + "display_name": "Demography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/1007730.1007735", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1007730.1007735", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210176598", + "display_name": "ACM SIGKDD Explorations Newsletter", + "issn_l": "1931-0145", + "issn": [ + "1931-0145", + "1931-0153" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM SIGKDD Explorations Newsletter", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W85350352", + "https://openalex.org/W102369970", + "https://openalex.org/W142793689", + "https://openalex.org/W1499467920", + "https://openalex.org/W1504694836", + "https://openalex.org/W1576442155", + "https://openalex.org/W1591261915", + "https://openalex.org/W1941659294", + "https://openalex.org/W1977245551", + "https://openalex.org/W1994410331", + "https://openalex.org/W2004131797", + "https://openalex.org/W2058732827", + "https://openalex.org/W2084812512", + "https://openalex.org/W2107686700", + "https://openalex.org/W2114968414", + "https://openalex.org/W2122496402", + "https://openalex.org/W2125055259", + "https://openalex.org/W2136903812", + "https://openalex.org/W2137029138", + "https://openalex.org/W2147169507", + "https://openalex.org/W2148143831", + "https://openalex.org/W2152761983", + "https://openalex.org/W2157092487", + "https://openalex.org/W2170913656", + "https://openalex.org/W2797114046", + "https://openalex.org/W4285719527" + ], + "related_works": [ + "https://openalex.org/W2370014976", + "https://openalex.org/W2350399852", + "https://openalex.org/W3047864323", + "https://openalex.org/W1036777753", + "https://openalex.org/W4379210352", + "https://openalex.org/W4238714840", + "https://openalex.org/W4362679606", + "https://openalex.org/W2994963386", + "https://openalex.org/W3004700962", + "https://openalex.org/W2088812990" + ], + "abstract_inverted_index": { + "There": [ + 0 + ], + "are": [ + 1, + 283 + ], + "several": [ + 2 + ], + "aspects": [ + 3, + 22 + ], + "that": [ + 4, + 18, + 112, + 280 + ], + "might": [ + 5 + ], + "influence": [ + 6 + ], + "the": [ + 7, + 40, + 43, + 62, + 70, + 74, + 94, + 99, + 119, + 126, + 141, + 194, + 197, + 210, + 255, + 266, + 270, + 288, + 298, + 302, + 312, + 316, + 326 + ], + "performance": [ + 8, + 120, + 261 + ], + "achieved": [ + 9 + ], + "by": [ + 10, + 93 + ], + "existing": [ + 11 + ], + "learning": [ + 12, + 63, + 122, + 133 + ], + "systems.": [ + 13, + 123 + ], + "It": [ + 14 + ], + "has": [ + 15 + ], + "been": [ + 16 + ], + "reported": [ + 17 + ], + "one": [ + 19, + 36 + ], + "of": [ + 20, + 90, + 121, + 143, + 152, + 213, + 235, + 269, + 305, + 319 + ], + "these": [ + 21, + 158, + 281 + ], + "is": [ + 23, + 50, + 246 + ], + "related": [ + 24, + 72, + 131 + ], + "to": [ + 25, + 35, + 68, + 73, + 96, + 129, + 132, + 172, + 204, + 249 + ], + "class": [ + 26, + 37, + 100, + 113, + 138, + 149, + 175 + ], + "imbalance": [ + 27, + 101, + 114 + ], + "in": [ + 28, + 31, + 42, + 52, + 103, + 140, + 170, + 182, + 209, + 301, + 315 + ], + "which": [ + 29, + 49 + ], + "examples": [ + 30, + 41, + 139 + ], + "training": [ + 32 + ], + "data": [ + 33, + 55, + 106, + 167, + 229 + ], + "belonging": [ + 34 + ], + "heavily": [ + 38 + ], + "outnumber": [ + 39 + ], + "other": [ + 44, + 144 + ], + "class.": [ + 45, + 76 + ], + "In": [ + 46, + 77, + 124 + ], + "this": [ + 47, + 78 + ], + "situation,": [ + 48 + ], + "found": [ + 51 + ], + "real": [ + 53 + ], + "world": [ + 54 + ], + "describing": [ + 56 + ], + "an": [ + 57 + ], + "infrequent": [ + 58 + ], + "but": [ + 59 + ], + "important": [ + 60 + ], + "event,": [ + 61 + ], + "system": [ + 64 + ], + "may": [ + 65 + ], + "have": [ + 66 + ], + "difficulties": [ + 67 + ], + "learn": [ + 69 + ], + "concept": [ + 71 + ], + "minority": [ + 75, + 137 + ], + "work": [ + 79 + ], + "we": [ + 80, + 263 + ], + "perform": [ + 81 + ], + "a": [ + 82, + 162, + 232, + 241 + ], + "broad": [ + 83 + ], + "experimental": [ + 84 + ], + "evaluation": [ + 85 + ], + "involving": [ + 86 + ], + "ten": [ + 87 + ], + "methods,": [ + 88, + 216 + ], + "three": [ + 89 + ], + "them": [ + 91 + ], + "proposed": [ + 92, + 154, + 215 + ], + "authors,": [ + 95 + ], + "deal": [ + 97, + 156 + ], + "with": [ + 98, + 134, + 157, + 166, + 231 + ], + "problem": [ + 102, + 127 + ], + "thirteen": [ + 104 + ], + "UCI": [ + 105 + ], + "sets.": [ + 107 + ], + "Our": [ + 108, + 177, + 277 + ], + "experiments": [ + 109, + 179 + ], + "provide": [ + 110, + 186 + ], + "evidence": [ + 111 + ], + "does": [ + 115 + ], + "not": [ + 116 + ], + "systematically": [ + 117 + ], + "hinder": [ + 118 + ], + "fact,": [ + 125 + ], + "seems": [ + 128, + 203 + ], + "be": [ + 130 + ], + "too": [ + 135 + ], + "few": [ + 136 + ], + "presence": [ + 142 + ], + "complicating": [ + 145 + ], + "factors,": [ + 146 + ], + "such": [ + 147 + ], + "as": [ + 148 + ], + "overlapping.": [ + 150 + ], + "Two": [ + 151, + 212 + ], + "our": [ + 153, + 214 + ], + "methods": [ + 155, + 169, + 185, + 192, + 257 + ], + "conditions": [ + 159, + 320 + ], + "directly,": [ + 160 + ], + "allying": [ + 161 + ], + "known": [ + 163 + ], + "over-sampling": [ + 164, + 184, + 244, + 252, + 256, + 295, + 328 + ], + "method": [ + 165 + ], + "cleaning": [ + 168 + ], + "order": [ + 171 + ], + "produce": [ + 173 + ], + "better-defined": [ + 174 + ], + "clusters.": [ + 176 + ], + "comparative": [ + 178 + ], + "show": [ + 180, + 279 + ], + "that,": [ + 181 + ], + "general,": [ + 183 + ], + "more": [ + 187, + 250, + 285 + ], + "accurate": [ + 188 + ], + "results": [ + 189, + 206, + 227, + 278 + ], + "than": [ + 190 + ], + "under-sampling": [ + 191 + ], + "considering": [ + 193 + ], + "area": [ + 195 + ], + "under": [ + 196 + ], + "ROC": [ + 198 + ], + "curve": [ + 199 + ], + "(AUC).": [ + 200 + ], + "This": [ + 201 + ], + "result": [ + 202 + ], + "contradict": [ + 205 + ], + "previously": [ + 207 + ], + "published": [ + 208 + ], + "literature.": [ + 211 + ], + "Smote": [ + 217, + 221, + 309 + ], + "+": [ + 218, + 222, + 310 + ], + "Tomek": [ + 219 + ], + "and": [ + 220, + 308 + ], + "ENN,": [ + 223 + ], + "presented": [ + 224 + ], + "very": [ + 225, + 242, + 247, + 259 + ], + "good": [ + 226, + 260 + ], + "for": [ + 228 + ], + "sets": [ + 230 + ], + "small": [ + 233 + ], + "number": [ + 234, + 304, + 318 + ], + "positive": [ + 236 + ], + "examples.": [ + 237 + ], + "Moreover,": [ + 238 + ], + "Random": [ + 239, + 294 + ], + "over-sampling,": [ + 240 + ], + "simple": [ + 243 + ], + "method,": [ + 245 + ], + "competitive": [ + 248 + ], + "complex": [ + 251, + 286 + ], + "methods.": [ + 253, + 329 + ], + "Since": [ + 254 + ], + "provided": [ + 258 + ], + "results,": [ + 262 + ], + "also": [ + 264 + ], + "measured": [ + 265 + ], + "syntactic": [ + 267 + ], + "complexity": [ + 268 + ], + "decision": [ + 271 + ], + "trees": [ + 272, + 282 + ], + "induced": [ + 273, + 290, + 306 + ], + "from": [ + 274, + 291 + ], + "over-sampled": [ + 275 + ], + "data.": [ + 276, + 293 + ], + "usually": [ + 284, + 296 + ], + "then": [ + 287 + ], + "ones": [ + 289 + ], + "original": [ + 292 + ], + "produced": [ + 297 + ], + "smallest": [ + 299, + 313 + ], + "increase": [ + 300, + 314 + ], + "mean": [ + 303, + 317 + ], + "rules": [ + 307 + ], + "ENN": [ + 311 + ], + "per": [ + 321 + ], + "rule,": [ + 322 + ], + "when": [ + 323 + ], + "compared": [ + 324 + ], + "among": [ + 325 + ], + "investigated": [ + 327 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 138 + }, + { + "year": 2025, + "cited_by_count": 463 + }, + { + "year": 2024, + "cited_by_count": 437 + }, + { + "year": 2023, + "cited_by_count": 422 + }, + { + "year": 2022, + "cited_by_count": 418 + }, + { + "year": 2021, + "cited_by_count": 366 + }, + { + "year": 2020, + "cited_by_count": 372 + }, + { + "year": 2019, + "cited_by_count": 282 + }, + { + "year": 2018, + "cited_by_count": 198 + }, + { + "year": 2017, + "cited_by_count": 148 + }, + { + "year": 2016, + "cited_by_count": 128 + }, + { + "year": 2015, + "cited_by_count": 102 + }, + { + "year": 2014, + "cited_by_count": 100 + }, + { + "year": 2013, + "cited_by_count": 103 + }, + { + "year": 2012, + "cited_by_count": 86 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2767079719", + "doi": "https://doi.org/10.1145/3133956.3133982", + "title": "Practical Secure Aggregation for Privacy-Preserving Machine Learning", + "display_name": "Practical Secure Aggregation for Privacy-Preserving Machine Learning", + "relevance_score": 3137.6895, + "publication_year": 2017, + "publication_date": "2017-10-27", + "ids": { + "openalex": "https://openalex.org/W2767079719", + "doi": "https://doi.org/10.1145/3133956.3133982", + "mag": "2767079719" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3133956.3133982", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3133956.3133982", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5011571548", + "display_name": "Keith Bonawitz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Keith Bonawitz", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5090386348", + "display_name": "Vladimir Ivanov", + "orcid": "https://orcid.org/0000-0002-2272-3504" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vladimir Ivanov", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048810237", + "display_name": "Ben Kreuter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ben Kreuter", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5042948297", + "display_name": "Antonio Marcedone", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Antonio Marcedone", + "raw_affiliation_strings": [ + "Cornell Tech & Google Inc., New York, NY, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech & Google Inc., New York, NY, USA", + "institution_ids": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5040311844", + "display_name": "H. Brendan McMahan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "H. Brendan McMahan", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5112503421", + "display_name": "Sarvar Patel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sarvar Patel", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5071710055", + "display_name": "Daniel Ramage", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Daniel Ramage", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5103065610", + "display_name": "Aaron Segal", + "orcid": "https://orcid.org/0009-0009-4015-2248" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Aaron Segal", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5030536555", + "display_name": "Karn Seth", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karn Seth", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 9, + "corresponding_author_ids": [ + "https://openalex.org/A5011571548" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 115.557, + "has_fulltext": false, + "cited_by_count": 3395, + "citation_normalized_percentile": { + "value": 0.99961175, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "1175", + "last_page": "1191" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8472366333007812 + }, + { + "id": "https://openalex.org/keywords/overhead", + "display_name": "Overhead (engineering)", + "score": 0.7010411024093628 + }, + { + "id": "https://openalex.org/keywords/protocol", + "display_name": "Protocol (science)", + "score": 0.6327217221260071 + }, + { + "id": "https://openalex.org/keywords/universal-composability", + "display_name": "Universal composability", + "score": 0.5701457858085632 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.5431879758834839 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.5169126987457275 + }, + { + "id": "https://openalex.org/keywords/aggregate", + "display_name": "Aggregate (composite)", + "score": 0.5009667873382568 + }, + { + "id": "https://openalex.org/keywords/cryptographic-protocol", + "display_name": "Cryptographic protocol", + "score": 0.39526641368865967 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.3952005207538605 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.33491313457489014 + }, + { + "id": "https://openalex.org/keywords/cryptography", + "display_name": "Cryptography", + "score": 0.27258676290512085 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.24293646216392517 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.08857136964797974 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8472366333007812 + }, + { + "id": "https://openalex.org/C2779960059", + "wikidata": "https://www.wikidata.org/wiki/Q7113681", + "display_name": "Overhead (engineering)", + "level": 2, + "score": 0.7010411024093628 + }, + { + "id": "https://openalex.org/C2780385302", + "wikidata": "https://www.wikidata.org/wiki/Q367158", + "display_name": "Protocol (science)", + "level": 3, + "score": 0.6327217221260071 + }, + { + "id": "https://openalex.org/C165751822", + "wikidata": "https://www.wikidata.org/wiki/Q7894118", + "display_name": "Universal composability", + "level": 4, + "score": 0.5701457858085632 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.5431879758834839 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.5169126987457275 + }, + { + "id": "https://openalex.org/C4679612", + "wikidata": "https://www.wikidata.org/wiki/Q866298", + "display_name": "Aggregate (composite)", + "level": 2, + "score": 0.5009667873382568 + }, + { + "id": "https://openalex.org/C33884865", + "wikidata": "https://www.wikidata.org/wiki/Q1254335", + "display_name": "Cryptographic protocol", + "level": 3, + "score": 0.39526641368865967 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.3952005207538605 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.33491313457489014 + }, + { + "id": "https://openalex.org/C178489894", + "wikidata": "https://www.wikidata.org/wiki/Q8789", + "display_name": "Cryptography", + "level": 2, + "score": 0.27258676290512085 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.24293646216392517 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.08857136964797974 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C204787440", + "wikidata": "https://www.wikidata.org/wiki/Q188504", + "display_name": "Alternative medicine", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3133956.3133982", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3133956.3133982", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.49000000953674316, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 56, + "referenced_works": [ + "https://openalex.org/W25045116", + "https://openalex.org/W95608104", + "https://openalex.org/W1071368427", + "https://openalex.org/W1493407996", + "https://openalex.org/W1519947574", + "https://openalex.org/W1557833142", + "https://openalex.org/W1595357546", + "https://openalex.org/W1656028867", + "https://openalex.org/W1836711297", + "https://openalex.org/W1952161176", + "https://openalex.org/W1952958290", + "https://openalex.org/W1981029888", + "https://openalex.org/W2006453614", + "https://openalex.org/W2027471022", + "https://openalex.org/W2027595342", + "https://openalex.org/W2033974828", + "https://openalex.org/W2051267297", + "https://openalex.org/W2053637704", + "https://openalex.org/W2053801139", + "https://openalex.org/W2058648304", + "https://openalex.org/W2061106457", + "https://openalex.org/W2069657084", + "https://openalex.org/W2087811006", + "https://openalex.org/W2104803737", + "https://openalex.org/W2128865076", + "https://openalex.org/W2135930857", + "https://openalex.org/W2141420453", + "https://openalex.org/W2146673169", + "https://openalex.org/W2149093588", + "https://openalex.org/W2152768255", + "https://openalex.org/W2156186849", + "https://openalex.org/W2163481970", + "https://openalex.org/W2164284862", + "https://openalex.org/W2200869402", + "https://openalex.org/W2232997092", + "https://openalex.org/W2267098117", + "https://openalex.org/W2295522738", + "https://openalex.org/W2336650964", + "https://openalex.org/W2400777838", + "https://openalex.org/W2402235285", + "https://openalex.org/W2413533038", + "https://openalex.org/W2473418344", + "https://openalex.org/W2525846285", + "https://openalex.org/W2535690855", + "https://openalex.org/W2536058570", + "https://openalex.org/W2538520193", + "https://openalex.org/W2541884796", + "https://openalex.org/W2557283755", + "https://openalex.org/W2568821124", + "https://openalex.org/W2599930814", + "https://openalex.org/W2911978475", + "https://openalex.org/W2951114885", + "https://openalex.org/W3031847131", + "https://openalex.org/W3102407811", + "https://openalex.org/W3141405531", + "https://openalex.org/W3150645827" + ], + "related_works": [ + "https://openalex.org/W1554274402", + "https://openalex.org/W2029851387", + "https://openalex.org/W4255046035", + "https://openalex.org/W2114477748", + "https://openalex.org/W37362883", + "https://openalex.org/W1554289623", + "https://openalex.org/W2384294878", + "https://openalex.org/W2989724018", + "https://openalex.org/W4315630650", + "https://openalex.org/W2115382662" + ], + "abstract_inverted_index": { + "We": [ + 0, + 62, + 95 + ], + "design": [ + 1 + ], + "a": [ + 2, + 16, + 31, + 48, + 58, + 108 + ], + "novel,": [ + 3 + ], + "communication-efficient,": [ + 4 + ], + "failure-robust": [ + 5 + ], + "protocol": [ + 6, + 14, + 68, + 101, + 132 + ], + "for": [ + 7, + 45, + 57, + 138, + 148 + ], + "secure": [ + 8, + 32 + ], + "aggregation": [ + 9 + ], + "of": [ + 10, + 22, + 66, + 88, + 99 + ], + "high-dimensional": [ + 11 + ], + "data.": [ + 12 + ], + "Our": [ + 13 + ], + "allows": [ + 15 + ], + "server": [ + 17 + ], + "to": [ + 18, + 52 + ], + "compute": [ + 19 + ], + "the": [ + 20, + 64, + 70, + 97, + 158 + ], + "sum": [ + 21 + ], + "large,": [ + 23 + ], + "user-held": [ + 24 + ], + "data": [ + 25, + 122, + 156 + ], + "vectors": [ + 26, + 153 + ], + "from": [ + 27 + ], + "mobile": [ + 28 + ], + "devices": [ + 29 + ], + "in": [ + 30, + 47, + 69, + 157 + ], + "manner": [ + 33 + ], + "(i.e.": [ + 34 + ], + "without": [ + 35 + ], + "learning": [ + 36, + 50 + ], + "each": [ + 37 + ], + "user's": [ + 38 + ], + "individual": [ + 39 + ], + "contribution),": [ + 40 + ], + "and": [ + 41, + 72, + 76, + 102, + 107, + 114, + 124, + 141, + 144, + 151 + ], + "can": [ + 42 + ], + "be": [ + 43 + ], + "used,": [ + 44 + ], + "example,": [ + 46 + ], + "federated": [ + 49 + ], + "setting,": [ + 51 + ], + "aggregate": [ + 53 + ], + "user-provided": [ + 54 + ], + "model": [ + 55 + ], + "updates": [ + 56 + ], + "deep": [ + 59 + ], + "neural": [ + 60 + ], + "network.": [ + 61 + ], + "prove": [ + 63 + ], + "security": [ + 65, + 79 + ], + "our": [ + 67, + 100, + 131 + ], + "honest-but-curious": [ + 71 + ], + "active": [ + 73 + ], + "adversary": [ + 74 + ], + "settings,": [ + 75 + ], + "show": [ + 77 + ], + "that": [ + 78, + 111 + ], + "is": [ + 80 + ], + "maintained": [ + 81 + ], + "even": [ + 82, + 119 + ], + "if": [ + 83 + ], + "an": [ + 84 + ], + "arbitrarily": [ + 85 + ], + "chosen": [ + 86 + ], + "subset": [ + 87 + ], + "users": [ + 89, + 140, + 150 + ], + "drop": [ + 90 + ], + "out": [ + 91 + ], + "at": [ + 92 + ], + "any": [ + 93 + ], + "time.": [ + 94 + ], + "evaluate": [ + 96 + ], + "efficiency": [ + 98 + ], + "show,": [ + 103 + ], + "by": [ + 104 + ], + "complexity": [ + 105 + ], + "analysis": [ + 106 + ], + "concrete": [ + 109 + ], + "implementation,": [ + 110 + ], + "its": [ + 112 + ], + "runtime": [ + 113 + ], + "communication": [ + 115, + 136 + ], + "overhead": [ + 116 + ], + "remain": [ + 117 + ], + "low": [ + 118 + ], + "on": [ + 120 + ], + "large": [ + 121 + ], + "sets": [ + 123 + ], + "client": [ + 125 + ], + "pools.": [ + 126 + ], + "For": [ + 127 + ], + "16-bit": [ + 128 + ], + "input": [ + 129 + ], + "values,": [ + 130 + ], + "offers": [ + 133 + ], + "$1.73": [ + 134 + ], + "x": [ + 135, + 146 + ], + "expansion": [ + 137, + 147 + ], + "210": [ + 139 + ], + "220-dimensional": [ + 142 + ], + "vectors,": [ + 143 + ], + "1.98": [ + 145 + ], + "214": [ + 149 + ], + "224-dimensional": [ + 152 + ], + "over": [ + 154 + ], + "sending": [ + 155 + ], + "clear.": [ + 159 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 198 + }, + { + "year": 2025, + "cited_by_count": 652 + }, + { + "year": 2024, + "cited_by_count": 595 + }, + { + "year": 2023, + "cited_by_count": 547 + }, + { + "year": 2022, + "cited_by_count": 392 + }, + { + "year": 2021, + "cited_by_count": 456 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 166 + }, + { + "year": 2018, + "cited_by_count": 46 + }, + { + "year": 2017, + "cited_by_count": 8 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3122548859", + "doi": "https://doi.org/10.1177/2053951715622512", + "title": "How the machine ‘thinks’: Understanding opacity in machine learning algorithms", + "display_name": "How the machine ‘thinks’: Understanding opacity in machine learning algorithms", + "relevance_score": 3136.3552, + "publication_year": 2016, + "publication_date": "2016-01-06", + "ids": { + "openalex": "https://openalex.org/W3122548859", + "doi": "https://doi.org/10.1177/2053951715622512", + "mag": "3122548859" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5060940190", + "display_name": "Jenna Burrell", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Jenna Burrell", + "raw_affiliation_strings": [ + "School of Information, UC-Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Information, UC-Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5060940190" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486" + ], + "apc_list": { + "value": 800, + "currency": "USD", + "value_usd": 800 + }, + "apc_paid": { + "value": 800, + "currency": "USD", + "value_usd": 800 + }, + "fwci": 172.356, + "has_fulltext": false, + "cited_by_count": 2445, + "citation_normalized_percentile": { + "value": 0.9999191, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10883", + "display_name": "Ethics and Social Impacts of AI", + "score": 0.9934999942779541, + "subfield": { + "id": "https://openalex.org/subfields/3311", + "display_name": "Safety Research" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10883", + "display_name": "Ethics and Social Impacts of AI", + "score": 0.9934999942779541, + "subfield": { + "id": "https://openalex.org/subfields/3311", + "display_name": "Safety Research" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T12519", + "display_name": "Cybercrime and Law Enforcement Studies", + "score": 0.9776999950408936, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11838", + "display_name": "Crime, Illicit Activities, and Governance", + "score": 0.9753000140190125, + "subfield": { + "id": "https://openalex.org/subfields/3312", + "display_name": "Sociology and Political Science" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7680913209915161 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7178860902786255 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6108432412147522 + }, + { + "id": "https://openalex.org/keywords/credit-card-fraud", + "display_name": "Credit card fraud", + "score": 0.5365657210350037 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.529035747051239 + }, + { + "id": "https://openalex.org/keywords/audit", + "display_name": "Audit", + "score": 0.4749186933040619 + }, + { + "id": "https://openalex.org/keywords/opacity", + "display_name": "Opacity", + "score": 0.4564440846443176 + }, + { + "id": "https://openalex.org/keywords/credit-card", + "display_name": "Credit card", + "score": 0.24632757902145386 + }, + { + "id": "https://openalex.org/keywords/economics", + "display_name": "Economics", + "score": 0.14912906289100647 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.1430377960205078 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7680913209915161 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7178860902786255 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6108432412147522 + }, + { + "id": "https://openalex.org/C2780747020", + "wikidata": "https://www.wikidata.org/wiki/Q83873", + "display_name": "Credit card fraud", + "level": 4, + "score": 0.5365657210350037 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.529035747051239 + }, + { + "id": "https://openalex.org/C199521495", + "wikidata": "https://www.wikidata.org/wiki/Q181487", + "display_name": "Audit", + "level": 2, + "score": 0.4749186933040619 + }, + { + "id": "https://openalex.org/C60056205", + "wikidata": "https://www.wikidata.org/wiki/Q691914", + "display_name": "Opacity", + "level": 2, + "score": 0.4564440846443176 + }, + { + "id": "https://openalex.org/C2983355114", + "wikidata": "https://www.wikidata.org/wiki/Q161380", + "display_name": "Credit card", + "level": 3, + "score": 0.24632757902145386 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.14912906289100647 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.1430377960205078 + }, + { + "id": "https://openalex.org/C187736073", + "wikidata": "https://www.wikidata.org/wiki/Q2920921", + "display_name": "Management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C145097563", + "wikidata": "https://www.wikidata.org/wiki/Q1148747", + "display_name": "Payment", + "level": 2, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:e24df3681a27440f95339729c7a4e28c", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/e24df3681a27440f95339729c7a4e28c", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Big Data & Society, Vol 3 (2016)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.4399999976158142, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3122548859.pdf" + }, + "referenced_works_count": 31, + "referenced_works": [ + "https://openalex.org/W202799293", + "https://openalex.org/W606820417", + "https://openalex.org/W1540016313", + "https://openalex.org/W1648303880", + "https://openalex.org/W1990060255", + "https://openalex.org/W2021362544", + "https://openalex.org/W2048315072", + "https://openalex.org/W2065240211", + "https://openalex.org/W2066384602", + "https://openalex.org/W2074057591", + "https://openalex.org/W2078620351", + "https://openalex.org/W2100960835", + "https://openalex.org/W2158604749", + "https://openalex.org/W2161336914", + "https://openalex.org/W2163284576", + "https://openalex.org/W2186089794", + "https://openalex.org/W2339183141", + "https://openalex.org/W2556704061", + "https://openalex.org/W2566747599", + "https://openalex.org/W2735886174", + "https://openalex.org/W2799929805", + "https://openalex.org/W2951240445", + "https://openalex.org/W3123374861", + "https://openalex.org/W3157172840", + "https://openalex.org/W4233093336", + "https://openalex.org/W4233551533", + "https://openalex.org/W4238428424", + "https://openalex.org/W4239941956", + "https://openalex.org/W4242887383", + "https://openalex.org/W4244021162", + "https://openalex.org/W4285719527" + ], + "related_works": [ + "https://openalex.org/W2161791806", + "https://openalex.org/W4366824690", + "https://openalex.org/W2613656770", + "https://openalex.org/W2482431380", + "https://openalex.org/W2073474947", + "https://openalex.org/W2082077321", + "https://openalex.org/W2053059436", + "https://openalex.org/W4313201885", + "https://openalex.org/W2401696997", + "https://openalex.org/W4243546976" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "article": [ + 1, + 113 + ], + "considers": [ + 2 + ], + "the": [ + 3, + 95, + 102, + 116, + 153 + ], + "issue": [ + 4 + ], + "of": [ + 5, + 14, + 43, + 73, + 97, + 140, + 145, + 156, + 174, + 177 + ], + "opacity": [ + 6, + 76, + 84, + 91, + 157 + ], + "as": [ + 7, + 19, + 77, + 85, + 142 + ], + "a": [ + 8, + 68, + 143, + 165, + 169, + 175 + ], + "problem": [ + 9 + ], + "for": [ + 10 + ], + "socially": [ + 11 + ], + "consequential": [ + 12 + ], + "mechanisms": [ + 13, + 42 + ], + "classification": [ + 15, + 44 + ], + "and": [ + 16, + 32, + 38, + 51, + 88, + 101, + 134, + 138, + 179 + ], + "ranking,": [ + 17 + ], + "such": [ + 18 + ], + "spam": [ + 20 + ], + "filters,": [ + 21 + ], + "credit": [ + 22, + 39 + ], + "card": [ + 23 + ], + "fraud": [ + 24 + ], + "detection,": [ + 25 + ], + "search": [ + 26 + ], + "engines,": [ + 27 + ], + "news": [ + 28 + ], + "trends,": [ + 29 + ], + "market": [ + 30 + ], + "segmentation": [ + 31 + ], + "advertising,": [ + 33 + ], + "insurance": [ + 34 + ], + "or": [ + 35, + 80 + ], + "loan": [ + 36 + ], + "qualification,": [ + 37 + ], + "scoring.": [ + 40 + ], + "These": [ + 41 + ], + "all": [ + 45 + ], + "frequently": [ + 46 + ], + "rely": [ + 47 + ], + "on": [ + 48, + 55 + ], + "computational": [ + 49 + ], + "algorithms,": [ + 50 + ], + "in": [ + 52, + 111, + 123, + 164 + ], + "many": [ + 53 + ], + "cases": [ + 54 + ], + "machine": [ + 56, + 98 + ], + "learning": [ + 57, + 99 + ], + "algorithms": [ + 58, + 100, + 117 + ], + "to": [ + 59, + 105, + 171, + 184 + ], + "do": [ + 60, + 135 + ], + "this": [ + 61, + 64, + 112 + ], + "work.": [ + 62 + ], + "In": [ + 63 + ], + "article,": [ + 65 + ], + "I": [ + 66, + 119, + 149 + ], + "draw": [ + 67 + ], + "distinction": [ + 69 + ], + "between": [ + 70 + ], + "three": [ + 71 + ], + "forms": [ + 72, + 155 + ], + "opacity:": [ + 74 + ], + "(1)": [ + 75 + ], + "intentional": [ + 78 + ], + "corporate": [ + 79 + ], + "state": [ + 81 + ], + "secrecy,": [ + 82 + ], + "(2)": [ + 83 + ], + "technical": [ + 86, + 178 + ], + "illiteracy,": [ + 87 + ], + "(3)": [ + 89 + ], + "an": [ + 90 + ], + "that": [ + 92, + 151, + 158 + ], + "arises": [ + 93 + ], + "from": [ + 94 + ], + "characteristics": [ + 96 + ], + "scale": [ + 103 + ], + "required": [ + 104 + ], + "apply": [ + 106 + ], + "them": [ + 107 + ], + "usefully.": [ + 108 + ], + "The": [ + 109 + ], + "analysis": [ + 110 + ], + "gets": [ + 114 + ], + "inside": [ + 115 + ], + "themselves.": [ + 118 + ], + "cite": [ + 120 + ], + "existing": [ + 121 + ], + "literatures": [ + 122 + ], + "computer": [ + 124 + ], + "science,": [ + 125 + ], + "known": [ + 126 + ], + "industry": [ + 127 + ], + "practices": [ + 128 + ], + "(as": [ + 129 + ], + "they": [ + 130 + ], + "are": [ + 131 + ], + "publicly": [ + 132 + ], + "presented),": [ + 133 + ], + "some": [ + 136 + ], + "testing": [ + 137 + ], + "manipulation": [ + 139 + ], + "code": [ + 141, + 147 + ], + "form": [ + 144 + ], + "lightweight": [ + 146 + ], + "audit.": [ + 148 + ], + "argue": [ + 150 + ], + "recognizing": [ + 152 + ], + "distinct": [ + 154 + ], + "may": [ + 159 + ], + "be": [ + 160 + ], + "coming": [ + 161 + ], + "into": [ + 162 + ], + "play": [ + 163 + ], + "given": [ + 166 + ], + "application": [ + 167 + ], + "is": [ + 168 + ], + "key": [ + 170 + ], + "determining": [ + 172 + ], + "which": [ + 173 + ], + "variety": [ + 176 + ], + "non-technical": [ + 180 + ], + "solutions": [ + 181 + ], + "could": [ + 182 + ], + "help": [ + 183 + ], + "prevent": [ + 185 + ], + "harm.": [ + 186 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 262 + }, + { + "year": 2025, + "cited_by_count": 414 + }, + { + "year": 2024, + "cited_by_count": 392 + }, + { + "year": 2023, + "cited_by_count": 320 + }, + { + "year": 2022, + "cited_by_count": 266 + }, + { + "year": 2021, + "cited_by_count": 272 + }, + { + "year": 2020, + "cited_by_count": 216 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 91 + }, + { + "year": 2017, + "cited_by_count": 61 + }, + { + "year": 2016, + "cited_by_count": 14 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2610886376", + "doi": "https://doi.org/10.1257/jep.31.2.87", + "title": "Machine Learning: An Applied Econometric Approach", + "display_name": "Machine Learning: An Applied Econometric Approach", + "relevance_score": 3079.0986, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2610886376", + "doi": "https://doi.org/10.1257/jep.31.2.87", + "mag": "2610886376" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5034703281", + "display_name": "Sendhil Mullainathan", + "orcid": "https://orcid.org/0000-0001-8508-4052" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Sendhil Mullainathan", + "raw_affiliation_strings": [ + "Sendhil Mullainathan is the Robert C. Waggoner Professor of Economics, Harvard University, Cambridge, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Sendhil Mullainathan is the Robert C. Waggoner Professor of Economics, Harvard University, Cambridge, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5061755779", + "display_name": "Jann Spiess", + "orcid": "https://orcid.org/0000-0002-4120-8241" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801851002", + "display_name": "Harvard University Press", + "ror": "https://ror.org/006v7bf86", + "country_code": "US", + "type": "other", + "lineage": [ + "https://openalex.org/I136199984", + "https://openalex.org/I2801851002" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jann Spiess", + "raw_affiliation_strings": [ + "Jann Spiess is a PhD candidate in Economics, Harvard University, Cambridge, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Jann Spiess is a PhD candidate in Economics, Harvard University, Cambridge, Massachusetts", + "institution_ids": [ + "https://openalex.org/I2801851002" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5034703281" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 86.1138, + "has_fulltext": false, + "cited_by_count": 1863, + "citation_normalized_percentile": { + "value": 0.99985157, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "31", + "issue": "2", + "first_page": "87", + "last_page": "106" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11963", + "display_name": "Impact of Light on Environment and Health", + "score": 0.9472000002861023, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11963", + "display_name": "Impact of Light on Environment and Health", + "score": 0.9472000002861023, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11918", + "display_name": "Forecasting Techniques and Applications", + "score": 0.9279999732971191, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T12617", + "display_name": "Energy, Environment, and Transportation Policies", + "score": 0.9222000241279602, + "subfield": { + "id": "https://openalex.org/subfields/2105", + "display_name": "Renewable Energy, Sustainability and the Environment" + }, + "field": { + "id": "https://openalex.org/fields/21", + "display_name": "Energy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.8121298551559448 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8074401617050171 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7986088991165161 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7388002872467041 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7208589911460876 + }, + { + "id": "https://openalex.org/keywords/face", + "display_name": "Face (sociological concept)", + "score": 0.47808337211608887 + }, + { + "id": "https://openalex.org/keywords/empirical-research", + "display_name": "Empirical research", + "score": 0.46658068895339966 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.11046332120895386 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.8121298551559448 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8074401617050171 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7986088991165161 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7388002872467041 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7208589911460876 + }, + { + "id": "https://openalex.org/C2779304628", + "wikidata": "https://www.wikidata.org/wiki/Q3503480", + "display_name": "Face (sociological concept)", + "level": 2, + "score": 0.47808337211608887 + }, + { + "id": "https://openalex.org/C120936955", + "wikidata": "https://www.wikidata.org/wiki/Q2155640", + "display_name": "Empirical research", + "level": 2, + "score": 0.46658068895339966 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.11046332120895386 + }, + { + "id": "https://openalex.org/C36289849", + "wikidata": "https://www.wikidata.org/wiki/Q34749", + "display_name": "Social science", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:RePEc:aea:jecper:v:31:y:2017:i:2:p:87-106", + "is_oa": false, + "landing_page_url": "https://www.aeaweb.org/articles?id=10.1257/jep.31.2.87", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Decent work and economic growth", + "score": 0.5699999928474426, + "id": "https://metadata.un.org/sdg/8" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 36, + "referenced_works": [ + "https://openalex.org/W1964565322", + "https://openalex.org/W1982471084", + "https://openalex.org/W1982991166", + "https://openalex.org/W1995466835", + "https://openalex.org/W1999822211", + "https://openalex.org/W2012218966", + "https://openalex.org/W2021314860", + "https://openalex.org/W2023336635", + "https://openalex.org/W2080896439", + "https://openalex.org/W2081993622", + "https://openalex.org/W2086426685", + "https://openalex.org/W2105224904", + "https://openalex.org/W2120846249", + "https://openalex.org/W2124142297", + "https://openalex.org/W2133367005", + "https://openalex.org/W2133757074", + "https://openalex.org/W2138545569", + "https://openalex.org/W2150940164", + "https://openalex.org/W2155419203", + "https://openalex.org/W2163162137", + "https://openalex.org/W2165144879", + "https://openalex.org/W2173315138", + "https://openalex.org/W2203167467", + "https://openalex.org/W2305754340", + "https://openalex.org/W2371804352", + "https://openalex.org/W2513506629", + "https://openalex.org/W2513604209", + "https://openalex.org/W2528504543", + "https://openalex.org/W2546040478", + "https://openalex.org/W3102065143", + "https://openalex.org/W3121263799", + "https://openalex.org/W3123123374", + "https://openalex.org/W3125633690", + "https://openalex.org/W3125786740", + "https://openalex.org/W3126053622", + "https://openalex.org/W4238040836" + ], + "related_works": [ + "https://openalex.org/W4205140848", + "https://openalex.org/W2068663075", + "https://openalex.org/W2978678743", + "https://openalex.org/W2797837731", + "https://openalex.org/W4393677513", + "https://openalex.org/W4390832911", + "https://openalex.org/W829257147", + "https://openalex.org/W4385302116", + "https://openalex.org/W2549786917", + "https://openalex.org/W3204758414" + ], + "abstract_inverted_index": { + "Machines": [ + 0 + ], + "are": [ + 1, + 123, + 146 + ], + "increasingly": [ + 2 + ], + "doing": [ + 3 + ], + "“intelligent”": [ + 4 + ], + "things.": [ + 5 + ], + "Face": [ + 6 + ], + "recognition": [ + 7 + ], + "algorithms": [ + 8, + 122, + 145, + 171 + ], + "use": [ + 9, + 60, + 162 + ], + "a": [ + 10, + 18, + 24, + 32, + 64, + 90, + 165 + ], + "large": [ + 11 + ], + "dataset": [ + 12 + ], + "of": [ + 13, + 31, + 66, + 100, + 168 + ], + "photos": [ + 14 + ], + "labeled": [ + 15 + ], + "as": [ + 16 + ], + "having": [ + 17 + ], + "face": [ + 19, + 33 + ], + "or": [ + 20, + 136, + 149 + ], + "not": [ + 21, + 83 + ], + "to": [ + 22, + 39, + 114, + 127, + 156, + 161 + ], + "estimate": [ + 23 + ], + "function": [ + 25 + ], + "that": [ + 26, + 71, + 143 + ], + "predicts": [ + 27 + ], + "the": [ + 28, + 78, + 98, + 141, + 144 + ], + "presence": [ + 29 + ], + "y": [ + 30 + ], + "from": [ + 34 + ], + "pixels": [ + 35 + ], + "x.": [ + 36 + ], + "This": [ + 37, + 138 + ], + "similarity": [ + 38 + ], + "econometrics": [ + 40 + ], + "raises": [ + 41, + 140 + ], + "questions:": [ + 42 + ], + "How": [ + 43 + ], + "do": [ + 44 + ], + "these": [ + 45, + 170 + ], + "new": [ + 46, + 86 + ], + "empirical": [ + 47, + 55 + ], + "tools": [ + 48 + ], + "fit": [ + 49 + ], + "with": [ + 50 + ], + "what": [ + 51 + ], + "we": [ + 52, + 59 + ], + "know?": [ + 53 + ], + "As": [ + 54 + ], + "economists,": [ + 56 + ], + "how": [ + 57, + 169 + ], + "can": [ + 58, + 130, + 179, + 184 + ], + "them?": [ + 61 + ], + "We": [ + 62, + 154 + ], + "present": [ + 63 + ], + "way": [ + 65 + ], + "thinking": [ + 67 + ], + "about": [ + 68 + ], + "machine": [ + 69, + 94, + 112 + ], + "learning": [ + 70, + 82, + 95, + 113, + 121 + ], + "gives": [ + 72 + ], + "it": [ + 73, + 88 + ], + "its": [ + 74 + ], + "own": [ + 75 + ], + "place": [ + 76 + ], + "in": [ + 77, + 134 + ], + "econometric": [ + 79 + ], + "toolbox.": [ + 80 + ], + "Machine": [ + 81, + 120 + ], + "only": [ + 84 + ], + "provides": [ + 85 + ], + "tools,": [ + 87 + ], + "solves": [ + 89 + ], + "different": [ + 91 + ], + "problem.": [ + 92 + ], + "Specifically,": [ + 93 + ], + "revolves": [ + 96 + ], + "around": [ + 97, + 107 + ], + "problem": [ + 99 + ], + "prediction,": [ + 101 + ], + "while": [ + 102 + ], + "many": [ + 103 + ], + "economic": [ + 104 + ], + "applications": [ + 105 + ], + "revolve": [ + 106 + ], + "parameter": [ + 108 + ], + "estimation.": [ + 109 + ], + "So": [ + 110 + ], + "applying": [ + 111 + ], + "economics": [ + 115 + ], + "requires": [ + 116 + ], + "finding": [ + 117 + ], + "relevant": [ + 118 + ], + "tasks.": [ + 119 + ], + "now": [ + 124 + ], + "technically": [ + 125 + ], + "easy": [ + 126 + ], + "use:": [ + 128 + ], + "you": [ + 129 + ], + "download": [ + 131 + ], + "convenient": [ + 132 + ], + "packages": [ + 133 + ], + "R": [ + 135 + ], + "Python.": [ + 137 + ], + "also": [ + 139 + ], + "risk": [ + 142 + ], + "applied": [ + 147 + ], + "naively": [ + 148 + ], + "their": [ + 150 + ], + "output": [ + 151 + ], + "is": [ + 152 + ], + "misinterpreted.": [ + 153 + ], + "hope": [ + 155 + ], + "make": [ + 157 + ], + "them": [ + 158 + ], + "conceptually": [ + 159 + ], + "easier": [ + 160 + ], + "by": [ + 163 + ], + "providing": [ + 164 + ], + "crisper": [ + 166 + ], + "understanding": [ + 167 + ], + "work,": [ + 172 + ], + "where": [ + 173, + 177, + 182 + ], + "they": [ + 174, + 178, + 183 + ], + "excel,": [ + 175 + ], + "and": [ + 176 + ], + "stumble—and": [ + 180 + ], + "thus": [ + 181 + ], + "be": [ + 185 + ], + "most": [ + 186 + ], + "usefully": [ + 187 + ], + "applied.": [ + 188 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 117 + }, + { + "year": 2025, + "cited_by_count": 278 + }, + { + "year": 2024, + "cited_by_count": 224 + }, + { + "year": 2023, + "cited_by_count": 243 + }, + { + "year": 2022, + "cited_by_count": 218 + }, + { + "year": 2021, + "cited_by_count": 274 + }, + { + "year": 2020, + "cited_by_count": 191 + }, + { + "year": 2019, + "cited_by_count": 182 + }, + { + "year": 2018, + "cited_by_count": 100 + }, + { + "year": 2017, + "cited_by_count": 28 + }, + { + "year": 2016, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2968923792", + "doi": "https://doi.org/10.1038/s41524-019-0221-0", + "title": "Recent advances and applications of machine learning in solid-state materials science", + "display_name": "Recent advances and applications of machine learning in solid-state materials science", + "relevance_score": 3011.797, + "publication_year": 2019, + "publication_date": "2019-08-08", + "ids": { + "openalex": "https://openalex.org/W2968923792", + "doi": "https://doi.org/10.1038/s41524-019-0221-0", + "mag": "2968923792" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5057207447", + "display_name": "Jonathan Schmidt", + "orcid": "https://orcid.org/0000-0001-5685-6404" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Jonathan Schmidt", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": "https://orcid.org/0000-0001-5685-6404", + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013807218", + "display_name": "Mário R. G. Marques", + "orcid": "https://orcid.org/0000-0002-7420-5098" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Mário R. G. Marques", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-7420-5098", + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074073454", + "display_name": "Silvana Botti", + "orcid": "https://orcid.org/0000-0002-4920-2370" + }, + "institutions": [ + { + "id": "https://openalex.org/I76198965", + "display_name": "Friedrich Schiller University Jena", + "ror": "https://ror.org/05qpz1x62", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I76198965" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Silvana Botti", + "raw_affiliation_strings": [ + "Institut fr Festkrpertheorie und -optik, Friedrich-Schiller-Universitt Jena, Max-Wien-Platz 1, 07743 Jena, Germany", + "Institut für Festkörpertheorie und -optik, Friedrich-Schiller-Universität Jena, Max-Wien-Platz 1, 07743, Jena, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Festkrpertheorie und -optik, Friedrich-Schiller-Universitt Jena, Max-Wien-Platz 1, 07743 Jena, Germany", + "institution_ids": [ + "https://openalex.org/I76198965" + ] + }, + { + "raw_affiliation_string": "Institut für Festkörpertheorie und -optik, Friedrich-Schiller-Universität Jena, Max-Wien-Platz 1, 07743, Jena, Germany", + "institution_ids": [ + "https://openalex.org/I76198965" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5052107166", + "display_name": "Miguel A. L. Marques", + "orcid": "https://orcid.org/0000-0003-0170-8222" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Miguel A. L. Marques", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5057207447" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I68956291" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 99.7619, + "has_fulltext": true, + "cited_by_count": 2366, + "citation_normalized_percentile": { + "value": 0.99995996, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "5", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.991100013256073, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.8451576828956604 + }, + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.7814731597900391 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7652289867401123 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7290407419204712 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7001760005950928 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.5603207945823669 + }, + { + "id": "https://openalex.org/keywords/property", + "display_name": "Property (philosophy)", + "score": 0.45152583718299866 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.4503237307071686 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.08372414112091064 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.8451576828956604 + }, + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.7814731597900391 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7652289867401123 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7290407419204712 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7001760005950928 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.5603207945823669 + }, + { + "id": "https://openalex.org/C189950617", + "wikidata": "https://www.wikidata.org/wiki/Q937228", + "display_name": "Property (philosophy)", + "level": 2, + "score": 0.45152583718299866 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.4503237307071686 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.08372414112091064 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:2e9ae6991e1e44179c61e241d69e1fe2", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/2e9ae6991e1e44179c61e241d69e1fe2", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials, Vol 5, Iss 1, Pp 1-36 (2019)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2968923792.pdf", + "grobid_xml": "https://content.openalex.org/works/W2968923792.grobid-xml" + }, + "referenced_works_count": 518, + "referenced_works": [ + "https://openalex.org/W26088913", + "https://openalex.org/W145450961", + "https://openalex.org/W179824108", + "https://openalex.org/W203253523", + "https://openalex.org/W230490465", + "https://openalex.org/W327991062", + "https://openalex.org/W590077806", + "https://openalex.org/W654619586", + "https://openalex.org/W814282759", + "https://openalex.org/W1485300768", + "https://openalex.org/W1498183065", + "https://openalex.org/W1499888549", + "https://openalex.org/W1501856433", + "https://openalex.org/W1503398984", + "https://openalex.org/W1504770578", + "https://openalex.org/W1510052597", + "https://openalex.org/W1534043326", + "https://openalex.org/W1539789214", + "https://openalex.org/W1542652324", + "https://openalex.org/W1544171083", + "https://openalex.org/W1563453094", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571836963", + "https://openalex.org/W1577152309", + "https://openalex.org/W1581242383", + "https://openalex.org/W1584200143", + "https://openalex.org/W1596185547", + "https://openalex.org/W1625555899", + "https://openalex.org/W1643338536", + "https://openalex.org/W1662382123", + "https://openalex.org/W1677182931", + "https://openalex.org/W1678356000", + "https://openalex.org/W1678620623", + "https://openalex.org/W1780364926", + "https://openalex.org/W1787224781", + "https://openalex.org/W1800437104", + "https://openalex.org/W1806613374", + "https://openalex.org/W1812560530", + "https://openalex.org/W1849277567", + "https://openalex.org/W1861259131", + "https://openalex.org/W1865667476", + "https://openalex.org/W1875061881", + "https://openalex.org/W1875161738", + "https://openalex.org/W1940355499", + "https://openalex.org/W1964746686", + "https://openalex.org/W1964882117", + "https://openalex.org/W1965007242", + "https://openalex.org/W1965387924", + "https://openalex.org/W1965621008", + "https://openalex.org/W1966295044", + "https://openalex.org/W1966452023", + "https://openalex.org/W1967499431", + "https://openalex.org/W1967969088", + "https://openalex.org/W1971714101", + "https://openalex.org/W1972135189", + "https://openalex.org/W1973200549", + "https://openalex.org/W1975997599", + "https://openalex.org/W1976492731", + "https://openalex.org/W1976581079", + "https://openalex.org/W1978538703", + "https://openalex.org/W1979769287", + "https://openalex.org/W1979879584", + "https://openalex.org/W1981368803", + "https://openalex.org/W1981955214", + "https://openalex.org/W1982598895", + "https://openalex.org/W1983077902", + "https://openalex.org/W1984003326", + "https://openalex.org/W1986912357", + "https://openalex.org/W1988102749", + "https://openalex.org/W1988227526", + "https://openalex.org/W1988790447", + "https://openalex.org/W1989389325", + "https://openalex.org/W1989628244", + "https://openalex.org/W1989893427", + "https://openalex.org/W1990810992", + "https://openalex.org/W1991713655", + "https://openalex.org/W1992985800", + "https://openalex.org/W1994624373", + "https://openalex.org/W1995341919", + "https://openalex.org/W1996425351", + "https://openalex.org/W1998056920", + "https://openalex.org/W1998723350", + "https://openalex.org/W1999921067", + "https://openalex.org/W2000009216", + "https://openalex.org/W2000290731", + "https://openalex.org/W2000413114", + "https://openalex.org/W2002097322", + "https://openalex.org/W2002507631", + "https://openalex.org/W2005774952", + "https://openalex.org/W2006102096", + "https://openalex.org/W2007207351", + "https://openalex.org/W2007850701", + "https://openalex.org/W2011602276", + "https://openalex.org/W2012700578", + "https://openalex.org/W2014509568", + "https://openalex.org/W2014615332", + "https://openalex.org/W2015197254", + "https://openalex.org/W2015558379", + "https://openalex.org/W2017805851", + "https://openalex.org/W2018108526", + "https://openalex.org/W2019430858", + "https://openalex.org/W2020246947", + "https://openalex.org/W2020786104", + "https://openalex.org/W2021774695", + "https://openalex.org/W2021928136", + "https://openalex.org/W2022890839", + "https://openalex.org/W2024330948", + "https://openalex.org/W2025111634", + "https://openalex.org/W2025444507", + "https://openalex.org/W2025679679", + "https://openalex.org/W2025838043", + "https://openalex.org/W2027408247", + "https://openalex.org/W2029413789", + "https://openalex.org/W2030178277", + "https://openalex.org/W2030976617", + "https://openalex.org/W2031558918", + "https://openalex.org/W2033086537", + "https://openalex.org/W2033206800", + "https://openalex.org/W2034097448", + "https://openalex.org/W2035352360", + "https://openalex.org/W2036701191", + "https://openalex.org/W2037566781", + "https://openalex.org/W2037782625", + "https://openalex.org/W2039609876", + "https://openalex.org/W2039959185", + "https://openalex.org/W2040019593", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041726686", + "https://openalex.org/W2042492924", + "https://openalex.org/W2042640655", + "https://openalex.org/W2042877835", + "https://openalex.org/W2042958553", + "https://openalex.org/W2044375044", + "https://openalex.org/W2046598747", + "https://openalex.org/W2051740693", + "https://openalex.org/W2051801258", + "https://openalex.org/W2052523499", + "https://openalex.org/W2053011449", + "https://openalex.org/W2053962240", + "https://openalex.org/W2054057690", + "https://openalex.org/W2055529982", + "https://openalex.org/W2056132907", + "https://openalex.org/W2057562773", + "https://openalex.org/W2057767448", + "https://openalex.org/W2057858097", + "https://openalex.org/W2060410316", + "https://openalex.org/W2060558956", + "https://openalex.org/W2061179540", + "https://openalex.org/W2063007245", + "https://openalex.org/W2064675550", + "https://openalex.org/W2065586875", + "https://openalex.org/W2068231021", + "https://openalex.org/W2068972463", + "https://openalex.org/W2069483681", + "https://openalex.org/W2070043768", + "https://openalex.org/W2070931774", + "https://openalex.org/W2074497204", + "https://openalex.org/W2074681440", + "https://openalex.org/W2075245047", + "https://openalex.org/W2075545717", + "https://openalex.org/W2075894130", + "https://openalex.org/W2075937489", + "https://openalex.org/W2076118331", + "https://openalex.org/W2077562320", + "https://openalex.org/W2078016408", + "https://openalex.org/W2080321486", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081635359", + "https://openalex.org/W2083032961", + "https://openalex.org/W2083415705", + "https://openalex.org/W2083956694", + "https://openalex.org/W2084972556", + "https://openalex.org/W2085093563", + "https://openalex.org/W2085788926", + "https://openalex.org/W2086702546", + "https://openalex.org/W2086957099", + "https://openalex.org/W2087347434", + "https://openalex.org/W2087404659", + "https://openalex.org/W2087661061", + "https://openalex.org/W2088687796", + "https://openalex.org/W2088925839", + "https://openalex.org/W2090752561", + "https://openalex.org/W2092196700", + "https://openalex.org/W2092332261", + "https://openalex.org/W2093229042", + "https://openalex.org/W2093717447", + "https://openalex.org/W2094176506", + "https://openalex.org/W2095705004", + "https://openalex.org/W2097968133", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100495367", + "https://openalex.org/W2100689957", + "https://openalex.org/W2102074887", + "https://openalex.org/W2102940758", + "https://openalex.org/W2103780778", + "https://openalex.org/W2104489082", + "https://openalex.org/W2106111284", + "https://openalex.org/W2107278155", + "https://openalex.org/W2108738385", + "https://openalex.org/W2111935653", + "https://openalex.org/W2112431211", + "https://openalex.org/W2112796928", + "https://openalex.org/W2114704115", + "https://openalex.org/W2116341502", + "https://openalex.org/W2121020550", + "https://openalex.org/W2121237359", + "https://openalex.org/W2122825543", + "https://openalex.org/W2123306226", + "https://openalex.org/W2124820885", + "https://openalex.org/W2125132504", + "https://openalex.org/W2126316555", + "https://openalex.org/W2127271355", + "https://openalex.org/W2128333270", + "https://openalex.org/W2128420091", + "https://openalex.org/W2128659236", + "https://openalex.org/W2134164499", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135305876", + "https://openalex.org/W2137262074", + "https://openalex.org/W2138002307", + "https://openalex.org/W2139062161", + "https://openalex.org/W2142009706", + "https://openalex.org/W2144752499", + "https://openalex.org/W2146611938", + "https://openalex.org/W2147654806", + "https://openalex.org/W2147800946", + "https://openalex.org/W2147993766", + "https://openalex.org/W2148596493", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153483479", + "https://openalex.org/W2153693853", + "https://openalex.org/W2154560360", + "https://openalex.org/W2154579312", + "https://openalex.org/W2155155530", + "https://openalex.org/W2155927283", + "https://openalex.org/W2156267707", + "https://openalex.org/W2156387975", + "https://openalex.org/W2159357141", + "https://openalex.org/W2163224677", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2164452299", + "https://openalex.org/W2164524421", + "https://openalex.org/W2169589339", + "https://openalex.org/W2171029115", + "https://openalex.org/W2173027866", + "https://openalex.org/W2176170193", + "https://openalex.org/W2176412452", + "https://openalex.org/W2192127365", + "https://openalex.org/W2194775991", + "https://openalex.org/W2195388612", + "https://openalex.org/W2200589053", + "https://openalex.org/W2217912240", + "https://openalex.org/W2222214459", + "https://openalex.org/W2230728100", + "https://openalex.org/W2257979135", + "https://openalex.org/W2261108203", + "https://openalex.org/W2278970271", + "https://openalex.org/W2279481448", + "https://openalex.org/W2290847742", + "https://openalex.org/W2291925970", + "https://openalex.org/W2294798173", + "https://openalex.org/W2297621926", + "https://openalex.org/W2299676960", + "https://openalex.org/W2302501749", + "https://openalex.org/W2312842167", + "https://openalex.org/W2316320254", + "https://openalex.org/W2316524229", + "https://openalex.org/W2319902168", + "https://openalex.org/W2322326629", + "https://openalex.org/W2331520253", + "https://openalex.org/W2331812412", + "https://openalex.org/W2334013383", + "https://openalex.org/W2335591923", + "https://openalex.org/W2337082154", + "https://openalex.org/W2337110853", + "https://openalex.org/W2337496963", + "https://openalex.org/W2343462019", + "https://openalex.org/W2343821232", + "https://openalex.org/W2347129741", + "https://openalex.org/W2395579298", + "https://openalex.org/W2415372084", + "https://openalex.org/W2419175238", + "https://openalex.org/W2437591545", + "https://openalex.org/W2460314483", + "https://openalex.org/W2461312660", + "https://openalex.org/W2462003543", + "https://openalex.org/W2464725281", + "https://openalex.org/W2468907370", + "https://openalex.org/W2471982001", + "https://openalex.org/W2474543364", + "https://openalex.org/W2482115826", + "https://openalex.org/W2489757118", + "https://openalex.org/W2490901606", + "https://openalex.org/W2499226730", + "https://openalex.org/W2509907061", + "https://openalex.org/W2510169513", + "https://openalex.org/W2511358339", + "https://openalex.org/W2511699341", + "https://openalex.org/W2517221375", + "https://openalex.org/W2520022941", + "https://openalex.org/W2520500207", + "https://openalex.org/W2524910928", + "https://openalex.org/W2526943155", + "https://openalex.org/W2527189750", + "https://openalex.org/W2527749992", + "https://openalex.org/W2531545384", + "https://openalex.org/W2534747019", + "https://openalex.org/W2547447472", + "https://openalex.org/W2550668110", + "https://openalex.org/W2555683692", + "https://openalex.org/W2556028878", + "https://openalex.org/W2563751252", + "https://openalex.org/W2564209180", + "https://openalex.org/W2565212977", + "https://openalex.org/W2566573083", + "https://openalex.org/W2566642125", + "https://openalex.org/W2567115595", + "https://openalex.org/W2572438701", + "https://openalex.org/W2576881135", + "https://openalex.org/W2583795764", + "https://openalex.org/W2592733333", + "https://openalex.org/W2593724699", + "https://openalex.org/W2593838212", + "https://openalex.org/W2600236415", + "https://openalex.org/W2605627947", + "https://openalex.org/W2606191816", + "https://openalex.org/W2606478829", + "https://openalex.org/W2609397020", + "https://openalex.org/W2613094910", + "https://openalex.org/W2614083378", + "https://openalex.org/W2616519837", + "https://openalex.org/W2618945100", + "https://openalex.org/W2625386340", + "https://openalex.org/W2650911154", + "https://openalex.org/W2725771565", + "https://openalex.org/W2728789193", + "https://openalex.org/W2728984672", + "https://openalex.org/W2734520197", + "https://openalex.org/W2739066022", + "https://openalex.org/W2741557496", + "https://openalex.org/W2742014174", + "https://openalex.org/W2742061408", + "https://openalex.org/W2742127985", + "https://openalex.org/W2742835787", + "https://openalex.org/W2744546448", + "https://openalex.org/W2746244909", + "https://openalex.org/W2746340587", + "https://openalex.org/W2750556263", + "https://openalex.org/W2750673150", + "https://openalex.org/W2751488329", + "https://openalex.org/W2752033117", + "https://openalex.org/W2752052391", + "https://openalex.org/W2755320374", + "https://openalex.org/W2760202681", + "https://openalex.org/W2764267192", + "https://openalex.org/W2765459427", + "https://openalex.org/W2765597272", + "https://openalex.org/W2765966278", + "https://openalex.org/W2766432501", + "https://openalex.org/W2766518642", + "https://openalex.org/W2766856748", + "https://openalex.org/W2768213699", + "https://openalex.org/W2768591600", + "https://openalex.org/W2768828389", + "https://openalex.org/W2769287225", + "https://openalex.org/W2773094581", + "https://openalex.org/W2773787581", + "https://openalex.org/W2774180927", + "https://openalex.org/W2775811982", + "https://openalex.org/W2778051509", + "https://openalex.org/W2782772320", + "https://openalex.org/W2782811937", + "https://openalex.org/W2783016230", + "https://openalex.org/W2783428669", + "https://openalex.org/W2783643969", + "https://openalex.org/W2784208423", + "https://openalex.org/W2785060548", + "https://openalex.org/W2785434749", + "https://openalex.org/W2786956473", + "https://openalex.org/W2787894218", + "https://openalex.org/W2789575256", + "https://openalex.org/W2790939418", + "https://openalex.org/W2790960441", + "https://openalex.org/W2792351009", + "https://openalex.org/W2792521034", + "https://openalex.org/W2793186536", + "https://openalex.org/W2793847568", + "https://openalex.org/W2794749944", + "https://openalex.org/W2794792904", + "https://openalex.org/W2796365074", + "https://openalex.org/W2800722845", + "https://openalex.org/W2801870733", + "https://openalex.org/W2802513623", + "https://openalex.org/W2803328959", + "https://openalex.org/W2804333359", + "https://openalex.org/W2804431384", + "https://openalex.org/W2804529100", + "https://openalex.org/W2804765537", + "https://openalex.org/W2805504266", + "https://openalex.org/W2806173046", + "https://openalex.org/W2806275814", + "https://openalex.org/W2806393871", + "https://openalex.org/W2806681928", + "https://openalex.org/W2807070436", + "https://openalex.org/W2807471255", + "https://openalex.org/W2807890728", + "https://openalex.org/W2808433588", + "https://openalex.org/W2808651099", + "https://openalex.org/W2809409278", + "https://openalex.org/W2810294304", + "https://openalex.org/W2810643961", + "https://openalex.org/W2831812383", + "https://openalex.org/W2883021798", + "https://openalex.org/W2883578585", + "https://openalex.org/W2884430236", + "https://openalex.org/W2885048850", + "https://openalex.org/W2885427655", + "https://openalex.org/W2888296885", + "https://openalex.org/W2888395196", + "https://openalex.org/W2889393096", + "https://openalex.org/W2890177760", + "https://openalex.org/W2890641732", + "https://openalex.org/W2890910436", + "https://openalex.org/W2891365537", + "https://openalex.org/W2894543465", + "https://openalex.org/W2896311968", + "https://openalex.org/W2896731862", + "https://openalex.org/W2899133278", + "https://openalex.org/W2899771611", + "https://openalex.org/W2901005646", + "https://openalex.org/W2902687791", + "https://openalex.org/W2902914368", + "https://openalex.org/W2903284152", + "https://openalex.org/W2903483166", + "https://openalex.org/W2911964244", + "https://openalex.org/W2913390193", + "https://openalex.org/W2919115771", + "https://openalex.org/W2922185717", + "https://openalex.org/W2949095042", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949415003", + "https://openalex.org/W2949536823", + "https://openalex.org/W2950898568", + "https://openalex.org/W2952254971", + "https://openalex.org/W2962778515", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962858756", + "https://openalex.org/W2963073614", + "https://openalex.org/W2963169277", + "https://openalex.org/W2963470893", + "https://openalex.org/W2963613996", + "https://openalex.org/W2963657244", + "https://openalex.org/W2963807552", + "https://openalex.org/W2963923030", + "https://openalex.org/W2964332384", + "https://openalex.org/W2971890617", + "https://openalex.org/W2976720228", + "https://openalex.org/W2998779578", + "https://openalex.org/W3036192984", + "https://openalex.org/W3098179186", + "https://openalex.org/W3098181309", + "https://openalex.org/W3098539674", + "https://openalex.org/W3098905070", + "https://openalex.org/W3099030566", + "https://openalex.org/W3099108283", + "https://openalex.org/W3099152177", + "https://openalex.org/W3099236691", + "https://openalex.org/W3099563879", + "https://openalex.org/W3099756651", + "https://openalex.org/W3099803468", + "https://openalex.org/W3099950071", + "https://openalex.org/W3100015175", + "https://openalex.org/W3100157108", + "https://openalex.org/W3100559197", + "https://openalex.org/W3100710928", + "https://openalex.org/W3100824689", + "https://openalex.org/W3101510464", + "https://openalex.org/W3101568640", + "https://openalex.org/W3101728438", + "https://openalex.org/W3101883705", + "https://openalex.org/W3102449990", + "https://openalex.org/W3102617294", + "https://openalex.org/W3102656154", + "https://openalex.org/W3102797483", + "https://openalex.org/W3103128256", + "https://openalex.org/W3103297471", + "https://openalex.org/W3103421232", + "https://openalex.org/W3103584381", + "https://openalex.org/W3103699203", + "https://openalex.org/W3104257088", + "https://openalex.org/W3104644561", + "https://openalex.org/W3105187533", + "https://openalex.org/W3105535058", + "https://openalex.org/W3105658368", + "https://openalex.org/W3106384232", + "https://openalex.org/W3106419168", + "https://openalex.org/W3138819813", + "https://openalex.org/W3145506661", + "https://openalex.org/W3188900288", + "https://openalex.org/W4206212643", + "https://openalex.org/W4211049957", + "https://openalex.org/W4214765890", + "https://openalex.org/W4229646010", + "https://openalex.org/W4230189600", + "https://openalex.org/W4238812661", + "https://openalex.org/W4239664769", + "https://openalex.org/W4244412880", + "https://openalex.org/W4245176872", + "https://openalex.org/W4249528159", + "https://openalex.org/W4251461630", + "https://openalex.org/W4254688476", + "https://openalex.org/W4256669726", + "https://openalex.org/W4300263211", + "https://openalex.org/W4302799641", + "https://openalex.org/W6679121739", + "https://openalex.org/W6704559304", + "https://openalex.org/W6756040250" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W2806259446", + "https://openalex.org/W1986582023", + "https://openalex.org/W2883749686", + "https://openalex.org/W2966829450", + "https://openalex.org/W4315864862" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "One": [ + 1 + ], + "of": [ + 2, + 22, + 31, + 47, + 65, + 94, + 102, + 108, + 127, + 153, + 162, + 178 + ], + "the": [ + 3, + 10, + 66, + 92, + 100, + 106, + 125, + 146, + 160, + 164, + 175 + ], + "most": [ + 4, + 67 + ], + "exciting": [ + 5 + ], + "tools": [ + 6 + ], + "that": [ + 7, + 49 + ], + "have": [ + 8 + ], + "entered": [ + 9 + ], + "material": [ + 11 + ], + "science": [ + 12 + ], + "toolbox": [ + 13 + ], + "in": [ + 14, + 70, + 86, + 116, + 183, + 197 + ], + "recent": [ + 15, + 68 + ], + "years": [ + 16 + ], + "is": [ + 17 + ], + "machine": [ + 18, + 53, + 79, + 96, + 131, + 169 + ], + "learning.": [ + 19, + 132 + ], + "This": [ + 20 + ], + "collection": [ + 21 + ], + "statistical": [ + 23 + ], + "methods": [ + 24, + 129 + ], + "has": [ + 25 + ], + "already": [ + 26 + ], + "proved": [ + 27 + ], + "to": [ + 28, + 55, + 144 + ], + "be": [ + 29, + 142 + ], + "capable": [ + 30 + ], + "considerably": [ + 32 + ], + "speeding": [ + 33 + ], + "up": [ + 34 + ], + "both": [ + 35 + ], + "fundamental": [ + 36 + ], + "and": [ + 37, + 51, + 63, + 84, + 105, + 121, + 138, + 150, + 163, + 180, + 190 + ], + "applied": [ + 38, + 143 + ], + "research.": [ + 39 + ], + "At": [ + 40 + ], + "present,": [ + 41 + ], + "we": [ + 42, + 77, + 113, + 187 + ], + "are": [ + 43, + 158 + ], + "witnessing": [ + 44 + ], + "an": [ + 45 + ], + "explosion": [ + 46 + ], + "works": [ + 48 + ], + "develop": [ + 50 + ], + "apply": [ + 52 + ], + "learning": [ + 54, + 80, + 97, + 137, + 170 + ], + "solid-state": [ + 56 + ], + "systems.": [ + 57 + ], + "We": [ + 58, + 89, + 133, + 172 + ], + "provide": [ + 59 + ], + "a": [ + 60, + 74 + ], + "comprehensive": [ + 61 + ], + "overview": [ + 62 + ], + "analysis": [ + 64 + ], + "research": [ + 69, + 115, + 192 + ], + "this": [ + 71 + ], + "topic.": [ + 72 + ], + "As": [ + 73 + ], + "starting": [ + 75 + ], + "point,": [ + 76 + ], + "introduce": [ + 78 + ], + "principles,": [ + 81 + ], + "algorithms,": [ + 82 + ], + "descriptors,": [ + 83 + ], + "databases": [ + 85 + ], + "materials": [ + 87, + 104, + 184, + 199 + ], + "science.": [ + 88, + 185, + 200 + ], + "continue": [ + 90 + ], + "with": [ + 91 + ], + "description": [ + 93 + ], + "different": [ + 95, + 176 + ], + "approaches": [ + 98, + 123 + ], + "for": [ + 99, + 124, + 194 + ], + "discovery": [ + 101 + ], + "stable": [ + 103 + ], + "prediction": [ + 107 + ], + "their": [ + 109, + 181 + ], + "crystal": [ + 110 + ], + "structure.": [ + 111 + ], + "Then": [ + 112 + ], + "discuss": [ + 114 + ], + "numerous": [ + 117 + ], + "quantitative": [ + 118 + ], + "structure–property": [ + 119 + ], + "relationships": [ + 120 + ], + "various": [ + 122, + 195 + ], + "replacement": [ + 126 + ], + "first-principle": [ + 128 + ], + "by": [ + 130 + ], + "review": [ + 134 + ], + "how": [ + 135 + ], + "active": [ + 136 + ], + "surrogate-based": [ + 139 + ], + "optimization": [ + 140 + ], + "can": [ + 141 + ], + "improve": [ + 145 + ], + "rational": [ + 147 + ], + "design": [ + 148 + ], + "process": [ + 149 + ], + "related": [ + 151 + ], + "examples": [ + 152 + ], + "applications.": [ + 154 + ], + "Two": [ + 155 + ], + "major": [ + 156 + ], + "questions": [ + 157 + ], + "always": [ + 159 + ], + "interpretability": [ + 161, + 179 + ], + "physical": [ + 165 + ], + "understanding": [ + 166 + ], + "gained": [ + 167 + ], + "from": [ + 168 + ], + "models.": [ + 171 + ], + "consider": [ + 173 + ], + "therefore": [ + 174 + ], + "facets": [ + 177 + ], + "importance": [ + 182 + ], + "Finally,": [ + 186 + ], + "propose": [ + 188 + ], + "solutions": [ + 189 + ], + "future": [ + 191 + ], + "paths": [ + 193 + ], + "challenges": [ + 196 + ], + "computational": [ + 198 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 153 + }, + { + "year": 2025, + "cited_by_count": 356 + }, + { + "year": 2024, + "cited_by_count": 379 + }, + { + "year": 2023, + "cited_by_count": 392 + }, + { + "year": 2022, + "cited_by_count": 452 + }, + { + "year": 2021, + "cited_by_count": 400 + }, + { + "year": 2020, + "cited_by_count": 223 + }, + { + "year": 2019, + "cited_by_count": 10 + }, + { + "year": 2018, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2910705748", + "doi": "https://doi.org/10.1073/pnas.1900654116", + "title": "Definitions, methods, and applications in interpretable machine learning", + "display_name": "Definitions, methods, and applications in interpretable machine learning", + "relevance_score": 2995.7358, + "publication_year": 2019, + "publication_date": "2019-10-16", + "ids": { + "openalex": "https://openalex.org/W2910705748", + "doi": "https://doi.org/10.1073/pnas.1900654116", + "mag": "2910705748", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31619572" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5057838960", + "display_name": "William J. Murdoch", + "orcid": "https://orcid.org/0009-0009-7610-5187" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "W. James Murdoch", + "raw_affiliation_strings": [ + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017514239", + "display_name": "Chandan Singh", + "orcid": "https://orcid.org/0000-0003-0318-2340" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chandan Singh", + "raw_affiliation_strings": [ + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013534934", + "display_name": "Karl Kumbier", + "orcid": "https://orcid.org/0000-0001-6521-1173" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karl Kumbier", + "raw_affiliation_strings": [ + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029714016", + "display_name": "Reza Abbasi-Asl", + "orcid": "https://orcid.org/0000-0001-7824-4628" + }, + "institutions": [ + { + "id": "https://openalex.org/I1314596251", + "display_name": "Allen Institute for Brain Science", + "ror": "https://ror.org/00dcv1019", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1314596251", + "https://openalex.org/I4210140341" + ] + }, + { + "id": "https://openalex.org/I180670191", + "display_name": "University of California, San Francisco", + "ror": "https://ror.org/043mz5j54", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I180670191" + ] + }, + { + "id": "https://openalex.org/I4210140341", + "display_name": "Allen Institute", + "ror": "https://ror.org/03cpe7c52", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210140341" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Reza Abbasi-Asl", + "raw_affiliation_strings": [ + "Allen Institute for Brain Science, Seattle, WA 98109", + "Department of Neurology, University of California, San Francisco, CA 94158;", + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "Department of Neurology, University of California, San Francisco, CA 94158; and" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Allen Institute for Brain Science, Seattle, WA 98109", + "institution_ids": [ + "https://openalex.org/I4210140341", + "https://openalex.org/I1314596251" + ] + }, + { + "raw_affiliation_string": "Department of Neurology, University of California, San Francisco, CA 94158;", + "institution_ids": [ + "https://openalex.org/I180670191" + ] + }, + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Department of Neurology, University of California, San Francisco, CA 94158; and", + "institution_ids": [ + "https://openalex.org/I180670191" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100646137", + "display_name": "Bin Yu", + "orcid": "https://orcid.org/0000-0002-8888-4060" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Bin Yu", + "raw_affiliation_strings": [ + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5100646137" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 116.6663, + "has_fulltext": true, + "cited_by_count": 2050, + "citation_normalized_percentile": { + "value": 0.99969336, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "116", + "issue": "44", + "first_page": "22071", + "last_page": "22080" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9890999794006348, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.9390578269958496 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7489986419677734 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6651195883750916 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.6388148069381714 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6340200901031494 + }, + { + "id": "https://openalex.org/keywords/context", + "display_name": "Context (archaeology)", + "score": 0.6267019510269165 + }, + { + "id": "https://openalex.org/keywords/interpretation", + "display_name": "Interpretation (philosophy)", + "score": 0.6191895604133606 + }, + { + "id": "https://openalex.org/keywords/modularity", + "display_name": "Modularity (biology)", + "score": 0.5174987316131592 + }, + { + "id": "https://openalex.org/keywords/vocabulary", + "display_name": "Vocabulary", + "score": 0.4941387474536896 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.4534083902835846 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.411584734916687 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.9390578269958496 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7489986419677734 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6651195883750916 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.6388148069381714 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6340200901031494 + }, + { + "id": "https://openalex.org/C2779343474", + "wikidata": "https://www.wikidata.org/wiki/Q3109175", + "display_name": "Context (archaeology)", + "level": 2, + "score": 0.6267019510269165 + }, + { + "id": "https://openalex.org/C527412718", + "wikidata": "https://www.wikidata.org/wiki/Q855395", + "display_name": "Interpretation (philosophy)", + "level": 2, + "score": 0.6191895604133606 + }, + { + "id": "https://openalex.org/C2779478453", + "wikidata": "https://www.wikidata.org/wiki/Q6889748", + "display_name": "Modularity (biology)", + "level": 2, + "score": 0.5174987316131592 + }, + { + "id": "https://openalex.org/C2777601683", + "wikidata": "https://www.wikidata.org/wiki/Q6499736", + "display_name": "Vocabulary", + "level": 2, + "score": 0.4941387474536896 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.4534083902835846 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.411584734916687 + }, + { + "id": "https://openalex.org/C151730666", + "wikidata": "https://www.wikidata.org/wiki/Q7205", + "display_name": "Paleontology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C54355233", + "wikidata": "https://www.wikidata.org/wiki/Q7162", + "display_name": "Genetics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + { + "id": "pmid:31619572", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31619572", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences of the United States of America", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1901.04592", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1901.04592", + "pdf_url": "https://arxiv.org/pdf/1901.04592", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:osti.gov:1633246", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1633246", + "pdf_url": "https://www.osti.gov/servlets/purl/1633246", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:ark:/13030/qt13x9q01k", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:oai:escholarship.org/ark:/13030/qt13x9q01k", + "is_oa": false, + "landing_page_url": "https://escholarship.org/uc/item/13x9q01k", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400115", + "display_name": "eScholarship (California Digital Library)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I2801248553", + "host_organization_name": "California Digital Library", + "host_organization_lineage": [ + "https://openalex.org/I2801248553" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Proceedings of the National Academy of Sciences of the United States of America, vol 116, iss 44", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:6105936", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6825274", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.7599999904632568, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [ + { + "id": "https://openalex.org/G1490606517", + "display_name": null, + "funder_award_id": "N00014-16-1-2664", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G1739869781", + "display_name": null, + "funder_award_id": "CCF-0939370", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4776703908", + "display_name": null, + "funder_award_id": "CGSD3-487534-2016", + "funder_id": "https://openalex.org/F4320334593", + "funder_display_name": "Natural Sciences and Engineering Research Council of Canada" + }, + { + "id": "https://openalex.org/G5202753860", + "display_name": "Canonical Linear Methods and Hierarchical Non-Linear Methods in High-Dimensional Statistics", + "funder_award_id": "1613002", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6244900323", + "display_name": null, + "funder_award_id": "0939370", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7379344686", + "display_name": null, + "funder_award_id": "1741340", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7501964373", + "display_name": null, + "funder_award_id": "W911NF1710005", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G8170601752", + "display_name": null, + "funder_award_id": "IIS 1741340", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G8341606209", + "display_name": null, + "funder_award_id": "DMS-1613002", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G8876996369", + "display_name": null, + "funder_award_id": "N00014", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320334593", + "display_name": "Natural Sciences and Engineering Research Council of Canada", + "ror": "https://ror.org/01h531d29" + }, + { + "id": "https://openalex.org/F4320337345", + "display_name": "Office of Naval Research", + "ror": "https://ror.org/00rk2pe57" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2910705748.pdf", + "grobid_xml": "https://content.openalex.org/works/W2910705748.grobid-xml" + }, + "referenced_works_count": 137, + "referenced_works": [ + "https://openalex.org/W11356396", + "https://openalex.org/W830575572", + "https://openalex.org/W1034019924", + "https://openalex.org/W1500693574", + "https://openalex.org/W1511986666", + "https://openalex.org/W1587026990", + "https://openalex.org/W1594031697", + "https://openalex.org/W1810028515", + "https://openalex.org/W1849277567", + "https://openalex.org/W1951216520", + "https://openalex.org/W1961953963", + "https://openalex.org/W1989968174", + "https://openalex.org/W1996796871", + "https://openalex.org/W2012712694", + "https://openalex.org/W2013511833", + "https://openalex.org/W2025341678", + "https://openalex.org/W2034637247", + "https://openalex.org/W2043175314", + "https://openalex.org/W2048231652", + "https://openalex.org/W2061939373", + "https://openalex.org/W2078977693", + "https://openalex.org/W2084341220", + "https://openalex.org/W2086396353", + "https://openalex.org/W2087448554", + "https://openalex.org/W2088286197", + "https://openalex.org/W2100960835", + "https://openalex.org/W2102636708", + "https://openalex.org/W2103780778", + "https://openalex.org/W2105464873", + "https://openalex.org/W2108384452", + "https://openalex.org/W2113882472", + "https://openalex.org/W2118022153", + "https://openalex.org/W2119858020", + "https://openalex.org/W2123045220", + "https://openalex.org/W2128659236", + "https://openalex.org/W2135046866", + "https://openalex.org/W2143481518", + "https://openalex.org/W2145860152", + "https://openalex.org/W2148694408", + "https://openalex.org/W2150165932", + "https://openalex.org/W2153332911", + "https://openalex.org/W2157355630", + "https://openalex.org/W2158196600", + "https://openalex.org/W2161969291", + "https://openalex.org/W2166163519", + "https://openalex.org/W2169053895", + "https://openalex.org/W2270785838", + "https://openalex.org/W2282821441", + "https://openalex.org/W2315452447", + "https://openalex.org/W2342249984", + "https://openalex.org/W2346578521", + "https://openalex.org/W2464516813", + "https://openalex.org/W2472803348", + "https://openalex.org/W2493343568", + "https://openalex.org/W2502949459", + "https://openalex.org/W2510508396", + "https://openalex.org/W2516809705", + "https://openalex.org/W2530010084", + "https://openalex.org/W2530395818", + "https://openalex.org/W2559655401", + "https://openalex.org/W2587529872", + "https://openalex.org/W2590082389", + "https://openalex.org/W2592895748", + "https://openalex.org/W2592929672", + "https://openalex.org/W2594633041", + "https://openalex.org/W2597603852", + "https://openalex.org/W2604526796", + "https://openalex.org/W2612690371", + "https://openalex.org/W2618851150", + "https://openalex.org/W2619351609", + "https://openalex.org/W2619444510", + "https://openalex.org/W2731142262", + "https://openalex.org/W2739349903", + "https://openalex.org/W2742591084", + "https://openalex.org/W2752194699", + "https://openalex.org/W2769421449", + "https://openalex.org/W2782630856", + "https://openalex.org/W2785184350", + "https://openalex.org/W2785760873", + "https://openalex.org/W2786715987", + "https://openalex.org/W2787070805", + "https://openalex.org/W2793165286", + "https://openalex.org/W2793277523", + "https://openalex.org/W2795431618", + "https://openalex.org/W2803354268", + "https://openalex.org/W2807015674", + "https://openalex.org/W2808315098", + "https://openalex.org/W2891612330", + "https://openalex.org/W2896089889", + "https://openalex.org/W2900404061", + "https://openalex.org/W2901939789", + "https://openalex.org/W2903768344", + "https://openalex.org/W2911964244", + "https://openalex.org/W2945800295", + "https://openalex.org/W2945976633", + "https://openalex.org/W2952354376", + "https://openalex.org/W2962772482", + "https://openalex.org/W2962862931", + "https://openalex.org/W2962883557", + "https://openalex.org/W2963016445", + "https://openalex.org/W2963029978", + "https://openalex.org/W2963233086", + "https://openalex.org/W2963382180", + "https://openalex.org/W2963424533", + "https://openalex.org/W2963715038", + "https://openalex.org/W2963798744", + "https://openalex.org/W2964118342", + "https://openalex.org/W2964159526", + "https://openalex.org/W3085162807", + "https://openalex.org/W3098232790", + "https://openalex.org/W3102564565", + "https://openalex.org/W3124792046", + "https://openalex.org/W3150635270", + "https://openalex.org/W3150893739", + "https://openalex.org/W4212774754", + "https://openalex.org/W4229494842", + "https://openalex.org/W4230605228", + "https://openalex.org/W4230742466", + "https://openalex.org/W4236697647", + "https://openalex.org/W4236965008", + "https://openalex.org/W4237723258", + "https://openalex.org/W4254687493", + "https://openalex.org/W4255332246", + "https://openalex.org/W4255405844", + "https://openalex.org/W4292023222", + "https://openalex.org/W4293861706", + "https://openalex.org/W4295313945", + "https://openalex.org/W4299408792", + "https://openalex.org/W4300756893", + "https://openalex.org/W4309520320", + "https://openalex.org/W4399576166", + "https://openalex.org/W6684823039", + "https://openalex.org/W6716358881", + "https://openalex.org/W6728551298", + "https://openalex.org/W6734194636", + "https://openalex.org/W6754669440", + "https://openalex.org/W6982728064" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W2888392564", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W2963326959", + "https://openalex.org/W4388685194", + "https://openalex.org/W4312407344", + "https://openalex.org/W2894289927" + ], + "abstract_inverted_index": { + "Machine-learning": [ + 0 + ], + "models": [ + 1, + 23 + ], + "have": [ + 2 + ], + "demonstrated": [ + 3 + ], + "great": [ + 4 + ], + "success": [ + 5 + ], + "in": [ + 6, + 90, + 189 + ], + "learning": [ + 7, + 95 + ], + "complex": [ + 8 + ], + "patterns": [ + 9 + ], + "that": [ + 10, + 211, + 219 + ], + "enable": [ + 11 + ], + "them": [ + 12 + ], + "to": [ + 13, + 21, + 28, + 48, + 78, + 83, + 126, + 131, + 168, + 229 + ], + "make": [ + 14, + 221 + ], + "predictions": [ + 15 + ], + "about": [ + 16, + 51 + ], + "unobserved": [ + 17 + ], + "data.": [ + 18 + ], + "In": [ + 19, + 56 + ], + "addition": [ + 20 + ], + "using": [ + 22 + ], + "for": [ + 24, + 104, + 114, + 206, + 224 + ], + "prediction,": [ + 25 + ], + "the": [ + 26, + 52, + 62, + 91, + 98, + 134, + 165, + 181, + 234 + ], + "ability": [ + 27 + ], + "interpret": [ + 29 + ], + "what": [ + 30, + 72 + ], + "a": [ + 31, + 127, + 141, + 216 + ], + "model": [ + 32 + ], + "has": [ + 33, + 46 + ], + "learned": [ + 34 + ], + "is": [ + 35, + 59 + ], + "receiving": [ + 36 + ], + "an": [ + 37 + ], + "increasing": [ + 38 + ], + "amount": [ + 39 + ], + "of": [ + 40, + 54, + 65, + 93, + 136, + 143, + 191, + 201, + 237 + ], + "attention.": [ + 41 + ], + "However,": [ + 42 + ], + "this": [ + 43, + 212 + ], + "increased": [ + 44 + ], + "focus": [ + 45 + ], + "led": [ + 47 + ], + "considerable": [ + 49 + ], + "confusion": [ + 50 + ], + "notion": [ + 53 + ], + "interpretability.": [ + 55, + 192 + ], + "particular,": [ + 57 + ], + "it": [ + 58, + 222 + ], + "unclear": [ + 60 + ], + "how": [ + 61, + 161 + ], + "wide": [ + 63 + ], + "array": [ + 64 + ], + "proposed": [ + 66 + ], + "interpretation": [ + 67, + 137, + 238 + ], + "methods": [ + 68, + 203 + ], + "are": [ + 69 + ], + "related": [ + 70 + ], + "and": [ + 71, + 96, + 120, + 148, + 157, + 170, + 204, + 227, + 231 + ], + "common": [ + 73, + 217 + ], + "concepts": [ + 74 + ], + "can": [ + 75, + 163 + ], + "be": [ + 76 + ], + "used": [ + 77 + ], + "evaluate": [ + 79, + 169 + ], + "them.": [ + 80 + ], + "We": [ + 81, + 209 + ], + "aim": [ + 82 + ], + "address": [ + 84 + ], + "these": [ + 85 + ], + "concerns": [ + 86 + ], + "by": [ + 87, + 186 + ], + "defining": [ + 88 + ], + "interpretability": [ + 89 + ], + "context": [ + 92 + ], + "machine": [ + 94 + ], + "introducing": [ + 97 + ], + "predictive,": [ + 99 + ], + "descriptive,": [ + 100 + ], + "relevant": [ + 101 + ], + "(PDR)": [ + 102 + ], + "framework": [ + 103, + 109, + 167 + ], + "discussing": [ + 105 + ], + "interpretations.": [ + 106 + ], + "The": [ + 107 + ], + "PDR": [ + 108, + 166 + ], + "provides": [ + 110 + ], + "3": [ + 111 + ], + "overarching": [ + 112 + ], + "desiderata": [ + 113 + ], + "evaluation:": [ + 115 + ], + "predictive": [ + 116 + ], + "accuracy,": [ + 117, + 119 + ], + "descriptive": [ + 118 + ], + "relevancy,": [ + 121 + ], + "with": [ + 122, + 152 + ], + "relevancy": [ + 123 + ], + "judged": [ + 124 + ], + "relative": [ + 125 + ], + "human": [ + 128, + 187 + ], + "audience.": [ + 129 + ], + "Moreover,": [ + 130 + ], + "help": [ + 132 + ], + "manage": [ + 133 + ], + "deluge": [ + 135 + ], + "methods,": [ + 138 + ], + "we": [ + 139, + 173, + 198 + ], + "introduce": [ + 140 + ], + "categorization": [ + 142 + ], + "existing": [ + 144, + 202 + ], + "techniques": [ + 145 + ], + "into": [ + 146 + ], + "model-based": [ + 147 + ], + "post": [ + 149 + ], + "hoc": [ + 150 + ], + "categories,": [ + 151 + ], + "subgroups": [ + 153 + ], + "including": [ + 154 + ], + "sparsity,": [ + 155 + ], + "modularity,": [ + 156 + ], + "simulatability.": [ + 158 + ], + "To": [ + 159 + ], + "demonstrate": [ + 160 + ], + "practitioners": [ + 162, + 226 + ], + "use": [ + 164 + ], + "understand": [ + 171 + ], + "interpretations,": [ + 172 + ], + "provide": [ + 174, + 215 + ], + "numerous": [ + 175 + ], + "real-world": [ + 176 + ], + "examples.": [ + 177 + ], + "These": [ + 178 + ], + "examples": [ + 179 + ], + "highlight": [ + 180 + ], + "often": [ + 182 + ], + "underappreciated": [ + 183 + ], + "role": [ + 184 + ], + "played": [ + 185 + ], + "audiences": [ + 188 + ], + "discussions": [ + 190 + ], + "Finally,": [ + 193 + ], + "based": [ + 194 + ], + "on": [ + 195 + ], + "our": [ + 196 + ], + "framework,": [ + 197 + ], + "discuss": [ + 199, + 230 + ], + "limitations": [ + 200 + ], + "directions": [ + 205 + ], + "future": [ + 207 + ], + "work.": [ + 208 + ], + "hope": [ + 210 + ], + "work": [ + 213 + ], + "will": [ + 214, + 220 + ], + "vocabulary": [ + 218 + ], + "easier": [ + 223 + ], + "both": [ + 225 + ], + "researchers": [ + 228 + ], + "choose": [ + 232 + ], + "from": [ + 233 + ], + "full": [ + 235 + ], + "range": [ + 236 + ], + "methods.": [ + 239 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 135 + }, + { + "year": 2025, + "cited_by_count": 357 + }, + { + "year": 2024, + "cited_by_count": 384 + }, + { + "year": 2023, + "cited_by_count": 375 + }, + { + "year": 2022, + "cited_by_count": 317 + }, + { + "year": 2021, + "cited_by_count": 280 + }, + { + "year": 2020, + "cited_by_count": 161 + }, + { + "year": 2019, + "cited_by_count": 38 + }, + { + "year": 2018, + "cited_by_count": 2 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2342408547", + "doi": "https://doi.org/10.1109/comst.2015.2494502", + "title": "A Survey of Data Mining and Machine Learning Methods for Cyber Security Intrusion Detection", + "display_name": "A Survey of Data Mining and Machine Learning Methods for Cyber Security Intrusion Detection", + "relevance_score": 2986.594, + "publication_year": 2015, + "publication_date": "2015-10-26", + "ids": { + "openalex": "https://openalex.org/W2342408547", + "doi": "https://doi.org/10.1109/comst.2015.2494502", + "mag": "2342408547" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/comst.2015.2494502", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/comst.2015.2494502", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S23688054", + "display_name": "IEEE Communications Surveys & Tutorials", + "issn_l": "1553-877X", + "issn": [ + "1553-877X", + "2373-745X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Communications Surveys & Tutorials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5036462876", + "display_name": "Anna L. Buczak", + "orcid": "https://orcid.org/0000-0002-4468-7719" + }, + "institutions": [ + { + "id": "https://openalex.org/I2802946424", + "display_name": "Johns Hopkins University Applied Physics Laboratory", + "ror": "https://ror.org/029pp9z10", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I145311948", + "https://openalex.org/I2802946424" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Anna L. Buczak", + "raw_affiliation_strings": [ + "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA", + "institution_ids": [ + "https://openalex.org/I2802946424" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5103648432", + "display_name": "Erhan Guven", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I2802946424", + "display_name": "Johns Hopkins University Applied Physics Laboratory", + "ror": "https://ror.org/029pp9z10", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I145311948", + "https://openalex.org/I2802946424" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Erhan Guven", + "raw_affiliation_strings": [ + "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA", + "institution_ids": [ + "https://openalex.org/I2802946424" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5036462876" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2802946424" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 105.8915, + "has_fulltext": false, + "cited_by_count": 3024, + "citation_normalized_percentile": { + "value": 0.99986492, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "18", + "issue": "2", + "first_page": "1153", + "last_page": "1176" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9962999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9926999807357788, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8274868726730347 + }, + { + "id": "https://openalex.org/keywords/intrusion-detection-system", + "display_name": "Intrusion detection system", + "score": 0.7535451054573059 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.5479063391685486 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.5404182076454163 + }, + { + "id": "https://openalex.org/keywords/analytics", + "display_name": "Analytics", + "score": 0.47978121042251587 + }, + { + "id": "https://openalex.org/keywords/intrusion", + "display_name": "Intrusion", + "score": 0.44902172684669495 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3901662826538086 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.34739550948143005 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8274868726730347 + }, + { + "id": "https://openalex.org/C35525427", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion detection system", + "level": 2, + "score": 0.7535451054573059 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.5479063391685486 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.5404182076454163 + }, + { + "id": "https://openalex.org/C79158427", + "wikidata": "https://www.wikidata.org/wiki/Q485396", + "display_name": "Analytics", + "level": 2, + "score": 0.47978121042251587 + }, + { + "id": "https://openalex.org/C158251709", + "wikidata": "https://www.wikidata.org/wiki/Q354025", + "display_name": "Intrusion", + "level": 2, + "score": 0.44902172684669495 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3901662826538086 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.34739550948143005 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17409809", + "wikidata": "https://www.wikidata.org/wiki/Q161764", + "display_name": "Geochemistry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/comst.2015.2494502", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/comst.2015.2494502", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S23688054", + "display_name": "IEEE Communications Surveys & Tutorials", + "issn_l": "1553-877X", + "issn": [ + "1553-877X", + "2373-745X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Communications Surveys & Tutorials", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 134, + "referenced_works": [ + "https://openalex.org/W4348436", + "https://openalex.org/W6091113", + "https://openalex.org/W49546894", + "https://openalex.org/W166342712", + "https://openalex.org/W1504694836", + "https://openalex.org/W1525180324", + "https://openalex.org/W1541288193", + "https://openalex.org/W1553696291", + "https://openalex.org/W1554891714", + "https://openalex.org/W1556024794", + "https://openalex.org/W1570448133", + "https://openalex.org/W1576185228", + "https://openalex.org/W1576660662", + "https://openalex.org/W1576818901", + "https://openalex.org/W1615454278", + "https://openalex.org/W1642161394", + "https://openalex.org/W1670263352", + "https://openalex.org/W1673310716", + "https://openalex.org/W1755360231", + "https://openalex.org/W1777713421", + "https://openalex.org/W1856750239", + "https://openalex.org/W1884606608", + "https://openalex.org/W1937068078", + "https://openalex.org/W1952056635", + "https://openalex.org/W1954903228", + "https://openalex.org/W1966809779", + "https://openalex.org/W1971751469", + "https://openalex.org/W1971784203", + "https://openalex.org/W1975791498", + "https://openalex.org/W1978779053", + "https://openalex.org/W1979877030", + "https://openalex.org/W1986334900", + "https://openalex.org/W1988741337", + "https://openalex.org/W1991237739", + "https://openalex.org/W1993717606", + "https://openalex.org/W1999427165", + "https://openalex.org/W2002016471", + "https://openalex.org/W2014712522", + "https://openalex.org/W2017528992", + "https://openalex.org/W2030553727", + "https://openalex.org/W2033626294", + "https://openalex.org/W2036959577", + "https://openalex.org/W2038819341", + "https://openalex.org/W2040870580", + "https://openalex.org/W2049633694", + "https://openalex.org/W2066664409", + "https://openalex.org/W2071221494", + "https://openalex.org/W2076384720", + "https://openalex.org/W2076526693", + "https://openalex.org/W2077574412", + "https://openalex.org/W2081707439", + "https://openalex.org/W2082550445", + "https://openalex.org/W2091576221", + "https://openalex.org/W2094138658", + "https://openalex.org/W2096118443", + "https://openalex.org/W2099940443", + "https://openalex.org/W2100024153", + "https://openalex.org/W2100537916", + "https://openalex.org/W2102201073", + "https://openalex.org/W2104593144", + "https://openalex.org/W2112076978", + "https://openalex.org/W2112090702", + "https://openalex.org/W2114996745", + "https://openalex.org/W2117707191", + "https://openalex.org/W2123619513", + "https://openalex.org/W2124261333", + "https://openalex.org/W2125055259", + "https://openalex.org/W2129018774", + "https://openalex.org/W2129879631", + "https://openalex.org/W2133941447", + "https://openalex.org/W2133990480", + "https://openalex.org/W2137983211", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139669429", + "https://openalex.org/W2142384583", + "https://openalex.org/W2142889610", + "https://openalex.org/W2143893259", + "https://openalex.org/W2145052282", + "https://openalex.org/W2146082061", + "https://openalex.org/W2149706766", + "https://openalex.org/W2152195021", + "https://openalex.org/W2154929945", + "https://openalex.org/W2156909104", + "https://openalex.org/W2158454296", + "https://openalex.org/W2160598920", + "https://openalex.org/W2161302205", + "https://openalex.org/W2164576874", + "https://openalex.org/W2166275707", + "https://openalex.org/W2166559705", + "https://openalex.org/W2167917621", + "https://openalex.org/W2169654335", + "https://openalex.org/W2169768310", + "https://openalex.org/W2171331105", + "https://openalex.org/W2173213060", + "https://openalex.org/W2188268519", + "https://openalex.org/W2203709713", + "https://openalex.org/W2319660501", + "https://openalex.org/W2502697733", + "https://openalex.org/W2802348331", + "https://openalex.org/W2911964244", + "https://openalex.org/W2912565176", + "https://openalex.org/W3099514962", + "https://openalex.org/W3141738472", + "https://openalex.org/W3146803896", + "https://openalex.org/W3150719513", + "https://openalex.org/W3211952227", + "https://openalex.org/W4211007335", + "https://openalex.org/W4211064163", + "https://openalex.org/W4213332169", + "https://openalex.org/W4231918628", + "https://openalex.org/W4232872328", + "https://openalex.org/W4236137412", + "https://openalex.org/W4249991499", + "https://openalex.org/W4250857377", + "https://openalex.org/W4256360777", + "https://openalex.org/W4285719527", + "https://openalex.org/W4299670631", + "https://openalex.org/W6600247753", + "https://openalex.org/W6601962654", + "https://openalex.org/W6633310491", + "https://openalex.org/W6633402183", + "https://openalex.org/W6636895364", + "https://openalex.org/W6637131181", + "https://openalex.org/W6639223989", + "https://openalex.org/W6674887505", + "https://openalex.org/W6676769703", + "https://openalex.org/W6677572458", + "https://openalex.org/W6678524815", + "https://openalex.org/W6683882235", + "https://openalex.org/W6684325336", + "https://openalex.org/W6684920382", + "https://openalex.org/W6686806119", + "https://openalex.org/W6724329653", + "https://openalex.org/W7048738093" + ], + "related_works": [ + "https://openalex.org/W2357468538", + "https://openalex.org/W2085384747", + "https://openalex.org/W1577110157", + "https://openalex.org/W2106071040", + "https://openalex.org/W2088166309", + "https://openalex.org/W4312133475", + "https://openalex.org/W4238976562", + "https://openalex.org/W2276587472", + "https://openalex.org/W1835907303", + "https://openalex.org/W2133389611" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "survey": [ + 1, + 7 + ], + "paper": [ + 2 + ], + "describes": [ + 3 + ], + "a": [ + 4, + 99 + ], + "focused": [ + 5 + ], + "literature": [ + 6 + ], + "of": [ + 8, + 22, + 28, + 38, + 43, + 76, + 82 + ], + "machine": [ + 9 + ], + "learning": [ + 10 + ], + "(ML)": [ + 11 + ], + "and": [ + 12, + 54, + 92 + ], + "data": [ + 13, + 57, + 67 + ], + "mining": [ + 14 + ], + "(DM)": [ + 15 + ], + "methods": [ + 16 + ], + "for": [ + 17, + 84, + 87 + ], + "cyber": [ + 18, + 66, + 88 + ], + "analytics": [ + 19 + ], + "in": [ + 20, + 61, + 70 + ], + "support": [ + 21 + ], + "intrusion": [ + 23 + ], + "detection.": [ + 24 + ], + "Short": [ + 25 + ], + "tutorial": [ + 26 + ], + "descriptions": [ + 27 + ], + "each": [ + 29, + 49 + ], + "ML/DM": [ + 30, + 62, + 71, + 77, + 86 + ], + "method": [ + 31, + 50, + 101 + ], + "are": [ + 32, + 58, + 72, + 102 + ], + "provided.": [ + 33, + 103 + ], + "Based": [ + 34 + ], + "on": [ + 35, + 95 + ], + "the": [ + 36, + 41 + ], + "number": [ + 37 + ], + "citations": [ + 39 + ], + "or": [ + 40 + ], + "relevance": [ + 42 + ], + "an": [ + 44 + ], + "emerging": [ + 45 + ], + "method,": [ + 46 + ], + "papers": [ + 47 + ], + "representing": [ + 48 + ], + "were": [ + 51 + ], + "identified,": [ + 52 + ], + "read,": [ + 53 + ], + "summarized.": [ + 55 + ], + "Because": [ + 56 + ], + "so": [ + 59 + ], + "important": [ + 60 + ], + "approaches,": [ + 63 + ], + "some": [ + 64, + 93 + ], + "well-known": [ + 65 + ], + "sets": [ + 68 + ], + "used": [ + 69 + ], + "described.": [ + 73 + ], + "The": [ + 74 + ], + "complexity": [ + 75 + ], + "algorithms": [ + 78 + ], + "is": [ + 79, + 90 + ], + "addressed,": [ + 80 + ], + "discussion": [ + 81 + ], + "challenges": [ + 83 + ], + "using": [ + 85 + ], + "security": [ + 89 + ], + "presented,": [ + 91 + ], + "recommendations": [ + 94 + ], + "when": [ + 96 + ], + "to": [ + 97 + ], + "use": [ + 98 + ], + "given": [ + 100 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 140 + }, + { + "year": 2025, + "cited_by_count": 371 + }, + { + "year": 2024, + "cited_by_count": 303 + }, + { + "year": 2023, + "cited_by_count": 326 + }, + { + "year": 2022, + "cited_by_count": 408 + }, + { + "year": 2021, + "cited_by_count": 454 + }, + { + "year": 2020, + "cited_by_count": 402 + }, + { + "year": 2019, + "cited_by_count": 317 + }, + { + "year": 2018, + "cited_by_count": 219 + }, + { + "year": 2017, + "cited_by_count": 72 + }, + { + "year": 2016, + "cited_by_count": 10 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4213308398", + "doi": "https://doi.org/10.1007/978-3-030-05318-5", + "title": "Automated Machine Learning", + "display_name": "Automated Machine Learning", + "relevance_score": 2930.7764, + "publication_year": 2019, + "publication_date": "2019-01-01", + "ids": { + "openalex": "https://openalex.org/W4213308398", + "doi": "https://doi.org/10.1007/978-3-030-05318-5" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "hybrid", + "oa_url": "https://doi.org/10.1007/978-3-030-05318-5", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5031002895", + "display_name": "Frank Hutter", + "orcid": "https://orcid.org/0000-0002-2037-3694" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Frank Hutter", + "raw_affiliation_strings": [ + "Department of Computer Science, University of Freiburg, Freiburg, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of Freiburg, Freiburg, Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032997049", + "display_name": "Lars Kotthoff", + "orcid": "https://orcid.org/0000-0003-4635-6873" + }, + "institutions": [ + { + "id": "https://openalex.org/I12834331", + "display_name": "University of Wyoming", + "ror": "https://ror.org/01485tq96", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12834331" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lars Kotthoff", + "raw_affiliation_strings": [ + "University of Wyoming, Laramie, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Wyoming, Laramie, USA", + "institution_ids": [ + "https://openalex.org/I12834331" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016794035", + "display_name": "Joaquin Vanschoren", + "orcid": "https://orcid.org/0000-0001-7044-9805" + }, + "institutions": [ + { + "id": "https://openalex.org/I83019370", + "display_name": "Eindhoven University of Technology", + "ror": "https://ror.org/02c2kyt77", + "country_code": "NL", + "type": "education", + "lineage": [ + "https://openalex.org/I83019370" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Joaquin Vanschoren", + "raw_affiliation_strings": [ + "Eindhoven University of Technology, Eindhoven, The Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Eindhoven University of Technology, Eindhoven, The Netherlands", + "institution_ids": [ + "https://openalex.org/I83019370" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5031002895" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161046081" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 76.3906, + "has_fulltext": true, + "cited_by_count": 1379, + "citation_normalized_percentile": { + "value": 0.99947479, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.32330000400543213, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.32330000400543213, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6049460172653198 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5378867983818054 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4316948652267456 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6049460172653198 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5378867983818054 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4316948652267456 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + { + "id": "pmh:tue:oai:pure.tue.nl:publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "is_oa": true, + "landing_page_url": "https://research.tue.nl/nl/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "pdf_url": "https://research.tue.nl/nl/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "source": { + "id": "https://openalex.org/S4306401843", + "display_name": "Data Archiving and Networked Services (DANS)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1322597698", + "host_organization_name": "Royal Netherlands Academy of Arts and Sciences", + "host_organization_lineage": [ + "https://openalex.org/I1322597698" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "public-domain", + "license_id": "https://openalex.org/licenses/public-domain", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "info:eu-repo/semantics/book" + }, + { + "id": "pmh:oai:doab-books:43691", + "is_oa": true, + "landing_page_url": "http://www.oapen.org/download/?type=document&docid=1007149", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400539", + "display_name": "Directory of Open access Books (OAPEN Foundation)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "book" + }, + { + "id": "pmh:oai:pure.tue.nl:publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "is_oa": false, + "landing_page_url": "https://research.tue.nl/en/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922641", + "display_name": "TU/e Research Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6636476603", + "display_name": "Data-Driven Methods for Modelling and Optimizing the Empirical Performance of Deep Neural Networks", + "funder_award_id": "716721", + "funder_id": "https://openalex.org/F4320320300", + "funder_display_name": "European Commission" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320313934", + "display_name": "Institut national de recherche en informatique et en automatique (INRIA)", + "ror": "https://ror.org/02kvxyf05" + }, + { + "id": "https://openalex.org/F4320315803", + "display_name": "Centres de Recerca de Catalunya", + "ror": null + }, + { + "id": "https://openalex.org/F4320320300", + "display_name": "European Commission", + "ror": "https://ror.org/00k4n6c32" + }, + { + "id": "https://openalex.org/F4320320879", + "display_name": "Deutsche Forschungsgemeinschaft", + "ror": "https://ror.org/018mejw64" + }, + { + "id": "https://openalex.org/F4320321505", + "display_name": "Generalitat de Catalunya", + "ror": "https://ror.org/01bg62x04" + }, + { + "id": "https://openalex.org/F4320334593", + "display_name": "Natural Sciences and Engineering Research Council of Canada", + "ror": "https://ror.org/01h531d29" + }, + { + "id": "https://openalex.org/F4320336677", + "display_name": "BrainLinks-BrainTools", + "ror": null + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 463, + "referenced_works": [ + "https://openalex.org/W6908809", + "https://openalex.org/W24696228", + "https://openalex.org/W28412257", + "https://openalex.org/W41730657", + "https://openalex.org/W54639073", + "https://openalex.org/W60686164", + "https://openalex.org/W62188234", + "https://openalex.org/W76131926", + "https://openalex.org/W76331760", + "https://openalex.org/W85803853", + "https://openalex.org/W100047375", + "https://openalex.org/W114730584", + "https://openalex.org/W116375701", + "https://openalex.org/W122178443", + "https://openalex.org/W135104305", + "https://openalex.org/W138547447", + "https://openalex.org/W145519053", + "https://openalex.org/W148859753", + "https://openalex.org/W172742023", + "https://openalex.org/W174542576", + "https://openalex.org/W192975702", + "https://openalex.org/W198580638", + "https://openalex.org/W202805564", + "https://openalex.org/W202978992", + "https://openalex.org/W358897728", + "https://openalex.org/W603776396", + "https://openalex.org/W1165382972", + "https://openalex.org/W1471542436", + "https://openalex.org/W1480330138", + "https://openalex.org/W1484746829", + "https://openalex.org/W1488960379", + "https://openalex.org/W1491420040", + "https://openalex.org/W1494192115", + "https://openalex.org/W1494580925", + "https://openalex.org/W1500302649", + "https://openalex.org/W1501110974", + "https://openalex.org/W1503705371", + "https://openalex.org/W1507030697", + "https://openalex.org/W1512747601", + "https://openalex.org/W1516621661", + "https://openalex.org/W1519451279", + "https://openalex.org/W1520992199", + "https://openalex.org/W1522301498", + "https://openalex.org/W1528411633", + "https://openalex.org/W1533803232", + "https://openalex.org/W1534069108", + "https://openalex.org/W1534477342", + "https://openalex.org/W1535039099", + "https://openalex.org/W1539741229", + "https://openalex.org/W1542791059", + "https://openalex.org/W1543201103", + "https://openalex.org/W1549223806", + "https://openalex.org/W1556753024", + "https://openalex.org/W1565746575", + "https://openalex.org/W1568834902", + "https://openalex.org/W1569757501", + "https://openalex.org/W1575029535", + "https://openalex.org/W1575661061", + "https://openalex.org/W1577932924", + "https://openalex.org/W1581066146", + "https://openalex.org/W1588486985", + "https://openalex.org/W1588628884", + "https://openalex.org/W1588959569", + "https://openalex.org/W1589492330", + "https://openalex.org/W1593343777", + "https://openalex.org/W1598052524", + "https://openalex.org/W1601795611", + "https://openalex.org/W1604262624", + "https://openalex.org/W1631708156", + "https://openalex.org/W1638732406", + "https://openalex.org/W1640798781", + "https://openalex.org/W1647221522", + "https://openalex.org/W1661871015", + "https://openalex.org/W1663203009", + "https://openalex.org/W1663583528", + "https://openalex.org/W1678356000", + "https://openalex.org/W1680392829", + "https://openalex.org/W1690919088", + "https://openalex.org/W1701825639", + "https://openalex.org/W1758907577", + "https://openalex.org/W1763644767", + "https://openalex.org/W1840091437", + "https://openalex.org/W1868018859", + "https://openalex.org/W1880189740", + "https://openalex.org/W1886872224", + "https://openalex.org/W1922017469", + "https://openalex.org/W1925428099", + "https://openalex.org/W1925504357", + "https://openalex.org/W1935590542", + "https://openalex.org/W1965555277", + "https://openalex.org/W1968634175", + "https://openalex.org/W1969163824", + "https://openalex.org/W1971713783", + "https://openalex.org/W1973229481", + "https://openalex.org/W1979769287", + "https://openalex.org/W1980264541", + "https://openalex.org/W1981903823", + "https://openalex.org/W1984557319", + "https://openalex.org/W1985995090", + "https://openalex.org/W1986490585", + "https://openalex.org/W1986543815", + "https://openalex.org/W1986929000", + "https://openalex.org/W1989048657", + "https://openalex.org/W1994197834", + "https://openalex.org/W1994326354", + "https://openalex.org/W2001485654", + "https://openalex.org/W2040730773", + "https://openalex.org/W2040884411", + "https://openalex.org/W2048430744", + "https://openalex.org/W2050310928", + "https://openalex.org/W2051346631", + "https://openalex.org/W2056224615", + "https://openalex.org/W2057261601", + "https://openalex.org/W2062118960", + "https://openalex.org/W2062227835", + "https://openalex.org/W2064186732", + "https://openalex.org/W2074702228", + "https://openalex.org/W2074724805", + "https://openalex.org/W2078885513", + "https://openalex.org/W2083542829", + "https://openalex.org/W2084136177", + "https://openalex.org/W2084150578", + "https://openalex.org/W2087817842", + "https://openalex.org/W2089213632", + "https://openalex.org/W2089217417", + "https://openalex.org/W2090136295", + "https://openalex.org/W2091118421", + "https://openalex.org/W2095655959", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096863518", + "https://openalex.org/W2097998348", + "https://openalex.org/W2099201756", + "https://openalex.org/W2101234009", + "https://openalex.org/W2101341561", + "https://openalex.org/W2102770307", + "https://openalex.org/W2105031846", + "https://openalex.org/W2106411961", + "https://openalex.org/W2106614481", + "https://openalex.org/W2107853397", + "https://openalex.org/W2108626634", + "https://openalex.org/W2109042184", + "https://openalex.org/W2109346685", + "https://openalex.org/W2111935653", + "https://openalex.org/W2112204321", + "https://openalex.org/W2112364454", + "https://openalex.org/W2113145584", + "https://openalex.org/W2113207845", + "https://openalex.org/W2113584252", + "https://openalex.org/W2115733720", + "https://openalex.org/W2115763804", + "https://openalex.org/W2116882733", + "https://openalex.org/W2117539524", + "https://openalex.org/W2118789407", + "https://openalex.org/W2119814172", + "https://openalex.org/W2120420045", + "https://openalex.org/W2122053572", + "https://openalex.org/W2122379760", + "https://openalex.org/W2122776323", + "https://openalex.org/W2123395972", + "https://openalex.org/W2123649031", + "https://openalex.org/W2124022122", + "https://openalex.org/W2124290836", + "https://openalex.org/W2124802506", + "https://openalex.org/W2125849100", + "https://openalex.org/W2125877832", + "https://openalex.org/W2126204609", + "https://openalex.org/W2126559945", + "https://openalex.org/W2126964466", + "https://openalex.org/W2127416213", + "https://openalex.org/W2129458072", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131241448", + "https://openalex.org/W2131822674", + "https://openalex.org/W2133418613", + "https://openalex.org/W2133958955", + "https://openalex.org/W2136139971", + "https://openalex.org/W2136636278", + "https://openalex.org/W2137825550", + "https://openalex.org/W2138784882", + "https://openalex.org/W2139805416", + "https://openalex.org/W2141125852", + "https://openalex.org/W2141408223", + "https://openalex.org/W2142334564", + "https://openalex.org/W2142959074", + "https://openalex.org/W2143104527", + "https://openalex.org/W2144656844", + "https://openalex.org/W2144752499", + "https://openalex.org/W2144981148", + "https://openalex.org/W2145287260", + "https://openalex.org/W2145339207", + "https://openalex.org/W2145955992", + "https://openalex.org/W2146502635", + "https://openalex.org/W2149731329", + "https://openalex.org/W2150446468", + "https://openalex.org/W2152589362", + "https://openalex.org/W2153667946", + "https://openalex.org/W2154776925", + "https://openalex.org/W2155853132", + "https://openalex.org/W2156417353", + "https://openalex.org/W2157069634", + "https://openalex.org/W2160644528", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2165607334", + "https://openalex.org/W2165698076", + "https://openalex.org/W2165962877", + "https://openalex.org/W2166107799", + "https://openalex.org/W2168175751", + "https://openalex.org/W2168939893", + "https://openalex.org/W2171033594", + "https://openalex.org/W2171658832", + "https://openalex.org/W2181956361", + "https://openalex.org/W2182070128", + "https://openalex.org/W2182361439", + "https://openalex.org/W2183341477", + "https://openalex.org/W2183704914", + "https://openalex.org/W2186013251", + "https://openalex.org/W2189149359", + "https://openalex.org/W2192203593", + "https://openalex.org/W2194775991", + "https://openalex.org/W2200000192", + "https://openalex.org/W2210969396", + "https://openalex.org/W2226783037", + "https://openalex.org/W2234598170", + "https://openalex.org/W2234898963", + "https://openalex.org/W2249362929", + "https://openalex.org/W2250178193", + "https://openalex.org/W2257979135", + "https://openalex.org/W2266822037", + "https://openalex.org/W2270245739", + "https://openalex.org/W2271971987", + "https://openalex.org/W2282339125", + "https://openalex.org/W2295598076", + "https://openalex.org/W2295739661", + "https://openalex.org/W2309832917", + "https://openalex.org/W2317747985", + "https://openalex.org/W2344075909", + "https://openalex.org/W2346138280", + "https://openalex.org/W2346573293", + "https://openalex.org/W2368061054", + "https://openalex.org/W2384495648", + "https://openalex.org/W2395916875", + "https://openalex.org/W2396466031", + "https://openalex.org/W2396961612", + "https://openalex.org/W2397115702", + "https://openalex.org/W2399500811", + "https://openalex.org/W2399851305", + "https://openalex.org/W2400084313", + "https://openalex.org/W2407014344", + "https://openalex.org/W2407212869", + "https://openalex.org/W2418011751", + "https://openalex.org/W2465345967", + "https://openalex.org/W2467110937", + "https://openalex.org/W2472819217", + "https://openalex.org/W2474440862", + "https://openalex.org/W2486444208", + "https://openalex.org/W2504108613", + "https://openalex.org/W2522203492", + "https://openalex.org/W2531409750", + "https://openalex.org/W2549852851", + "https://openalex.org/W2551342063", + "https://openalex.org/W2553303224", + "https://openalex.org/W2555886487", + "https://openalex.org/W2556372419", + "https://openalex.org/W2556522401", + "https://openalex.org/W2560674852", + "https://openalex.org/W2563364594", + "https://openalex.org/W2571670780", + "https://openalex.org/W2578206533", + "https://openalex.org/W2580087858", + "https://openalex.org/W2585240214", + "https://openalex.org/W2587014634", + "https://openalex.org/W2588803499", + "https://openalex.org/W2593649365", + "https://openalex.org/W2593649546", + "https://openalex.org/W2594475271", + "https://openalex.org/W2596367596", + "https://openalex.org/W2601450892", + "https://openalex.org/W2604763608", + "https://openalex.org/W2604766410", + "https://openalex.org/W2608595939", + "https://openalex.org/W2608702473", + "https://openalex.org/W2610817424", + "https://openalex.org/W2613868844", + "https://openalex.org/W2616180702", + "https://openalex.org/W2616619952", + "https://openalex.org/W2618530766", + "https://openalex.org/W2619184049", + "https://openalex.org/W2620641980", + "https://openalex.org/W2620689287", + "https://openalex.org/W2622730215", + "https://openalex.org/W2623091261", + "https://openalex.org/W2624086852", + "https://openalex.org/W2624473996", + "https://openalex.org/W2626984672", + "https://openalex.org/W2725660645", + "https://openalex.org/W2728797307", + "https://openalex.org/W2734383650", + "https://openalex.org/W2740438624", + "https://openalex.org/W2741261073", + "https://openalex.org/W2741430497", + "https://openalex.org/W2746314669", + "https://openalex.org/W2748513770", + "https://openalex.org/W2751836095", + "https://openalex.org/W2752331852", + "https://openalex.org/W2752852504", + "https://openalex.org/W2753160622", + "https://openalex.org/W2753433947", + "https://openalex.org/W2756085244", + "https://openalex.org/W2765407302", + "https://openalex.org/W2768408766", + "https://openalex.org/W2769653148", + "https://openalex.org/W2769743674", + "https://openalex.org/W2772089072", + "https://openalex.org/W2773108397", + "https://openalex.org/W2773706593", + "https://openalex.org/W2774246732", + "https://openalex.org/W2775233965", + "https://openalex.org/W2777138789", + "https://openalex.org/W2777539043", + "https://openalex.org/W2778618317", + "https://openalex.org/W2778633128", + "https://openalex.org/W2778749116", + "https://openalex.org/W2780562800", + "https://openalex.org/W2782093256", + "https://openalex.org/W2783201493", + "https://openalex.org/W2784287478", + "https://openalex.org/W2785444061", + "https://openalex.org/W2785494456", + "https://openalex.org/W2787035179", + "https://openalex.org/W2787189300", + "https://openalex.org/W2787501667", + "https://openalex.org/W2788079077", + "https://openalex.org/W2788110787", + "https://openalex.org/W2788853733", + "https://openalex.org/W2789487674", + "https://openalex.org/W2793670633", + "https://openalex.org/W2793695846", + "https://openalex.org/W2794356495", + "https://openalex.org/W2796265726", + "https://openalex.org/W2803311163", + "https://openalex.org/W2803435037", + "https://openalex.org/W2804534929", + "https://openalex.org/W2808938483", + "https://openalex.org/W2809054435", + "https://openalex.org/W2809880372", + "https://openalex.org/W2809899846", + "https://openalex.org/W2818275232", + "https://openalex.org/W2826306652", + "https://openalex.org/W2884528674", + "https://openalex.org/W2885311373", + "https://openalex.org/W2885487916", + "https://openalex.org/W2885820039", + "https://openalex.org/W2886200920", + "https://openalex.org/W2887612286", + "https://openalex.org/W2889130221", + "https://openalex.org/W2899771611", + "https://openalex.org/W2902994895", + "https://openalex.org/W2903995489", + "https://openalex.org/W2911090636", + "https://openalex.org/W2913566062", + "https://openalex.org/W2913668833", + "https://openalex.org/W2914694469", + "https://openalex.org/W2947123069", + "https://openalex.org/W2949264490", + "https://openalex.org/W2950277768", + "https://openalex.org/W2950326163", + "https://openalex.org/W2950330175", + "https://openalex.org/W2950680102", + "https://openalex.org/W2950731343", + "https://openalex.org/W2951104886", + "https://openalex.org/W2951775784", + "https://openalex.org/W2952074906", + "https://openalex.org/W2952125132", + "https://openalex.org/W2953384591", + "https://openalex.org/W2963216850", + "https://openalex.org/W2963263347", + "https://openalex.org/W2963305465", + "https://openalex.org/W2963341924", + "https://openalex.org/W2963446712", + "https://openalex.org/W2963474950", + "https://openalex.org/W2963565814", + "https://openalex.org/W2963628712", + "https://openalex.org/W2963775850", + "https://openalex.org/W2963778169", + "https://openalex.org/W2963815651", + "https://openalex.org/W2963821229", + "https://openalex.org/W2963840672", + "https://openalex.org/W2963905884", + "https://openalex.org/W2964025389", + "https://openalex.org/W2964029277", + "https://openalex.org/W2964054038", + "https://openalex.org/W2964081807", + "https://openalex.org/W2964137095", + "https://openalex.org/W2965658867", + "https://openalex.org/W2997644599", + "https://openalex.org/W3000180494", + "https://openalex.org/W3006551545", + "https://openalex.org/W3023169168", + "https://openalex.org/W3026324026", + "https://openalex.org/W3035219538", + "https://openalex.org/W3043188097", + "https://openalex.org/W3099343340", + "https://openalex.org/W3099934359", + "https://openalex.org/W3100055683", + "https://openalex.org/W3102978735", + "https://openalex.org/W3118608800", + "https://openalex.org/W3120740533", + "https://openalex.org/W3122943284", + "https://openalex.org/W3124229194", + "https://openalex.org/W3195149063", + "https://openalex.org/W4205687621", + "https://openalex.org/W4211049957", + "https://openalex.org/W4226503094", + "https://openalex.org/W4232158517", + "https://openalex.org/W4233965824", + "https://openalex.org/W4234228486", + "https://openalex.org/W4237910115", + "https://openalex.org/W4239181501", + "https://openalex.org/W4243562335", + "https://openalex.org/W4246635279", + "https://openalex.org/W4247950230", + "https://openalex.org/W4250224875", + "https://openalex.org/W4255491615", + "https://openalex.org/W4289752289", + "https://openalex.org/W4289763996", + "https://openalex.org/W4293407356", + "https://openalex.org/W4293407536", + "https://openalex.org/W4293870975", + "https://openalex.org/W4294375521", + "https://openalex.org/W4294646197", + "https://openalex.org/W4295185264", + "https://openalex.org/W4295292688", + "https://openalex.org/W4295727797", + "https://openalex.org/W4297670622", + "https://openalex.org/W4297733768", + "https://openalex.org/W4297778814", + "https://openalex.org/W4297800546", + "https://openalex.org/W4297803580", + "https://openalex.org/W4297917482", + "https://openalex.org/W4298052809", + "https://openalex.org/W4298342842", + "https://openalex.org/W4298826872", + "https://openalex.org/W4299518610", + "https://openalex.org/W4300001399", + "https://openalex.org/W4300197707", + "https://openalex.org/W4300427683", + "https://openalex.org/W4300687381", + "https://openalex.org/W4300687870", + "https://openalex.org/W4300716136", + "https://openalex.org/W4300799480", + "https://openalex.org/W4300971732", + "https://openalex.org/W4301181331", + "https://openalex.org/W4301260059", + "https://openalex.org/W4302594429", + "https://openalex.org/W4302768905", + "https://openalex.org/W4302793682", + "https://openalex.org/W4303633609", + "https://openalex.org/W4313169793", + "https://openalex.org/W4324106947", + "https://openalex.org/W4387808640", + "https://openalex.org/W4394633966", + "https://openalex.org/W4394672493" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "open": [ + 1 + ], + "access": [ + 2 + ], + "book": [ + 3 + ], + "gives": [ + 4 + ], + "the": [ + 5, + 29 + ], + "first": [ + 6, + 30 + ], + "comprehensive": [ + 7 + ], + "overview": [ + 8 + ], + "of": [ + 9, + 19, + 33 + ], + "general": [ + 10 + ], + "methods": [ + 11 + ], + "in": [ + 12 + ], + "Automatic": [ + 13 + ], + "Machine": [ + 14 + ], + "Learning,": [ + 15 + ], + "AutoML,": [ + 16 + ], + "collects": [ + 17 + ], + "descriptions": [ + 18 + ], + "existing": [ + 20 + ], + "AutoML": [ + 21, + 34 + ], + "systems": [ + 22 + ], + "based": [ + 23 + ], + "on": [ + 24 + ], + "these": [ + 25 + ], + "methods,": [ + 26 + ], + "and": [ + 27 + ], + "discusses": [ + 28 + ], + "international": [ + 31 + ], + "challenge": [ + 32 + ], + "systems.": [ + 35 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 78 + }, + { + "year": 2025, + "cited_by_count": 270 + }, + { + "year": 2024, + "cited_by_count": 240 + }, + { + "year": 2023, + "cited_by_count": 230 + }, + { + "year": 2022, + "cited_by_count": 223 + }, + { + "year": 2021, + "cited_by_count": 212 + }, + { + "year": 2020, + "cited_by_count": 107 + }, + { + "year": 2019, + "cited_by_count": 19 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2022-02-24T00:00:00" + }, + { + "id": "https://openalex.org/W2168029744", + "doi": "https://doi.org/10.1214/009053607000000677", + "title": "Kernel methods in machine learning", + "display_name": "Kernel methods in machine learning", + "relevance_score": 2928.1125, + "publication_year": 2008, + "publication_date": "2008-05-26", + "ids": { + "openalex": "https://openalex.org/W2168029744", + "doi": "https://doi.org/10.1214/009053607000000677", + "mag": "2168029744" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Thomas Hofmann", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I42894916", + "display_name": "Data61", + "ror": "https://ror.org/03q397159", + "country_code": "AU", + "type": "other", + "lineage": [ + "https://openalex.org/I1292875679", + "https://openalex.org/I2801453606", + "https://openalex.org/I42894916", + "https://openalex.org/I4387156119" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "Thomas Hofmann", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "institution_ids": [ + "https://openalex.org/I42894916" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Bernhard Schölkopf", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Bernhard Schölkopf", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Alexander J. Smola", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I42894916", + "display_name": "Data61", + "ror": "https://ror.org/03q397159", + "country_code": "AU", + "type": "other", + "lineage": [ + "https://openalex.org/I1292875679", + "https://openalex.org/I2801453606", + "https://openalex.org/I42894916", + "https://openalex.org/I4387156119" + ] + }, + { + "id": "https://openalex.org/I4210112925", + "display_name": "Max Planck Institute for Biological Cybernetics", + "ror": "https://ror.org/026nmvv73", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ] + } + ], + "countries": [ + "AU", + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Alexander J. Smola", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TBINGEN GERMANY" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "institution_ids": [ + "https://openalex.org/I42894916" + ] + }, + { + "raw_affiliation_string": "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TBINGEN GERMANY", + "institution_ids": [ + "https://openalex.org/I4210112925" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I42894916" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 26.4332, + "has_fulltext": true, + "cited_by_count": 1588, + "citation_normalized_percentile": { + "value": 0.99597728, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "36", + "issue": "3", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.2791999876499176, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.2791999876499176, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.27090001106262207, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.1281999945640564, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.7440000176429749 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.5529999732971191 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.5508999824523926 + }, + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.48159998655319214 + }, + { + "id": "https://openalex.org/keywords/binary-classification", + "display_name": "Binary classification", + "score": 0.45410001277923584 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4406000077724457 + }, + { + "id": "https://openalex.org/keywords/kernel-embedding-of-distributions", + "display_name": "Kernel embedding of distributions", + "score": 0.43630000948905945 + }, + { + "id": "https://openalex.org/keywords/representer-theorem", + "display_name": "Representer theorem", + "score": 0.42590001225471497 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.34369999170303345 + }, + { + "id": "https://openalex.org/keywords/radial-basis-function-kernel", + "display_name": "Radial basis function kernel", + "score": 0.34049999713897705 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.7440000176429749 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6704999804496765 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6018999814987183 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.5529999732971191 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.5508999824523926 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5184000134468079 + }, + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.48159998655319214 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.46219998598098755 + }, + { + "id": "https://openalex.org/C66905080", + "wikidata": "https://www.wikidata.org/wiki/Q17005494", + "display_name": "Binary classification", + "level": 3, + "score": 0.45410001277923584 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4406000077724457 + }, + { + "id": "https://openalex.org/C134517425", + "wikidata": "https://www.wikidata.org/wiki/Q16000131", + "display_name": "Kernel embedding of distributions", + "level": 4, + "score": 0.43630000948905945 + }, + { + "id": "https://openalex.org/C172623408", + "wikidata": "https://www.wikidata.org/wiki/Q7314263", + "display_name": "Representer theorem", + "level": 5, + "score": 0.42590001225471497 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.34369999170303345 + }, + { + "id": "https://openalex.org/C75866337", + "wikidata": "https://www.wikidata.org/wiki/Q7280263", + "display_name": "Radial basis function kernel", + "level": 4, + "score": 0.34049999713897705 + }, + { + "id": "https://openalex.org/C140417398", + "wikidata": "https://www.wikidata.org/wiki/Q16933942", + "display_name": "Tree kernel", + "level": 5, + "score": 0.3375000059604645 + }, + { + "id": "https://openalex.org/C58973888", + "wikidata": "https://www.wikidata.org/wiki/Q1041418", + "display_name": "Semi-supervised learning", + "level": 2, + "score": 0.32499998807907104 + }, + { + "id": "https://openalex.org/C14036430", + "wikidata": "https://www.wikidata.org/wiki/Q3736076", + "display_name": "Function (biology)", + "level": 2, + "score": 0.3230000138282776 + }, + { + "id": "https://openalex.org/C22367795", + "wikidata": "https://www.wikidata.org/wiki/Q7625208", + "display_name": "Structured prediction", + "level": 2, + "score": 0.3158000111579895 + }, + { + "id": "https://openalex.org/C160446489", + "wikidata": "https://www.wikidata.org/wiki/Q7226642", + "display_name": "Polynomial kernel", + "level": 4, + "score": 0.3151000142097473 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.31119999289512634 + }, + { + "id": "https://openalex.org/C65660741", + "wikidata": "https://www.wikidata.org/wiki/Q3952743", + "display_name": "Score", + "level": 2, + "score": 0.3109000027179718 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.30809998512268066 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.2989000082015991 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.295199990272522 + }, + { + "id": "https://openalex.org/C158622935", + "wikidata": "https://www.wikidata.org/wiki/Q660848", + "display_name": "Nonlinear system", + "level": 2, + "score": 0.28299999237060547 + }, + { + "id": "https://openalex.org/C48372109", + "wikidata": "https://www.wikidata.org/wiki/Q3913", + "display_name": "Binary number", + "level": 2, + "score": 0.27970001101493835 + }, + { + "id": "https://openalex.org/C51632099", + "wikidata": "https://www.wikidata.org/wiki/Q3985153", + "display_name": "Training set", + "level": 2, + "score": 0.2784000039100647 + }, + { + "id": "https://openalex.org/C2780428219", + "wikidata": "https://www.wikidata.org/wiki/Q16952335", + "display_name": "Cover (algebra)", + "level": 2, + "score": 0.27799999713897705 + }, + { + "id": "https://openalex.org/C115051666", + "wikidata": "https://www.wikidata.org/wiki/Q6522493", + "display_name": "Ranging", + "level": 2, + "score": 0.2750999927520752 + }, + { + "id": "https://openalex.org/C136389625", + "wikidata": "https://www.wikidata.org/wiki/Q334384", + "display_name": "Supervised learning", + "level": 3, + "score": 0.27230000495910645 + }, + { + "id": "https://openalex.org/C21080849", + "wikidata": "https://www.wikidata.org/wiki/Q13611879", + "display_name": "Data point", + "level": 2, + "score": 0.26989999413490295 + }, + { + "id": "https://openalex.org/C2778572836", + "wikidata": "https://www.wikidata.org/wiki/Q380933", + "display_name": "Space (punctuation)", + "level": 2, + "score": 0.25369998812675476 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:math/0701907", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/math/0701907", + "pdf_url": "https://arxiv.org/pdf/math/0701907", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:CULeuclid:euclid.aos/1211819561", + "is_oa": false, + "landing_page_url": "http://projecteuclid.org/euclid.aos/1211819561", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400787", + "display_name": "Project Euclid (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:openresearch-repository.anu.edu.au:1885/100161", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/1885/100161", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402539", + "display_name": "ANU Open Research (Australian National University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I118347636", + "host_organization_name": "Australian National University", + "host_organization_lineage": [ + "https://openalex.org/I118347636" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annals of Statistics", + "raw_type": "Journal article" + } + ], + "best_oa_location": { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320310369", + "display_name": "National ICT Australia", + "ror": "https://ror.org/03q397159" + }, + { + "id": "https://openalex.org/F4320315885", + "display_name": "Australian Government", + "ror": "https://ror.org/0314h5y94" + }, + { + "id": "https://openalex.org/F4320328470", + "display_name": "Mathematisches Forschungsinstitut Oberwolfach", + "ror": "https://ror.org/001zbj766" + }, + { + "id": "https://openalex.org/F4320334704", + "display_name": "Australian Research Council", + "ror": "https://ror.org/05mmh0f86" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2168029744.pdf", + "grobid_xml": "https://content.openalex.org/works/W2168029744.grobid-xml" + }, + "referenced_works_count": 116, + "referenced_works": [ + "https://openalex.org/W14071851", + "https://openalex.org/W56743589", + "https://openalex.org/W179694669", + "https://openalex.org/W1490266132", + "https://openalex.org/W1496189301", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512098439", + "https://openalex.org/W1526146785", + "https://openalex.org/W1526729636", + "https://openalex.org/W1542652324", + "https://openalex.org/W1549656520", + "https://openalex.org/W1550988992", + "https://openalex.org/W1560729174", + "https://openalex.org/W1575431606", + "https://openalex.org/W1578255497", + "https://openalex.org/W1587744656", + "https://openalex.org/W1596052433", + "https://openalex.org/W1604293137", + "https://openalex.org/W1638081485", + "https://openalex.org/W1647376582", + "https://openalex.org/W1719651905", + "https://openalex.org/W1774304772", + "https://openalex.org/W1835509607", + "https://openalex.org/W1899157803", + "https://openalex.org/W1966347620", + "https://openalex.org/W1968934255", + "https://openalex.org/W1975077471", + "https://openalex.org/W1982032418", + "https://openalex.org/W1986931325", + "https://openalex.org/W1989408439", + "https://openalex.org/W1990534247", + "https://openalex.org/W1991200719", + "https://openalex.org/W1992236290", + "https://openalex.org/W1992666150", + "https://openalex.org/W1995558350", + "https://openalex.org/W1998438337", + "https://openalex.org/W1999486090", + "https://openalex.org/W2001792610", + "https://openalex.org/W2002806284", + "https://openalex.org/W2007154098", + "https://openalex.org/W2008400752", + "https://openalex.org/W2009511046", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015904350", + "https://openalex.org/W2018582985", + "https://openalex.org/W2020816856", + "https://openalex.org/W2025341678", + "https://openalex.org/W2051381803", + "https://openalex.org/W2060591526", + "https://openalex.org/W2064976291", + "https://openalex.org/W2070771761", + "https://openalex.org/W2075887074", + "https://openalex.org/W2082100828", + "https://openalex.org/W2082612735", + "https://openalex.org/W2083780577", + "https://openalex.org/W2086404575", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092182929", + "https://openalex.org/W2098385651", + "https://openalex.org/W2101276256", + "https://openalex.org/W2103657184", + "https://openalex.org/W2104128541", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106353560", + "https://openalex.org/W2108153239", + "https://openalex.org/W2112076978", + "https://openalex.org/W2114281975", + "https://openalex.org/W2119647652", + "https://openalex.org/W2120340025", + "https://openalex.org/W2121127625", + "https://openalex.org/W2123606421", + "https://openalex.org/W2123737232", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2125053431", + "https://openalex.org/W2127713198", + "https://openalex.org/W2131479089", + "https://openalex.org/W2132637896", + "https://openalex.org/W2132870739", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135498906", + "https://openalex.org/W2139686264", + "https://openalex.org/W2140095548", + "https://openalex.org/W2141224867", + "https://openalex.org/W2141407058", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144068644", + "https://openalex.org/W2148018895", + "https://openalex.org/W2151949149", + "https://openalex.org/W2156515921", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2159737176", + "https://openalex.org/W2161920802", + "https://openalex.org/W2162836072", + "https://openalex.org/W2164943005", + "https://openalex.org/W2169945149", + "https://openalex.org/W2408196097", + "https://openalex.org/W2554813760", + "https://openalex.org/W2795528501", + "https://openalex.org/W2988119488", + "https://openalex.org/W2994982620", + "https://openalex.org/W4210636998", + "https://openalex.org/W4232576706", + "https://openalex.org/W4234698323", + "https://openalex.org/W4238284510", + "https://openalex.org/W4238957295", + "https://openalex.org/W4239510810", + "https://openalex.org/W4246066915", + "https://openalex.org/W4247545571", + "https://openalex.org/W4249925659", + "https://openalex.org/W4251085907", + "https://openalex.org/W4251115686", + "https://openalex.org/W4298876635", + "https://openalex.org/W4396738453" + ], + "related_works": [], + "abstract_inverted_index": { + "We": [ + 0, + 77 + ], + "review": [ + 1 + ], + "machine": [ + 2 + ], + "learning": [ + 3, + 12, + 52 + ], + "methods": [ + 4, + 10, + 90 + ], + "employing": [ + 5 + ], + "positive": [ + 6 + ], + "definite": [ + 7 + ], + "kernels.": [ + 8 + ], + "These": [ + 9 + ], + "formulate": [ + 11 + ], + "and": [ + 13, + 49 + ], + "estimation": [ + 14, + 92 + ], + "problems": [ + 15 + ], + "in": [ + 16, + 31, + 37 + ], + "a": [ + 17, + 34, + 79 + ], + "reproducing": [ + 18 + ], + "kernel": [ + 19 + ], + "Hilbert": [ + 20 + ], + "space": [ + 21 + ], + "(RKHS)": [ + 22 + ], + "of": [ + 23, + 33, + 40, + 45, + 51, + 62, + 82 + ], + "functions": [ + 24, + 68, + 72 + ], + "defined": [ + 25, + 73 + ], + "on": [ + 26, + 74 + ], + "the": [ + 27, + 43, + 47, + 56 + ], + "data": [ + 28 + ], + "domain,": [ + 29 + ], + "expanded": [ + 30 + ], + "terms": [ + 32 + ], + "kernel.": [ + 35 + ], + "Working": [ + 36 + ], + "linear": [ + 38 + ], + "spaces": [ + 39 + ], + "function": [ + 41 + ], + "has": [ + 42 + ], + "benefit": [ + 44 + ], + "facilitating": [ + 46 + ], + "construction": [ + 48 + ], + "analysis": [ + 50 + ], + "algorithms": [ + 53 + ], + "while": [ + 54 + ], + "at": [ + 55 + ], + "same": [ + 57 + ], + "time": [ + 58 + ], + "allowing": [ + 59 + ], + "large": [ + 60 + ], + "classes": [ + 61 + ], + "functions.": [ + 63 + ], + "The": [ + 64 + ], + "latter": [ + 65 + ], + "include": [ + 66 + ], + "nonlinear": [ + 67 + ], + "as": [ + 69, + 71 + ], + "well": [ + 70 + ], + "nonvectorial": [ + 75 + ], + "data.": [ + 76, + 95 + ], + "cover": [ + 78 + ], + "wide": [ + 80 + ], + "range": [ + 81 + ], + "methods,": [ + 83 + ], + "ranging": [ + 84 + ], + "from": [ + 85 + ], + "binary": [ + 86 + ], + "classifiers": [ + 87 + ], + "to": [ + 88 + ], + "sophisticated": [ + 89 + ], + "for": [ + 91 + ], + "with": [ + 93 + ], + "structured": [ + 94 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 37 + }, + { + "year": 2025, + "cited_by_count": 119 + }, + { + "year": 2024, + "cited_by_count": 144 + }, + { + "year": 2023, + "cited_by_count": 146 + }, + { + "year": 2022, + "cited_by_count": 169 + }, + { + "year": 2021, + "cited_by_count": 146 + }, + { + "year": 2020, + "cited_by_count": 163 + }, + { + "year": 2019, + "cited_by_count": 122 + }, + { + "year": 2018, + "cited_by_count": 99 + }, + { + "year": 2017, + "cited_by_count": 100 + }, + { + "year": 2016, + "cited_by_count": 81 + }, + { + "year": 2015, + "cited_by_count": 60 + }, + { + "year": 2014, + "cited_by_count": 67 + }, + { + "year": 2013, + "cited_by_count": 48 + }, + { + "year": 2012, + "cited_by_count": 41 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2951278869", + "doi": "https://doi.org/10.48550/arxiv.cs/0205070", + "title": "Thumbs up? Sentiment Classification using Machine Learning Techniques", + "display_name": "Thumbs up? Sentiment Classification using Machine Learning Techniques", + "relevance_score": 2912.426, + "publication_year": 2002, + "publication_date": "2002-05-28", + "ids": { + "openalex": "https://openalex.org/W2951278869", + "doi": "https://doi.org/10.48550/arxiv.cs/0205070", + "mag": "2951278869" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/cs/0205070", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101799605", + "display_name": "Bo Pang", + "orcid": "https://orcid.org/0000-0003-4521-6369" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Pang, Bo", + "raw_affiliation_strings": [ + "[Cornell Univ., Ithaca, NY]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Cornell Univ., Ithaca, NY]", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5076876084", + "display_name": "Lillian Lee", + "orcid": "https://orcid.org/0000-0003-4770-1712" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lee, Lillian", + "raw_affiliation_strings": [ + "[Cornell Univ., Ithaca, NY]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Cornell Univ., Ithaca, NY]", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5010223683", + "display_name": "Shivakumar Vaithyanathan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210085935", + "display_name": "IBM Research - Almaden", + "ror": "https://ror.org/005w8dd04", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1341412227", + "https://openalex.org/I4210085935", + "https://openalex.org/I4210114115" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vaithyanathan, Shivakumar", + "raw_affiliation_strings": [ + "IBM Almaden Research Center, San Jose´, CA#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IBM Almaden Research Center, San Jose´, CA#TAB#", + "institution_ids": [ + "https://openalex.org/I4210085935" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5101799605" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I205783295" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 2213, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10664", + "display_name": "Sentiment Analysis and Opinion Mining", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10664", + "display_name": "Sentiment Analysis and Opinion Mining", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10028", + "display_name": "Topic Modeling", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/naive-bayes-classifier", + "display_name": "Naive Bayes classifier", + "score": 0.7803267240524292 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7159409523010254 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.7090805172920227 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7036598324775696 + }, + { + "id": "https://openalex.org/keywords/sentiment-analysis", + "display_name": "Sentiment analysis", + "score": 0.6854574084281921 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6812595129013062 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6556271314620972 + }, + { + "id": "https://openalex.org/keywords/principle-of-maximum-entropy", + "display_name": "Principle of maximum entropy", + "score": 0.6111433506011963 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.4346766471862793 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C52001869", + "wikidata": "https://www.wikidata.org/wiki/Q812530", + "display_name": "Naive Bayes classifier", + "level": 3, + "score": 0.7803267240524292 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7159409523010254 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.7090805172920227 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7036598324775696 + }, + { + "id": "https://openalex.org/C66402592", + "wikidata": "https://www.wikidata.org/wiki/Q2271421", + "display_name": "Sentiment analysis", + "level": 2, + "score": 0.6854574084281921 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6812595129013062 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6556271314620972 + }, + { + "id": "https://openalex.org/C9679016", + "wikidata": "https://www.wikidata.org/wiki/Q1417473", + "display_name": "Principle of maximum entropy", + "level": 2, + "score": 0.6111433506011963 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.4346766471862793 + } + ], + "mesh": [], + "locations_count": 8, + "locations": [ + { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.115.7478", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.115.7478", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/people/pabo/papers/sentiment.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.17.9562", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.17.9562", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/home/llee/papers/sentiment.ps", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.224.2133", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.224.2133", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.columbia.edu/%7Ejulia/papers/pangetal02.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.3.1972", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.3.1972", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://acl.ldc.upenn.edu/W/W02/W02-1011.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.342.8489", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.342.8489", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://arxiv.org/pdf/cs/0205070v1.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.93.8755", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.8755", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/home/llee/papers/sentiment.pdf", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.cs/0205070", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.cs/0205070", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.6100000143051147, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 21, + "referenced_works": [ + "https://openalex.org/W94749751", + "https://openalex.org/W123043039", + "https://openalex.org/W159417085", + "https://openalex.org/W204713426", + "https://openalex.org/W1547032355", + "https://openalex.org/W1550206324", + "https://openalex.org/W1576520375", + "https://openalex.org/W1924689489", + "https://openalex.org/W1998442272", + "https://openalex.org/W2038201841", + "https://openalex.org/W2048374711", + "https://openalex.org/W2066590388", + "https://openalex.org/W2086042358", + "https://openalex.org/W2093585241", + "https://openalex.org/W2096175520", + "https://openalex.org/W2149684865", + "https://openalex.org/W2163306339", + "https://openalex.org/W2787893582", + "https://openalex.org/W2949696181", + "https://openalex.org/W3146306708", + "https://openalex.org/W3151392175" + ], + "related_works": [ + "https://openalex.org/W2165912799", + "https://openalex.org/W2735662278", + "https://openalex.org/W2382615723", + "https://openalex.org/W4311804456", + "https://openalex.org/W1987484445", + "https://openalex.org/W2623658258", + "https://openalex.org/W2143413548", + "https://openalex.org/W1969219540", + "https://openalex.org/W2370459448", + "https://openalex.org/W3021501837" + ], + "abstract_inverted_index": { + "We": [ + 0, + 69 + ], + "consider": [ + 1 + ], + "the": [ + 2, + 40, + 76 + ], + "problem": [ + 3, + 79 + ], + "of": [ + 4 + ], + "classifying": [ + 5 + ], + "documents": [ + 6 + ], + "not": [ + 7, + 57 + ], + "by": [ + 8, + 11, + 71 + ], + "topic,": [ + 9 + ], + "but": [ + 10 + ], + "overall": [ + 12 + ], + "sentiment,": [ + 13 + ], + "e.g.,": [ + 14 + ], + "determining": [ + 15 + ], + "whether": [ + 16 + ], + "a": [ + 17 + ], + "review": [ + 18 + ], + "is": [ + 19 + ], + "positive": [ + 20 + ], + "or": [ + 21 + ], + "negative.": [ + 22 + ], + "Using": [ + 23 + ], + "movie": [ + 24 + ], + "reviews": [ + 25 + ], + "as": [ + 26, + 59, + 64 + ], + "data,": [ + 27 + ], + "we": [ + 28, + 45 + ], + "find": [ + 29 + ], + "that": [ + 30, + 74 + ], + "standard": [ + 31 + ], + "machine": [ + 32, + 42 + ], + "learning": [ + 33, + 43 + ], + "techniques": [ + 34 + ], + "definitively": [ + 35 + ], + "outperform": [ + 36 + ], + "human-produced": [ + 37 + ], + "baselines.": [ + 38 + ], + "However,": [ + 39 + ], + "three": [ + 41 + ], + "methods": [ + 44 + ], + "employed": [ + 46 + ], + "(Naive": [ + 47 + ], + "Bayes,": [ + 48 + ], + "maximum": [ + 49 + ], + "entropy": [ + 50 + ], + "classification,": [ + 51 + ], + "and": [ + 52 + ], + "support": [ + 53 + ], + "vector": [ + 54 + ], + "machines)": [ + 55 + ], + "do": [ + 56 + ], + "perform": [ + 58 + ], + "well": [ + 60 + ], + "on": [ + 61, + 65 + ], + "sentiment": [ + 62, + 77 + ], + "classification": [ + 63, + 78 + ], + "traditional": [ + 66 + ], + "topic-based": [ + 67 + ], + "categorization.": [ + 68 + ], + "conclude": [ + 70 + ], + "examining": [ + 72 + ], + "factors": [ + 73 + ], + "make": [ + 75 + ], + "more": [ + 80 + ], + "challenging.": [ + 81 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 36 + }, + { + "year": 2024, + "cited_by_count": 80 + }, + { + "year": 2023, + "cited_by_count": 125 + }, + { + "year": 2022, + "cited_by_count": 143 + }, + { + "year": 2021, + "cited_by_count": 182 + }, + { + "year": 2020, + "cited_by_count": 197 + }, + { + "year": 2019, + "cited_by_count": 212 + }, + { + "year": 2018, + "cited_by_count": 230 + }, + { + "year": 2017, + "cited_by_count": 222 + }, + { + "year": 2016, + "cited_by_count": 184 + }, + { + "year": 2015, + "cited_by_count": 154 + }, + { + "year": 2014, + "cited_by_count": 131 + }, + { + "year": 2013, + "cited_by_count": 61 + }, + { + "year": 2012, + "cited_by_count": 44 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2104489082", + "doi": "https://doi.org/10.1103/physrevlett.108.058301", + "title": "Fast and Accurate Modeling of Molecular Atomization Energies with Machine Learning", + "display_name": "Fast and Accurate Modeling of Molecular Atomization Energies with Machine Learning", + "relevance_score": 2889.4575, + "publication_year": 2012, + "publication_date": "2012-01-31", + "ids": { + "openalex": "https://openalex.org/W2104489082", + "doi": "https://doi.org/10.1103/physrevlett.108.058301", + "mag": "2104489082", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/22400967" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/physrevlett.108.058301", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.108.058301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1109.2618", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5020780798", + "display_name": "Matthias Rupp", + "orcid": "https://orcid.org/0000-0002-2934-2958" + }, + "institutions": [ + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Matthias Rupp", + "raw_affiliation_strings": [ + "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "Machine Learning Group, Technical University of Berlin", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026929463", + "display_name": "Alexandre Tkatchenko", + "orcid": "https://orcid.org/0000-0002-1012-4854" + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I2800875726", + "display_name": "Fritz Haber Institute of the Max Planck Society", + "ror": "https://ror.org/03k9qs827", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I2800875726" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alexandre Tkatchenko", + "raw_affiliation_strings": [ + "Fritz-Haber-Institut der Max-Planck-Gesellschaft, 14195 Berlin, Germany", + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Theory, Fritz Haber Institute, Max Planck Society", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Fritz-Haber-Institut der Max-Planck-Gesellschaft, 14195 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Theory, Fritz Haber Institute, Max Planck Society", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107838719", + "display_name": "Klaus‐Robert Müller", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Klaus-Robert Müller", + "raw_affiliation_strings": [ + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "Machine Learning Group, Technical University of Berlin", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088793872", + "display_name": "O. Anatole von Lilienfeld", + "orcid": "https://orcid.org/0000-0001-7419-0466" + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I1282105669", + "display_name": "Argonne National Laboratory", + "ror": "https://ror.org/05gvnxz63", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1282105669", + "https://openalex.org/I1330989302", + "https://openalex.org/I39565521", + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "O. Anatole von Lilienfeld", + "raw_affiliation_strings": [ + "Argonne Leadership Computing Facility, Argonne National Laboratory, Argonne, Illinois 60439, USA", + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Argonne Leadership Computing Facility, Argonne National Laboratory", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Argonne Leadership Computing Facility, Argonne National Laboratory, Argonne, Illinois 60439, USA", + "institution_ids": [ + "https://openalex.org/I1282105669" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Argonne Leadership Computing Facility, Argonne National Laboratory", + "institution_ids": [ + "https://openalex.org/I1282105669" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5020780798" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161318765", + "https://openalex.org/I4577782" + ], + "apc_list": { + "value": 3750, + "currency": "USD", + "value_usd": 3750 + }, + "apc_paid": null, + "fwci": 13.8904, + "has_fulltext": false, + "cited_by_count": 2377, + "citation_normalized_percentile": { + "value": 0.99412296, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "108", + "issue": "5", + "first_page": "058301", + "last_page": "058301" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10002", + "display_name": "Advanced Chemical Physics Studies", + "score": 0.9954000115394592, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9923999905586243, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.4200275242328644 + }, + { + "id": "https://openalex.org/keywords/statistical-physics", + "display_name": "Statistical physics", + "score": 0.3693031072616577 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.28881940245628357 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.4200275242328644 + }, + { + "id": "https://openalex.org/C121864883", + "wikidata": "https://www.wikidata.org/wiki/Q677916", + "display_name": "Statistical physics", + "level": 1, + "score": 0.3693031072616577 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.28881940245628357 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1103/physrevlett.108.058301", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.108.058301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + { + "id": "pmid:22400967", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/22400967", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical review letters", + "raw_type": null + }, + { + "id": "pmh:oai:edoc.unibas.ch:43360", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401836", + "display_name": "edoc (University of Basel)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1850255", + "host_organization_name": "University of Basel", + "host_organization_lineage": [ + "https://openalex.org/I1850255" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "acceptedVersion", + "is_accepted": true, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + }, + { + "id": "pmh:oai:arXiv.org:1109.2618", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1109.2618", + "pdf_url": "https://arxiv.org/pdf/1109.2618", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:orbilu.uni.lu:10993/25176", + "is_oa": true, + "landing_page_url": "http://orbilu.uni.lu/handle/10993/25176", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401815", + "display_name": "Open Repository and Bibliography (University of Luxembourg)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I186903577", + "host_organization_name": "University of Luxembourg", + "host_organization_lineage": [ + "https://openalex.org/I186903577" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-sa", + "license_id": "https://openalex.org/licenses/cc-by-nc-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PHYSICAL REVIEW LETTERS, 108(5). ONE PHYSICS ELLIPSE, COLLEGE PK, MD 20740-3844 USA: AMER PHYSICAL SOC (2012).", + "raw_type": null + }, + { + "id": "pmh:oai:osti.gov:1099077", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1099077", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1500966", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-000F-C6EF-A", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Physical Review Letters", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1109.2618", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1109.2618", + "pdf_url": "https://arxiv.org/pdf/1109.2618", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Affordable and clean energy", + "score": 0.8700000047683716, + "id": "https://metadata.un.org/sdg/7" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320306084", + "display_name": "U.S. Department of Energy", + "ror": "https://ror.org/01bj3aw27" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 41, + "referenced_works": [ + "https://openalex.org/W1480376833", + "https://openalex.org/W1522205938", + "https://openalex.org/W1544445790", + "https://openalex.org/W1545231783", + "https://openalex.org/W1548618691", + "https://openalex.org/W1554944419", + "https://openalex.org/W1975997599", + "https://openalex.org/W1978538703", + "https://openalex.org/W1979408061", + "https://openalex.org/W1982598895", + "https://openalex.org/W1987236926", + "https://openalex.org/W1988636074", + "https://openalex.org/W1998317125", + "https://openalex.org/W1998848097", + "https://openalex.org/W2000500972", + "https://openalex.org/W2000957843", + "https://openalex.org/W2016819003", + "https://openalex.org/W2017891892", + "https://openalex.org/W2022080248", + "https://openalex.org/W2023390323", + "https://openalex.org/W2023466796", + "https://openalex.org/W2025444507", + "https://openalex.org/W2030976617", + "https://openalex.org/W2037761619", + "https://openalex.org/W2038617772", + "https://openalex.org/W2049961577", + "https://openalex.org/W2059401145", + "https://openalex.org/W2075930604", + "https://openalex.org/W2083415705", + "https://openalex.org/W2108995755", + "https://openalex.org/W2130437470", + "https://openalex.org/W2143981217", + "https://openalex.org/W2148424525", + "https://openalex.org/W2151571625", + "https://openalex.org/W2153693853", + "https://openalex.org/W2171033594", + "https://openalex.org/W2206840988", + "https://openalex.org/W2230728100", + "https://openalex.org/W2787894218", + "https://openalex.org/W3119651796", + "https://openalex.org/W4242320552" + ], + "related_works": [ + "https://openalex.org/W4391375266", + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W4391913857", + "https://openalex.org/W2358668433", + "https://openalex.org/W4396701345", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W4396696052" + ], + "abstract_inverted_index": { + "We": [ + 0 + ], + "introduce": [ + 1 + ], + "a": [ + 2, + 11, + 36, + 69 + ], + "machine": [ + 3 + ], + "learning": [ + 4 + ], + "model": [ + 5 + ], + "to": [ + 6, + 51 + ], + "predict": [ + 7 + ], + "atomization": [ + 8, + 52, + 84 + ], + "energies": [ + 9, + 53 + ], + "of": [ + 10, + 14, + 27, + 41, + 73, + 82 + ], + "diverse": [ + 12 + ], + "set": [ + 13 + ], + "organic": [ + 15, + 66 + ], + "molecules,": [ + 16 + ], + "based": [ + 17 + ], + "on": [ + 18, + 48 + ], + "nuclear": [ + 19 + ], + "charges": [ + 20 + ], + "and": [ + 21, + 49 + ], + "atomic": [ + 22 + ], + "positions": [ + 23 + ], + "only.": [ + 24 + ], + "The": [ + 25 + ], + "problem": [ + 26, + 40 + ], + "solving": [ + 28 + ], + "the": [ + 29, + 80 + ], + "molecular": [ + 30, + 83 + ], + "Schrödinger": [ + 31 + ], + "equation": [ + 32 + ], + "is": [ + 33, + 77 + ], + "mapped": [ + 34 + ], + "onto": [ + 35 + ], + "nonlinear": [ + 37 + ], + "statistical": [ + 38 + ], + "regression": [ + 39 + ], + "reduced": [ + 42 + ], + "complexity.": [ + 43 + ], + "Regression": [ + 44 + ], + "models": [ + 45 + ], + "are": [ + 46 + ], + "trained": [ + 47 + ], + "compared": [ + 50 + ], + "computed": [ + 54 + ], + "with": [ + 55 + ], + "hybrid": [ + 56 + ], + "density-functional": [ + 57 + ], + "theory.": [ + 58 + ], + "Cross": [ + 59 + ], + "validation": [ + 60 + ], + "over": [ + 61 + ], + "more": [ + 62 + ], + "than": [ + 63 + ], + "seven": [ + 64 + ], + "thousand": [ + 65 + ], + "molecules": [ + 67 + ], + "yields": [ + 68 + ], + "mean": [ + 70 + ], + "absolute": [ + 71 + ], + "error": [ + 72 + ], + "∼10": [ + 74 + ], + "kcal/mol.": [ + 75 + ], + "Applicability": [ + 76 + ], + "demonstrated": [ + 78 + ], + "for": [ + 79 + ], + "prediction": [ + 81 + ], + "potential": [ + 85 + ], + "energy": [ + 86 + ], + "curves.": [ + 87 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 66 + }, + { + "year": 2025, + "cited_by_count": 222 + }, + { + "year": 2024, + "cited_by_count": 270 + }, + { + "year": 2023, + "cited_by_count": 256 + }, + { + "year": 2022, + "cited_by_count": 238 + }, + { + "year": 2021, + "cited_by_count": 346 + }, + { + "year": 2020, + "cited_by_count": 362 + }, + { + "year": 2019, + "cited_by_count": 205 + }, + { + "year": 2018, + "cited_by_count": 182 + }, + { + "year": 2017, + "cited_by_count": 95 + }, + { + "year": 2016, + "cited_by_count": 41 + }, + { + "year": 2015, + "cited_by_count": 33 + }, + { + "year": 2014, + "cited_by_count": 25 + }, + { + "year": 2013, + "cited_by_count": 25 + }, + { + "year": 2012, + "cited_by_count": 9 + } + ], + "updated_date": "2026-05-26T13:28:51.108037", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1590183771", + "doi": "https://doi.org/10.1017/cbo9780511804779", + "title": "Bayesian Reasoning and Machine Learning", + "display_name": "Bayesian Reasoning and Machine Learning", + "relevance_score": 2856.6394, + "publication_year": 2012, + "publication_date": "2012-06-05", + "ids": { + "openalex": "https://openalex.org/W1590183771", + "doi": "https://doi.org/10.1017/cbo9780511804779", + "mag": "1590183771" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9780511804779", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511804779", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101763101", + "display_name": "David Barber", + "orcid": "https://orcid.org/0000-0003-2163-2982" + }, + "institutions": [ + { + "id": "https://openalex.org/I2800173700", + "display_name": "UCL Australia", + "ror": "https://ror.org/024atcf19", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I2800173700" + ] + }, + { + "id": "https://openalex.org/I45129253", + "display_name": "University College London", + "ror": "https://ror.org/02jx3x895", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I124357947", + "https://openalex.org/I45129253" + ] + } + ], + "countries": [ + "AU", + "GB" + ], + "is_corresponding": true, + "raw_author_name": "David Barber", + "raw_affiliation_strings": [ + "University College London", + "University college London" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University College London", + "institution_ids": [ + "https://openalex.org/I45129253" + ] + }, + { + "raw_affiliation_string": "University college London", + "institution_ids": [ + "https://openalex.org/I2800173700" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5101763101" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2800173700", + "https://openalex.org/I45129253" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 16.0361, + "has_fulltext": false, + "cited_by_count": 1650, + "citation_normalized_percentile": { + "value": 0.99438202, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.3961000144481659, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.3961000144481659, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.38089999556541443, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.8341989517211914 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6473276615142822 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.49235260486602783 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3714091181755066 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3704102039337158 + }, + { + "id": "https://openalex.org/keywords/human–computer-interaction", + "display_name": "Human–computer interaction", + "score": 0.3456208109855652 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.16564661264419556 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.8341989517211914 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6473276615142822 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.49235260486602783 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3714091181755066 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3704102039337158 + }, + { + "id": "https://openalex.org/C107457646", + "wikidata": "https://www.wikidata.org/wiki/Q207434", + "display_name": "Human–computer interaction", + "level": 1, + "score": 0.3456208109855652 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.16564661264419556 + } + ], + "mesh": [], + "locations_count": 10, + "locations": [ + { + "id": "doi:10.1017/cbo9780511804779", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511804779", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.232.8159", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.232.8159", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/270212.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.365.5529", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.365.5529", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/180613.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.369.3646", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.369.3646", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/090310.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.649.4333", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.649.4333", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/250214.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.696.6905", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.696.6905", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/240415.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.5862", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.5862", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/181115.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-024811811", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=024811811&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-035597209", + "is_oa": false, + "landing_page_url": "http://www.cs.ucl.ac.uk/staff/d.barber/brml/", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:1495251", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1495251", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "score": 0.41999998688697815, + "id": "https://metadata.un.org/sdg/9" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4286629047", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1 + ], + "methods": [ + 2, + 46 + ], + "extract": [ + 3 + ], + "value": [ + 4 + ], + "from": [ + 5, + 90 + ], + "vast": [ + 6 + ], + "data": [ + 7 + ], + "sets": [ + 8 + ], + "quickly": [ + 9 + ], + "and": [ + 10, + 33, + 36, + 73, + 82, + 85, + 113, + 125, + 130, + 140 + ], + "with": [ + 11, + 63, + 76 + ], + "modest": [ + 12, + 64 + ], + "resources.": [ + 13 + ], + "They": [ + 14 + ], + "are": [ + 15, + 132, + 146 + ], + "established": [ + 16 + ], + "tools": [ + 17 + ], + "in": [ + 18, + 79, + 134 + ], + "a": [ + 19, + 106, + 143 + ], + "wide": [ + 20 + ], + "range": [ + 21 + ], + "of": [ + 22, + 50, + 99, + 108 + ], + "industrial": [ + 23 + ], + "applications,": [ + 24 + ], + "including": [ + 25, + 142 + ], + "search": [ + 26 + ], + "engines,": [ + 27 + ], + "DNA": [ + 28 + ], + "sequencing,": [ + 29 + ], + "stock": [ + 30 + ], + "market": [ + 31 + ], + "analysis,": [ + 32 + ], + "robot": [ + 34 + ], + "locomotion,": [ + 35 + ], + "their": [ + 37, + 48 + ], + "use": [ + 38 + ], + "is": [ + 39, + 68 + ], + "spreading": [ + 40 + ], + "rapidly.": [ + 41 + ], + "People": [ + 42 + ], + "who": [ + 43 + ], + "know": [ + 44 + ], + "the": [ + 45, + 97, + 120 + ], + "have": [ + 47 + ], + "choice": [ + 49 + ], + "rewarding": [ + 51 + ], + "jobs.": [ + 52 + ], + "This": [ + 53 + ], + "hands-on": [ + 54 + ], + "text": [ + 55 + ], + "opens": [ + 56 + ], + "these": [ + 57 + ], + "opportunities": [ + 58 + ], + "to": [ + 59, + 93 + ], + "computer": [ + 60, + 128 + ], + "science": [ + 61 + ], + "students": [ + 62, + 75, + 139 + ], + "mathematical": [ + 65 + ], + "backgrounds.": [ + 66 + ], + "It": [ + 67 + ], + "designed": [ + 69 + ], + "for": [ + 70, + 119, + 138 + ], + "final-year": [ + 71 + ], + "undergraduates": [ + 72 + ], + "master's": [ + 74 + ], + "limited": [ + 77 + ], + "background": [ + 78 + ], + "linear": [ + 80 + ], + "algebra": [ + 81 + ], + "calculus.": [ + 83 + ], + "Comprehensive": [ + 84 + ], + "coherent,": [ + 86 + ], + "it": [ + 87 + ], + "develops": [ + 88 + ], + "everything": [ + 89 + ], + "basic": [ + 91 + ], + "reasoning": [ + 92 + ], + "advanced": [ + 94 + ], + "techniques": [ + 95 + ], + "within": [ + 96 + ], + "framework": [ + 98 + ], + "graphical": [ + 100 + ], + "models.": [ + 101 + ], + "Students": [ + 102 + ], + "learn": [ + 103 + ], + "more": [ + 104 + ], + "than": [ + 105 + ], + "menu": [ + 107 + ], + "techniques,": [ + 109 + ], + "they": [ + 110 + ], + "develop": [ + 111 + ], + "analytical": [ + 112 + ], + "problem-solving": [ + 114 + ], + "skills": [ + 115 + ], + "that": [ + 116 + ], + "equip": [ + 117 + ], + "them": [ + 118 + ], + "real": [ + 121 + ], + "world.": [ + 122 + ], + "Numerous": [ + 123 + ], + "examples": [ + 124 + ], + "exercises,": [ + 126 + ], + "both": [ + 127 + ], + "based": [ + 129 + ], + "theoretical,": [ + 131 + ], + "included": [ + 133 + ], + "every": [ + 135 + ], + "chapter.": [ + 136 + ], + "Resources": [ + 137 + ], + "instructors,": [ + 141 + ], + "MATLAB": [ + 144 + ], + "toolbox,": [ + 145 + ], + "available": [ + 147 + ], + "online.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 18 + }, + { + "year": 2025, + "cited_by_count": 95 + }, + { + "year": 2024, + "cited_by_count": 101 + }, + { + "year": 2023, + "cited_by_count": 93 + }, + { + "year": 2022, + "cited_by_count": 124 + }, + { + "year": 2021, + "cited_by_count": 135 + }, + { + "year": 2020, + "cited_by_count": 193 + }, + { + "year": 2019, + "cited_by_count": 172 + }, + { + "year": 2018, + "cited_by_count": 141 + }, + { + "year": 2017, + "cited_by_count": 132 + }, + { + "year": 2016, + "cited_by_count": 126 + }, + { + "year": 2015, + "cited_by_count": 110 + }, + { + "year": 2014, + "cited_by_count": 100 + }, + { + "year": 2013, + "cited_by_count": 73 + }, + { + "year": 2012, + "cited_by_count": 22 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3123436326", + "doi": "https://doi.org/10.1111/ectj.12097", + "title": "Double/debiased machine learning for treatment and structural parameters", + "display_name": "Double/debiased machine learning for treatment and structural parameters", + "relevance_score": 2840.0427, + "publication_year": 2017, + "publication_date": "2017-06-24", + "ids": { + "openalex": "https://openalex.org/W3123436326", + "doi": "https://doi.org/10.1111/ectj.12097", + "mag": "3123436326" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5068383641", + "display_name": "Victor Chernozhukov", + "orcid": "https://orcid.org/0000-0002-3250-6714" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Victor Chernozhukov", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110738906", + "display_name": "Denis Chetverikov", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Denis Chetverikov", + "raw_affiliation_strings": [ + "University of California Los Angeles, 315 Portola Plaza, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of California Los Angeles, 315 Portola Plaza, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050184772", + "display_name": "Mert Demirer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mert Demirer", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015565298", + "display_name": "Esther Duflo", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Esther Duflo", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5086970490", + "display_name": "Christian Hansen", + "orcid": "https://orcid.org/0009-0006-8123-1039" + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christian Hansen", + "raw_affiliation_strings": [ + "University of Chicago, 5807 S. Woodlawn Ave., Chicago, IL 60637, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Chicago, 5807 S. Woodlawn Ave., Chicago, IL 60637, USA", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5113931380", + "display_name": "Whitney K. Newey", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Whitney Newey", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5079863455", + "display_name": "James M. Robins", + "orcid": "https://orcid.org/0000-0001-6609-209X" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "James Robins", + "raw_affiliation_strings": [ + "Harvard University, 677 Huntington Avenue, Boston, MA 02115, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Harvard University, 677 Huntington Avenue, Boston, MA 02115, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5068383641" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I63966007" + ], + "apc_list": { + "value": 3099, + "currency": "GBP", + "value_usd": 3801 + }, + "apc_paid": null, + "fwci": 49.5776, + "has_fulltext": false, + "cited_by_count": 2395, + "citation_normalized_percentile": { + "value": 0.99897025, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "21", + "issue": "1", + "first_page": "C1", + "last_page": "C68" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9990000128746033, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9990000128746033, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10845", + "display_name": "Advanced Causal Inference Techniques", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10243", + "display_name": "Statistical Methods and Bayesian Inference", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/overfitting", + "display_name": "Overfitting", + "score": 0.9195612668991089 + }, + { + "id": "https://openalex.org/keywords/estimator", + "display_name": "Estimator", + "score": 0.8237652778625488 + }, + { + "id": "https://openalex.org/keywords/nuisance-parameter", + "display_name": "Nuisance parameter", + "score": 0.6137700080871582 + }, + { + "id": "https://openalex.org/keywords/regularization", + "display_name": "Regularization (linguistics)", + "score": 0.611305832862854 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.5675204992294312 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.3928169012069702 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.37074944376945496 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3280455470085144 + }, + { + "id": "https://openalex.org/keywords/applied-mathematics", + "display_name": "Applied mathematics", + "score": 0.3253978490829468 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3153572082519531 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1361507773399353 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C22019652", + "wikidata": "https://www.wikidata.org/wiki/Q331309", + "display_name": "Overfitting", + "level": 3, + "score": 0.9195612668991089 + }, + { + "id": "https://openalex.org/C185429906", + "wikidata": "https://www.wikidata.org/wiki/Q1130160", + "display_name": "Estimator", + "level": 2, + "score": 0.8237652778625488 + }, + { + "id": "https://openalex.org/C194531419", + "wikidata": "https://www.wikidata.org/wiki/Q17104825", + "display_name": "Nuisance parameter", + "level": 3, + "score": 0.6137700080871582 + }, + { + "id": "https://openalex.org/C2776135515", + "wikidata": "https://www.wikidata.org/wiki/Q17143721", + "display_name": "Regularization (linguistics)", + "level": 2, + "score": 0.611305832862854 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.5675204992294312 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.3928169012069702 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.37074944376945496 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3280455470085144 + }, + { + "id": "https://openalex.org/C28826006", + "wikidata": "https://www.wikidata.org/wiki/Q33521", + "display_name": "Applied mathematics", + "level": 1, + "score": 0.3253978490829468 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3153572082519531 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1361507773399353 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6556031174", + "display_name": null, + "funder_award_id": "ES/I034021/1", + "funder_id": "https://openalex.org/F4320334630", + "funder_display_name": "Economic and Social Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320334630", + "display_name": "Economic and Social Research Council", + "ror": "https://ror.org/03n0ht308" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 94, + "referenced_works": [ + "https://openalex.org/W67506904", + "https://openalex.org/W81897278", + "https://openalex.org/W620038288", + "https://openalex.org/W1460189015", + "https://openalex.org/W1520595697", + "https://openalex.org/W1548939571", + "https://openalex.org/W1556388863", + "https://openalex.org/W1656622334", + "https://openalex.org/W1730512236", + "https://openalex.org/W1886275324", + "https://openalex.org/W1963509555", + "https://openalex.org/W1963874316", + "https://openalex.org/W1977675844", + "https://openalex.org/W1981809679", + "https://openalex.org/W1984547044", + "https://openalex.org/W1988734172", + "https://openalex.org/W2000008805", + "https://openalex.org/W2014373672", + "https://openalex.org/W2018543390", + "https://openalex.org/W2022450888", + "https://openalex.org/W2028995298", + "https://openalex.org/W2045640115", + "https://openalex.org/W2046977371", + "https://openalex.org/W2051507405", + "https://openalex.org/W2058248640", + "https://openalex.org/W2062579211", + "https://openalex.org/W2069119359", + "https://openalex.org/W2074523758", + "https://openalex.org/W2078411132", + "https://openalex.org/W2078658856", + "https://openalex.org/W2079597004", + "https://openalex.org/W2086426685", + "https://openalex.org/W2088093133", + "https://openalex.org/W2098895596", + "https://openalex.org/W2099730522", + "https://openalex.org/W2100532505", + "https://openalex.org/W2101746104", + "https://openalex.org/W2104780889", + "https://openalex.org/W2111162388", + "https://openalex.org/W2116581043", + "https://openalex.org/W2120846249", + "https://openalex.org/W2128235479", + "https://openalex.org/W2129086422", + "https://openalex.org/W2143966988", + "https://openalex.org/W2148119495", + "https://openalex.org/W2148596757", + "https://openalex.org/W2150291618", + "https://openalex.org/W2152001792", + "https://openalex.org/W2163162137", + "https://openalex.org/W2171443468", + "https://openalex.org/W2217990278", + "https://openalex.org/W2244523147", + "https://openalex.org/W2308122693", + "https://openalex.org/W2315960178", + "https://openalex.org/W2345898006", + "https://openalex.org/W2398799638", + "https://openalex.org/W2409903755", + "https://openalex.org/W2463468932", + "https://openalex.org/W2478927095", + "https://openalex.org/W2557116807", + "https://openalex.org/W2751382287", + "https://openalex.org/W2765398882", + "https://openalex.org/W2886798606", + "https://openalex.org/W2949148940", + "https://openalex.org/W2950845368", + "https://openalex.org/W2952150717", + "https://openalex.org/W2952248799", + "https://openalex.org/W2962952631", + "https://openalex.org/W2963278901", + "https://openalex.org/W3098302339", + "https://openalex.org/W3099550161", + "https://openalex.org/W3099718522", + "https://openalex.org/W3103221895", + "https://openalex.org/W3121832289", + "https://openalex.org/W3122193054", + "https://openalex.org/W3123233440", + "https://openalex.org/W3123785084", + "https://openalex.org/W3124166904", + "https://openalex.org/W3125188740", + "https://openalex.org/W3125441349", + "https://openalex.org/W3125657517", + "https://openalex.org/W3150893739", + "https://openalex.org/W3207136162", + "https://openalex.org/W4233056867", + "https://openalex.org/W4235461144", + "https://openalex.org/W4240967689", + "https://openalex.org/W4247571494", + "https://openalex.org/W4248240383", + "https://openalex.org/W4300220092", + "https://openalex.org/W4301106181", + "https://openalex.org/W6679265385", + "https://openalex.org/W6802843838", + "https://openalex.org/W6982782312", + "https://openalex.org/W7014881647" + ], + "related_works": [ + "https://openalex.org/W4362597605", + "https://openalex.org/W1574414179", + "https://openalex.org/W4245953108", + "https://openalex.org/W1977619534", + "https://openalex.org/W2236763869", + "https://openalex.org/W2097626286", + "https://openalex.org/W4293568347", + "https://openalex.org/W2808230936", + "https://openalex.org/W2023659367", + "https://openalex.org/W2600353266" + ], + "abstract_inverted_index": { + "We": [ + 0, + 21, + 149, + 205, + 217, + 301 + ], + "revisit": [ + 1 + ], + "the": [ + 2, + 14, + 24, + 36, + 46, + 59, + 135, + 146, + 152, + 162, + 207, + 230, + 267, + 279, + 303, + 314, + 320, + 334, + 351, + 356, + 361, + 369, + 388 + ], + "classic": [ + 3 + ], + "semi‐parametric": [ + 4 + ], + "problem": [ + 5 + ], + "of": [ + 6, + 16, + 45, + 61, + 114, + 124, + 154, + 161, + 164, + 196, + 203, + 210, + 229, + 244, + 252, + 269, + 273, + 298, + 313, + 390 + ], + "inference": [ + 7 + ], + "on": [ + 8, + 159, + 259, + 336, + 360 + ], + "a": [ + 9, + 109, + 270, + 325, + 341 + ], + "low‐dimensional": [ + 10 + ], + "parameter": [ + 11, + 47, + 163, + 232, + 323 + ], + "θ0": [ + 12, + 115, + 166 + ], + "in": [ + 13, + 75, + 97, + 105, + 112, + 134, + 226, + 324, + 340, + 374, + 392 + ], + "presence": [ + 15 + ], + "high‐dimensional": [ + 17, + 34, + 78 + ], + "nuisance": [ + 18, + 188, + 280 + ], + "parameters": [ + 19, + 189 + ], + "η0.": [ + 20 + ], + "depart": [ + 22 + ], + "from": [ + 23 + ], + "classical": [ + 25 + ], + "setting": [ + 26 + ], + "by": [ + 27, + 84, + 119, + 170, + 306 + ], + "allowing": [ + 28 + ], + "for": [ + 29, + 49, + 129, + 277 + ], + "η0": [ + 30, + 107, + 125 + ], + "to": [ + 31, + 73, + 87, + 139, + 187, + 190, + 309, + 318, + 332, + 349, + 367, + 381 + ], + "be": [ + 32, + 140, + 168 + ], + "so": [ + 33 + ], + "that": [ + 35, + 42, + 116, + 151, + 181, + 219, + 224 + ], + "traditional": [ + 37 + ], + "assumptions": [ + 38 + ], + "(e.g.": [ + 39 + ], + "Donsker": [ + 40 + ], + "properties)": [ + 41 + ], + "limit": [ + 43 + ], + "complexity": [ + 44 + ], + "space": [ + 48 + ], + "this": [ + 50 + ], + "object": [ + 51 + ], + "break": [ + 52 + ], + "down.": [ + 53 + ], + "To": [ + 54 + ], + "estimate": [ + 55, + 191 + ], + "η0,": [ + 56 + ], + "we": [ + 57, + 385 + ], + "consider": [ + 58 + ], + "use": [ + 60, + 195, + 268, + 389 + ], + "statistical": [ + 62, + 250 + ], + "or": [ + 63, + 213 + ], + "machine": [ + 64 + ], + "learning": [ + 65 + ], + "(ML)": [ + 66 + ], + "methods,": [ + 67 + ], + "which": [ + 68, + 198, + 241, + 264 + ], + "are": [ + 69, + 117, + 235 + ], + "particularly": [ + 70 + ], + "well": [ + 71, + 83 + ], + "suited": [ + 72 + ], + "estimation": [ + 74, + 160 + ], + "modern,": [ + 76 + ], + "very": [ + 77 + ], + "cases.": [ + 79 + ], + "ML": [ + 80, + 122, + 215, + 275 + ], + "methods": [ + 81, + 211, + 276 + ], + "perform": [ + 82 + ], + "employing": [ + 85 + ], + "regularization": [ + 86, + 93, + 101, + 155 + ], + "reduce": [ + 88 + ], + "variance": [ + 89 + ], + "and": [ + 90, + 103, + 157, + 234, + 238, + 256, + 293, + 296, + 355 + ], + "trading": [ + 91 + ], + "off": [ + 92 + ], + "bias": [ + 94, + 102, + 111, + 132, + 156 + ], + "with": [ + 95, + 185 + ], + "overfitting": [ + 96, + 104, + 158 + ], + "practice.": [ + 98 + ], + "However,": [ + 99 + ], + "both": [ + 100 + ], + "estimating": [ + 106, + 127, + 278 + ], + "cause": [ + 108 + ], + "heavy": [ + 110 + ], + "estimators": [ + 113, + 123, + 223 + ], + "obtained": [ + 118 + ], + "naively": [ + 120 + ], + "plugging": [ + 121 + ], + "into": [ + 126 + ], + "equations": [ + 128 + ], + "θ0.": [ + 130 + ], + "This": [ + 131 + ], + "results": [ + 133 + ], + "naive": [ + 136 + ], + "estimator": [ + 137 + ], + "failing": [ + 138 + ], + "N−1/2": [ + 141 + ], + "consistent,": [ + 142 + ], + "where": [ + 143 + ], + "N": [ + 144 + ], + "is": [ + 145, + 254 + ], + "sample": [ + 147 + ], + "size.": [ + 148 + ], + "show": [ + 150 + ], + "impact": [ + 153 + ], + "interest": [ + 165 + ], + "can": [ + 167 + ], + "removed": [ + 169 + ], + "using": [ + 171, + 178 + ], + "two": [ + 172 + ], + "simple,": [ + 173 + ], + "yet": [ + 174 + ], + "critical,": [ + 175 + ], + "ingredients:": [ + 176 + ], + "(1)": [ + 177 + ], + "Neyman‐orthogonal": [ + 179 + ], + "moments/scores": [ + 180 + ], + "have": [ + 182 + ], + "reduced": [ + 183 + ], + "sensitivity": [ + 184 + ], + "respect": [ + 186 + ], + "θ0;": [ + 192 + ], + "(2)": [ + 193 + ], + "making": [ + 194 + ], + "cross‐fitting,": [ + 197 + ], + "provides": [ + 199 + ], + "an": [ + 200, + 227, + 337, + 375 + ], + "efficient": [ + 201 + ], + "form": [ + 202 + ], + "data‐splitting.": [ + 204 + ], + "call": [ + 206 + ], + "resulting": [ + 208 + ], + "set": [ + 209 + ], + "double": [ + 212 + ], + "debiased": [ + 214 + ], + "(DML).": [ + 216 + ], + "verify": [ + 218 + ], + "DML": [ + 220, + 253, + 316, + 330, + 347, + 365, + 391 + ], + "delivers": [ + 221 + ], + "point": [ + 222 + ], + "concentrate": [ + 225 + ], + "N−1/2‐neighbourhood": [ + 228 + ], + "true": [ + 231 + ], + "values": [ + 233 + ], + "approximately": [ + 236 + ], + "unbiased": [ + 237 + ], + "normally": [ + 239 + ], + "distributed,": [ + 240 + ], + "allows": [ + 242 + ], + "construction": [ + 243 + ], + "valid": [ + 245 + ], + "confidence": [ + 246 + ], + "statements.": [ + 247 + ], + "The": [ + 248 + ], + "generic": [ + 249 + ], + "theory": [ + 251, + 305 + ], + "elementary": [ + 255 + ], + "simultaneously": [ + 257 + ], + "relies": [ + 258 + ], + "only": [ + 260 + ], + "weak": [ + 261 + ], + "theoretical": [ + 262, + 311, + 383 + ], + "requirements,": [ + 263 + ], + "will": [ + 265 + ], + "admit": [ + 266 + ], + "broad": [ + 271 + ], + "array": [ + 272 + ], + "modern": [ + 274 + ], + "parameters,": [ + 281 + ], + "such": [ + 282 + ], + "as": [ + 283 + ], + "random": [ + 284 + ], + "forests,": [ + 285 + ], + "lasso,": [ + 286 + ], + "ridge,": [ + 287 + ], + "deep": [ + 288 + ], + "neural": [ + 289 + ], + "nets,": [ + 290 + ], + "boosted": [ + 291 + ], + "trees,": [ + 292 + ], + "various": [ + 294 + ], + "hybrids": [ + 295 + ], + "ensembles": [ + 297 + ], + "these": [ + 299, + 382 + ], + "methods.": [ + 300 + ], + "illustrate": [ + 302, + 387 + ], + "general": [ + 304 + ], + "applying": [ + 307 + ], + "it": [ + 308 + ], + "provide": [ + 310 + ], + "properties": [ + 312 + ], + "following:": [ + 315 + ], + "applied": [ + 317, + 331, + 348, + 366 + ], + "learn": [ + 319, + 333, + 350, + 368 + ], + "main": [ + 321 + ], + "regression": [ + 322, + 328 + ], + "partially": [ + 326, + 342 + ], + "linear": [ + 327, + 343 + ], + "model;": [ + 329, + 346 + ], + "coefficient": [ + 335 + ], + "endogenous": [ + 338 + ], + "variable": [ + 339 + ], + "instrumental": [ + 344, + 376 + ], + "variables": [ + 345, + 377 + ], + "average": [ + 352, + 357, + 371 + ], + "treatment": [ + 353, + 358, + 372 + ], + "effect": [ + 354, + 359, + 373 + ], + "treated": [ + 362 + ], + "under": [ + 363 + ], + "unconfoundedness;": [ + 364 + ], + "local": [ + 370 + ], + "setting.": [ + 378 + ], + "In": [ + 379 + ], + "addition": [ + 380 + ], + "applications,": [ + 384 + ], + "also": [ + 386 + ], + "three": [ + 393 + ], + "empirical": [ + 394 + ], + "examples.": [ + 395 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 409 + }, + { + "year": 2025, + "cited_by_count": 714 + }, + { + "year": 2024, + "cited_by_count": 427 + }, + { + "year": 2023, + "cited_by_count": 257 + }, + { + "year": 2022, + "cited_by_count": 210 + }, + { + "year": 2021, + "cited_by_count": 172 + }, + { + "year": 2020, + "cited_by_count": 112 + }, + { + "year": 2019, + "cited_by_count": 70 + }, + { + "year": 2018, + "cited_by_count": 18 + }, + { + "year": 2017, + "cited_by_count": 5 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2048266589", + "doi": "https://doi.org/10.1109/micro.2014.58", + "title": "DaDianNao: A Machine-Learning Supercomputer", + "display_name": "DaDianNao: A Machine-Learning Supercomputer", + "relevance_score": 2835.6885, + "publication_year": 2014, + "publication_date": "2014-12-01", + "ids": { + "openalex": "https://openalex.org/W2048266589", + "doi": "https://doi.org/10.1109/micro.2014.58", + "mag": "2048266589" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/micro.2014.58", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/micro.2014.58", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2014 47th Annual IEEE/ACM International Symposium on Microarchitecture", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5036492388", + "display_name": "Yunji Chen", + "orcid": "https://orcid.org/0000-0003-3925-5185" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Yunji Chen", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101630043", + "display_name": "Tao Luo", + "orcid": "https://orcid.org/0000-0002-3415-3676" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tao Luo", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China", + "University of CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + }, + { + "raw_affiliation_string": "University of CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5033237869", + "display_name": "Shaoli Liu", + "orcid": "https://orcid.org/0000-0001-7197-8805" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shaoli Liu", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101498177", + "display_name": "Shijin Zhang", + "orcid": "https://orcid.org/0000-0001-5141-3188" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shijin Zhang", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100836264", + "display_name": "Liqiang He", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I2722730", + "display_name": "Inner Mongolia University", + "ror": "https://ror.org/0106qb496", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I2722730" + ] + }, + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "CN", + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Liqiang He", + "raw_affiliation_strings": [ + "Inner Mongolia University, China", + "Inria, Scalay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Inner Mongolia University, China", + "institution_ids": [ + "https://openalex.org/I2722730" + ] + }, + { + "raw_affiliation_string": "Inria, Scalay, France", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100404643", + "display_name": "Jia Wang", + "orcid": "https://orcid.org/0000-0002-3165-7051" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jia Wang", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100435321", + "display_name": "Ling Li", + "orcid": "https://orcid.org/0000-0001-8877-9052" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ling Li", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5109886311", + "display_name": "Tianshi Chen", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tianshi Chen", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100628169", + "display_name": "Zhiwei Xu", + "orcid": "https://orcid.org/0000-0002-1480-7265" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhiwei Xu", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101738013", + "display_name": "Ninghui Sun", + "orcid": "https://orcid.org/0000-0002-1953-1392" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ninghui Sun", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5040252809", + "display_name": "Olivier Temam", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Olivier Temam", + "raw_affiliation_strings": [ + "Inria, Scalay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Inria, Scalay, France", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 11, + "corresponding_author_ids": [ + "https://openalex.org/A5036492388" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 66.2387, + "has_fulltext": false, + "cited_by_count": 1500, + "citation_normalized_percentile": { + "value": 0.99931381, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "609", + "last_page": "622" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8650738000869751 + }, + { + "id": "https://openalex.org/keywords/supercomputer", + "display_name": "Supercomputer", + "score": 0.6421846747398376 + }, + { + "id": "https://openalex.org/keywords/memory-footprint", + "display_name": "Memory footprint", + "score": 0.6217308640480042 + }, + { + "id": "https://openalex.org/keywords/convolutional-neural-network", + "display_name": "Convolutional neural network", + "score": 0.6212705373764038 + }, + { + "id": "https://openalex.org/keywords/speedup", + "display_name": "Speedup", + "score": 0.6080182790756226 + }, + { + "id": "https://openalex.org/keywords/parallel-computing", + "display_name": "Parallel computing", + "score": 0.5330008268356323 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5072109699249268 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.507047176361084 + }, + { + "id": "https://openalex.org/keywords/memory-bandwidth", + "display_name": "Memory bandwidth", + "score": 0.5065058469772339 + }, + { + "id": "https://openalex.org/keywords/bandwidth", + "display_name": "Bandwidth (computing)", + "score": 0.4705035388469696 + }, + { + "id": "https://openalex.org/keywords/auxiliary-memory", + "display_name": "Auxiliary memory", + "score": 0.46236518025398254 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.44564568996429443 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3841804265975952 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.34958434104919434 + }, + { + "id": "https://openalex.org/keywords/computer-engineering", + "display_name": "Computer engineering", + "score": 0.32731860876083374 + }, + { + "id": "https://openalex.org/keywords/computer-hardware", + "display_name": "Computer hardware", + "score": 0.21425938606262207 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.1414709985256195 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.13462954759597778 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8650738000869751 + }, + { + "id": "https://openalex.org/C83283714", + "wikidata": "https://www.wikidata.org/wiki/Q121117", + "display_name": "Supercomputer", + "level": 2, + "score": 0.6421846747398376 + }, + { + "id": "https://openalex.org/C74912251", + "wikidata": "https://www.wikidata.org/wiki/Q6815727", + "display_name": "Memory footprint", + "level": 2, + "score": 0.6217308640480042 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.6212705373764038 + }, + { + "id": "https://openalex.org/C68339613", + "wikidata": "https://www.wikidata.org/wiki/Q1549489", + "display_name": "Speedup", + "level": 2, + "score": 0.6080182790756226 + }, + { + "id": "https://openalex.org/C173608175", + "wikidata": "https://www.wikidata.org/wiki/Q232661", + "display_name": "Parallel computing", + "level": 1, + "score": 0.5330008268356323 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5072109699249268 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.507047176361084 + }, + { + "id": "https://openalex.org/C188045654", + "wikidata": "https://www.wikidata.org/wiki/Q17148339", + "display_name": "Memory bandwidth", + "level": 2, + "score": 0.5065058469772339 + }, + { + "id": "https://openalex.org/C2776257435", + "wikidata": "https://www.wikidata.org/wiki/Q1576430", + "display_name": "Bandwidth (computing)", + "level": 2, + "score": 0.4705035388469696 + }, + { + "id": "https://openalex.org/C82687282", + "wikidata": "https://www.wikidata.org/wiki/Q66221", + "display_name": "Auxiliary memory", + "level": 2, + "score": 0.46236518025398254 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.44564568996429443 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3841804265975952 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.34958434104919434 + }, + { + "id": "https://openalex.org/C113775141", + "wikidata": "https://www.wikidata.org/wiki/Q428691", + "display_name": "Computer engineering", + "level": 1, + "score": 0.32731860876083374 + }, + { + "id": "https://openalex.org/C9390403", + "wikidata": "https://www.wikidata.org/wiki/Q3966", + "display_name": "Computer hardware", + "level": 1, + "score": 0.21425938606262207 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.1414709985256195 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.13462954759597778 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/micro.2014.58", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/micro.2014.58", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2014 47th Annual IEEE/ACM International Symposium on Microarchitecture", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Affordable and clean energy", + "score": 0.7099999785423279, + "id": "https://metadata.un.org/sdg/7" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 61, + "referenced_works": [ + "https://openalex.org/W160318044", + "https://openalex.org/W587794757", + "https://openalex.org/W1501077214", + "https://openalex.org/W1964471912", + "https://openalex.org/W1987117608", + "https://openalex.org/W1994197834", + "https://openalex.org/W2006312753", + "https://openalex.org/W2010238453", + "https://openalex.org/W2024139303", + "https://openalex.org/W2038061869", + "https://openalex.org/W2043607059", + "https://openalex.org/W2056137328", + "https://openalex.org/W2062227835", + "https://openalex.org/W2071709160", + "https://openalex.org/W2077505860", + "https://openalex.org/W2082444966", + "https://openalex.org/W2089064077", + "https://openalex.org/W2098335003", + "https://openalex.org/W2102543317", + "https://openalex.org/W2107994122", + "https://openalex.org/W2108598243", + "https://openalex.org/W2109492604", + "https://openalex.org/W2111932160", + "https://openalex.org/W2112796928", + "https://openalex.org/W2116267755", + "https://openalex.org/W2120480077", + "https://openalex.org/W2121458485", + "https://openalex.org/W2125203716", + "https://openalex.org/W2128785632", + "https://openalex.org/W2136189984", + "https://openalex.org/W2136262589", + "https://openalex.org/W2141125852", + "https://openalex.org/W2148461049", + "https://openalex.org/W2148605318", + "https://openalex.org/W2152839228", + "https://openalex.org/W2155377787", + "https://openalex.org/W2162390675", + "https://openalex.org/W2163605009", + "https://openalex.org/W2168231600", + "https://openalex.org/W2169875292", + "https://openalex.org/W2187230075", + "https://openalex.org/W2252268321", + "https://openalex.org/W2253807446", + "https://openalex.org/W2467255337", + "https://openalex.org/W2504108613", + "https://openalex.org/W2546302380", + "https://openalex.org/W2963217749", + "https://openalex.org/W3151762208", + "https://openalex.org/W4232280717", + "https://openalex.org/W4239072543", + "https://openalex.org/W6617368339", + "https://openalex.org/W6651700774", + "https://openalex.org/W6673621702", + "https://openalex.org/W6676297131", + "https://openalex.org/W6678242812", + "https://openalex.org/W6680450716", + "https://openalex.org/W6681813608", + "https://openalex.org/W6683722107", + "https://openalex.org/W6684191040", + "https://openalex.org/W6684859321", + "https://openalex.org/W6691441656" + ], + "related_works": [ + "https://openalex.org/W4289827464", + "https://openalex.org/W4376647684", + "https://openalex.org/W4221139464", + "https://openalex.org/W4386302689", + "https://openalex.org/W2068996722", + "https://openalex.org/W4200309432", + "https://openalex.org/W3193699965", + "https://openalex.org/W4319917399", + "https://openalex.org/W2909779890", + "https://openalex.org/W2398743891" + ], + "abstract_inverted_index": { + "Many": [ + 0 + ], + "companies": [ + 1 + ], + "are": [ + 2, + 11, + 33, + 43 + ], + "deploying": [ + 3 + ], + "services,": [ + 4 + ], + "either": [ + 5 + ], + "for": [ + 6, + 17, + 185 + ], + "consumers": [ + 7 + ], + "or": [ + 8 + ], + "industry,": [ + 9 + ], + "which": [ + 10, + 42, + 62, + 70, + 127 + ], + "largely": [ + 12 + ], + "based": [ + 13 + ], + "on": [ + 14, + 84, + 102, + 155, + 183 + ], + "machine-learning": [ + 15, + 31, + 147 + ], + "algorithms": [ + 16, + 32 + ], + "sophisticated": [ + 18 + ], + "processing": [ + 19 + ], + "of": [ + 20, + 23, + 54, + 100, + 105, + 158, + 172, + 204 + ], + "large": [ + 21 + ], + "amounts": [ + 22 + ], + "data.": [ + 24 + ], + "The": [ + 25 + ], + "state-of-the-art": [ + 26 + ], + "and": [ + 27, + 35, + 40, + 49, + 89, + 123, + 177, + 197, + 207 + ], + "most": [ + 28 + ], + "popular": [ + 29 + ], + "such": [ + 30 + ], + "Convolutional": [ + 34 + ], + "Deep": [ + 36 + ], + "Neural": [ + 37 + ], + "Networks": [ + 38 + ], + "(CNNs": [ + 39 + ], + "DNNs),": [ + 41 + ], + "known": [ + 44, + 161 + ], + "to": [ + 45, + 119, + 168, + 194 + ], + "be": [ + 46 + ], + "both": [ + 47 + ], + "computationally": [ + 48 + ], + "memory": [ + 50, + 74, + 79, + 91 + ], + "intensive.": [ + 51 + ], + "A": [ + 52 + ], + "number": [ + 53 + ], + "neural": [ + 55, + 162 + ], + "network": [ + 56, + 163 + ], + "accelerators": [ + 57 + ], + "have": [ + 58 + ], + "been": [ + 59 + ], + "recently": [ + 60 + ], + "proposed": [ + 61 + ], + "can": [ + 63, + 117, + 128 + ], + "offer": [ + 64 + ], + "high": [ + 65, + 120 + ], + "computational": [ + 66, + 208 + ], + "capacity/area": [ + 67 + ], + "ratio,": [ + 68 + ], + "but": [ + 69 + ], + "remain": [ + 71 + ], + "hampered": [ + 72 + ], + "by": [ + 73, + 82, + 181 + ], + "accesses.": [ + 75 + ], + "However,": [ + 76 + ], + "unlike": [ + 77 + ], + "the": [ + 78, + 87, + 98, + 101, + 113, + 159, + 179, + 191, + 195 + ], + "wall": [ + 80 + ], + "faced": [ + 81 + ], + "processors": [ + 83 + ], + "general-purpose": [ + 85 + ], + "workloads,": [ + 86 + ], + "CNNs": [ + 88 + ], + "DNNs": [ + 90 + ], + "footprint,": [ + 92 + ], + "while": [ + 93 + ], + "large,": [ + 94 + ], + "is": [ + 95, + 166 + ], + "not": [ + 96 + ], + "beyond": [ + 97 + ], + "capability": [ + 99 + ], + "chip": [ + 103 + ], + "storage": [ + 104, + 206 + ], + "a": [ + 106, + 135, + 144, + 156, + 170, + 175, + 186, + 202 + ], + "multi-chip": [ + 107, + 146 + ], + "system.": [ + 108, + 188 + ], + "This": [ + 109 + ], + "property,": [ + 110 + ], + "combined": [ + 111 + ], + "with": [ + 112, + 210 + ], + "CNN/DNN": [ + 114 + ], + "algorithmic": [ + 115 + ], + "characteristics,": [ + 116 + ], + "lead": [ + 118 + ], + "internal": [ + 121 + ], + "bandwidth": [ + 122 + ], + "low": [ + 124 + ], + "external": [ + 125 + ], + "communications,": [ + 126 + ], + "in": [ + 129 + ], + "turn": [ + 130 + ], + "enable": [ + 131 + ], + "high-degree": [ + 132 + ], + "parallelism": [ + 133 + ], + "at": [ + 134, + 199 + ], + "reasonable": [ + 136 + ], + "area": [ + 137 + ], + "cost.": [ + 138 + ], + "In": [ + 139 + ], + "this": [ + 140 + ], + "article,": [ + 141 + ], + "we": [ + 142 + ], + "introduce": [ + 143 + ], + "custom": [ + 145, + 205 + ], + "architecture": [ + 148 + ], + "along": [ + 149 + ], + "those": [ + 150 + ], + "lines.": [ + 151 + ], + "We": [ + 152, + 189 + ], + "show": [ + 153 + ], + "that,": [ + 154 + ], + "subset": [ + 157 + ], + "largest": [ + 160 + ], + "layers,": [ + 164 + ], + "it": [ + 165 + ], + "possible": [ + 167 + ], + "achieve": [ + 169 + ], + "speedup": [ + 171 + ], + "450.65x": [ + 173 + ], + "over": [ + 174 + ], + "GPU,": [ + 176 + ], + "reduce": [ + 178 + ], + "energy": [ + 180 + ], + "150.31x": [ + 182 + ], + "average": [ + 184 + ], + "64-chip": [ + 187 + ], + "implement": [ + 190 + ], + "node": [ + 192 + ], + "down": [ + 193 + ], + "place": [ + 196 + ], + "route": [ + 198 + ], + "28nm,": [ + 200 + ], + "containing": [ + 201 + ], + "combination": [ + 203 + ], + "units,": [ + 209 + ], + "industry-grade": [ + 211 + ], + "interconnects.": [ + 212 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 14 + }, + { + "year": 2025, + "cited_by_count": 45 + }, + { + "year": 2024, + "cited_by_count": 74 + }, + { + "year": 2023, + "cited_by_count": 98 + }, + { + "year": 2022, + "cited_by_count": 139 + }, + { + "year": 2021, + "cited_by_count": 189 + }, + { + "year": 2020, + "cited_by_count": 234 + }, + { + "year": 2019, + "cited_by_count": 207 + }, + { + "year": 2018, + "cited_by_count": 232 + }, + { + "year": 2017, + "cited_by_count": 148 + }, + { + "year": 2016, + "cited_by_count": 93 + }, + { + "year": 2015, + "cited_by_count": 24 + }, + { + "year": 2014, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2964303497", + "doi": "https://doi.org/10.3390/electronics8080832", + "title": "Machine Learning Interpretability: A Survey on Methods and Metrics", + "display_name": "Machine Learning Interpretability: A Survey on Methods and Metrics", + "relevance_score": 2830.8088, + "publication_year": 2019, + "publication_date": "2019-07-26", + "ids": { + "openalex": "https://openalex.org/W2964303497", + "doi": "https://doi.org/10.3390/electronics8080832", + "mag": "2964303497" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5102720670", + "display_name": "Diogo V. Carvalho", + "orcid": "https://orcid.org/0000-0002-2349-4117" + }, + "institutions": [ + { + "id": "https://openalex.org/I182534213", + "display_name": "Universidade do Porto", + "ror": "https://ror.org/043pwc612", + "country_code": "PT", + "type": "education", + "lineage": [ + "https://openalex.org/I182534213" + ] + } + ], + "countries": [ + "PT" + ], + "is_corresponding": true, + "raw_author_name": "Diogo V. Carvalho", + "raw_affiliation_strings": [ + "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal" + ], + "raw_orcid": "https://orcid.org/0000-0002-2349-4117", + "affiliations": [ + { + "raw_affiliation_string": "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I182534213" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5102355791", + "display_name": "Eduardo M. Pereira", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Eduardo M. Pereira", + "raw_affiliation_strings": [ + "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5013827007", + "display_name": "Jaime S. Cardoso", + "orcid": "https://orcid.org/0000-0002-3760-2473" + }, + "institutions": [ + { + "id": "https://openalex.org/I182534213", + "display_name": "Universidade do Porto", + "ror": "https://ror.org/043pwc612", + "country_code": "PT", + "type": "education", + "lineage": [ + "https://openalex.org/I182534213" + ] + }, + { + "id": "https://openalex.org/I4210166615", + "display_name": "INESC TEC", + "ror": "https://ror.org/05fa8ka61", + "country_code": "PT", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210125590", + "https://openalex.org/I4210166615" + ] + } + ], + "countries": [ + "PT" + ], + "is_corresponding": false, + "raw_author_name": "Jaime S. Cardoso", + "raw_affiliation_strings": [ + "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "INESC TEC, Dr. Roberto Frias Street, 4200-465 Porto, Portugal" + ], + "raw_orcid": "https://orcid.org/0000-0002-3760-2473", + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I182534213" + ] + }, + { + "raw_affiliation_string": "INESC TEC, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I4210166615" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5102720670" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I182534213" + ], + "apc_list": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "apc_paid": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "fwci": 90.6976, + "has_fulltext": true, + "cited_by_count": 1743, + "citation_normalized_percentile": { + "value": 0.9995324, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "8", + "issue": "8", + "first_page": "832", + "last_page": "832" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9767000079154968, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.9701313972473145 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.659199059009552 + }, + { + "id": "https://openalex.org/keywords/meaning", + "display_name": "Meaning (existential)", + "score": 0.6587560772895813 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6230239272117615 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5974628925323486 + }, + { + "id": "https://openalex.org/keywords/audit", + "display_name": "Audit", + "score": 0.5879456400871277 + }, + { + "id": "https://openalex.org/keywords/quality", + "display_name": "Quality (philosophy)", + "score": 0.5633484125137329 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.5597485899925232 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5310136675834656 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.4038145840167999 + }, + { + "id": "https://openalex.org/keywords/knowledge-management", + "display_name": "Knowledge management", + "score": 0.35610130429267883 + }, + { + "id": "https://openalex.org/keywords/risk-analysis", + "display_name": "Risk analysis (engineering)", + "score": 0.35108682513237 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.14015191793441772 + }, + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.12852543592453003 + }, + { + "id": "https://openalex.org/keywords/epistemology", + "display_name": "Epistemology", + "score": 0.08962225914001465 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.9701313972473145 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.659199059009552 + }, + { + "id": "https://openalex.org/C2780876879", + "wikidata": "https://www.wikidata.org/wiki/Q3054749", + "display_name": "Meaning (existential)", + "level": 2, + "score": 0.6587560772895813 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6230239272117615 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5974628925323486 + }, + { + "id": "https://openalex.org/C199521495", + "wikidata": "https://www.wikidata.org/wiki/Q181487", + "display_name": "Audit", + "level": 2, + "score": 0.5879456400871277 + }, + { + "id": "https://openalex.org/C2779530757", + "wikidata": "https://www.wikidata.org/wiki/Q1207505", + "display_name": "Quality (philosophy)", + "level": 2, + "score": 0.5633484125137329 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.5597485899925232 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5310136675834656 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.4038145840167999 + }, + { + "id": "https://openalex.org/C56739046", + "wikidata": "https://www.wikidata.org/wiki/Q192060", + "display_name": "Knowledge management", + "level": 1, + "score": 0.35610130429267883 + }, + { + "id": "https://openalex.org/C112930515", + "wikidata": "https://www.wikidata.org/wiki/Q4389547", + "display_name": "Risk analysis (engineering)", + "level": 1, + "score": 0.35108682513237 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.14015191793441772 + }, + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.12852543592453003 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.08962225914001465 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C187736073", + "wikidata": "https://www.wikidata.org/wiki/Q2920921", + "display_name": "Management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C542102704", + "wikidata": "https://www.wikidata.org/wiki/Q183257", + "display_name": "Psychotherapist", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:45fdfd3de6ed423b85a89d6e8d758b60", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/45fdfd3de6ed423b85a89d6e8d758b60", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Electronics, Vol 8, Iss 8, p 832 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:mdpi.com:/2079-9292/8/8/832/", + "is_oa": true, + "landing_page_url": "http://dx.doi.org/10.3390/electronics8080832", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Electronics", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.7200000286102295, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2964303497.pdf", + "grobid_xml": "https://content.openalex.org/works/W2964303497.grobid-xml" + }, + "referenced_works_count": 113, + "referenced_works": [ + "https://openalex.org/W17854248", + "https://openalex.org/W1516436026", + "https://openalex.org/W1537462412", + "https://openalex.org/W1585983533", + "https://openalex.org/W1678356000", + "https://openalex.org/W1821462560", + "https://openalex.org/W1968340857", + "https://openalex.org/W1971996841", + "https://openalex.org/W1977556410", + "https://openalex.org/W2026905436", + "https://openalex.org/W2048231652", + "https://openalex.org/W2063046703", + "https://openalex.org/W2073838543", + "https://openalex.org/W2075585362", + "https://openalex.org/W2084341220", + "https://openalex.org/W2096434649", + "https://openalex.org/W2123045220", + "https://openalex.org/W2125847307", + "https://openalex.org/W2130485404", + "https://openalex.org/W2134584261", + "https://openalex.org/W2134598164", + "https://openalex.org/W2149033360", + "https://openalex.org/W2187089797", + "https://openalex.org/W2194775991", + "https://openalex.org/W2195388612", + "https://openalex.org/W2198766081", + "https://openalex.org/W2232104438", + "https://openalex.org/W2282821441", + "https://openalex.org/W2319794630", + "https://openalex.org/W2367397349", + "https://openalex.org/W2467510144", + "https://openalex.org/W2528204193", + "https://openalex.org/W2551974706", + "https://openalex.org/W2564414379", + "https://openalex.org/W2587529872", + "https://openalex.org/W2594475271", + "https://openalex.org/W2607223307", + "https://openalex.org/W2617799811", + "https://openalex.org/W2618851150", + "https://openalex.org/W2626639386", + "https://openalex.org/W2732547613", + "https://openalex.org/W2744283806", + "https://openalex.org/W2744365997", + "https://openalex.org/W2762409054", + "https://openalex.org/W2762968537", + "https://openalex.org/W2765308317", + "https://openalex.org/W2769421449", + "https://openalex.org/W2769506033", + "https://openalex.org/W2781844902", + "https://openalex.org/W2787752464", + "https://openalex.org/W2788403449", + "https://openalex.org/W2791469229", + "https://openalex.org/W2794596673", + "https://openalex.org/W2795530988", + "https://openalex.org/W2795807997", + "https://openalex.org/W2796215194", + "https://openalex.org/W2796885425", + "https://openalex.org/W2804657206", + "https://openalex.org/W2806259446", + "https://openalex.org/W2807015674", + "https://openalex.org/W2807124908", + "https://openalex.org/W2810487289", + "https://openalex.org/W2886614482", + "https://openalex.org/W2887189984", + "https://openalex.org/W2891503716", + "https://openalex.org/W2894881080", + "https://openalex.org/W2898027682", + "https://openalex.org/W2901939789", + "https://openalex.org/W2902011388", + "https://openalex.org/W2902255491", + "https://openalex.org/W2907871166", + "https://openalex.org/W2917767525", + "https://openalex.org/W2920246635", + "https://openalex.org/W2927351257", + "https://openalex.org/W2947113669", + "https://openalex.org/W2949197630", + "https://openalex.org/W2949706042", + "https://openalex.org/W2950538796", + "https://openalex.org/W2951264787", + "https://openalex.org/W2952467640", + "https://openalex.org/W2962689739", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962858109", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963483561", + "https://openalex.org/W2963660754", + "https://openalex.org/W2963847595", + "https://openalex.org/W2964112969", + "https://openalex.org/W2964244352", + "https://openalex.org/W2965595588", + "https://openalex.org/W2979481854", + "https://openalex.org/W2979997102", + "https://openalex.org/W2982560934", + "https://openalex.org/W3023058184", + "https://openalex.org/W3098278632", + "https://openalex.org/W3104119469", + "https://openalex.org/W3124443940", + "https://openalex.org/W3128452405", + "https://openalex.org/W4206534706", + "https://openalex.org/W4226065182", + "https://openalex.org/W4231827019", + "https://openalex.org/W4298082496", + "https://openalex.org/W4399636541", + "https://openalex.org/W6644682428", + "https://openalex.org/W6728551298", + "https://openalex.org/W6744393810", + "https://openalex.org/W6745730051", + "https://openalex.org/W6749553640", + "https://openalex.org/W6755687963", + "https://openalex.org/W6757984148", + "https://openalex.org/W6790587931", + "https://openalex.org/W6809680140" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W2888392564", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W2963326959", + "https://openalex.org/W4388685194", + "https://openalex.org/W4312407344", + "https://openalex.org/W2894289927" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 96, + 177 + ], + "systems": [ + 2, + 40 + ], + "are": [ + 3, + 52, + 145 + ], + "becoming": [ + 4 + ], + "increasingly": [ + 5 + ], + "ubiquitous.": [ + 6 + ], + "These": [ + 7 + ], + "systems’s": [ + 8 + ], + "adoption": [ + 9 + ], + "has": [ + 10, + 106 + ], + "been": [ + 11 + ], + "expanding,": [ + 12 + ], + "accelerating": [ + 13 + ], + "the": [ + 14, + 55, + 63, + 77, + 85, + 88, + 122, + 127, + 141, + 146, + 152, + 168, + 172, + 182, + 187 + ], + "shift": [ + 15 + ], + "towards": [ + 16 + ], + "a": [ + 17, + 165, + 193 + ], + "more": [ + 18 + ], + "algorithmic": [ + 19 + ], + "society,": [ + 20 + ], + "meaning": [ + 21, + 45 + ], + "that": [ + 22 + ], + "algorithmically": [ + 23 + ], + "informed": [ + 24 + ], + "decisions": [ + 25, + 82 + ], + "have": [ + 26, + 75 + ], + "greater": [ + 27 + ], + "potential": [ + 28 + ], + "for": [ + 29, + 87, + 98 + ], + "significant": [ + 30 + ], + "social": [ + 31 + ], + "impact.": [ + 32 + ], + "However,": [ + 33, + 126 + ], + "most": [ + 34, + 147 + ], + "of": [ + 35, + 81, + 129, + 154, + 159, + 167, + 171, + 205 + ], + "these": [ + 36, + 130 + ], + "accurate": [ + 37 + ], + "decision": [ + 38 + ], + "support": [ + 39 + ], + "remain": [ + 41 + ], + "complex": [ + 42 + ], + "black": [ + 43 + ], + "boxes,": [ + 44 + ], + "their": [ + 46, + 66 + ], + "internal": [ + 47 + ], + "logic": [ + 48 + ], + "and": [ + 49, + 57, + 71, + 79, + 93, + 111, + 118, + 185, + 190 + ], + "inner": [ + 50 + ], + "workings": [ + 51 + ], + "hidden": [ + 53 + ], + "to": [ + 54, + 90, + 139, + 150, + 163, + 201 + ], + "user": [ + 56 + ], + "even": [ + 58 + ], + "experts": [ + 59 + ], + "cannot": [ + 60 + ], + "fully": [ + 61 + ], + "understand": [ + 62 + ], + "rationale": [ + 64 + ], + "behind": [ + 65 + ], + "predictions.": [ + 67 + ], + "Moreover,": [ + 68 + ], + "new": [ + 69 + ], + "regulations": [ + 70 + ], + "highly": [ + 72 + ], + "regulated": [ + 73 + ], + "domains": [ + 74 + ], + "made": [ + 76 + ], + "audit": [ + 78 + ], + "verifiability": [ + 80 + ], + "mandatory,": [ + 83 + ], + "increasing": [ + 84 + ], + "demand": [ + 86 + ], + "ability": [ + 89 + ], + "question,": [ + 91 + ], + "understand,": [ + 92 + ], + "trust": [ + 94 + ], + "machine": [ + 95, + 176 + ], + "systems,": [ + 97 + ], + "which": [ + 99 + ], + "interpretability": [ + 100, + 109, + 178 + ], + "is": [ + 101, + 134, + 162, + 197 + ], + "indispensable.": [ + 102 + ], + "The": [ + 103, + 157 + ], + "research": [ + 104, + 173 + ], + "community": [ + 105 + ], + "recognized": [ + 107 + ], + "this": [ + 108, + 160, + 208 + ], + "problem": [ + 110 + ], + "focused": [ + 112 + ], + "on": [ + 113, + 137, + 175, + 181, + 186, + 207 + ], + "developing": [ + 114 + ], + "both": [ + 115 + ], + "interpretable": [ + 116 + ], + "models": [ + 117 + ], + "explanation": [ + 119, + 142 + ], + "methods": [ + 120, + 131, + 189 + ], + "over": [ + 121 + ], + "past": [ + 123 + ], + "few": [ + 124 + ], + "years.": [ + 125 + ], + "emergence": [ + 128 + ], + "shows": [ + 132 + ], + "there": [ + 133 + ], + "no": [ + 135 + ], + "consensus": [ + 136 + ], + "how": [ + 138 + ], + "assess": [ + 140, + 151 + ], + "quality.": [ + 143 + ], + "Which": [ + 144 + ], + "suitable": [ + 148 + ], + "metrics": [ + 149 + ], + "quality": [ + 153 + ], + "an": [ + 155 + ], + "explanation?": [ + 156 + ], + "aim": [ + 158 + ], + "article": [ + 161 + ], + "provide": [ + 164 + ], + "review": [ + 166, + 196 + ], + "current": [ + 169 + ], + "state": [ + 170 + ], + "field": [ + 174 + ], + "while": [ + 179 + ], + "focusing": [ + 180 + ], + "societal": [ + 183 + ], + "impact": [ + 184 + ], + "developed": [ + 188 + ], + "metrics.": [ + 191 + ], + "Furthermore,": [ + 192 + ], + "complete": [ + 194 + ], + "literature": [ + 195 + ], + "presented": [ + 198 + ], + "in": [ + 199 + ], + "order": [ + 200 + ], + "identify": [ + 202 + ], + "future": [ + 203 + ], + "directions": [ + 204 + ], + "work": [ + 206 + ], + "field.": [ + 209 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 102 + }, + { + "year": 2025, + "cited_by_count": 348 + }, + { + "year": 2024, + "cited_by_count": 347 + }, + { + "year": 2023, + "cited_by_count": 324 + }, + { + "year": 2022, + "cited_by_count": 294 + }, + { + "year": 2021, + "cited_by_count": 226 + }, + { + "year": 2020, + "cited_by_count": 97 + }, + { + "year": 2019, + "cited_by_count": 4 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1563088657", + "doi": "https://doi.org/10.1017/cbo9780511801389", + "title": "An Introduction to Support Vector Machines and Other Kernel-based Learning Methods", + "display_name": "An Introduction to Support Vector Machines and Other Kernel-based Learning Methods", + "relevance_score": 2829.632, + "publication_year": 2000, + "publication_date": "2000-03-23", + "ids": { + "openalex": "https://openalex.org/W1563088657", + "doi": "https://doi.org/10.1017/cbo9780511801389", + "mag": "1563088657" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9780511801389", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511801389", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5083307694", + "display_name": "Nello Cristianini", + "orcid": "https://orcid.org/0000-0001-7740-0449" + }, + "institutions": [ + { + "id": "https://openalex.org/I36234482", + "display_name": "University of Bristol", + "ror": "https://ror.org/0524sp257", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I36234482" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Nello Cristianini", + "raw_affiliation_strings": [ + "University of Bristol" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Bristol", + "institution_ids": [ + "https://openalex.org/I36234482" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5047980012", + "display_name": "John Shawe‐Taylor", + "orcid": "https://orcid.org/0000-0002-2030-0073" + }, + "institutions": [ + { + "id": "https://openalex.org/I184558857", + "display_name": "Royal Holloway University of London", + "ror": "https://ror.org/04g2vpn86", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I124357947", + "https://openalex.org/I184558857" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "John Shawe-Taylor", + "raw_affiliation_strings": [ + "Royal Holloway, University of London", + "†Royal Holloway, University of London" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Royal Holloway, University of London", + "institution_ids": [ + "https://openalex.org/I184558857" + ] + }, + { + "raw_affiliation_string": "†Royal Holloway, University of London", + "institution_ids": [ + "https://openalex.org/I184558857" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5083307694" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I36234482" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 129.5763, + "has_fulltext": false, + "cited_by_count": 13869, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.5723999738693237, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.5723999738693237, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.5425999760627747, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.4860999882221222, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7553318738937378 + }, + { + "id": "https://openalex.org/keywords/grasp", + "display_name": "GRASP", + "score": 0.6769353151321411 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6746301651000977 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.6089456677436829 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5675321817398071 + }, + { + "id": "https://openalex.org/keywords/statistical-learning-theory", + "display_name": "Statistical learning theory", + "score": 0.5189080834388733 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5127816796302795 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5107676982879639 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.45903491973876953 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.4535565972328186 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3457496166229248 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.2609504163265228 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.09729310870170593 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7553318738937378 + }, + { + "id": "https://openalex.org/C171268870", + "wikidata": "https://www.wikidata.org/wiki/Q1486676", + "display_name": "GRASP", + "level": 2, + "score": 0.6769353151321411 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6746301651000977 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.6089456677436829 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5675321817398071 + }, + { + "id": "https://openalex.org/C2779915298", + "wikidata": "https://www.wikidata.org/wiki/Q7604400", + "display_name": "Statistical learning theory", + "level": 3, + "score": 0.5189080834388733 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5127816796302795 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5107676982879639 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.45903491973876953 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.4535565972328186 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3457496166229248 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.2609504163265228 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.09729310870170593 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C114614502", + "wikidata": "https://www.wikidata.org/wiki/Q76592", + "display_name": "Combinatorics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 11, + "locations": [ + { + "id": "doi:10.1017/cbo9780511801389", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511801389", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-008832996", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-014827826", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=014827826&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-018922583", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=018922583&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-019935426", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=019935426&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028388686", + "is_oa": false, + "landing_page_url": "http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=510940", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-029352050", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/CBO9780511801389", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:bibliotecavirtualdefensa.es:671734", + "is_oa": false, + "landing_page_url": "https://bibliotecavirtual.defensa.gob.es/BVMDefensa/es/consulta/registro.do?id=671734", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196928", + "display_name": "Virtual Defense Library (Ministerio de Defensa)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210162908", + "host_organization_name": "Ministerio de Defensa", + "host_organization_lineage": [ + "https://openalex.org/I4210162908" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Libros" + }, + { + "id": "pmh:oai:cds.cern.ch:735638", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/735638", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:eprints.ucl.ac.uk.OAI2:1377602", + "is_oa": false, + "landing_page_url": "http://discovery.ucl.ac.uk/1377602/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400024", + "display_name": "UCL Discovery (University College London)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I45129253", + "host_organization_name": "University College London", + "host_organization_lineage": [ + "https://openalex.org/I45129253" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": " Cambridge University Press (2010) ", + "raw_type": "Book" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:51488", + "is_oa": false, + "landing_page_url": "http://infoscience.epfl.ch/record/51488", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400488", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.7699999809265137, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2369526193", + "https://openalex.org/W2394142199", + "https://openalex.org/W2382810153", + "https://openalex.org/W3013091747", + "https://openalex.org/W2389264710", + "https://openalex.org/W2186819599", + "https://openalex.org/W2367955905", + "https://openalex.org/W2385435757", + "https://openalex.org/W2371052470", + "https://openalex.org/W2535735882" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "is": [ + 1, + 100 + ], + "the": [ + 2, + 49, + 61, + 74, + 82, + 98, + 125 + ], + "first": [ + 3 + ], + "comprehensive": [ + 4 + ], + "introduction": [ + 5 + ], + "to": [ + 6, + 105, + 135 + ], + "Support": [ + 7 + ], + "Vector": [ + 8 + ], + "Machines": [ + 9 + ], + "(SVMs),": [ + 10 + ], + "a": [ + 11, + 78 + ], + "generation": [ + 12 + ], + "learning": [ + 13, + 21, + 54 + ], + "system": [ + 14 + ], + "based": [ + 15 + ], + "on": [ + 16 + ], + "recent": [ + 17 + ], + "advances": [ + 18 + ], + "in": [ + 19, + 27, + 92 + ], + "statistical": [ + 20 + ], + "theory.": [ + 22 + ], + "SVMs": [ + 23 + ], + "deliver": [ + 24 + ], + "state-of-the-art": [ + 25 + ], + "performance": [ + 26 + ], + "real-world": [ + 28 + ], + "applications": [ + 29 + ], + "such": [ + 30 + ], + "as": [ + 31, + 46 + ], + "text": [ + 32 + ], + "categorisation,": [ + 33 + ], + "hand-written": [ + 34 + ], + "character": [ + 35 + ], + "recognition,": [ + 36 + ], + "image": [ + 37 + ], + "classification,": [ + 38 + ], + "biosequences": [ + 39 + ], + "analysis,": [ + 40 + ], + "etc.,": [ + 41 + ], + "and": [ + 42, + 55, + 65, + 84, + 94, + 102, + 108, + 127, + 140 + ], + "are": [ + 43, + 89 + ], + "now": [ + 44 + ], + "established": [ + 45 + ], + "one": [ + 47 + ], + "of": [ + 48, + 81 + ], + "standard": [ + 50 + ], + "tools": [ + 51 + ], + "for": [ + 52, + 77, + 121 + ], + "machine": [ + 53 + ], + "data": [ + 56 + ], + "mining.": [ + 57 + ], + "Students": [ + 58 + ], + "will": [ + 59, + 69, + 132 + ], + "find": [ + 60 + ], + "book": [ + 62, + 126 + ], + "both": [ + 63 + ], + "stimulating": [ + 64 + ], + "accessible,": [ + 66 + ], + "while": [ + 67, + 97 + ], + "practitioners": [ + 68, + 134 + ], + "be": [ + 70 + ], + "guided": [ + 71 + ], + "smoothly": [ + 72 + ], + "through": [ + 73 + ], + "material": [ + 75 + ], + "required": [ + 76 + ], + "good": [ + 79 + ], + "grasp": [ + 80 + ], + "theory": [ + 83 + ], + "its": [ + 85, + 128 + ], + "applications.": [ + 86 + ], + "The": [ + 87 + ], + "concepts": [ + 88 + ], + "introduced": [ + 90 + ], + "gradually": [ + 91 + ], + "accessible": [ + 93 + ], + "self-contained": [ + 95 + ], + "stages,": [ + 96 + ], + "presentation": [ + 99 + ], + "rigorous": [ + 101 + ], + "thorough.": [ + 103 + ], + "Pointers": [ + 104 + ], + "relevant": [ + 106 + ], + "literature": [ + 107 + ], + "web": [ + 109, + 130 + ], + "sites": [ + 110 + ], + "containing": [ + 111 + ], + "software": [ + 112 + ], + "ensure": [ + 113 + ], + "that": [ + 114 + ], + "it": [ + 115 + ], + "forms": [ + 116 + ], + "an": [ + 117 + ], + "ideal": [ + 118 + ], + "starting": [ + 119 + ], + "point": [ + 120 + ], + "further": [ + 122 + ], + "study.": [ + 123 + ], + "Equally,": [ + 124 + ], + "associated": [ + 129 + ], + "site": [ + 131 + ], + "guide": [ + 133 + ], + "updated": [ + 136 + ], + "literature,": [ + 137 + ], + "new": [ + 138 + ], + "applications,": [ + 139 + ], + "on-line": [ + 141 + ], + "software.": [ + 142 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 73 + }, + { + "year": 2025, + "cited_by_count": 254 + }, + { + "year": 2024, + "cited_by_count": 299 + }, + { + "year": 2023, + "cited_by_count": 361 + }, + { + "year": 2022, + "cited_by_count": 432 + }, + { + "year": 2021, + "cited_by_count": 589 + }, + { + "year": 2020, + "cited_by_count": 597 + }, + { + "year": 2019, + "cited_by_count": 618 + }, + { + "year": 2018, + "cited_by_count": 618 + }, + { + "year": 2017, + "cited_by_count": 622 + }, + { + "year": 2016, + "cited_by_count": 654 + }, + { + "year": 2015, + "cited_by_count": 750 + }, + { + "year": 2014, + "cited_by_count": 767 + }, + { + "year": 2013, + "cited_by_count": 738 + }, + { + "year": 2012, + "cited_by_count": 765 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2798701005", + "doi": "https://doi.org/10.1126/science.aat8084", + "title": "All-optical machine learning using diffractive deep neural networks", + "display_name": "All-optical machine learning using diffractive deep neural networks", + "relevance_score": 2813.5137, + "publication_year": 2018, + "publication_date": "2018-07-26", + "ids": { + "openalex": "https://openalex.org/W2798701005", + "doi": "https://doi.org/10.1126/science.aat8084", + "mag": "2798701005", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30049787" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1126/science.aat8084", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aat8084", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1804.08711", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Xing Lin", + "orcid": "https://orcid.org/0000-0002-5560-7286" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xing Lin", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-5560-7286", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5058629781", + "display_name": "Yair Rivenson", + "orcid": "https://orcid.org/0000-0003-1132-0715" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yair Rivenson", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043009217", + "display_name": "Nezih Tolga Yardimci", + "orcid": "https://orcid.org/0000-0002-3623-5835" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Nezih T. Yardimci", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-3623-5835", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107809600", + "display_name": "Muhammed Veli", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Muhammed Veli", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069743536", + "display_name": "Yi Luo", + "orcid": "https://orcid.org/0000-0001-9442-547X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yi Luo", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003547576", + "display_name": "Mona Jarrahi", + "orcid": "https://orcid.org/0000-0001-9514-555X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mona Jarrahi", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016207990", + "display_name": "Aydogan Özcan", + "orcid": "https://orcid.org/0000-0002-0717-683X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Aydogan Ozcan", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "Department of Surgery, David Geffen School of Medicine, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0717-683X", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, David Geffen School of Medicine, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5016207990" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 92.9115, + "has_fulltext": false, + "cited_by_count": 2399, + "citation_normalized_percentile": { + "value": 0.99953229, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "361", + "issue": "6406", + "first_page": "1004", + "last_page": "1008" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12611", + "display_name": "Neural Networks and Reservoir Computing", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12611", + "display_name": "Neural Networks and Reservoir Computing", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10299", + "display_name": "Photonic and Optical Devices", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10232", + "display_name": "Optical Network Technologies", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7860591411590576 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.7775610685348511 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6655349731445312 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5838559865951538 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.48495984077453613 + }, + { + "id": "https://openalex.org/keywords/lithography", + "display_name": "Lithography", + "score": 0.41517090797424316 + }, + { + "id": "https://openalex.org/keywords/deep-neural-networks", + "display_name": "Deep neural networks", + "score": 0.4102061092853546 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.3880327045917511 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.3523845970630646 + }, + { + "id": "https://openalex.org/keywords/computer-vision", + "display_name": "Computer vision", + "score": 0.330812931060791 + }, + { + "id": "https://openalex.org/keywords/materials-science", + "display_name": "Materials science", + "score": 0.10253027081489563 + }, + { + "id": "https://openalex.org/keywords/optoelectronics", + "display_name": "Optoelectronics", + "score": 0.09713014960289001 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7860591411590576 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.7775610685348511 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6655349731445312 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5838559865951538 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.48495984077453613 + }, + { + "id": "https://openalex.org/C204223013", + "wikidata": "https://www.wikidata.org/wiki/Q133036", + "display_name": "Lithography", + "level": 2, + "score": 0.41517090797424316 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.4102061092853546 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.3880327045917511 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.3523845970630646 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.330812931060791 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.10253027081489563 + }, + { + "id": "https://openalex.org/C49040817", + "wikidata": "https://www.wikidata.org/wiki/Q193091", + "display_name": "Optoelectronics", + "level": 1, + "score": 0.09713014960289001 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1126/science.aat8084", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aat8084", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:30049787", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30049787", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science (New York, N.Y.)", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1804.08711", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1804.08711", + "pdf_url": "https://arxiv.org/pdf/1804.08711", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1804.08711", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1804.08711", + "pdf_url": "https://arxiv.org/pdf/1804.08711", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320306082", + "display_name": "Howard Hughes Medical Institute", + "ror": "https://ror.org/006w34k90" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 48, + "referenced_works": [ + "https://openalex.org/W1569530544", + "https://openalex.org/W1965702053", + "https://openalex.org/W1983348509", + "https://openalex.org/W1988583365", + "https://openalex.org/W1992642990", + "https://openalex.org/W1999001021", + "https://openalex.org/W2027029957", + "https://openalex.org/W2028891317", + "https://openalex.org/W2029316659", + "https://openalex.org/W2031557272", + "https://openalex.org/W2049431120", + "https://openalex.org/W2082093743", + "https://openalex.org/W2087322350", + "https://openalex.org/W2092056230", + "https://openalex.org/W2095705004", + "https://openalex.org/W2112796928", + "https://openalex.org/W2124188012", + "https://openalex.org/W2126442445", + "https://openalex.org/W2133665775", + "https://openalex.org/W2141125852", + "https://openalex.org/W2143612262", + "https://openalex.org/W2152537098", + "https://openalex.org/W2157331557", + "https://openalex.org/W2172174689", + "https://openalex.org/W2249493152", + "https://openalex.org/W2257979135", + "https://openalex.org/W2405496089", + "https://openalex.org/W2415475836", + "https://openalex.org/W2574952845", + "https://openalex.org/W2592929672", + "https://openalex.org/W2593966629", + "https://openalex.org/W2604272474", + "https://openalex.org/W2604388535", + "https://openalex.org/W2612688942", + "https://openalex.org/W2614949728", + "https://openalex.org/W2625634735", + "https://openalex.org/W2752849906", + "https://openalex.org/W2754141582", + "https://openalex.org/W2774993480", + "https://openalex.org/W2786808700", + "https://openalex.org/W2919115771", + "https://openalex.org/W3100115611", + "https://openalex.org/W3100420029", + "https://openalex.org/W3106459670", + "https://openalex.org/W3149029883", + "https://openalex.org/W4211228099", + "https://openalex.org/W4236965008", + "https://openalex.org/W4246799416" + ], + "related_works": [ + "https://openalex.org/W4375867731", + "https://openalex.org/W2611989081", + "https://openalex.org/W2731899572", + "https://openalex.org/W4377865163", + "https://openalex.org/W3193857078", + "https://openalex.org/W2888956734", + "https://openalex.org/W3000197790", + "https://openalex.org/W4315865067", + "https://openalex.org/W2979433843", + "https://openalex.org/W3208304128" + ], + "abstract_inverted_index": { + "All-optical": [ + 0 + ], + "deep": [ + 1 + ], + "learning": [ + 2, + 4, + 42 + ], + "Deep": [ + 3 + ], + "uses": [ + 5, + 44 + ], + "multilayered": [ + 6, + 27 + ], + "artificial": [ + 7, + 69 + ], + "neural": [ + 8, + 28, + 70 + ], + "networks": [ + 9, + 29 + ], + "to": [ + 10, + 67, + 76 + ], + "learn": [ + 11 + ], + "digitally": [ + 12 + ], + "from": [ + 13 + ], + "large": [ + 14 + ], + "datasets.": [ + 15 + ], + "It": [ + 16 + ], + "then": [ + 17 + ], + "performs": [ + 18 + ], + "advanced": [ + 19 + ], + "identification": [ + 20 + ], + "and": [ + 21, + 52 + ], + "classification": [ + 22 + ], + "tasks.": [ + 23 + ], + "To": [ + 24 + ], + "date,": [ + 25 + ], + "these": [ + 26 + ], + "have": [ + 30 + ], + "been": [ + 31 + ], + "implemented": [ + 32 + ], + "on": [ + 33 + ], + "a": [ + 34 + ], + "computer.": [ + 35 + ], + "Lin": [ + 36 + ], + "et": [ + 37 + ], + "al.": [ + 38 + ], + "demonstrate": [ + 39 + ], + "all-optical": [ + 40 + ], + "machine": [ + 41 + ], + "that": [ + 43, + 48, + 72 + ], + "passive": [ + 45 + ], + "optical": [ + 46, + 64 + ], + "components": [ + 47 + ], + "can": [ + 49, + 73 + ], + "be": [ + 50, + 74 + ], + "patterned": [ + 51 + ], + "fabricated": [ + 53 + ], + "with": [ + 54 + ], + "3D-printing.": [ + 55 + ], + "Their": [ + 56 + ], + "hardware": [ + 57 + ], + "approach": [ + 58 + ], + "comprises": [ + 59 + ], + "stacked": [ + 60 + ], + "layers": [ + 61 + ], + "of": [ + 62, + 83 + ], + "diffractive": [ + 63 + ], + "elements": [ + 65 + ], + "analogous": [ + 66 + ], + "an": [ + 68 + ], + "network": [ + 71 + ], + "trained": [ + 75 + ], + "execute": [ + 77 + ], + "complex": [ + 78 + ], + "functions": [ + 79 + ], + "at": [ + 80 + ], + "the": [ + 81 + ], + "speed": [ + 82 + ], + "light.": [ + 84 + ], + "Science": [ + 85 + ], + ",": [ + 86 + ], + "this": [ + 87 + ], + "issue": [ + 88 + ], + "p.": [ + 89 + ], + "1004": [ + 90 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 177 + }, + { + "year": 2025, + "cited_by_count": 519 + }, + { + "year": 2024, + "cited_by_count": 459 + }, + { + "year": 2023, + "cited_by_count": 367 + }, + { + "year": 2022, + "cited_by_count": 328 + }, + { + "year": 2021, + "cited_by_count": 253 + }, + { + "year": 2020, + "cited_by_count": 164 + }, + { + "year": 2019, + "cited_by_count": 113 + }, + { + "year": 2018, + "cited_by_count": 19 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2601810315", + "doi": "https://doi.org/10.1093/bioinformatics/btx180", + "title": "Trainable Weka Segmentation: a machine learning tool for microscopy pixel classification", + "display_name": "Trainable Weka Segmentation: a machine learning tool for microscopy pixel classification", + "relevance_score": 2796.275, + "publication_year": 2017, + "publication_date": "2017-03-28", + "ids": { + "openalex": "https://openalex.org/W2601810315", + "doi": "https://doi.org/10.1093/bioinformatics/btx180", + "mag": "2601810315", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28369169" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1093/bioinformatics/btx180", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1093/bioinformatics/btx180", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S52395412", + "display_name": "Bioinformatics", + "issn_l": "1367-4803", + "issn": [ + "1367-4803", + "1367-4811" + ], + "is_oa": false, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021284069", + "display_name": "Ignacio Arganda‐Carreras", + "orcid": "https://orcid.org/0000-0003-0229-5722" + }, + "institutions": [ + { + "id": "https://openalex.org/I110594554", + "display_name": "Ikerbasque", + "ror": "https://ror.org/01cc3fy72", + "country_code": "ES", + "type": "other", + "lineage": [ + "https://openalex.org/I110594554" + ] + }, + { + "id": "https://openalex.org/I169108374", + "display_name": "University of the Basque Country", + "ror": "https://ror.org/000xsnr85", + "country_code": "ES", + "type": "education", + "lineage": [ + "https://openalex.org/I169108374" + ] + }, + { + "id": "https://openalex.org/I47686490", + "display_name": "Donostia International Physics Center", + "ror": "https://ror.org/02e24yw40", + "country_code": "ES", + "type": "other", + "lineage": [ + "https://openalex.org/I47686490" + ] + } + ], + "countries": [ + "ES" + ], + "is_corresponding": true, + "raw_author_name": "Ignacio Arganda-Carreras", + "raw_affiliation_strings": [ + "Computer Science and Artificial Intelligence Department, Basque Country University, San Sebastian, Spain", + "Donostia International Physics Center, San Sebastian, Spain", + "Ikerbasque, Basque Foundation for Science, Bilbao, Spain" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Computer Science and Artificial Intelligence Department, Basque Country University, San Sebastian, Spain", + "institution_ids": [ + "https://openalex.org/I169108374" + ] + }, + { + "raw_affiliation_string": "Donostia International Physics Center, San Sebastian, Spain", + "institution_ids": [ + "https://openalex.org/I47686490" + ] + }, + { + "raw_affiliation_string": "Ikerbasque, Basque Foundation for Science, Bilbao, Spain", + "institution_ids": [ + "https://openalex.org/I110594554" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055757900", + "display_name": "Verena Kaynig", + "orcid": "https://orcid.org/0000-0002-3520-0577" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Verena Kaynig", + "raw_affiliation_strings": [ + "Harvard John A. Paulson School of Engineering and Applied Sciences, Harvard University, Cambridge, MA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Harvard John A. Paulson School of Engineering and Applied Sciences, Harvard University, Cambridge, MA, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078540488", + "display_name": "Curtis Rueden", + "orcid": "https://orcid.org/0000-0001-7055-6707" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Curtis Rueden", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5010413374", + "display_name": "Kevin W. Eliceiri", + "orcid": "https://orcid.org/0000-0001-8678-670X" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kevin W Eliceiri", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050085853", + "display_name": "Johannes Schindelin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Johannes Schindelin", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5042603640", + "display_name": "Albert Cardona", + "orcid": "https://orcid.org/0000-0003-4941-6536" + }, + "institutions": [ + { + "id": "https://openalex.org/I1344073410", + "display_name": "Howard Hughes Medical Institute", + "ror": "https://ror.org/006w34k90", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1344073410" + ] + }, + { + "id": "https://openalex.org/I195573530", + "display_name": "Janelia Research Campus", + "ror": "https://ror.org/013sk6x84", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1344073410", + "https://openalex.org/I195573530" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Albert Cardona", + "raw_affiliation_strings": [ + "Howard Hughes Medical Institute, Janelia Research Campus, Ashburn, VA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Howard Hughes Medical Institute, Janelia Research Campus, Ashburn, VA, USA", + "institution_ids": [ + "https://openalex.org/I195573530", + "https://openalex.org/I1344073410" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5044273339", + "display_name": "H. Sebastian Seung", + "orcid": "https://orcid.org/0000-0002-8591-6733" + }, + "institutions": [ + { + "id": "https://openalex.org/I20089843", + "display_name": "Princeton University", + "ror": "https://ror.org/00hx57361", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I20089843" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "H Sebastian Seung", + "raw_affiliation_strings": [ + "Neuroscience Institute and Computer Science Department, Princeton University, NJ, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Neuroscience Institute and Computer Science Department, Princeton University, NJ, USA", + "institution_ids": [ + "https://openalex.org/I20089843" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5021284069" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I110594554", + "https://openalex.org/I169108374", + "https://openalex.org/I47686490" + ], + "apc_list": { + "value": 3618, + "currency": "USD", + "value_usd": 3618 + }, + "apc_paid": null, + "fwci": 95.3558, + "has_fulltext": false, + "cited_by_count": 2460, + "citation_normalized_percentile": { + "value": 0.99909297, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "33", + "issue": "15", + "first_page": "2424", + "last_page": "2426" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10857", + "display_name": "Advanced Electron Microscopy Techniques and Applications", + "score": 0.6383000016212463, + "subfield": { + "id": "https://openalex.org/subfields/1315", + "display_name": "Structural Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10857", + "display_name": "Advanced Electron Microscopy Techniques and Applications", + "score": 0.6383000016212463, + "subfield": { + "id": "https://openalex.org/subfields/1315", + "display_name": "Structural Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12859", + "display_name": "Cell Image Analysis Techniques", + "score": 0.22310000658035278, + "subfield": { + "id": "https://openalex.org/subfields/1304", + "display_name": "Biophysics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T13937", + "display_name": "Genetics, Bioinformatics, and Biomedical Research", + "score": 0.02419999986886978, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8189126253128052 + }, + { + "id": "https://openalex.org/keywords/segmentation", + "display_name": "Segmentation", + "score": 0.7295361757278442 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.678537905216217 + }, + { + "id": "https://openalex.org/keywords/pipeline", + "display_name": "Pipeline (software)", + "score": 0.6693797707557678 + }, + { + "id": "https://openalex.org/keywords/bottleneck", + "display_name": "Bottleneck", + "score": 0.6350745558738708 + }, + { + "id": "https://openalex.org/keywords/cluster-analysis", + "display_name": "Cluster analysis", + "score": 0.6211010813713074 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.51936274766922 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.5177275538444519 + }, + { + "id": "https://openalex.org/keywords/pixel", + "display_name": "Pixel", + "score": 0.5061234831809998 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.48226505517959595 + }, + { + "id": "https://openalex.org/keywords/image-segmentation", + "display_name": "Image segmentation", + "score": 0.480505108833313 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.4530463218688965 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3784646987915039 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3474346399307251 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8189126253128052 + }, + { + "id": "https://openalex.org/C89600930", + "wikidata": "https://www.wikidata.org/wiki/Q1423946", + "display_name": "Segmentation", + "level": 2, + "score": 0.7295361757278442 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.678537905216217 + }, + { + "id": "https://openalex.org/C43521106", + "wikidata": "https://www.wikidata.org/wiki/Q2165493", + "display_name": "Pipeline (software)", + "level": 2, + "score": 0.6693797707557678 + }, + { + "id": "https://openalex.org/C2780513914", + "wikidata": "https://www.wikidata.org/wiki/Q18210350", + "display_name": "Bottleneck", + "level": 2, + "score": 0.6350745558738708 + }, + { + "id": "https://openalex.org/C73555534", + "wikidata": "https://www.wikidata.org/wiki/Q622825", + "display_name": "Cluster analysis", + "level": 2, + "score": 0.6211010813713074 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.51936274766922 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.5177275538444519 + }, + { + "id": "https://openalex.org/C160633673", + "wikidata": "https://www.wikidata.org/wiki/Q355198", + "display_name": "Pixel", + "level": 2, + "score": 0.5061234831809998 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.48226505517959595 + }, + { + "id": "https://openalex.org/C124504099", + "wikidata": "https://www.wikidata.org/wiki/Q56933", + "display_name": "Image segmentation", + "level": 3, + "score": 0.480505108833313 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.4530463218688965 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3784646987915039 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3474346399307251 + }, + { + "id": "https://openalex.org/C149635348", + "wikidata": "https://www.wikidata.org/wiki/Q193040", + "display_name": "Embedded system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1093/bioinformatics/btx180", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1093/bioinformatics/btx180", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S52395412", + "display_name": "Bioinformatics", + "issn_l": "1367-4803", + "issn": [ + "1367-4803", + "1367-4811" + ], + "is_oa": false, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics", + "raw_type": "journal-article" + }, + { + "id": "pmid:28369169", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28369169", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics (Oxford, England)", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W2121469024", + "https://openalex.org/W2133990480", + "https://openalex.org/W2167279371", + "https://openalex.org/W2234666690", + "https://openalex.org/W2468870810", + "https://openalex.org/W2483966273" + ], + "related_works": [ + "https://openalex.org/W2595172197", + "https://openalex.org/W2084856301", + "https://openalex.org/W2127970246", + "https://openalex.org/W2885125400", + "https://openalex.org/W1989889224", + "https://openalex.org/W4382618745", + "https://openalex.org/W1973775000", + "https://openalex.org/W2748922771", + "https://openalex.org/W1987128138", + "https://openalex.org/W2743976221" + ], + "abstract_inverted_index": { + "SUMMARY:": [ + 0 + ], + "State-of-the-art": [ + 1 + ], + "light": [ + 2 + ], + "and": [ + 3, + 29, + 68, + 84 + ], + "electron": [ + 4 + ], + "microscopes": [ + 5 + ], + "are": [ + 6, + 123 + ], + "capable": [ + 7 + ], + "of": [ + 8, + 23, + 59, + 106, + 112 + ], + "acquiring": [ + 9 + ], + "large": [ + 10 + ], + "image": [ + 11, + 91, + 109 + ], + "datasets,": [ + 12 + ], + "but": [ + 13 + ], + "quantitatively": [ + 14 + ], + "evaluating": [ + 15 + ], + "the": [ + 16, + 35, + 45, + 70, + 107 + ], + "data": [ + 17, + 72, + 122 + ], + "often": [ + 18, + 30 + ], + "involves": [ + 19 + ], + "manually": [ + 20 + ], + "annotating": [ + 21 + ], + "structures": [ + 22 + ], + "interest.": [ + 24 + ], + "This": [ + 25 + ], + "process": [ + 26 + ], + "is": [ + 27, + 99 + ], + "time-consuming": [ + 28 + ], + "a": [ + 31, + 50, + 56, + 66 + ], + "major": [ + 32 + ], + "bottleneck": [ + 33 + ], + "in": [ + 34, + 62 + ], + "evaluation": [ + 36 + ], + "pipeline.": [ + 37 + ], + "To": [ + 38 + ], + "overcome": [ + 39 + ], + "this": [ + 40 + ], + "problem,": [ + 41 + ], + "we": [ + 42 + ], + "have": [ + 43 + ], + "introduced": [ + 44 + ], + "Trainable": [ + 46 + ], + "Weka": [ + 47 + ], + "Segmentation": [ + 48 + ], + "(TWS),": [ + 49 + ], + "machine": [ + 51 + ], + "learning": [ + 52, + 81 + ], + "tool": [ + 53 + ], + "that": [ + 54 + ], + "leverages": [ + 55 + ], + "limited": [ + 57 + ], + "number": [ + 58 + ], + "manual": [ + 60 + ], + "annotations": [ + 61 + ], + "order": [ + 63 + ], + "to": [ + 64, + 88 + ], + "train": [ + 65 + ], + "classifier": [ + 67 + ], + "segment": [ + 69 + ], + "remaining": [ + 71 + ], + "automatically.": [ + 73 + ], + "In": [ + 74 + ], + "addition,": [ + 75 + ], + "TWS": [ + 76, + 98 + ], + "can": [ + 77, + 85 + ], + "provide": [ + 78 + ], + "unsupervised": [ + 79 + ], + "segmentation": [ + 80 + ], + "schemes": [ + 82 + ], + "(clustering)": [ + 83 + ], + "be": [ + 86 + ], + "customized": [ + 87 + ], + "employ": [ + 89 + ], + "user-designed": [ + 90 + ], + "features": [ + 92 + ], + "or": [ + 93 + ], + "classifiers.": [ + 94 + ], + "AVAILABILITY": [ + 95 + ], + "AND": [ + 96 + ], + "IMPLEMENTATION:": [ + 97 + ], + "distributed": [ + 100 + ], + "as": [ + 101, + 104 + ], + "open-source": [ + 102 + ], + "software": [ + 103 + ], + "part": [ + 105 + ], + "Fiji": [ + 108 + ], + "processing": [ + 110 + ], + "distribution": [ + 111 + ], + "ImageJ": [ + 113 + ], + "at": [ + 114, + 125 + ], + "http://imagej.net/Trainable_Weka_Segmentation": [ + 115 + ], + ".": [ + 116 + ], + "CONTACT:": [ + 117 + ], + "ignacio.arganda@ehu.eus.": [ + 118 + ], + "SUPPLEMENTARY": [ + 119 + ], + "INFORMATION:": [ + 120 + ], + "Supplementary": [ + 121 + ], + "available": [ + 124 + ], + "Bioinformatics": [ + 126 + ], + "online.": [ + 127 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 133 + }, + { + "year": 2025, + "cited_by_count": 361 + }, + { + "year": 2024, + "cited_by_count": 372 + }, + { + "year": 2023, + "cited_by_count": 329 + }, + { + "year": 2022, + "cited_by_count": 363 + }, + { + "year": 2021, + "cited_by_count": 343 + }, + { + "year": 2020, + "cited_by_count": 238 + }, + { + "year": 2019, + "cited_by_count": 175 + }, + { + "year": 2018, + "cited_by_count": 106 + }, + { + "year": 2017, + "cited_by_count": 34 + }, + { + "year": 2016, + "cited_by_count": 3 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1994005439", + "doi": "https://doi.org/10.1142/s0129065704001899", + "title": "GAUSSIAN PROCESSES FOR MACHINE LEARNING", + "display_name": "GAUSSIAN PROCESSES FOR MACHINE LEARNING", + "relevance_score": 2793.3652, + "publication_year": 2004, + "publication_date": "2004-04-01", + "ids": { + "openalex": "https://openalex.org/W1994005439", + "doi": "https://doi.org/10.1142/s0129065704001899", + "mag": "1994005439", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/15112367" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1142/s0129065704001899", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/s0129065704001899", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S197665576", + "display_name": "International Journal of Neural Systems", + "issn_l": "0129-0657", + "issn": [ + "0129-0657", + "1793-6462" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Neural Systems", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "http://infoscience.epfl.ch/record/161301", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110779848", + "display_name": "Matthias Seeger", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + }, + { + "id": "https://openalex.org/I98677209", + "display_name": "University of Edinburgh", + "ror": "https://ror.org/01nrxwf90", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I98677209" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "MATTHIAS SEEGER", + "raw_affiliation_strings": [ + "Department of EECS, University of California at Berkeley, 485 Soda Hall, Berkeley CA 94720-1776, USA", + "Previously at: Institute for Adaptive and Neural Computation,\r\nUniversity of Edinburgh, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of EECS, University of California at Berkeley, 485 Soda Hall, Berkeley CA 94720-1776, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Previously at: Institute for Adaptive and Neural Computation,\r\nUniversity of Edinburgh, UK", + "institution_ids": [ + "https://openalex.org/I98677209" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110779848" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486", + "https://openalex.org/I98677209" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 23.1235, + "has_fulltext": false, + "cited_by_count": 1401, + "citation_normalized_percentile": { + "value": 0.99493809, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "14", + "issue": "02", + "first_page": "69", + "last_page": "106" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10848", + "display_name": "Advanced Multi-Objective Optimization Algorithms", + "score": 0.9833999872207642, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9825999736785889, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7189816236495972 + }, + { + "id": "https://openalex.org/keywords/gaussian-process", + "display_name": "Gaussian process", + "score": 0.6900824308395386 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6533682346343994 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5732190608978271 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4565224051475525 + }, + { + "id": "https://openalex.org/keywords/smoothing", + "display_name": "Smoothing", + "score": 0.4471099376678467 + }, + { + "id": "https://openalex.org/keywords/gaussian", + "display_name": "Gaussian", + "score": 0.4403120279312134 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.43361324071884155 + }, + { + "id": "https://openalex.org/keywords/kriging", + "display_name": "Kriging", + "score": 0.4239123463630676 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.41445812582969666 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7189816236495972 + }, + { + "id": "https://openalex.org/C61326573", + "wikidata": "https://www.wikidata.org/wiki/Q1496376", + "display_name": "Gaussian process", + "level": 3, + "score": 0.6900824308395386 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6533682346343994 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5732190608978271 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4565224051475525 + }, + { + "id": "https://openalex.org/C3770464", + "wikidata": "https://www.wikidata.org/wiki/Q775963", + "display_name": "Smoothing", + "level": 2, + "score": 0.4471099376678467 + }, + { + "id": "https://openalex.org/C163716315", + "wikidata": "https://www.wikidata.org/wiki/Q901177", + "display_name": "Gaussian", + "level": 2, + "score": 0.4403120279312134 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.43361324071884155 + }, + { + "id": "https://openalex.org/C81692654", + "wikidata": "https://www.wikidata.org/wiki/Q225926", + "display_name": "Kriging", + "level": 2, + "score": 0.4239123463630676 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.41445812582969666 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1142/s0129065704001899", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/s0129065704001899", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S197665576", + "display_name": "International Journal of Neural Systems", + "issn_l": "0129-0657", + "issn": [ + "0129-0657", + "1793-6462" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Neural Systems", + "raw_type": "journal-article" + }, + { + "id": "pmid:15112367", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/15112367", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International journal of neural systems", + "raw_type": null + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.330.2529", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.330.2529", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://math.iit.edu/pipermail/meshfree-methods-seminar/attachments/20061124/26d0a64a/attachment-0001.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.4.4097", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.4.4097", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/papers/upload_4618_bayesgp-tut.ps.gz", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.71.1079", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.71.1079", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kyb.tuebingen.mpg.de/bs/people/seeger/papers/bayesgp-tut.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:161301", + "is_oa": true, + "landing_page_url": "http://infoscience.epfl.ch/record/161301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:infoscience.tind.io:161301", + "is_oa": true, + "landing_page_url": "https://infoscience.epfl.ch/handle/20.500.14299/61727", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "research article" + } + ], + "best_oa_location": { + "id": "pmh:oai:infoscience.epfl.ch:161301", + "is_oa": true, + "landing_page_url": "http://infoscience.epfl.ch/record/161301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "score": 0.6100000143051147, + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 83, + "referenced_works": [ + "https://openalex.org/W55912154", + "https://openalex.org/W102828713", + "https://openalex.org/W174371023", + "https://openalex.org/W197497516", + "https://openalex.org/W1505937442", + "https://openalex.org/W1511160855", + "https://openalex.org/W1512098439", + "https://openalex.org/W1515272691", + "https://openalex.org/W1528905581", + "https://openalex.org/W1549656520", + "https://openalex.org/W1556890730", + "https://openalex.org/W1567512734", + "https://openalex.org/W1568586753", + "https://openalex.org/W1576213419", + "https://openalex.org/W1580334350", + "https://openalex.org/W1604938182", + "https://openalex.org/W1618905105", + "https://openalex.org/W1647250361", + "https://openalex.org/W1654787807", + "https://openalex.org/W1657213141", + "https://openalex.org/W1746680969", + "https://openalex.org/W1859781365", + "https://openalex.org/W1976625337", + "https://openalex.org/W1986280275", + "https://openalex.org/W2001141328", + "https://openalex.org/W2002355073", + "https://openalex.org/W2007154098", + "https://openalex.org/W2024697317", + "https://openalex.org/W2038610163", + "https://openalex.org/W2040870580", + "https://openalex.org/W2053186076", + "https://openalex.org/W2056099894", + "https://openalex.org/W2056894411", + "https://openalex.org/W2065540158", + "https://openalex.org/W2072555316", + "https://openalex.org/W2082100828", + "https://openalex.org/W2085877024", + "https://openalex.org/W2094435468", + "https://openalex.org/W2098626000", + "https://openalex.org/W2100136038", + "https://openalex.org/W2104533781", + "https://openalex.org/W2115438515", + "https://openalex.org/W2117063635", + "https://openalex.org/W2117670920", + "https://openalex.org/W2123152930", + "https://openalex.org/W2129564505", + "https://openalex.org/W2129869373", + "https://openalex.org/W2137956165", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139999468", + "https://openalex.org/W2141274633", + "https://openalex.org/W2141800987", + "https://openalex.org/W2143022286", + "https://openalex.org/W2143956139", + "https://openalex.org/W2146766088", + "https://openalex.org/W2158122241", + "https://openalex.org/W2161023163", + "https://openalex.org/W2161813919", + "https://openalex.org/W2168022998", + "https://openalex.org/W2168464387", + "https://openalex.org/W2169178495", + "https://openalex.org/W2170120409", + "https://openalex.org/W2293192529", + "https://openalex.org/W2296319761", + "https://openalex.org/W2330005588", + "https://openalex.org/W2331182131", + "https://openalex.org/W2408196097", + "https://openalex.org/W2492794003", + "https://openalex.org/W2496675188", + "https://openalex.org/W2579190672", + "https://openalex.org/W2801490189", + "https://openalex.org/W2890351024", + "https://openalex.org/W2904816695", + "https://openalex.org/W2999905431", + "https://openalex.org/W3023786531", + "https://openalex.org/W3148924112", + "https://openalex.org/W4210310779", + "https://openalex.org/W4245531751", + "https://openalex.org/W4285719527", + "https://openalex.org/W4298876635", + "https://openalex.org/W4299551157", + "https://openalex.org/W4302114916", + "https://openalex.org/W4388297583" + ], + "related_works": [ + "https://openalex.org/W3195168932", + "https://openalex.org/W1996541855", + "https://openalex.org/W2081545345", + "https://openalex.org/W2063381173", + "https://openalex.org/W4316658362", + "https://openalex.org/W2348223921", + "https://openalex.org/W2318821300", + "https://openalex.org/W4321260833", + "https://openalex.org/W2972324047", + "https://openalex.org/W2563155481" + ], + "abstract_inverted_index": { + "Gaussian": [ + 0, + 8, + 51, + 89 + ], + "processes": [ + 1, + 52 + ], + "(GPs)": [ + 2 + ], + "are": [ + 3, + 43, + 92, + 102, + 175, + 227 + ], + "natural": [ + 4 + ], + "generalisations": [ + 5 + ], + "of": [ + 6, + 26, + 32, + 40, + 105, + 129, + 147, + 158, + 194 + ], + "multivariate": [ + 7 + ], + "random": [ + 9 + ], + "variables": [ + 10 + ], + "to": [ + 11, + 28, + 50, + 71, + 95, + 178, + 191, + 197, + 201, + 206, + 223 + ], + "infinite": [ + 12 + ], + "(countably": [ + 13 + ], + "or": [ + 14 + ], + "continuous)": [ + 15 + ], + "index": [ + 16 + ], + "sets.": [ + 17 + ], + "GPs": [ + 18, + 166, + 195 + ], + "have": [ + 19, + 86 + ], + "been": [ + 20, + 87, + 153 + ], + "applied": [ + 21 + ], + "in": [ + 22, + 64, + 82, + 131, + 211 + ], + "a": [ + 23, + 29, + 54, + 115, + 218 + ], + "large": [ + 24, + 168 + ], + "number": [ + 25 + ], + "fields": [ + 27 + ], + "diverse": [ + 30 + ], + "range": [ + 31 + ], + "ends,": [ + 33 + ], + "and": [ + 34, + 78, + 110, + 134, + 169, + 200 + ], + "very": [ + 35, + 118 + ], + "many": [ + 36 + ], + "deep": [ + 37, + 172 + ], + "theoretical": [ + 38 + ], + "analyses": [ + 39 + ], + "various": [ + 41 + ], + "properties": [ + 42 + ], + "available.": [ + 44 + ], + "This": [ + 45 + ], + "paper": [ + 46 + ], + "gives": [ + 47 + ], + "an": [ + 48 + ], + "introduction": [ + 49, + 157 + ], + "on": [ + 53, + 61, + 165, + 217 + ], + "fairly": [ + 55 + ], + "elementary": [ + 56 + ], + "level": [ + 57 + ], + "with": [ + 58 + ], + "special": [ + 59 + ], + "emphasis": [ + 60 + ], + "characteristics": [ + 62, + 193 + ], + "relevant": [ + 63, + 196 + ], + "machine": [ + 65, + 98, + 182, + 198 + ], + "learning.": [ + 66 + ], + "It": [ + 67 + ], + "draws": [ + 68 + ], + "explicit": [ + 69 + ], + "connections": [ + 70, + 205 + ], + "branches": [ + 72 + ], + "such": [ + 73 + ], + "as": [ + 74, + 140 + ], + "spline": [ + 75 + ], + "smoothing": [ + 76 + ], + "models": [ + 77, + 91 + ], + "support": [ + 79 + ], + "vector": [ + 80 + ], + "machines": [ + 81 + ], + "which": [ + 83, + 125, + 174 + ], + "similar": [ + 84 + ], + "ideas": [ + 85 + ], + "investigated.": [ + 88 + ], + "process": [ + 90 + ], + "routinely": [ + 93 + ], + "used": [ + 94 + ], + "solve": [ + 96 + ], + "hard": [ + 97 + ], + "learning": [ + 99, + 183, + 199 + ], + "problems.": [ + 100, + 143 + ], + "They": [ + 101 + ], + "attractive": [ + 103 + ], + "because": [ + 104 + ], + "their": [ + 106 + ], + "flexible": [ + 107 + ], + "non-parametric": [ + 108 + ], + "nature": [ + 109 + ], + "computational": [ + 111, + 149 + ], + "simplicity.": [ + 112 + ], + "Treated": [ + 113 + ], + "within": [ + 114 + ], + "Bayesian": [ + 116 + ], + "framework,": [ + 117 + ], + "powerful": [ + 119 + ], + "statistical": [ + 120 + ], + "methods": [ + 121 + ], + "can": [ + 122 + ], + "be": [ + 123 + ], + "implemented": [ + 124 + ], + "offer": [ + 126 + ], + "valid": [ + 127 + ], + "estimates": [ + 128 + ], + "uncertainties": [ + 130 + ], + "our": [ + 132 + ], + "predictions": [ + 133 + ], + "generic": [ + 135, + 159 + ], + "model": [ + 136 + ], + "selection": [ + 137 + ], + "procedures": [ + 138 + ], + "cast": [ + 139 + ], + "nonlinear": [ + 141 + ], + "optimization": [ + 142 + ], + "Their": [ + 144 + ], + "main": [ + 145 + ], + "drawback": [ + 146 + ], + "heavy": [ + 148 + ], + "scaling": [ + 150 + ], + "has": [ + 151 + ], + "recently": [ + 152 + ], + "alleviated": [ + 154 + ], + "by": [ + 155 + ], + "the": [ + 156, + 212 + ], + "sparse": [ + 160 + ], + "approximations.13,78,31": [ + 161 + ], + "The": [ + 162 + ], + "mathematical": [ + 163 + ], + "literature": [ + 164 + ], + "is": [ + 167, + 216 + ], + "often": [ + 170 + ], + "uses": [ + 171 + ], + "concepts": [ + 173 + ], + "not": [ + 176 + ], + "required": [ + 177 + ], + "fully": [ + 179 + ], + "understand": [ + 180 + ], + "most": [ + 181 + ], + "applications.": [ + 184 + ], + "In": [ + 185 + ], + "this": [ + 186 + ], + "tutorial": [ + 187 + ], + "paper,": [ + 188 + ], + "we": [ + 189 + ], + "aim": [ + 190 + ], + "present": [ + 192 + ], + "show": [ + 202 + ], + "up": [ + 203 + ], + "precise": [ + 204 + ], + "other": [ + 207 + ], + "\"kernel": [ + 208 + ], + "machines\"": [ + 209 + ], + "popular": [ + 210 + ], + "community.": [ + 213 + ], + "Our": [ + 214 + ], + "focus": [ + 215 + ], + "simple": [ + 219 + ], + "presentation,": [ + 220 + ], + "but": [ + 221 + ], + "references": [ + 222 + ], + "more": [ + 224 + ], + "detailed": [ + 225 + ], + "sources": [ + 226 + ], + "provided.": [ + 228 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 88 + }, + { + "year": 2025, + "cited_by_count": 263 + }, + { + "year": 2024, + "cited_by_count": 218 + }, + { + "year": 2023, + "cited_by_count": 156 + }, + { + "year": 2022, + "cited_by_count": 104 + }, + { + "year": 2021, + "cited_by_count": 100 + }, + { + "year": 2020, + "cited_by_count": 85 + }, + { + "year": 2019, + "cited_by_count": 72 + }, + { + "year": 2018, + "cited_by_count": 44 + }, + { + "year": 2017, + "cited_by_count": 25 + }, + { + "year": 2016, + "cited_by_count": 29 + }, + { + "year": 2015, + "cited_by_count": 20 + }, + { + "year": 2014, + "cited_by_count": 25 + }, + { + "year": 2013, + "cited_by_count": 26 + }, + { + "year": 2012, + "cited_by_count": 18 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2162651021", + "doi": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "title": "Dataset Shift in Machine Learning", + "display_name": "Dataset Shift in Machine Learning", + "relevance_score": 2784.3486, + "publication_year": 2008, + "publication_date": "2008-12-12", + "ids": { + "openalex": "https://openalex.org/W2162651021", + "doi": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "mag": "2162651021" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/9780262170055.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 9.3591, + "has_fulltext": false, + "cited_by_count": 1510, + "citation_normalized_percentile": { + "value": 0.97485493, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T14470", + "display_name": "Advanced Data Processing Techniques", + "score": 0.7767999768257141, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T14470", + "display_name": "Advanced Data Processing Techniques", + "score": 0.7767999768257141, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.664900004863739, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.659500002861023, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7328447103500366 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7292178273200989 + }, + { + "id": "https://openalex.org/keywords/covariate", + "display_name": "Covariate", + "score": 0.7273201942443848 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5872174501419067 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.5522041320800781 + }, + { + "id": "https://openalex.org/keywords/paradigm-shift", + "display_name": "Paradigm shift", + "score": 0.4949187636375427 + }, + { + "id": "https://openalex.org/keywords/filter", + "display_name": "Filter (signal processing)", + "score": 0.4474133849143982 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7328447103500366 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7292178273200989 + }, + { + "id": "https://openalex.org/C119043178", + "wikidata": "https://www.wikidata.org/wiki/Q320723", + "display_name": "Covariate", + "level": 2, + "score": 0.7273201942443848 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5872174501419067 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.5522041320800781 + }, + { + "id": "https://openalex.org/C43540301", + "wikidata": "https://www.wikidata.org/wiki/Q689971", + "display_name": "Paradigm shift", + "level": 2, + "score": 0.4949187636375427 + }, + { + "id": "https://openalex.org/C106131492", + "wikidata": "https://www.wikidata.org/wiki/Q3072260", + "display_name": "Filter (signal processing)", + "level": 2, + "score": 0.4474133849143982 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.7551/mitpress/9780262170055.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.6000000238418579, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320315885", + "display_name": "Australian Government", + "ror": "https://ror.org/0314h5y94" + }, + { + "id": "https://openalex.org/F4320320879", + "display_name": "Deutsche Forschungsgemeinschaft", + "ror": "https://ror.org/018mejw64" + }, + { + "id": "https://openalex.org/F4320320912", + "display_name": "Ministry of Education, Culture, Sports, Science and Technology", + "ror": "https://ror.org/048rj2z13" + }, + { + "id": "https://openalex.org/F4320321114", + "display_name": "Bundesministerium für Bildung und Forschung", + "ror": "https://ror.org/04pz7b180" + }, + { + "id": "https://openalex.org/F4320321999", + "display_name": "Lundbeckfonden", + "ror": "https://ror.org/03hz8wd80" + }, + { + "id": "https://openalex.org/F4320327918", + "display_name": "H. Lundbeck A/S", + "ror": null + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 154, + "referenced_works": [ + "https://openalex.org/W3805906", + "https://openalex.org/W73527130", + "https://openalex.org/W167016754", + "https://openalex.org/W189742998", + "https://openalex.org/W335134183", + "https://openalex.org/W1493044792", + "https://openalex.org/W1506588750", + "https://openalex.org/W1512098439", + "https://openalex.org/W1513525398", + "https://openalex.org/W1519342765", + "https://openalex.org/W1520168181", + "https://openalex.org/W1523843467", + "https://openalex.org/W1548614216", + "https://openalex.org/W1551909886", + "https://openalex.org/W1563644419", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571895365", + "https://openalex.org/W1571917377", + "https://openalex.org/W1574539612", + "https://openalex.org/W1594031697", + "https://openalex.org/W1601787291", + "https://openalex.org/W1603576850", + "https://openalex.org/W1605619629", + "https://openalex.org/W1618393386", + "https://openalex.org/W1667072054", + "https://openalex.org/W1941659294", + "https://openalex.org/W1963661053", + "https://openalex.org/W1977245551", + "https://openalex.org/W1981428463", + "https://openalex.org/W1983055206", + "https://openalex.org/W1986250339", + "https://openalex.org/W1990645294", + "https://openalex.org/W1991907403", + "https://openalex.org/W1998438337", + "https://openalex.org/W2002355073", + "https://openalex.org/W2005688170", + "https://openalex.org/W2007406620", + "https://openalex.org/W2010102461", + "https://openalex.org/W2012712694", + "https://openalex.org/W2015932775", + "https://openalex.org/W2018770010", + "https://openalex.org/W2023063828", + "https://openalex.org/W2024689521", + "https://openalex.org/W2029030476", + "https://openalex.org/W2032536435", + "https://openalex.org/W2034368206", + "https://openalex.org/W2036043322", + "https://openalex.org/W2036902495", + "https://openalex.org/W2054658115", + "https://openalex.org/W2059575958", + "https://openalex.org/W2070845047", + "https://openalex.org/W2073042726", + "https://openalex.org/W2076428552", + "https://openalex.org/W2081850149", + "https://openalex.org/W2093064776", + "https://openalex.org/W2097839764", + "https://openalex.org/W2098949458", + "https://openalex.org/W2100247797", + "https://openalex.org/W2100600008", + "https://openalex.org/W2101974476", + "https://openalex.org/W2103851188", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105842272", + "https://openalex.org/W2107996537", + "https://openalex.org/W2109033052", + "https://openalex.org/W2112081648", + "https://openalex.org/W2112483442", + "https://openalex.org/W2113530803", + "https://openalex.org/W2113679101", + "https://openalex.org/W2114338449", + "https://openalex.org/W2115305054", + "https://openalex.org/W2117063635", + "https://openalex.org/W2120217353", + "https://openalex.org/W2121909644", + "https://openalex.org/W2123157895", + "https://openalex.org/W2125865219", + "https://openalex.org/W2125993116", + "https://openalex.org/W2127816222", + "https://openalex.org/W2129851978", + "https://openalex.org/W2130031702", + "https://openalex.org/W2131479143", + "https://openalex.org/W2131953535", + "https://openalex.org/W2132870739", + "https://openalex.org/W2134169350", + "https://openalex.org/W2135498906", + "https://openalex.org/W2137346077", + "https://openalex.org/W2137557016", + "https://openalex.org/W2138805882", + "https://openalex.org/W2139122730", + "https://openalex.org/W2139823104", + "https://openalex.org/W2142992973", + "https://openalex.org/W2143033696", + "https://openalex.org/W2145295623", + "https://openalex.org/W2146395300", + "https://openalex.org/W2148143831", + "https://openalex.org/W2148603752", + "https://openalex.org/W2148924730", + "https://openalex.org/W2150388061", + "https://openalex.org/W2150884987", + "https://openalex.org/W2152859659", + "https://openalex.org/W2154455818", + "https://openalex.org/W2158108973", + "https://openalex.org/W2158754421", + "https://openalex.org/W2159400887", + "https://openalex.org/W2161920802", + "https://openalex.org/W2163194396", + "https://openalex.org/W2164161365", + "https://openalex.org/W2167328503", + "https://openalex.org/W2168175751", + "https://openalex.org/W2168561598", + "https://openalex.org/W2168639902", + "https://openalex.org/W2168741590", + "https://openalex.org/W2169075655", + "https://openalex.org/W2169338892", + "https://openalex.org/W2169384781", + "https://openalex.org/W2170580685", + "https://openalex.org/W2171033594", + "https://openalex.org/W2171343216", + "https://openalex.org/W2171388464", + "https://openalex.org/W2215815030", + "https://openalex.org/W2255883267", + "https://openalex.org/W2293768274", + "https://openalex.org/W2435251607", + "https://openalex.org/W2525109755", + "https://openalex.org/W2590957573", + "https://openalex.org/W2796372757", + "https://openalex.org/W2903718010", + "https://openalex.org/W2989661724", + "https://openalex.org/W3098372638", + "https://openalex.org/W3103871524", + "https://openalex.org/W3104240813", + "https://openalex.org/W4211049957", + "https://openalex.org/W4211204663", + "https://openalex.org/W4229633200", + "https://openalex.org/W4230946174", + "https://openalex.org/W4231510805", + "https://openalex.org/W4233216783", + "https://openalex.org/W4233413206", + "https://openalex.org/W4236188916", + "https://openalex.org/W4239047110", + "https://openalex.org/W4239390603", + "https://openalex.org/W4248721357", + "https://openalex.org/W4250182547", + "https://openalex.org/W4250224875", + "https://openalex.org/W4252262440", + "https://openalex.org/W4253064820", + "https://openalex.org/W4256544418", + "https://openalex.org/W4299515571", + "https://openalex.org/W4300093168", + "https://openalex.org/W4301436980", + "https://openalex.org/W4310299640", + "https://openalex.org/W4310738704", + "https://openalex.org/W4379510236", + "https://openalex.org/W4388297464" + ], + "related_works": [ + "https://openalex.org/W2985746494", + "https://openalex.org/W4206042385", + "https://openalex.org/W2511384863", + "https://openalex.org/W2080773131", + "https://openalex.org/W2096089271", + "https://openalex.org/W2923628599", + "https://openalex.org/W2014100433", + "https://openalex.org/W2051519658", + "https://openalex.org/W2002304499", + "https://openalex.org/W2994787386" + ], + "abstract_inverted_index": { + "An": [ + 0 + ], + "overview": [ + 1, + 159 + ], + "of": [ + 2, + 44, + 59, + 90, + 135, + 160, + 200 + ], + "recent": [ + 3 + ], + "efforts": [ + 4, + 162 + ], + "in": [ + 5, + 35, + 73, + 111, + 148, + 184 + ], + "the": [ + 6, + 41, + 65, + 81, + 88, + 91, + 114, + 116, + 127, + 131, + 149, + 179 + ], + "machine": [ + 7, + 150 + ], + "learning": [ + 8, + 137, + 151 + ], + "community": [ + 9, + 152 + ], + "to": [ + 10, + 87, + 106, + 130, + 163, + 178, + 186 + ], + "deal": [ + 11, + 164 + ], + "with": [ + 12, + 165 + ], + "dataset": [ + 13, + 60, + 141, + 166, + 182, + 201 + ], + "and": [ + 14, + 21, + 24, + 46, + 51, + 125, + 138, + 167, + 175, + 194, + 202, + 208, + 211 + ], + "covariate": [ + 15, + 168, + 203, + 215 + ], + "shift,": [ + 16, + 55, + 61 + ], + "which": [ + 17, + 103 + ], + "occurs": [ + 18, + 39, + 62 + ], + "when": [ + 19, + 40, + 63 + ], + "test": [ + 20, + 52 + ], + "training": [ + 22, + 50, + 95 + ], + "inputs": [ + 23, + 45 + ], + "outputs": [ + 25, + 47 + ], + "have": [ + 26 + ], + "different": [ + 27 + ], + "distributions.": [ + 28 + ], + "Dataset": [ + 29, + 69 + ], + "shift": [ + 30, + 70, + 142, + 183, + 204 + ], + "is": [ + 31, + 71, + 99 + ], + "a": [ + 32, + 56, + 173 + ], + "common": [ + 33 + ], + "problem": [ + 34 + ], + "predictive": [ + 36 + ], + "modeling": [ + 37 + ], + "that": [ + 38, + 109 + ], + "joint": [ + 42 + ], + "distribution": [ + 43, + 67 + ], + "differs": [ + 48, + 110 + ], + "between": [ + 49 + ], + "stages.": [ + 53 + ], + "Covariate": [ + 54 + ], + "particular": [ + 57 + ], + "case": [ + 58 + ], + "only": [ + 64 + ], + "input": [ + 66 + ], + "changes.": [ + 68 + ], + "present": [ + 72, + 212 + ], + "most": [ + 74 + ], + "practical": [ + 75 + ], + "applications,": [ + 76 + ], + "for": [ + 77, + 214 + ], + "reasons": [ + 78 + ], + "ranging": [ + 79 + ], + "from": [ + 80, + 113 + ], + "bias": [ + 82 + ], + "introduced": [ + 83 + ], + "by": [ + 84 + ], + "experimental": [ + 85 + ], + "design": [ + 86 + ], + "irreproducibility": [ + 89 + ], + "testing": [ + 92 + ], + "conditions": [ + 93 + ], + "at": [ + 94 + ], + "time.": [ + 96 + ], + "(An": [ + 97 + ], + "example": [ + 98 + ], + "-email": [ + 100 + ], + "spam": [ + 101, + 108, + 115 + ], + "filtering,": [ + 102 + ], + "may": [ + 104 + ], + "fail": [ + 105 + ], + "recognize": [ + 107 + ], + "form": [ + 112 + ], + "automatic": [ + 117 + ], + "filter": [ + 118 + ], + "has": [ + 119, + 143 + ], + "been": [ + 120 + ], + "built": [ + 121 + ], + "on.)": [ + 122 + ], + "Despite": [ + 123 + ], + "this,": [ + 124 + ], + "despite": [ + 126 + ], + "attention": [ + 128, + 147 + ], + "given": [ + 129 + ], + "apparently": [ + 132 + ], + "similar": [ + 133 + ], + "problems": [ + 134 + ], + "semi-supervised": [ + 136, + 195 + ], + "active": [ + 139, + 192 + ], + "learning,": [ + 140, + 188, + 191, + 193, + 196 + ], + "received": [ + 144 + ], + "relatively": [ + 145 + ], + "little": [ + 146 + ], + "until": [ + 153 + ], + "recently.": [ + 154 + ], + "This": [ + 155 + ], + "volume": [ + 156 + ], + "offers": [ + 157 + ], + "an": [ + 158 + ], + "current": [ + 161 + ], + "shift.": [ + 169, + 216 + ], + "The": [ + 170 + ], + "chapters": [ + 171 + ], + "offer": [ + 172 + ], + "mathematical": [ + 174 + ], + "philosophical": [ + 176 + ], + "introduction": [ + 177 + ], + "problem,": [ + 180 + ], + "place": [ + 181 + ], + "relationship": [ + 185 + ], + "transfer": [ + 187 + ], + "transduction,": [ + 189 + ], + "local": [ + 190 + ], + "provide": [ + 197 + ], + "theoretical": [ + 198 + ], + "views": [ + 199 + ], + "(including": [ + 205 + ], + "decision": [ + 206 + ], + "theoretic": [ + 207 + ], + "Bayesian": [ + 209 + ], + "perspectives),": [ + 210 + ], + "algorithms": [ + 213 + ], + "Contributors": [ + 217 + ], + "Shai": [ + 218 + ], + "Ben-David,": [ + 219 + ], + "Steffen": [ + 220 + ], + "Bickel,": [ + 221 + ], + "Karsten": [ + 222 + ], + "Borgwardt,": [ + 223 + ], + "Michael": [ + 224 + ], + "Brückner,": [ + 225 + ], + "David": [ + 226 + ], + "Corfield,": [ + 227 + ], + "Amir": [ + 228 + ], + "Globerson,": [ + 229 + ], + "Arthur": [ + 230 + ], + "Gretton,": [ + 231 + ], + "Lars": [ + 232 + ], + "Kai": [ + 233 + ], + "Hansen,": [ + 234 + ], + "Matthias": [ + 235 + ], + "Hein,": [ + 236 + ], + "Jiayuan": [ + 237 + ], + "Huang,": [ + 238 + ], + "Choon": [ + 239 + ], + "Hui": [ + 240 + ], + "Teo,": [ + 241 + ], + "Takafumi": [ + 242 + ], + "Kanamori,": [ + 243 + ], + "Klaus-Robert": [ + 244 + ], + "Müller,": [ + 245 + ], + "Sam": [ + 246 + ], + "Roweis,": [ + 247 + ], + "Neil": [ + 248 + ], + "Rubens,": [ + 249 + ], + "Tobias": [ + 250 + ], + "Scheffer,": [ + 251 + ], + "Marcel": [ + 252 + ], + "Schmittfull,": [ + 253 + ], + "Bernhard": [ + 254 + ], + "Schölkopf": [ + 255 + ], + "Hidetoshi": [ + 256 + ], + "Shimodaira,": [ + 257 + ], + "Alex": [ + 258 + ], + "Smola,": [ + 259 + ], + "Amos": [ + 260 + ], + "Storkey,": [ + 261 + ], + "Masashi": [ + 262 + ], + "Sugiyama": [ + 263 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 37 + }, + { + "year": 2025, + "cited_by_count": 109 + }, + { + "year": 2024, + "cited_by_count": 165 + }, + { + "year": 2023, + "cited_by_count": 146 + }, + { + "year": 2022, + "cited_by_count": 133 + }, + { + "year": 2021, + "cited_by_count": 231 + }, + { + "year": 2020, + "cited_by_count": 204 + }, + { + "year": 2019, + "cited_by_count": 127 + }, + { + "year": 2018, + "cited_by_count": 54 + }, + { + "year": 2017, + "cited_by_count": 33 + }, + { + "year": 2016, + "cited_by_count": 35 + }, + { + "year": 2015, + "cited_by_count": 55 + }, + { + "year": 2014, + "cited_by_count": 36 + }, + { + "year": 2013, + "cited_by_count": 44 + }, + { + "year": 2012, + "cited_by_count": 29 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2793927960", + "doi": "https://doi.org/10.1080/01431161.2018.1433343", + "title": "Implementation of machine-learning classification in remote sensing: an applied review", + "display_name": "Implementation of machine-learning classification in remote sensing: an applied review", + "relevance_score": 2761.8186, + "publication_year": 2018, + "publication_date": "2018-02-02", + "ids": { + "openalex": "https://openalex.org/W2793927960", + "doi": "https://doi.org/10.1080/01431161.2018.1433343", + "mag": "2793927960" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5085820343", + "display_name": "Aaron E. Maxwell", + "orcid": "https://orcid.org/0000-0002-4412-5599" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Aaron E. Maxwell", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5091637832", + "display_name": "Timothy A. Warner", + "orcid": "https://orcid.org/0000-0002-0414-9748" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Timothy A. Warner", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0414-9748", + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100386844", + "display_name": "Fang Fang", + "orcid": "https://orcid.org/0000-0001-7541-189X" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Fang Fang", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": "https://orcid.org/0000-0001-7541-189X", + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5085820343" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I12097938" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 113.7823, + "has_fulltext": false, + "cited_by_count": 1906, + "citation_normalized_percentile": { + "value": 0.99988623, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "39", + "issue": "9", + "first_page": "2784", + "last_page": "2817" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10689", + "display_name": "Remote-Sensing Image Classification", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10689", + "display_name": "Remote-Sensing Image Classification", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10111", + "display_name": "Remote Sensing in Agriculture", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/2303", + "display_name": "Ecology" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11659", + "display_name": "Advanced Image Fusion Techniques", + "score": 0.9749000072479248, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7877681255340576 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7791492342948914 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7248809337615967 + }, + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.5729610323905945 + }, + { + "id": "https://openalex.org/keywords/dimensionality-reduction", + "display_name": "Dimensionality reduction", + "score": 0.5524418354034424 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.5341089963912964 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5322451591491699 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.514393150806427 + }, + { + "id": "https://openalex.org/keywords/curse-of-dimensionality", + "display_name": "Curse of dimensionality", + "score": 0.5014984607696533 + }, + { + "id": "https://openalex.org/keywords/key", + "display_name": "Key (lock)", + "score": 0.4978461265563965 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.4418962001800537 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.41856345534324646 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.33177950978279114 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7877681255340576 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7791492342948914 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7248809337615967 + }, + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.5729610323905945 + }, + { + "id": "https://openalex.org/C70518039", + "wikidata": "https://www.wikidata.org/wiki/Q16000077", + "display_name": "Dimensionality reduction", + "level": 2, + "score": 0.5524418354034424 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.5341089963912964 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5322451591491699 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.514393150806427 + }, + { + "id": "https://openalex.org/C111030470", + "wikidata": "https://www.wikidata.org/wiki/Q1430460", + "display_name": "Curse of dimensionality", + "level": 2, + "score": 0.5014984607696533 + }, + { + "id": "https://openalex.org/C26517878", + "wikidata": "https://www.wikidata.org/wiki/Q228039", + "display_name": "Key (lock)", + "level": 2, + "score": 0.4978461265563965 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.4418962001800537 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.41856345534324646 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.33177950978279114 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Life in Land", + "score": 0.4000000059604645, + "id": "https://metadata.un.org/sdg/15" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 118, + "referenced_works": [ + "https://openalex.org/W130347124", + "https://openalex.org/W1585128438", + "https://openalex.org/W1802207720", + "https://openalex.org/W1950365613", + "https://openalex.org/W1971271947", + "https://openalex.org/W1978034823", + "https://openalex.org/W1980547211", + "https://openalex.org/W1981755063", + "https://openalex.org/W1985258161", + "https://openalex.org/W1988790447", + "https://openalex.org/W1989344766", + "https://openalex.org/W1989428365", + "https://openalex.org/W1990653740", + "https://openalex.org/W1991856651", + "https://openalex.org/W1996777760", + "https://openalex.org/W1997478538", + "https://openalex.org/W1998351672", + "https://openalex.org/W2008469107", + "https://openalex.org/W2010479838", + "https://openalex.org/W2011287807", + "https://openalex.org/W2012136488", + "https://openalex.org/W2017212187", + "https://openalex.org/W2021314208", + "https://openalex.org/W2022156723", + "https://openalex.org/W2029316659", + "https://openalex.org/W2030025097", + "https://openalex.org/W2030825546", + "https://openalex.org/W2033388392", + "https://openalex.org/W2035419249", + "https://openalex.org/W2035466979", + "https://openalex.org/W2035549557", + "https://openalex.org/W2038951852", + "https://openalex.org/W2039067795", + "https://openalex.org/W2046113982", + "https://openalex.org/W2050830693", + "https://openalex.org/W2063907334", + "https://openalex.org/W2065800647", + "https://openalex.org/W2067983477", + "https://openalex.org/W2074112114", + "https://openalex.org/W2076656703", + "https://openalex.org/W2078619499", + "https://openalex.org/W2080401607", + "https://openalex.org/W2081620141", + "https://openalex.org/W2082081125", + "https://openalex.org/W2082874195", + "https://openalex.org/W2086567813", + "https://openalex.org/W2087016914", + "https://openalex.org/W2088891335", + "https://openalex.org/W2098057602", + "https://openalex.org/W2100711113", + "https://openalex.org/W2101051003", + "https://openalex.org/W2109826612", + "https://openalex.org/W2112076978", + "https://openalex.org/W2118978333", + "https://openalex.org/W2119479037", + "https://openalex.org/W2122111042", + "https://openalex.org/W2124624125", + "https://openalex.org/W2124706543", + "https://openalex.org/W2130269771", + "https://openalex.org/W2130695501", + "https://openalex.org/W2132424470", + "https://openalex.org/W2134721717", + "https://openalex.org/W2136251662", + "https://openalex.org/W2139086914", + "https://openalex.org/W2139211176", + "https://openalex.org/W2140181255", + "https://openalex.org/W2140950054", + "https://openalex.org/W2143481518", + "https://openalex.org/W2145862305", + "https://openalex.org/W2146884399", + "https://openalex.org/W2148143831", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153534417", + "https://openalex.org/W2154506590", + "https://openalex.org/W2155632266", + "https://openalex.org/W2156665896", + "https://openalex.org/W2156909104", + "https://openalex.org/W2162421262", + "https://openalex.org/W2166307050", + "https://openalex.org/W2168809519", + "https://openalex.org/W2171058578", + "https://openalex.org/W2172009270", + "https://openalex.org/W2197595524", + "https://openalex.org/W2229291734", + "https://openalex.org/W2261059368", + "https://openalex.org/W2316813349", + "https://openalex.org/W2330853572", + "https://openalex.org/W2397914484", + "https://openalex.org/W2407655494", + "https://openalex.org/W2412588858", + "https://openalex.org/W2504658994", + "https://openalex.org/W2508058002", + "https://openalex.org/W2539651710", + "https://openalex.org/W2582743722", + "https://openalex.org/W2589780155", + "https://openalex.org/W2603834682", + "https://openalex.org/W2612451460", + "https://openalex.org/W2752696298", + "https://openalex.org/W2911964244", + "https://openalex.org/W3015384695", + "https://openalex.org/W3087967325", + "https://openalex.org/W3102027041", + "https://openalex.org/W3104925044", + "https://openalex.org/W3105578466", + "https://openalex.org/W3207342693", + "https://openalex.org/W4236137412", + "https://openalex.org/W4239510810", + "https://openalex.org/W4245066279", + "https://openalex.org/W4246090800", + "https://openalex.org/W4285719527", + "https://openalex.org/W4300402905", + "https://openalex.org/W4399569501", + "https://openalex.org/W4399570248", + "https://openalex.org/W4399575362", + "https://openalex.org/W6769764061", + "https://openalex.org/W6869234452", + "https://openalex.org/W6869284810", + "https://openalex.org/W6869666549" + ], + "related_works": [ + "https://openalex.org/W4321636153", + "https://openalex.org/W4377964522", + "https://openalex.org/W3195168932", + "https://openalex.org/W4386072274", + "https://openalex.org/W4386123260", + "https://openalex.org/W4383535405", + "https://openalex.org/W4381414210", + "https://openalex.org/W4384345534", + "https://openalex.org/W4308191010", + "https://openalex.org/W3034132578" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 18, + 62 + ], + "offers": [ + 2 + ], + "the": [ + 3, + 20, + 45, + 70, + 96 + ], + "potential": [ + 4 + ], + "for": [ + 5 + ], + "effective": [ + 6 + ], + "and": [ + 7, + 28, + 44, + 89, + 106, + 111, + 113 + ], + "efficient": [ + 8 + ], + "classification": [ + 9, + 40, + 123 + ], + "of": [ + 10, + 16, + 25, + 60, + 74, + 98 + ], + "remotely": [ + 11, + 128 + ], + "sensed": [ + 12, + 129 + ], + "imagery.": [ + 13 + ], + "The": [ + 14 + ], + "strengths": [ + 15 + ], + "machine": [ + 17, + 61 + ], + "include": [ + 19, + 95 + ], + "capacity": [ + 21 + ], + "to": [ + 22, + 29, + 124 + ], + "handle": [ + 23 + ], + "data": [ + 24, + 101, + 130 + ], + "high": [ + 26 + ], + "dimensionality": [ + 27 + ], + "map": [ + 30 + ], + "classes": [ + 31 + ], + "with": [ + 32 + ], + "very": [ + 33 + ], + "complex": [ + 34 + ], + "characteristics.": [ + 35 + ], + "Nevertheless,": [ + 36 + ], + "implementing": [ + 37 + ], + "a": [ + 38 + ], + "machine-learning": [ + 39, + 122 + ], + "is": [ + 41 + ], + "not": [ + 42 + ], + "straightforward,": [ + 43 + ], + "literature": [ + 46 + ], + "provides": [ + 47, + 57 + ], + "conflicting": [ + 48 + ], + "advice": [ + 49 + ], + "regarding": [ + 50 + ], + "many": [ + 51 + ], + "key": [ + 52 + ], + "issues.": [ + 53 + ], + "This": [ + 54 + ], + "article": [ + 55 + ], + "therefore": [ + 56 + ], + "an": [ + 58, + 64 + ], + "overview": [ + 59 + ], + "from": [ + 63 + ], + "applied": [ + 65 + ], + "perspective.": [ + 66 + ], + "We": [ + 67, + 116 + ], + "focus": [ + 68 + ], + "on": [ + 69 + ], + "relatively": [ + 71 + ], + "mature": [ + 72 + ], + "methods": [ + 73 + ], + "support": [ + 75 + ], + "vector": [ + 76 + ], + "machines,": [ + 77 + ], + "single": [ + 78 + ], + "decision": [ + 79 + ], + "trees": [ + 80 + ], + "(DTs),": [ + 81 + ], + "Random": [ + 82 + ], + "Forests,": [ + 83 + ], + "boosted": [ + 84 + ], + "DTs,": [ + 85 + ], + "artificial": [ + 86 + ], + "neural": [ + 87 + ], + "networks,": [ + 88 + ], + "k-nearest": [ + 90 + ], + "neighbours": [ + 91 + ], + "(k-NN).": [ + 92 + ], + "Issues": [ + 93 + ], + "considered": [ + 94 + ], + "choice": [ + 97 + ], + "algorithm,": [ + 99 + ], + "training": [ + 100 + ], + "requirements,": [ + 102 + ], + "user-defined": [ + 103 + ], + "parameter": [ + 104 + ], + "selection": [ + 105 + ], + "optimization,": [ + 107 + ], + "feature": [ + 108 + ], + "space": [ + 109 + ], + "impacts": [ + 110 + ], + "reduction,": [ + 112 + ], + "computational": [ + 114 + ], + "costs.": [ + 115 + ], + "illustrate": [ + 117 + ], + "these": [ + 118 + ], + "issues": [ + 119 + ], + "through": [ + 120 + ], + "applying": [ + 121 + ], + "two": [ + 125 + ], + "publically": [ + 126 + ], + "available": [ + 127 + ], + "sets.": [ + 131 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 129 + }, + { + "year": 2025, + "cited_by_count": 290 + }, + { + "year": 2024, + "cited_by_count": 312 + }, + { + "year": 2023, + "cited_by_count": 319 + }, + { + "year": 2022, + "cited_by_count": 312 + }, + { + "year": 2021, + "cited_by_count": 257 + }, + { + "year": 2020, + "cited_by_count": 168 + }, + { + "year": 2019, + "cited_by_count": 101 + }, + { + "year": 2018, + "cited_by_count": 18 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2095577883", + "doi": "https://doi.org/10.1145/2046684.2046692", + "title": "Adversarial machine learning", + "display_name": "Adversarial machine learning", + "relevance_score": 2752.6821, + "publication_year": 2011, + "publication_date": "2011-10-21", + "ids": { + "openalex": "https://openalex.org/W2095577883", + "doi": "https://doi.org/10.1145/2046684.2046692", + "mag": "2095577883" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/2046684.2046692", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2046684.2046692", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 4th ACM workshop on Security and artificial intelligence", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5082878554", + "display_name": "Ling Huang", + "orcid": "https://orcid.org/0000-0001-5089-4637" + }, + "institutions": [ + { + "id": "https://openalex.org/I1343180700", + "display_name": "Intel (United States)", + "ror": "https://ror.org/01ek73717", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1343180700" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Ling Huang", + "raw_affiliation_strings": [ + "Intel Labs Berkeley, Berkeley, CA, USA", + "Intel Labs. Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Intel Labs Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I1343180700" + ] + }, + { + "raw_affiliation_string": "Intel Labs. Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I1343180700" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017381278", + "display_name": "Anthony D. Joseph", + "orcid": "https://orcid.org/0000-0002-6798-9664" + }, + "institutions": [ + { + "id": "https://openalex.org/I134446601", + "display_name": "Berkeley College", + "ror": "https://ror.org/02xewxa75", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I134446601" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Anthony D. Joseph", + "raw_affiliation_strings": [ + "UC Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "UC Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I134446601", + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108249434", + "display_name": "Blaine Nelson", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I8087733", + "display_name": "University of Tübingen", + "ror": "https://ror.org/03a1kwz48", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I8087733" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Blaine Nelson", + "raw_affiliation_strings": [ + "University of Tubingen, Tubingen, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Tubingen, Tubingen, Germany", + "institution_ids": [ + "https://openalex.org/I8087733" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078824132", + "display_name": "Benjamin I. P. Rubinstein", + "orcid": "https://orcid.org/0000-0002-2947-6980" + }, + "institutions": [ + { + "id": "https://openalex.org/I1290206253", + "display_name": "Microsoft (United States)", + "ror": "https://ror.org/00d0nc645", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Benjamin I.P. Rubinstein", + "raw_affiliation_strings": [ + "Microsoft, Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Microsoft, Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5113907559", + "display_name": "J. D. Tygar", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + }, + { + "id": "https://openalex.org/I134446601", + "display_name": "Berkeley College", + "ror": "https://ror.org/02xewxa75", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I134446601" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "J. D. Tygar", + "raw_affiliation_strings": [ + "UC Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "UC Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I134446601", + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5082878554" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1343180700" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 21.0993, + "has_fulltext": false, + "cited_by_count": 1193, + "citation_normalized_percentile": { + "value": 0.99439489, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "43", + "last_page": "58" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.9305077195167542 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.8575477004051208 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8086425065994263 + }, + { + "id": "https://openalex.org/keywords/adversarial-machine-learning", + "display_name": "Adversarial machine learning", + "score": 0.802598774433136 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6763424873352051 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6334288716316223 + }, + { + "id": "https://openalex.org/keywords/evasion", + "display_name": "Evasion (ethics)", + "score": 0.5196555852890015 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.451160728931427 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.28231871128082275 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.9305077195167542 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.8575477004051208 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8086425065994263 + }, + { + "id": "https://openalex.org/C2778403875", + "wikidata": "https://www.wikidata.org/wiki/Q20312394", + "display_name": "Adversarial machine learning", + "level": 3, + "score": 0.802598774433136 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6763424873352051 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6334288716316223 + }, + { + "id": "https://openalex.org/C2781251061", + "wikidata": "https://www.wikidata.org/wiki/Q5416089", + "display_name": "Evasion (ethics)", + "level": 3, + "score": 0.5196555852890015 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.451160728931427 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.28231871128082275 + }, + { + "id": "https://openalex.org/C8891405", + "wikidata": "https://www.wikidata.org/wiki/Q1059", + "display_name": "Immune system", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C203014093", + "wikidata": "https://www.wikidata.org/wiki/Q101929", + "display_name": "Immunology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1145/2046684.2046692", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2046684.2046692", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 4th ACM workshop on Security and artificial intelligence", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.310.771", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.310.771", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.berkeley.edu/~tygar/papers/SML2/Adversarial_AISEC.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.360.168", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.360.168", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://blaine-nelson.com/research/pubs/Huang-Joseph-AISec-2011.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "score": 0.7599999904632568, + "id": "https://metadata.un.org/sdg/16" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 203, + "referenced_works": [ + "https://openalex.org/W3805906", + "https://openalex.org/W10423024", + "https://openalex.org/W20093842", + "https://openalex.org/W34732858", + "https://openalex.org/W73527130", + "https://openalex.org/W83087001", + "https://openalex.org/W104201263", + "https://openalex.org/W114599062", + "https://openalex.org/W123634342", + "https://openalex.org/W149129625", + "https://openalex.org/W155995321", + "https://openalex.org/W162878246", + "https://openalex.org/W190013992", + "https://openalex.org/W301116043", + "https://openalex.org/W630188293", + "https://openalex.org/W1484507384", + "https://openalex.org/W1492810482", + "https://openalex.org/W1506806321", + "https://openalex.org/W1510073064", + "https://openalex.org/W1513231349", + "https://openalex.org/W1514940655", + "https://openalex.org/W1516506771", + "https://openalex.org/W1520723331", + "https://openalex.org/W1524581953", + "https://openalex.org/W1526402451", + "https://openalex.org/W1543155826", + "https://openalex.org/W1552056088", + "https://openalex.org/W1554944419", + "https://openalex.org/W1560724230", + "https://openalex.org/W1562491895", + "https://openalex.org/W1563088657", + "https://openalex.org/W1564947197", + "https://openalex.org/W1570425181", + "https://openalex.org/W1570963478", + "https://openalex.org/W1579838312", + "https://openalex.org/W1584516405", + "https://openalex.org/W1589713274", + "https://openalex.org/W1590452455", + "https://openalex.org/W1591480890", + "https://openalex.org/W1599976521", + "https://openalex.org/W1601740268", + "https://openalex.org/W1602011302", + "https://openalex.org/W1605925311", + "https://openalex.org/W1609770379", + "https://openalex.org/W1663973292", + "https://openalex.org/W1787843065", + "https://openalex.org/W1851403712", + "https://openalex.org/W1859580326", + "https://openalex.org/W1873763122", + "https://openalex.org/W1941427975", + "https://openalex.org/W1949459993", + "https://openalex.org/W1962340579", + "https://openalex.org/W1964964840", + "https://openalex.org/W1968439359", + "https://openalex.org/W1968998685", + "https://openalex.org/W1979486458", + "https://openalex.org/W1984068197", + "https://openalex.org/W1984350393", + "https://openalex.org/W1984643937", + "https://openalex.org/W1985987493", + "https://openalex.org/W1987845271", + "https://openalex.org/W1989499832", + "https://openalex.org/W1989702938", + "https://openalex.org/W1992244412", + "https://openalex.org/W1993116423", + "https://openalex.org/W1996360405", + "https://openalex.org/W1999935041", + "https://openalex.org/W2005299943", + "https://openalex.org/W2007562169", + "https://openalex.org/W2007657822", + "https://openalex.org/W2010523825", + "https://openalex.org/W2012712694", + "https://openalex.org/W2013936649", + "https://openalex.org/W2015904350", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020764470", + "https://openalex.org/W2022097286", + "https://openalex.org/W2031415694", + "https://openalex.org/W2032247543", + "https://openalex.org/W2040228409", + "https://openalex.org/W2044180609", + "https://openalex.org/W2045796390", + "https://openalex.org/W2046692379", + "https://openalex.org/W2052740976", + "https://openalex.org/W2056099894", + "https://openalex.org/W2058496912", + "https://openalex.org/W2076798318", + "https://openalex.org/W2077217970", + "https://openalex.org/W2078950386", + "https://openalex.org/W2081357650", + "https://openalex.org/W2086437504", + "https://openalex.org/W2088846575", + "https://openalex.org/W2091915792", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096633407", + "https://openalex.org/W2097272254", + "https://openalex.org/W2097895487", + "https://openalex.org/W2099362736", + "https://openalex.org/W2100454174", + "https://openalex.org/W2100779981", + "https://openalex.org/W2106129384", + "https://openalex.org/W2106318612", + "https://openalex.org/W2107968098", + "https://openalex.org/W2108077794", + "https://openalex.org/W2108214308", + "https://openalex.org/W2108601876", + "https://openalex.org/W2108807072", + "https://openalex.org/W2109300365", + "https://openalex.org/W2109394932", + "https://openalex.org/W2110868467", + "https://openalex.org/W2112380340", + "https://openalex.org/W2113741278", + "https://openalex.org/W2114296159", + "https://openalex.org/W2116108199", + "https://openalex.org/W2118931532", + "https://openalex.org/W2119874464", + "https://openalex.org/W2120617515", + "https://openalex.org/W2120665430", + "https://openalex.org/W2120806354", + "https://openalex.org/W2122290076", + "https://openalex.org/W2123449924", + "https://openalex.org/W2123733729", + "https://openalex.org/W2123820077", + "https://openalex.org/W2124612670", + "https://openalex.org/W2124765629", + "https://openalex.org/W2125109784", + "https://openalex.org/W2125908420", + "https://openalex.org/W2127577941", + "https://openalex.org/W2129104108", + "https://openalex.org/W2129860818", + "https://openalex.org/W2130789388", + "https://openalex.org/W2134063365", + "https://openalex.org/W2134167315", + "https://openalex.org/W2135143063", + "https://openalex.org/W2135930857", + "https://openalex.org/W2136114025", + "https://openalex.org/W2137207609", + "https://openalex.org/W2137786570", + "https://openalex.org/W2138263042", + "https://openalex.org/W2138865266", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139709458", + "https://openalex.org/W2141902405", + "https://openalex.org/W2142069714", + "https://openalex.org/W2143521632", + "https://openalex.org/W2144902422", + "https://openalex.org/W2144936818", + "https://openalex.org/W2147487384", + "https://openalex.org/W2149721097", + "https://openalex.org/W2151238122", + "https://openalex.org/W2151298633", + "https://openalex.org/W2151773168", + "https://openalex.org/W2156186849", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157578436", + "https://openalex.org/W2159024459", + "https://openalex.org/W2159675343", + "https://openalex.org/W2160495867", + "https://openalex.org/W2162379889", + "https://openalex.org/W2162552722", + "https://openalex.org/W2162737890", + "https://openalex.org/W2164210932", + "https://openalex.org/W2165239860", + "https://openalex.org/W2166858086", + "https://openalex.org/W2167529272", + "https://openalex.org/W2169300738", + "https://openalex.org/W2169570643", + "https://openalex.org/W2169623711", + "https://openalex.org/W2170005069", + "https://openalex.org/W2170204206", + "https://openalex.org/W2171074980", + "https://openalex.org/W2171604933", + "https://openalex.org/W2293322640", + "https://openalex.org/W2293634425", + "https://openalex.org/W2293768274", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2296452361", + "https://openalex.org/W2341535507", + "https://openalex.org/W2489822048", + "https://openalex.org/W2791732920", + "https://openalex.org/W2898916015", + "https://openalex.org/W2911978475", + "https://openalex.org/W2949506549", + "https://openalex.org/W2951987509", + "https://openalex.org/W2953223940", + "https://openalex.org/W2962974509", + "https://openalex.org/W2963774574", + "https://openalex.org/W2964020133", + "https://openalex.org/W3013501781", + "https://openalex.org/W3124370832", + "https://openalex.org/W3136767761", + "https://openalex.org/W3145128584", + "https://openalex.org/W4212863985", + "https://openalex.org/W4285719527", + "https://openalex.org/W6629510986", + "https://openalex.org/W6636283022", + "https://openalex.org/W6674632866", + "https://openalex.org/W6676639149", + "https://openalex.org/W6684819249", + "https://openalex.org/W6738852829", + "https://openalex.org/W6766076356", + "https://openalex.org/W7052421801" + ], + "related_works": [ + "https://openalex.org/W4320018150", + "https://openalex.org/W4239582170", + "https://openalex.org/W3048732067", + "https://openalex.org/W2918664383", + "https://openalex.org/W106056076", + "https://openalex.org/W4320855730", + "https://openalex.org/W4383468834", + "https://openalex.org/W2135200719", + "https://openalex.org/W4283221438", + "https://openalex.org/W2900159906" + ], + "abstract_inverted_index": { + "In": [ + 0, + 31 + ], + "this": [ + 1, + 32 + ], + "paper": [ + 2 + ], + "(expanded": [ + 3 + ], + "from": [ + 4 + ], + "an": [ + 5, + 13, + 28, + 51, + 59, + 66 + ], + "invited": [ + 6 + ], + "talk": [ + 7 + ], + "at": [ + 8 + ], + "AISEC": [ + 9 + ], + "2010),": [ + 10 + ], + "we": [ + 11 + ], + "discuss": [ + 12, + 46, + 84, + 93 + ], + "emerging": [ + 14 + ], + "field": [ + 15 + ], + "of": [ + 16, + 22, + 65 + ], + "study:": [ + 17 + ], + "adversarial": [ + 18, + 29 + ], + "machine": [ + 19, + 24, + 43, + 81 + ], + "learning---the": [ + 20 + ], + "study": [ + 21 + ], + "effective": [ + 23 + ], + "learning": [ + 25, + 44, + 82, + 95 + ], + "techniques": [ + 26 + ], + "against": [ + 27, + 41, + 86 + ], + "opponent.": [ + 30 + ], + "paper,": [ + 33 + ], + "we:": [ + 34 + ], + "give": [ + 35 + ], + "a": [ + 36 + ], + "taxonomy": [ + 37 + ], + "for": [ + 38, + 57 + ], + "classifying": [ + 39 + ], + "attacks": [ + 40 + ], + "online": [ + 42 + ], + "algorithms;": [ + 45, + 83 + ], + "application-specific": [ + 47 + ], + "factors": [ + 48 + ], + "that": [ + 49 + ], + "limit": [ + 50 + ], + "adversary's": [ + 52, + 60, + 67 + ], + "capabilities;": [ + 53, + 61 + ], + "introduce": [ + 54, + 88 + ], + "two": [ + 55 + ], + "models": [ + 56 + ], + "modeling": [ + 58 + ], + "explore": [ + 62, + 78 + ], + "the": [ + 63, + 70, + 89 + ], + "limits": [ + 64 + ], + "knowledge": [ + 68 + ], + "about": [ + 69 + ], + "algorithm,": [ + 71 + ], + "feature": [ + 72 + ], + "space,": [ + 73 + ], + "training,": [ + 74 + ], + "and": [ + 75, + 92 + ], + "input": [ + 76 + ], + "data;": [ + 77 + ], + "vulnerabilities": [ + 79 + ], + "in": [ + 80 + ], + "countermeasures": [ + 85 + ], + "attacks;": [ + 87 + ], + "evasion": [ + 90 + ], + "challenge;": [ + 91 + ], + "privacy-preserving": [ + 94 + ], + "techniques.": [ + 96 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 17 + }, + { + "year": 2025, + "cited_by_count": 65 + }, + { + "year": 2024, + "cited_by_count": 82 + }, + { + "year": 2023, + "cited_by_count": 88 + }, + { + "year": 2022, + "cited_by_count": 92 + }, + { + "year": 2021, + "cited_by_count": 192 + }, + { + "year": 2020, + "cited_by_count": 173 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 138 + }, + { + "year": 2017, + "cited_by_count": 88 + }, + { + "year": 2016, + "cited_by_count": 42 + }, + { + "year": 2015, + "cited_by_count": 32 + }, + { + "year": 2014, + "cited_by_count": 32 + }, + { + "year": 2013, + "cited_by_count": 10 + }, + { + "year": 2012, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3101749733", + "doi": null, + "title": "KERNEL METHODS IN MACHINE LEARNING", + "display_name": "KERNEL METHODS IN MACHINE LEARNING", + "relevance_score": 2733.9714, + "publication_year": 2008, + "publication_date": "2008-01-01", + "ids": { + "openalex": "https://openalex.org/W3101749733", + "mag": "3101749733" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.160.8616", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.160.8616", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/publications/pdfs/0701907.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Hofmann, T.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Hofmann, T.", + "raw_affiliation_strings": [ + "Department Empirical Inference, Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia" + ], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Schölkopf, B.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Schölkopf, B.", + "raw_affiliation_strings": [ + "Department Empirical Inference, Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "DARMSTADT UNIVERSITY OF TECHNOLOGY DEPARTMENT OF COMPUTER SCIENCE DARMSTADT GERMANY" + ], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Smola, A.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Smola, A.", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TÜBINGEN GERMANY" + ], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 80.3261, + "has_fulltext": false, + "cited_by_count": 1404, + "citation_normalized_percentile": { + "value": 0.99968237, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11236", + "display_name": "Control Systems and Identification", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11236", + "display_name": "Control Systems and Identification", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9959999918937683, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.9235234260559082 + }, + { + "id": "https://openalex.org/keywords/kernel-embedding-of-distributions", + "display_name": "Kernel embedding of distributions", + "score": 0.661546528339386 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.6241254806518555 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.6204042434692383 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5763845443725586 + }, + { + "id": "https://openalex.org/keywords/tree-kernel", + "display_name": "Tree kernel", + "score": 0.5457028150558472 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5348400473594666 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5333948731422424 + }, + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.5198448300361633 + }, + { + "id": "https://openalex.org/keywords/binary-classification", + "display_name": "Binary classification", + "score": 0.5161064863204956 + }, + { + "id": "https://openalex.org/keywords/radial-basis-function-kernel", + "display_name": "Radial basis function kernel", + "score": 0.51426762342453 + }, + { + "id": "https://openalex.org/keywords/representer-theorem", + "display_name": "Representer theorem", + "score": 0.5071642398834229 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.46649500727653503 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.46594440937042236 + }, + { + "id": "https://openalex.org/keywords/polynomial-kernel", + "display_name": "Polynomial kernel", + "score": 0.41850125789642334 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.3844338357448578 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.2444586455821991 + }, + { + "id": "https://openalex.org/keywords/discrete-mathematics", + "display_name": "Discrete mathematics", + "score": 0.09967216849327087 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.9235234260559082 + }, + { + "id": "https://openalex.org/C134517425", + "wikidata": "https://www.wikidata.org/wiki/Q16000131", + "display_name": "Kernel embedding of distributions", + "level": 4, + "score": 0.661546528339386 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.6241254806518555 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.6204042434692383 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5763845443725586 + }, + { + "id": "https://openalex.org/C140417398", + "wikidata": "https://www.wikidata.org/wiki/Q16933942", + "display_name": "Tree kernel", + "level": 5, + "score": 0.5457028150558472 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5348400473594666 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5333948731422424 + }, + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.5198448300361633 + }, + { + "id": "https://openalex.org/C66905080", + "wikidata": "https://www.wikidata.org/wiki/Q17005494", + "display_name": "Binary classification", + "level": 3, + "score": 0.5161064863204956 + }, + { + "id": "https://openalex.org/C75866337", + "wikidata": "https://www.wikidata.org/wiki/Q7280263", + "display_name": "Radial basis function kernel", + "level": 4, + "score": 0.51426762342453 + }, + { + "id": "https://openalex.org/C172623408", + "wikidata": "https://www.wikidata.org/wiki/Q7314263", + "display_name": "Representer theorem", + "level": 5, + "score": 0.5071642398834229 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.46649500727653503 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.46594440937042236 + }, + { + "id": "https://openalex.org/C160446489", + "wikidata": "https://www.wikidata.org/wiki/Q7226642", + "display_name": "Polynomial kernel", + "level": 4, + "score": 0.41850125789642334 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.3844338357448578 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.2444586455821991 + }, + { + "id": "https://openalex.org/C118615104", + "wikidata": "https://www.wikidata.org/wiki/Q121416", + "display_name": "Discrete mathematics", + "level": 1, + "score": 0.09967216849327087 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.160.8616", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.160.8616", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/publications/pdfs/0701907.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.680.2403", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.680.2403", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://alex.smola.org/papers/2008/HofSchSmo08.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:edoc.mpg.de:419905", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/419905", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annals of Statistics, v.36, 1171-1220 (2008)", + "raw_type": "Article" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1789855", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-C8CF-6", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "The Annals of Statistics", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 186, + "referenced_works": [ + "https://openalex.org/W14071851", + "https://openalex.org/W56743589", + "https://openalex.org/W100063776", + "https://openalex.org/W111380827", + "https://openalex.org/W147273232", + "https://openalex.org/W168447211", + "https://openalex.org/W179694669", + "https://openalex.org/W633772442", + "https://openalex.org/W854322902", + "https://openalex.org/W1486164486", + "https://openalex.org/W1490266132", + "https://openalex.org/W1496189301", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512098439", + "https://openalex.org/W1515020792", + "https://openalex.org/W1526146785", + "https://openalex.org/W1526729636", + "https://openalex.org/W1528905581", + "https://openalex.org/W1530699444", + "https://openalex.org/W1542652324", + "https://openalex.org/W1548802052", + "https://openalex.org/W1549656520", + "https://openalex.org/W1550988992", + "https://openalex.org/W1560729174", + "https://openalex.org/W1575431606", + "https://openalex.org/W1578255497", + "https://openalex.org/W1587744656", + "https://openalex.org/W1588401315", + "https://openalex.org/W1588424744", + "https://openalex.org/W1596052433", + "https://openalex.org/W1601740268", + "https://openalex.org/W1604293137", + "https://openalex.org/W1604792744", + "https://openalex.org/W1638081485", + "https://openalex.org/W1647376582", + "https://openalex.org/W1719651905", + "https://openalex.org/W1746819321", + "https://openalex.org/W1774304772", + "https://openalex.org/W1835509607", + "https://openalex.org/W1899157803", + "https://openalex.org/W1964724001", + "https://openalex.org/W1966347620", + "https://openalex.org/W1968934255", + "https://openalex.org/W1975077471", + "https://openalex.org/W1982032418", + "https://openalex.org/W1986280275", + "https://openalex.org/W1986931325", + "https://openalex.org/W1989408439", + "https://openalex.org/W1990534247", + "https://openalex.org/W1991200719", + "https://openalex.org/W1992236290", + "https://openalex.org/W1992666150", + "https://openalex.org/W1995558350", + "https://openalex.org/W1998438337", + "https://openalex.org/W1999486090", + "https://openalex.org/W2001792610", + "https://openalex.org/W2002806284", + "https://openalex.org/W2007154098", + "https://openalex.org/W2008400752", + "https://openalex.org/W2009511046", + "https://openalex.org/W2012383820", + "https://openalex.org/W2014158063", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015904350", + "https://openalex.org/W2017753243", + "https://openalex.org/W2018582985", + "https://openalex.org/W2020816856", + "https://openalex.org/W2025341678", + "https://openalex.org/W2029538739", + "https://openalex.org/W2038798255", + "https://openalex.org/W2041797434", + "https://openalex.org/W2047028564", + "https://openalex.org/W2051381803", + "https://openalex.org/W2060591526", + "https://openalex.org/W2064976291", + "https://openalex.org/W2070771761", + "https://openalex.org/W2072640386", + "https://openalex.org/W2075887074", + "https://openalex.org/W2077658674", + "https://openalex.org/W2082100828", + "https://openalex.org/W2082612735", + "https://openalex.org/W2083780577", + "https://openalex.org/W2086404575", + "https://openalex.org/W2086726221", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092182929", + "https://openalex.org/W2094212611", + "https://openalex.org/W2098385651", + "https://openalex.org/W2101276256", + "https://openalex.org/W2103194807", + "https://openalex.org/W2103657184", + "https://openalex.org/W2104128541", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106353560", + "https://openalex.org/W2108153239", + "https://openalex.org/W2112076978", + "https://openalex.org/W2114281975", + "https://openalex.org/W2118712128", + "https://openalex.org/W2119647652", + "https://openalex.org/W2119821739", + "https://openalex.org/W2120340025", + "https://openalex.org/W2121921208", + "https://openalex.org/W2123606421", + "https://openalex.org/W2123737232", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2125053431", + "https://openalex.org/W2127713198", + "https://openalex.org/W2131479089", + "https://openalex.org/W2132637896", + "https://openalex.org/W2132870739", + "https://openalex.org/W2134407776", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135498906", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139686264", + "https://openalex.org/W2140095548", + "https://openalex.org/W2141224867", + "https://openalex.org/W2141407058", + "https://openalex.org/W2142387771", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144068644", + "https://openalex.org/W2146766088", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148018895", + "https://openalex.org/W2148603752", + "https://openalex.org/W2149166361", + "https://openalex.org/W2149607218", + "https://openalex.org/W2151949149", + "https://openalex.org/W2156515921", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2159737176", + "https://openalex.org/W2160842254", + "https://openalex.org/W2161920802", + "https://openalex.org/W2162836072", + "https://openalex.org/W2164943005", + "https://openalex.org/W2167826316", + "https://openalex.org/W2169945149", + "https://openalex.org/W2314709380", + "https://openalex.org/W2408196097", + "https://openalex.org/W2498775949", + "https://openalex.org/W2554813760", + "https://openalex.org/W2579923771", + "https://openalex.org/W2595056910", + "https://openalex.org/W2795528501", + "https://openalex.org/W2798510847", + "https://openalex.org/W2798766386", + "https://openalex.org/W2976840617", + "https://openalex.org/W2988119488", + "https://openalex.org/W2994982620", + "https://openalex.org/W3004533406", + "https://openalex.org/W3012317737", + "https://openalex.org/W3015736691", + "https://openalex.org/W3021452258", + "https://openalex.org/W3023786531", + "https://openalex.org/W3119651796", + "https://openalex.org/W3145143011", + "https://openalex.org/W4210636998", + "https://openalex.org/W4211049957", + "https://openalex.org/W4211083646", + "https://openalex.org/W4229758204", + "https://openalex.org/W4232576706", + "https://openalex.org/W4234698323", + "https://openalex.org/W4235236043", + "https://openalex.org/W4237723258", + "https://openalex.org/W4237951138", + "https://openalex.org/W4238284510", + "https://openalex.org/W4238957295", + "https://openalex.org/W4239510810", + "https://openalex.org/W4240579122", + "https://openalex.org/W4246066915", + "https://openalex.org/W4247545571", + "https://openalex.org/W4249925659", + "https://openalex.org/W4251085907", + "https://openalex.org/W4251115686", + "https://openalex.org/W4255455317", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293052541", + "https://openalex.org/W4298876635", + "https://openalex.org/W4302591315", + "https://openalex.org/W4376453320", + "https://openalex.org/W4396738453" + ], + "related_works": [ + "https://openalex.org/W3013206934", + "https://openalex.org/W3100948281", + "https://openalex.org/W4311138679", + "https://openalex.org/W3123056048", + "https://openalex.org/W1983263273", + "https://openalex.org/W4247446331", + "https://openalex.org/W1836142315", + "https://openalex.org/W4294351650", + "https://openalex.org/W4243330733", + "https://openalex.org/W177392165" + ], + "abstract_inverted_index": { + "We": [ + 0, + 77 + ], + "review": [ + 1 + ], + "machine": [ + 2 + ], + "learning": [ + 3, + 12, + 52 + ], + "methods": [ + 4, + 10, + 90 + ], + "employing": [ + 5 + ], + "positive": [ + 6 + ], + "definite": [ + 7 + ], + "kernels.": [ + 8 + ], + "These": [ + 9 + ], + "formulate": [ + 11 + ], + "and": [ + 13, + 49 + ], + "estimation": [ + 14, + 92 + ], + "problems": [ + 15 + ], + "in": [ + 16, + 31, + 37 + ], + "a": [ + 17, + 34, + 79 + ], + "reproducing": [ + 18 + ], + "kernel": [ + 19 + ], + "Hilbert": [ + 20 + ], + "space": [ + 21 + ], + "(RKHS)": [ + 22 + ], + "of": [ + 23, + 33, + 40, + 45, + 51, + 62, + 82 + ], + "functions": [ + 24, + 68, + 72 + ], + "defined": [ + 25, + 73 + ], + "on": [ + 26, + 74 + ], + "the": [ + 27, + 43, + 47, + 56 + ], + "data": [ + 28 + ], + "domain,": [ + 29 + ], + "expanded": [ + 30 + ], + "terms": [ + 32 + ], + "kernel.": [ + 35 + ], + "Working": [ + 36 + ], + "linear": [ + 38 + ], + "spaces": [ + 39 + ], + "function": [ + 41 + ], + "has": [ + 42 + ], + "benefit": [ + 44 + ], + "facilitating": [ + 46 + ], + "construction": [ + 48 + ], + "analysis": [ + 50 + ], + "algorithms": [ + 53 + ], + "while": [ + 54 + ], + "at": [ + 55 + ], + "same": [ + 57 + ], + "time": [ + 58 + ], + "allowing": [ + 59 + ], + "large": [ + 60 + ], + "classes": [ + 61 + ], + "functions.": [ + 63 + ], + "The": [ + 64 + ], + "latter": [ + 65 + ], + "include": [ + 66 + ], + "nonlinear": [ + 67 + ], + "as": [ + 69, + 71 + ], + "well": [ + 70 + ], + "nonvectorial": [ + 75 + ], + "data.": [ + 76, + 95 + ], + "cover": [ + 78 + ], + "wide": [ + 80 + ], + "range": [ + 81 + ], + "methods,": [ + 83 + ], + "ranging": [ + 84 + ], + "from": [ + 85 + ], + "binary": [ + 86 + ], + "classifiers": [ + 87 + ], + "to": [ + 88 + ], + "sophisticated": [ + 89 + ], + "for": [ + 91 + ], + "with": [ + 93 + ], + "structured": [ + 94 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 22 + }, + { + "year": 2023, + "cited_by_count": 32 + }, + { + "year": 2022, + "cited_by_count": 53 + }, + { + "year": 2021, + "cited_by_count": 181 + }, + { + "year": 2020, + "cited_by_count": 192 + }, + { + "year": 2019, + "cited_by_count": 152 + }, + { + "year": 2018, + "cited_by_count": 126 + }, + { + "year": 2017, + "cited_by_count": 119 + }, + { + "year": 2016, + "cited_by_count": 94 + }, + { + "year": 2015, + "cited_by_count": 86 + }, + { + "year": 2014, + "cited_by_count": 101 + }, + { + "year": 2013, + "cited_by_count": 81 + }, + { + "year": 2012, + "cited_by_count": 57 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2701059868", + "doi": "https://doi.org/10.1109/sp.2017.12", + "title": "SecureML: A System for Scalable Privacy-Preserving Machine Learning", + "display_name": "SecureML: A System for Scalable Privacy-Preserving Machine Learning", + "relevance_score": 2683.66, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2701059868", + "doi": "https://doi.org/10.1109/sp.2017.12", + "mag": "2701059868" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2017.12", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.12", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5001493977", + "display_name": "Payman Mohassel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I164956901", + "display_name": "Visa (United Kingdom)", + "ror": "https://ror.org/05syhdw25", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I164956901", + "https://openalex.org/I4210148469" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Payman Mohassel", + "raw_affiliation_strings": [ + "Visa Research" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Visa Research", + "institution_ids": [ + "https://openalex.org/I164956901" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100434296", + "display_name": "Yupeng Zhang", + "orcid": "https://orcid.org/0000-0003-0378-3146" + }, + "institutions": [ + { + "id": "https://openalex.org/I66946132", + "display_name": "University of Maryland, College Park", + "ror": "https://ror.org/047s2c258", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I66946132" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yupeng Zhang", + "raw_affiliation_strings": [ + "University of Maryland" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Maryland", + "institution_ids": [ + "https://openalex.org/I66946132" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5001493977" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I164956901" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 109.4959, + "has_fulltext": false, + "cited_by_count": 1840, + "citation_normalized_percentile": { + "value": 0.99954846, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "19", + "last_page": "38" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8628431558609009 + }, + { + "id": "https://openalex.org/keywords/softmax-function", + "display_name": "Softmax function", + "score": 0.6727948188781738 + }, + { + "id": "https://openalex.org/keywords/scalability", + "display_name": "Scalability", + "score": 0.639832079410553 + }, + { + "id": "https://openalex.org/keywords/server", + "display_name": "Server", + "score": 0.6201728582382202 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5722167491912842 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5273305177688599 + }, + { + "id": "https://openalex.org/keywords/information-privacy", + "display_name": "Information privacy", + "score": 0.4981374740600586 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.49659615755081177 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.4761010408401489 + }, + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.47118237614631653 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.4711809456348419 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.36041098833084106 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.1726815104484558 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.15583673119544983 + }, + { + "id": "https://openalex.org/keywords/database", + "display_name": "Database", + "score": 0.1493930220603943 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8628431558609009 + }, + { + "id": "https://openalex.org/C188441871", + "wikidata": "https://www.wikidata.org/wiki/Q7554146", + "display_name": "Softmax function", + "level": 3, + "score": 0.6727948188781738 + }, + { + "id": "https://openalex.org/C48044578", + "wikidata": "https://www.wikidata.org/wiki/Q727490", + "display_name": "Scalability", + "level": 2, + "score": 0.639832079410553 + }, + { + "id": "https://openalex.org/C93996380", + "wikidata": "https://www.wikidata.org/wiki/Q44127", + "display_name": "Server", + "level": 2, + "score": 0.6201728582382202 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5722167491912842 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5273305177688599 + }, + { + "id": "https://openalex.org/C123201435", + "wikidata": "https://www.wikidata.org/wiki/Q456632", + "display_name": "Information privacy", + "level": 2, + "score": 0.4981374740600586 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.49659615755081177 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.4761010408401489 + }, + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.47118237614631653 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.4711809456348419 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.36041098833084106 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.1726815104484558 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.15583673119544983 + }, + { + "id": "https://openalex.org/C77088390", + "wikidata": "https://www.wikidata.org/wiki/Q8513", + "display_name": "Database", + "level": 1, + "score": 0.1493930220603943 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/sp.2017.12", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.12", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 49, + "referenced_works": [ + "https://openalex.org/W34785529", + "https://openalex.org/W173953576", + "https://openalex.org/W374828532", + "https://openalex.org/W1480225633", + "https://openalex.org/W1499934958", + "https://openalex.org/W1510952750", + "https://openalex.org/W1528076390", + "https://openalex.org/W1608459536", + "https://openalex.org/W1826277484", + "https://openalex.org/W1968265138", + "https://openalex.org/W1969009977", + "https://openalex.org/W1971991172", + "https://openalex.org/W1985511977", + "https://openalex.org/W2009733253", + "https://openalex.org/W2019891719", + "https://openalex.org/W2053637704", + "https://openalex.org/W2083026317", + "https://openalex.org/W2088339831", + "https://openalex.org/W2106217851", + "https://openalex.org/W2112340198", + "https://openalex.org/W2112380340", + "https://openalex.org/W2129548234", + "https://openalex.org/W2132172731", + "https://openalex.org/W2134340933", + "https://openalex.org/W2145029920", + "https://openalex.org/W2149603017", + "https://openalex.org/W2152799677", + "https://openalex.org/W2167094273", + "https://openalex.org/W2167236842", + "https://openalex.org/W2170696315", + "https://openalex.org/W2171033594", + "https://openalex.org/W2295292576", + "https://openalex.org/W2435473771", + "https://openalex.org/W2473418344", + "https://openalex.org/W2963759574", + "https://openalex.org/W3029558105", + "https://openalex.org/W3030849327", + "https://openalex.org/W3141585064", + "https://openalex.org/W3185488408", + "https://openalex.org/W4248358572", + "https://openalex.org/W6601427463", + "https://openalex.org/W6612902754", + "https://openalex.org/W6631628602", + "https://openalex.org/W6663928093", + "https://openalex.org/W6676639149", + "https://openalex.org/W6679568130", + "https://openalex.org/W6681017033", + "https://openalex.org/W6682557032", + "https://openalex.org/W6778583135" + ], + "related_works": [ + "https://openalex.org/W4386603768", + "https://openalex.org/W2950475743", + "https://openalex.org/W4283819496", + "https://openalex.org/W4315785049", + "https://openalex.org/W3015792155", + "https://openalex.org/W3021529903", + "https://openalex.org/W3118286710", + "https://openalex.org/W2937906318", + "https://openalex.org/W4225929918", + "https://openalex.org/W3095450733" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 58 + ], + "is": [ + 2 + ], + "widely": [ + 3 + ], + "used": [ + 4 + ], + "in": [ + 5, + 77, + 140 + ], + "practice": [ + 6 + ], + "to": [ + 7, + 109, + 122, + 133, + 170 + ], + "produce": [ + 8 + ], + "predictive": [ + 9 + ], + "models": [ + 10, + 22, + 95 + ], + "for": [ + 11, + 54, + 59, + 161, + 187 + ], + "applications": [ + 12 + ], + "such": [ + 13, + 125 + ], + "as": [ + 14, + 126 + ], + "image": [ + 15 + ], + "processing,": [ + 16 + ], + "speech": [ + 17 + ], + "and": [ + 18, + 51, + 64, + 118, + 128, + 165, + 168 + ], + "text": [ + 19 + ], + "recognition.": [ + 20 + ], + "These": [ + 21 + ], + "are": [ + 23, + 131, + 148 + ], + "more": [ + 24 + ], + "accurate": [ + 25 + ], + "when": [ + 26 + ], + "trained": [ + 27 + ], + "on": [ + 28, + 96, + 114 + ], + "large": [ + 29 + ], + "amount": [ + 30 + ], + "of": [ + 31, + 151, + 157, + 172, + 177 + ], + "data": [ + 32, + 40, + 82, + 87, + 99, + 173 + ], + "collected": [ + 33 + ], + "from": [ + 34 + ], + "different": [ + 35 + ], + "sources.": [ + 36 + ], + "However,": [ + 37 + ], + "the": [ + 38, + 69, + 78, + 97, + 155, + 158, + 182 + ], + "massive": [ + 39 + ], + "collection": [ + 41 + ], + "raises": [ + 42 + ], + "privacy": [ + 43, + 55, + 162, + 184 + ], + "concerns.": [ + 44 + ], + "In": [ + 45 + ], + "this": [ + 46 + ], + "paper,": [ + 47 + ], + "we": [ + 48 + ], + "present": [ + 49 + ], + "new": [ + 50, + 107 + ], + "efficient": [ + 52 + ], + "protocols": [ + 53, + 75, + 147 + ], + "preserving": [ + 56, + 163, + 185 + ], + "machine": [ + 57 + ], + "linear": [ + 60, + 164 + ], + "regression,": [ + 61 + ], + "logistic": [ + 62, + 166 + ], + "regression": [ + 63 + ], + "neural": [ + 65, + 189 + ], + "network": [ + 66 + ], + "training": [ + 67, + 188 + ], + "using": [ + 68, + 100 + ], + "stochastic": [ + 70 + ], + "gradient": [ + 71 + ], + "descent": [ + 72 + ], + "method.": [ + 73 + ], + "Our": [ + 74, + 142 + ], + "fall": [ + 76 + ], + "two-server": [ + 79 + ], + "model": [ + 80 + ], + "where": [ + 81 + ], + "owners": [ + 83 + ], + "distribute": [ + 84 + ], + "their": [ + 85 + ], + "private": [ + 86 + ], + "among": [ + 88 + ], + "two": [ + 89 + ], + "non-colluding": [ + 90 + ], + "servers": [ + 91 + ], + "who": [ + 92 + ], + "train": [ + 93 + ], + "various": [ + 94 + ], + "joint": [ + 98 + ], + "secure": [ + 101, + 111 + ], + "two-party": [ + 102 + ], + "computation": [ + 103 + ], + "(2PC).": [ + 104 + ], + "We": [ + 105, + 136, + 179 + ], + "develop": [ + 106 + ], + "techniques": [ + 108 + ], + "support": [ + 110 + ], + "arithmetic": [ + 112 + ], + "operations": [ + 113 + ], + "shared": [ + 115 + ], + "decimal": [ + 116 + ], + "numbers,": [ + 117 + ], + "propose": [ + 119 + ], + "MPC-friendly": [ + 120 + ], + "alternatives": [ + 121 + ], + "non-linear": [ + 123 + ], + "functions": [ + 124 + ], + "sigmoid": [ + 127 + ], + "softmax": [ + 129 + ], + "that": [ + 130, + 145 + ], + "superior": [ + 132 + ], + "prior": [ + 134 + ], + "work.": [ + 135 + ], + "implement": [ + 137, + 181 + ], + "our": [ + 138, + 146 + ], + "system": [ + 139, + 186 + ], + "C++.": [ + 141 + ], + "experiments": [ + 143 + ], + "validate": [ + 144 + ], + "several": [ + 149 + ], + "orders": [ + 150 + ], + "magnitude": [ + 152 + ], + "faster": [ + 153 + ], + "than": [ + 154 + ], + "state": [ + 156 + ], + "art": [ + 159 + ], + "implementations": [ + 160 + ], + "regressions,": [ + 167 + ], + "scale": [ + 169 + ], + "millions": [ + 171 + ], + "samples": [ + 174 + ], + "with": [ + 175 + ], + "thousands": [ + 176 + ], + "features.": [ + 178 + ], + "also": [ + 180 + ], + "first": [ + 183 + ], + "networks.": [ + 190 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 32 + }, + { + "year": 2025, + "cited_by_count": 250 + }, + { + "year": 2024, + "cited_by_count": 273 + }, + { + "year": 2023, + "cited_by_count": 261 + }, + { + "year": 2022, + "cited_by_count": 233 + }, + { + "year": 2021, + "cited_by_count": 265 + }, + { + "year": 2020, + "cited_by_count": 274 + }, + { + "year": 2019, + "cited_by_count": 158 + }, + { + "year": 2018, + "cited_by_count": 85 + }, + { + "year": 2017, + "cited_by_count": 9 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1944672", + "doi": null, + "title": "Foundations of Machine Learning", + "display_name": "Foundations of Machine Learning", + "relevance_score": 2672.102, + "publication_year": 2012, + "publication_date": "2012-08-17", + "ids": { + "openalex": "https://openalex.org/W1944672", + "mag": "1944672" + }, + "language": "nl", + "primary_location": { + "id": "mag:1944672", + "is_oa": false, + "landing_page_url": "http://ci.nii.ac.jp/ncid/BB10313921", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210197683", + "display_name": "Medical Entomology and Zoology", + "issn_l": "0424-7086", + "issn": [ + "0424-7086", + "2185-5609" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319750", + "host_organization_name": "Japan Society of Medical Entomology and Zoology", + "host_organization_lineage": [ + "https://openalex.org/P4310319750" + ], + "host_organization_lineage_names": [ + "Japan Society of Medical Entomology and Zoology" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Nederlands tijdschrift voor geneeskunde", + "raw_type": null + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058849006", + "display_name": "Mehryar Mohri", + "orcid": "https://orcid.org/0000-0002-3987-9847" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Mehryar Mohri", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-3987-9847", + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089765894", + "display_name": "Afshin Rostamizadeh", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I57206974", + "display_name": "New York University", + "ror": "https://ror.org/0190ak572", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I57206974" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Afshin Rostamizadeh", + "raw_affiliation_strings": [ + "University of California at Berkeley", + "New York University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of California at Berkeley", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "New York University", + "institution_ids": [ + "https://openalex.org/I57206974" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5029768722", + "display_name": "Ameet Talwalkar", + "orcid": "https://orcid.org/0000-0001-6650-1893" + }, + "institutions": [ + { + "id": "https://openalex.org/I57206974", + "display_name": "New York University", + "ror": "https://ror.org/0190ak572", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I57206974" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ameet Talwalkar", + "raw_affiliation_strings": [ + "New York University", + "University of California at Berkeley" + ], + "raw_orcid": "https://orcid.org/0000-0001-6650-1893", + "affiliations": [ + { + "raw_affiliation_string": "New York University", + "institution_ids": [ + "https://openalex.org/I57206974" + ] + }, + { + "raw_affiliation_string": "University of California at Berkeley", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5058849006" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 27.6943, + "has_fulltext": false, + "cited_by_count": 1162, + "citation_normalized_percentile": { + "value": 0.99691086, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "135", + "issue": "43", + "first_page": "2040", + "last_page": "2040" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mathematical-proof", + "display_name": "Mathematical proof", + "score": 0.7428677678108215 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6456596851348877 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5522527098655701 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.5323909521102905 + }, + { + "id": "https://openalex.org/keywords/ranking", + "display_name": "Ranking (information retrieval)", + "score": 0.5272710919380188 + }, + { + "id": "https://openalex.org/keywords/key", + "display_name": "Key (lock)", + "score": 0.45580342411994934 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4148377478122711 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.38723039627075195 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.22637265920639038 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.15077513456344604 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C108710211", + "wikidata": "https://www.wikidata.org/wiki/Q11538", + "display_name": "Mathematical proof", + "level": 2, + "score": 0.7428677678108215 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6456596851348877 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5522527098655701 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.5323909521102905 + }, + { + "id": "https://openalex.org/C189430467", + "wikidata": "https://www.wikidata.org/wiki/Q7293293", + "display_name": "Ranking (information retrieval)", + "level": 2, + "score": 0.5272710919380188 + }, + { + "id": "https://openalex.org/C26517878", + "wikidata": "https://www.wikidata.org/wiki/Q228039", + "display_name": "Key (lock)", + "level": 2, + "score": 0.45580342411994934 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4148377478122711 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.38723039627075195 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.22637265920639038 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.15077513456344604 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "mag:1944672", + "is_oa": false, + "landing_page_url": "http://ci.nii.ac.jp/ncid/BB10313921", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210197683", + "display_name": "Medical Entomology and Zoology", + "issn_l": "0424-7086", + "issn": [ + "0424-7086", + "2185-5609" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319750", + "host_organization_name": "Japan Society of Medical Entomology and Zoology", + "host_organization_lineage": [ + "https://openalex.org/P4310319750" + ], + "host_organization_lineage_names": [ + "Japan Society of Medical Entomology and Zoology" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Nederlands tijdschrift voor geneeskunde", + "raw_type": null + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-025293082", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=025293082&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-030647834", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=030647834&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-033761252", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:2150131", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2150131", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402194", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2640216", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2640216", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.7599999904632568, + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 208, + "referenced_works": [ + "https://openalex.org/W2169610", + "https://openalex.org/W29925583", + "https://openalex.org/W32198084", + "https://openalex.org/W82544137", + "https://openalex.org/W100063776", + "https://openalex.org/W180686687", + "https://openalex.org/W198244778", + "https://openalex.org/W214995755", + "https://openalex.org/W1034819515", + "https://openalex.org/W1502981577", + "https://openalex.org/W1504694836", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512798900", + "https://openalex.org/W1514324498", + "https://openalex.org/W1515891729", + "https://openalex.org/W1520252399", + "https://openalex.org/W1526146785", + "https://openalex.org/W1527117384", + "https://openalex.org/W1527666879", + "https://openalex.org/W1528905581", + "https://openalex.org/W1532246502", + "https://openalex.org/W1532945940", + "https://openalex.org/W1534694010", + "https://openalex.org/W1535810436", + "https://openalex.org/W1536719366", + "https://openalex.org/W1538170657", + "https://openalex.org/W1538240903", + "https://openalex.org/W1539246860", + "https://openalex.org/W1539833865", + "https://openalex.org/W1540007258", + "https://openalex.org/W1540155273", + "https://openalex.org/W1542886316", + "https://openalex.org/W1544896713", + "https://openalex.org/W1545148916", + "https://openalex.org/W1546372806", + "https://openalex.org/W1546851689", + "https://openalex.org/W1546961578", + "https://openalex.org/W1553313034", + "https://openalex.org/W1563736811", + "https://openalex.org/W1569296262", + "https://openalex.org/W1570963478", + "https://openalex.org/W1575130722", + "https://openalex.org/W1576213419", + "https://openalex.org/W1579534531", + "https://openalex.org/W1584815367", + "https://openalex.org/W1605498412", + "https://openalex.org/W1605688901", + "https://openalex.org/W1606751204", + "https://openalex.org/W1608733719", + "https://openalex.org/W1614597761", + "https://openalex.org/W1629199664", + "https://openalex.org/W1676820704", + "https://openalex.org/W1678356000", + "https://openalex.org/W1755117326", + "https://openalex.org/W1848067327", + "https://openalex.org/W1892809886", + "https://openalex.org/W1918179283", + "https://openalex.org/W1963858753", + "https://openalex.org/W1966347620", + "https://openalex.org/W1967684610", + "https://openalex.org/W1969005071", + "https://openalex.org/W1971361630", + "https://openalex.org/W1979675141", + "https://openalex.org/W1979711143", + "https://openalex.org/W1983739894", + "https://openalex.org/W1984901446", + "https://openalex.org/W1985077192", + "https://openalex.org/W1985554184", + "https://openalex.org/W1985949731", + "https://openalex.org/W1986446408", + "https://openalex.org/W1988790447", + "https://openalex.org/W1990876436", + "https://openalex.org/W1994592916", + "https://openalex.org/W1994616650", + "https://openalex.org/W1998167411", + "https://openalex.org/W1999678910", + "https://openalex.org/W2001141328", + "https://openalex.org/W2002089154", + "https://openalex.org/W2002644653", + "https://openalex.org/W2003680476", + "https://openalex.org/W2005306124", + "https://openalex.org/W2008740515", + "https://openalex.org/W2009797711", + "https://openalex.org/W2010029425", + "https://openalex.org/W2015904350", + "https://openalex.org/W2017031328", + "https://openalex.org/W2017603160", + "https://openalex.org/W2018706164", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020913456", + "https://openalex.org/W2024046085", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030189596", + "https://openalex.org/W2032210760", + "https://openalex.org/W2033547792", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041613709", + "https://openalex.org/W2041615247", + "https://openalex.org/W2044654734", + "https://openalex.org/W2045291344", + "https://openalex.org/W2047028564", + "https://openalex.org/W2047221353", + "https://openalex.org/W2047278710", + "https://openalex.org/W2050570613", + "https://openalex.org/W2051669046", + "https://openalex.org/W2051834357", + "https://openalex.org/W2053186076", + "https://openalex.org/W2053463056", + "https://openalex.org/W2055186664", + "https://openalex.org/W2058239479", + "https://openalex.org/W2063978378", + "https://openalex.org/W2068871408", + "https://openalex.org/W2070534370", + "https://openalex.org/W2073242866", + "https://openalex.org/W2074010768", + "https://openalex.org/W2075567596", + "https://openalex.org/W2081230843", + "https://openalex.org/W2081281113", + "https://openalex.org/W2084544490", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2088658556", + "https://openalex.org/W2092074494", + "https://openalex.org/W2092386826", + "https://openalex.org/W2093717447", + "https://openalex.org/W2093825590", + "https://openalex.org/W2097160297", + "https://openalex.org/W2097477220", + "https://openalex.org/W2099968818", + "https://openalex.org/W2101276256", + "https://openalex.org/W2102011767", + "https://openalex.org/W2103012681", + "https://openalex.org/W2104364170", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105732805", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106491486", + "https://openalex.org/W2106887613", + "https://openalex.org/W2107890099", + "https://openalex.org/W2108263314", + "https://openalex.org/W2109339818", + "https://openalex.org/W2111233787", + "https://openalex.org/W2111355007", + "https://openalex.org/W2111365067", + "https://openalex.org/W2117341272", + "https://openalex.org/W2118686230", + "https://openalex.org/W2119567691", + "https://openalex.org/W2120100126", + "https://openalex.org/W2120875792", + "https://openalex.org/W2121420451", + "https://openalex.org/W2123793406", + "https://openalex.org/W2125528794", + "https://openalex.org/W2128833328", + "https://openalex.org/W2129113961", + "https://openalex.org/W2131600418", + "https://openalex.org/W2133864802", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135730283", + "https://openalex.org/W2135840513", + "https://openalex.org/W2137207609", + "https://openalex.org/W2137690105", + "https://openalex.org/W2138263042", + "https://openalex.org/W2139338362", + "https://openalex.org/W2142399242", + "https://openalex.org/W2143166796", + "https://openalex.org/W2147750403", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148825261", + "https://openalex.org/W2149706766", + "https://openalex.org/W2154104389", + "https://openalex.org/W2154952480", + "https://openalex.org/W2156718197", + "https://openalex.org/W2157112198", + "https://openalex.org/W2157791002", + "https://openalex.org/W2157825442", + "https://openalex.org/W2160392347", + "https://openalex.org/W2161195767", + "https://openalex.org/W2162157640", + "https://openalex.org/W2165131254", + "https://openalex.org/W2165966284", + "https://openalex.org/W2166501286", + "https://openalex.org/W2168020168", + "https://openalex.org/W2169022337", + "https://openalex.org/W2169198425", + "https://openalex.org/W2169401877", + "https://openalex.org/W2171710336", + "https://openalex.org/W2171792531", + "https://openalex.org/W2172195373", + "https://openalex.org/W2294105907", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2312609093", + "https://openalex.org/W2322150470", + "https://openalex.org/W2330274477", + "https://openalex.org/W2490901831", + "https://openalex.org/W2554813760", + "https://openalex.org/W2554958826", + "https://openalex.org/W2579923771", + "https://openalex.org/W2611627047", + "https://openalex.org/W2798579099", + "https://openalex.org/W2798766386", + "https://openalex.org/W2979473749", + "https://openalex.org/W2989661724", + "https://openalex.org/W3011120880", + "https://openalex.org/W3022552533", + "https://openalex.org/W3085162807", + "https://openalex.org/W3119651796" + ], + "related_works": [ + "https://openalex.org/W607505555", + "https://openalex.org/W3118608800", + "https://openalex.org/W2964121744", + "https://openalex.org/W2963664410", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2899606262", + "https://openalex.org/W2579923771", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2156909104", + "https://openalex.org/W2153635508", + "https://openalex.org/W2148603752", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112796928", + "https://openalex.org/W2099471712", + "https://openalex.org/W1663973292", + "https://openalex.org/W1480376833", + "https://openalex.org/W2165698076", + "https://openalex.org/W2121863487" + ], + "abstract_inverted_index": { + "Fundamental": [ + 0 + ], + "topics": [ + 1 + ], + "in": [ + 2 + ], + "machine": [ + 3 + ], + "learning": [ + 4 + ], + "are": [ + 5 + ], + "presented": [ + 6 + ], + "along": [ + 7 + ], + "with": [ + 8 + ], + "theoretical": [ + 9 + ], + "and": [ + 10, + 16 + ], + "conceptual": [ + 11 + ], + "tools": [ + 12 + ], + "for": [ + 13 + ], + "the": [ + 14 + ], + "discussion": [ + 15 + ], + "proof": [ + 17 + ], + "of": [ + 18 + ], + "algorithms.": [ + 19 + ] + }, + "counts_by_year": [ + { + "year": 2024, + "cited_by_count": 2 + }, + { + "year": 2023, + "cited_by_count": 10 + }, + { + "year": 2022, + "cited_by_count": 23 + }, + { + "year": 2021, + "cited_by_count": 260 + }, + { + "year": 2020, + "cited_by_count": 251 + }, + { + "year": 2019, + "cited_by_count": 183 + }, + { + "year": 2018, + "cited_by_count": 112 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 74 + }, + { + "year": 2015, + "cited_by_count": 103 + }, + { + "year": 2014, + "cited_by_count": 62 + }, + { + "year": 2013, + "cited_by_count": 15 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2025-10-10T17:16:08.811792", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2792946961", + "doi": "https://doi.org/10.1103/physrevlett.122.040504", + "title": "Quantum Machine Learning in Feature Hilbert Spaces", + "display_name": "Quantum Machine Learning in Feature Hilbert Spaces", + "relevance_score": 2668.3115, + "publication_year": 2019, + "publication_date": "2019-02-01", + "ids": { + "openalex": "https://openalex.org/W2792946961", + "doi": "https://doi.org/10.1103/physrevlett.122.040504", + "mag": "2792946961", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30768345" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/physrevlett.122.040504", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.122.040504", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1803.07128", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5073832417", + "display_name": "Maria Schuld", + "orcid": "https://orcid.org/0000-0001-8626-168X" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210150097", + "display_name": "Xanadu Quantum Technologies (Canada)", + "ror": "https://ror.org/05qj0n416", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I4210150097" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada", + "institution_ids": [ + "https://openalex.org/I4210150097" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5073500091", + "display_name": "Nathan Killoran", + "orcid": "https://orcid.org/0009-0004-5021-7467" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210150097", + "display_name": "Xanadu Quantum Technologies (Canada)", + "ror": "https://ror.org/05qj0n416", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I4210150097" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Nathan Killoran", + "raw_affiliation_strings": [ + "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada", + "institution_ids": [ + "https://openalex.org/I4210150097" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5073832417" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210150097" + ], + "apc_list": { + "value": 3750, + "currency": "USD", + "value_usd": 3750 + }, + "apc_paid": null, + "fwci": 72.85, + "has_fulltext": false, + "cited_by_count": 1615, + "citation_normalized_percentile": { + "value": 0.99930244, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "122", + "issue": "4", + "first_page": "040504", + "last_page": "040504" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10020", + "display_name": "Quantum Information and Cryptography", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10622", + "display_name": "Quantum Mechanics and Applications", + "score": 0.9937000274658203, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.6511375904083252 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.6377810835838318 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6225951313972473 + }, + { + "id": "https://openalex.org/keywords/quantum-computer", + "display_name": "Quantum computer", + "score": 0.5806344747543335 + }, + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.5536273717880249 + }, + { + "id": "https://openalex.org/keywords/quantum-machine-learning", + "display_name": "Quantum machine learning", + "score": 0.5515050888061523 + }, + { + "id": "https://openalex.org/keywords/quantum-state", + "display_name": "Quantum state", + "score": 0.5443233847618103 + }, + { + "id": "https://openalex.org/keywords/feature-vector", + "display_name": "Feature vector", + "score": 0.5191175937652588 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.5189794898033142 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5174089670181274 + }, + { + "id": "https://openalex.org/keywords/quantum-algorithm", + "display_name": "Quantum algorithm", + "score": 0.5012130737304688 + }, + { + "id": "https://openalex.org/keywords/quantum-information", + "display_name": "Quantum information", + "score": 0.49098876118659973 + }, + { + "id": "https://openalex.org/keywords/povm", + "display_name": "POVM", + "score": 0.48033323884010315 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.45647674798965454 + }, + { + "id": "https://openalex.org/keywords/quantum-process", + "display_name": "Quantum process", + "score": 0.4484074115753174 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.43805402517318726 + }, + { + "id": "https://openalex.org/keywords/quantum", + "display_name": "Quantum", + "score": 0.4299362897872925 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.4142104983329773 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4032990038394928 + }, + { + "id": "https://openalex.org/keywords/quantum-operation", + "display_name": "Quantum operation", + "score": 0.39918798208236694 + }, + { + "id": "https://openalex.org/keywords/open-quantum-system", + "display_name": "Open quantum system", + "score": 0.36664798855781555 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2376301884651184 + }, + { + "id": "https://openalex.org/keywords/quantum-mechanics", + "display_name": "Quantum mechanics", + "score": 0.23471912741661072 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.20437106490135193 + }, + { + "id": "https://openalex.org/keywords/quantum-dynamics", + "display_name": "Quantum dynamics", + "score": 0.17022734880447388 + }, + { + "id": "https://openalex.org/keywords/pure-mathematics", + "display_name": "Pure mathematics", + "score": 0.16131508350372314 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.6511375904083252 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.6377810835838318 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6225951313972473 + }, + { + "id": "https://openalex.org/C58053490", + "wikidata": "https://www.wikidata.org/wiki/Q176555", + "display_name": "Quantum computer", + "level": 3, + "score": 0.5806344747543335 + }, + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.5536273717880249 + }, + { + "id": "https://openalex.org/C2779094486", + "wikidata": "https://www.wikidata.org/wiki/Q18811578", + "display_name": "Quantum machine learning", + "level": 4, + "score": 0.5515050888061523 + }, + { + "id": "https://openalex.org/C15706264", + "wikidata": "https://www.wikidata.org/wiki/Q230883", + "display_name": "Quantum state", + "level": 3, + "score": 0.5443233847618103 + }, + { + "id": "https://openalex.org/C83665646", + "wikidata": "https://www.wikidata.org/wiki/Q42139305", + "display_name": "Feature vector", + "level": 2, + "score": 0.5191175937652588 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.5189794898033142 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5174089670181274 + }, + { + "id": "https://openalex.org/C137019171", + "wikidata": "https://www.wikidata.org/wiki/Q2623817", + "display_name": "Quantum algorithm", + "level": 3, + "score": 0.5012130737304688 + }, + { + "id": "https://openalex.org/C169699857", + "wikidata": "https://www.wikidata.org/wiki/Q2122243", + "display_name": "Quantum information", + "level": 3, + "score": 0.49098876118659973 + }, + { + "id": "https://openalex.org/C179957908", + "wikidata": "https://www.wikidata.org/wiki/Q907206", + "display_name": "POVM", + "level": 5, + "score": 0.48033323884010315 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.45647674798965454 + }, + { + "id": "https://openalex.org/C11255438", + "wikidata": "https://www.wikidata.org/wiki/Q7269085", + "display_name": "Quantum process", + "level": 4, + "score": 0.4484074115753174 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.43805402517318726 + }, + { + "id": "https://openalex.org/C84114770", + "wikidata": "https://www.wikidata.org/wiki/Q46344", + "display_name": "Quantum", + "level": 2, + "score": 0.4299362897872925 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.4142104983329773 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4032990038394928 + }, + { + "id": "https://openalex.org/C43682372", + "wikidata": "https://www.wikidata.org/wiki/Q7269080", + "display_name": "Quantum operation", + "level": 4, + "score": 0.39918798208236694 + }, + { + "id": "https://openalex.org/C190474826", + "wikidata": "https://www.wikidata.org/wiki/Q2495111", + "display_name": "Open quantum system", + "level": 3, + "score": 0.36664798855781555 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2376301884651184 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.23471912741661072 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.20437106490135193 + }, + { + "id": "https://openalex.org/C15184713", + "wikidata": "https://www.wikidata.org/wiki/Q7269042", + "display_name": "Quantum dynamics", + "level": 3, + "score": 0.17022734880447388 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.16131508350372314 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1103/physrevlett.122.040504", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.122.040504", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + { + "id": "pmid:30768345", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30768345", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical review letters", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1803.07128", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1803.07128", + "pdf_url": "https://arxiv.org/pdf/1803.07128", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1803.07128", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1803.07128", + "pdf_url": "https://arxiv.org/pdf/1803.07128", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "score": 0.5199999809265137, + "display_name": "Decent work and economic growth", + "id": "https://metadata.un.org/sdg/8" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 40, + "referenced_works": [ + "https://openalex.org/W1550321157", + "https://openalex.org/W1559984405", + "https://openalex.org/W1565176583", + "https://openalex.org/W1584661976", + "https://openalex.org/W1590419653", + "https://openalex.org/W1904238065", + "https://openalex.org/W1970948459", + "https://openalex.org/W1981783889", + "https://openalex.org/W1984125696", + "https://openalex.org/W1986280275", + "https://openalex.org/W2011527952", + "https://openalex.org/W2014158063", + "https://openalex.org/W2103956991", + "https://openalex.org/W2126887346", + "https://openalex.org/W2142739935", + "https://openalex.org/W2155728415", + "https://openalex.org/W2168029744", + "https://openalex.org/W2257937122", + "https://openalex.org/W2487141439", + "https://openalex.org/W2489886790", + "https://openalex.org/W2497224462", + "https://openalex.org/W2510588772", + "https://openalex.org/W2557392572", + "https://openalex.org/W2560386163", + "https://openalex.org/W2561176579", + "https://openalex.org/W2619100667", + "https://openalex.org/W2751668559", + "https://openalex.org/W2766183519", + "https://openalex.org/W2781738013", + "https://openalex.org/W3098232754", + "https://openalex.org/W3098965398", + "https://openalex.org/W3100075333", + "https://openalex.org/W3100931082", + "https://openalex.org/W3101749733", + "https://openalex.org/W3103574448", + "https://openalex.org/W3144619878", + "https://openalex.org/W4205925775", + "https://openalex.org/W4254920206", + "https://openalex.org/W4298427462", + "https://openalex.org/W4299828299" + ], + "related_works": [ + "https://openalex.org/W2042511210", + "https://openalex.org/W2985796920", + "https://openalex.org/W4382045128", + "https://openalex.org/W4378527878", + "https://openalex.org/W4387503624", + "https://openalex.org/W4387607445", + "https://openalex.org/W4210384976", + "https://openalex.org/W4324106941", + "https://openalex.org/W85458870", + "https://openalex.org/W2010001223" + ], + "abstract_inverted_index": { + "A": [ + 0, + 79 + ], + "basic": [ + 1 + ], + "idea": [ + 2 + ], + "of": [ + 3, + 11, + 36, + 51, + 60, + 117 + ], + "quantum": [ + 4, + 52, + 65, + 76, + 80, + 103, + 112, + 118, + 150 + ], + "computing": [ + 5 + ], + "is": [ + 6 + ], + "surprisingly": [ + 7 + ], + "similar": [ + 8 + ], + "to": [ + 9, + 18, + 75, + 120 + ], + "that": [ + 10, + 72, + 156 + ], + "kernel": [ + 12, + 127, + 134 + ], + "methods": [ + 13 + ], + "in": [ + 14, + 22, + 63, + 88, + 160, + 174 + ], + "machine": [ + 15, + 53 + ], + "learning,": [ + 16 + ], + "namely,": [ + 17 + ], + "efficiently": [ + 19 + ], + "perform": [ + 20 + ], + "computations": [ + 21 + ], + "an": [ + 23 + ], + "intractably": [ + 24 + ], + "large": [ + 25 + ], + "Hilbert": [ + 26, + 77, + 161 + ], + "space.": [ + 27, + 78, + 91, + 162 + ], + "In": [ + 28, + 107, + 142 + ], + "this": [ + 29, + 37, + 89, + 94 + ], + "Letter": [ + 30 + ], + "we": [ + 31, + 96, + 146 + ], + "explore": [ + 32 + ], + "some": [ + 33 + ], + "theoretical": [ + 34 + ], + "foundations": [ + 35 + ], + "link": [ + 38 + ], + "and": [ + 39, + 178 + ], + "show": [ + 40 + ], + "how": [ + 41 + ], + "it": [ + 42 + ], + "opens": [ + 43 + ], + "up": [ + 44 + ], + "a": [ + 45, + 64, + 68, + 102, + 122, + 138, + 148, + 153, + 168, + 175 + ], + "new": [ + 46 + ], + "avenue": [ + 47 + ], + "for": [ + 48, + 100, + 105 + ], + "the": [ + 49, + 58, + 85, + 108, + 111, + 143, + 180 + ], + "design": [ + 50 + ], + "learning": [ + 54 + ], + "algorithms.": [ + 55 + ], + "We": [ + 56, + 163 + ], + "interpret": [ + 57 + ], + "process": [ + 59 + ], + "encoding": [ + 61 + ], + "inputs": [ + 62 + ], + "state": [ + 66 + ], + "as": [ + 67, + 137, + 152 + ], + "nonlinear": [ + 69 + ], + "feature": [ + 70, + 90, + 169 + ], + "map": [ + 71, + 170 + ], + "maps": [ + 73 + ], + "data": [ + 74, + 87, + 158 + ], + "computer": [ + 81 + ], + "can": [ + 82, + 128 + ], + "now": [ + 83 + ], + "analyze": [ + 84 + ], + "input": [ + 86 + ], + "Based": [ + 92 + ], + "on": [ + 93, + 172 + ], + "link,": [ + 95 + ], + "discuss": [ + 97 + ], + "two": [ + 98 + ], + "approaches": [ + 99 + ], + "building": [ + 101 + ], + "model": [ + 104, + 155 + ], + "classification.": [ + 106 + ], + "first": [ + 109 + ], + "approach,": [ + 110, + 145 + ], + "device": [ + 113 + ], + "estimates": [ + 114 + ], + "inner": [ + 115 + ], + "products": [ + 116 + ], + "states": [ + 119 + ], + "compute": [ + 121 + ], + "classically": [ + 123 + ], + "intractable": [ + 124 + ], + "kernel.": [ + 125 + ], + "The": [ + 126 + ], + "be": [ + 129 + ], + "fed": [ + 130 + ], + "into": [ + 131 + ], + "any": [ + 132 + ], + "classical": [ + 133 + ], + "method": [ + 135 + ], + "such": [ + 136 + ], + "support": [ + 139 + ], + "vector": [ + 140 + ], + "machine.": [ + 141 + ], + "second": [ + 144 + ], + "use": [ + 147 + ], + "variational": [ + 149 + ], + "circuit": [ + 151 + ], + "linear": [ + 154 + ], + "classifies": [ + 157 + ], + "explicitly": [ + 159 + ], + "illustrate": [ + 164 + ], + "these": [ + 165 + ], + "ideas": [ + 166 + ], + "with": [ + 167, + 183 + ], + "based": [ + 171 + ], + "squeezing": [ + 173 + ], + "continuous-variable": [ + 176 + ], + "system,": [ + 177 + ], + "visualize": [ + 179 + ], + "working": [ + 181 + ], + "principle": [ + 182 + ], + "two-dimensional": [ + 184 + ], + "minibenchmark": [ + 185 + ], + "datasets.": [ + 186 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 195 + }, + { + "year": 2025, + "cited_by_count": 352 + }, + { + "year": 2024, + "cited_by_count": 267 + }, + { + "year": 2023, + "cited_by_count": 290 + }, + { + "year": 2022, + "cited_by_count": 173 + }, + { + "year": 2021, + "cited_by_count": 195 + }, + { + "year": 2020, + "cited_by_count": 89 + }, + { + "year": 2019, + "cited_by_count": 45 + }, + { + "year": 2018, + "cited_by_count": 8 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2170282673", + "doi": "https://doi.org/10.1109/tpami.2008.275", + "title": "Faster and Better: A Machine Learning Approach to Corner Detection", + "display_name": "Faster and Better: A Machine Learning Approach to Corner Detection", + "relevance_score": 2664.8843, + "publication_year": 2008, + "publication_date": "2008-12-03", + "ids": { + "openalex": "https://openalex.org/W2170282673", + "doi": "https://doi.org/10.1109/tpami.2008.275", + "mag": "2170282673", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/19926902" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tpami.2008.275", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2008.275", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/0810.2434", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5076168268", + "display_name": "Edward Rosten", + "orcid": "https://orcid.org/0000-0001-8675-4230" + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "E. Rosten", + "raw_affiliation_strings": [ + "Department of Engineering, Cambridge University, Cambridge, UK. er258@cam.ac.uk" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, Cambridge University, Cambridge, UK. er258@cam.ac.uk", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004732139", + "display_name": "Reid Porter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "R. Porter", + "raw_affiliation_strings": [ + "Los Alamos National Laboratory, ISR2 Space and Remote Sensing, Los Alamos, NM, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Los Alamos National Laboratory, ISR2 Space and Remote Sensing, Los Alamos, NM, USA", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5017469047", + "display_name": "Tom Drummond", + "orcid": "https://orcid.org/0000-0001-8204-5904" + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "T. Drummond", + "raw_affiliation_strings": [ + "Department of Engineering, University of Cambridge, Cambridge, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, University of Cambridge, Cambridge, UK", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5076168268" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I241749" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 657.9673, + "has_fulltext": false, + "cited_by_count": 1833, + "citation_normalized_percentile": { + "value": 0.99997119, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "32", + "issue": "1", + "first_page": "105", + "last_page": "119" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10191", + "display_name": "Robotics and Sensor-Based Localization", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2202", + "display_name": "Aerospace Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10191", + "display_name": "Robotics and Sensor-Based Localization", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2202", + "display_name": "Aerospace Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10627", + "display_name": "Advanced Image and Video Retrieval Techniques", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10531", + "display_name": "Advanced Vision and Imaging", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/detector", + "display_name": "Detector", + "score": 0.889086127281189 + }, + { + "id": "https://openalex.org/keywords/repeatability", + "display_name": "Repeatability", + "score": 0.7754774689674377 + }, + { + "id": "https://openalex.org/keywords/frame-rate", + "display_name": "Frame rate", + "score": 0.7121055126190186 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6925737857818604 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.6610417366027832 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6580203771591187 + }, + { + "id": "https://openalex.org/keywords/scale-invariant-feature-transform", + "display_name": "Scale-invariant feature transform", + "score": 0.580880343914032 + }, + { + "id": "https://openalex.org/keywords/computer-vision", + "display_name": "Computer vision", + "score": 0.5632566809654236 + }, + { + "id": "https://openalex.org/keywords/corner-detection", + "display_name": "Corner detection", + "score": 0.5312818288803101 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5021579265594482 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.48669177293777466 + }, + { + "id": "https://openalex.org/keywords/frame", + "display_name": "Frame (networking)", + "score": 0.47642096877098083 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.41832929849624634 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.24135944247245789 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.16702711582183838 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.15768682956695557 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C94915269", + "wikidata": "https://www.wikidata.org/wiki/Q1834857", + "display_name": "Detector", + "level": 2, + "score": 0.889086127281189 + }, + { + "id": "https://openalex.org/C154020017", + "wikidata": "https://www.wikidata.org/wiki/Q520171", + "display_name": "Repeatability", + "level": 2, + "score": 0.7754774689674377 + }, + { + "id": "https://openalex.org/C3261483", + "wikidata": "https://www.wikidata.org/wiki/Q119565", + "display_name": "Frame rate", + "level": 2, + "score": 0.7121055126190186 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6925737857818604 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.6610417366027832 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6580203771591187 + }, + { + "id": "https://openalex.org/C61265191", + "wikidata": "https://www.wikidata.org/wiki/Q767770", + "display_name": "Scale-invariant feature transform", + "level": 3, + "score": 0.580880343914032 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.5632566809654236 + }, + { + "id": "https://openalex.org/C39499422", + "wikidata": "https://www.wikidata.org/wiki/Q697320", + "display_name": "Corner detection", + "level": 3, + "score": 0.5312818288803101 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5021579265594482 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.48669177293777466 + }, + { + "id": "https://openalex.org/C126042441", + "wikidata": "https://www.wikidata.org/wiki/Q1324888", + "display_name": "Frame (networking)", + "level": 2, + "score": 0.47642096877098083 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.41832929849624634 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.24135944247245789 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.16702711582183838 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.15768682956695557 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1109/tpami.2008.275", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2008.275", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + { + "id": "pmid:19926902", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/19926902", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE transactions on pattern analysis and machine intelligence", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:0810.2434", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/0810.2434", + "pdf_url": "https://arxiv.org/pdf/0810.2434", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:generic.eprints.org:332870", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/332870/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:0810.2434", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/0810.2434", + "pdf_url": "https://arxiv.org/pdf/0810.2434", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 103, + "referenced_works": [ + "https://openalex.org/W22745672", + "https://openalex.org/W1505641881", + "https://openalex.org/W1532362218", + "https://openalex.org/W1541642243", + "https://openalex.org/W1564419782", + "https://openalex.org/W1573635437", + "https://openalex.org/W1580529010", + "https://openalex.org/W1639227073", + "https://openalex.org/W1676552347", + "https://openalex.org/W1773272891", + "https://openalex.org/W1831051511", + "https://openalex.org/W1911904603", + "https://openalex.org/W1926270821", + "https://openalex.org/W1966683117", + "https://openalex.org/W1967129518", + "https://openalex.org/W1970393892", + "https://openalex.org/W1974104694", + "https://openalex.org/W1980633381", + "https://openalex.org/W1981626707", + "https://openalex.org/W1981787154", + "https://openalex.org/W1983503034", + "https://openalex.org/W1985444400", + "https://openalex.org/W1992047056", + "https://openalex.org/W1994069847", + "https://openalex.org/W1994513823", + "https://openalex.org/W2000701155", + "https://openalex.org/W2003262222", + "https://openalex.org/W2012778485", + "https://openalex.org/W2014161456", + "https://openalex.org/W2015206503", + "https://openalex.org/W2017284398", + "https://openalex.org/W2020187819", + "https://openalex.org/W2022486878", + "https://openalex.org/W2027874846", + "https://openalex.org/W2028721671", + "https://openalex.org/W2038691774", + "https://openalex.org/W2045888618", + "https://openalex.org/W2046269998", + "https://openalex.org/W2052408227", + "https://openalex.org/W2054511520", + "https://openalex.org/W2059389571", + "https://openalex.org/W2062758634", + "https://openalex.org/W2065884509", + "https://openalex.org/W2067718526", + "https://openalex.org/W2069295011", + "https://openalex.org/W2072029938", + "https://openalex.org/W2075144239", + "https://openalex.org/W2075746031", + "https://openalex.org/W2075747175", + "https://openalex.org/W2076343824", + "https://openalex.org/W2090736344", + "https://openalex.org/W2091841488", + "https://openalex.org/W2091912813", + "https://openalex.org/W2093808735", + "https://openalex.org/W2095905764", + "https://openalex.org/W2099046646", + "https://openalex.org/W2102586630", + "https://openalex.org/W2105364438", + "https://openalex.org/W2111125604", + "https://openalex.org/W2111308925", + "https://openalex.org/W2111589119", + "https://openalex.org/W2114785422", + "https://openalex.org/W2115168188", + "https://openalex.org/W2117274643", + "https://openalex.org/W2119747362", + "https://openalex.org/W2129146260", + "https://openalex.org/W2130103520", + "https://openalex.org/W2135273733", + "https://openalex.org/W2138342591", + "https://openalex.org/W2141859096", + "https://openalex.org/W2142458388", + "https://openalex.org/W2144540462", + "https://openalex.org/W2145023731", + "https://openalex.org/W2145665593", + "https://openalex.org/W2148278638", + "https://openalex.org/W2149706766", + "https://openalex.org/W2151103935", + "https://openalex.org/W2155625202", + "https://openalex.org/W2156460770", + "https://openalex.org/W2158148005", + "https://openalex.org/W2162430761", + "https://openalex.org/W2163205713", + "https://openalex.org/W2165239264", + "https://openalex.org/W2168861291", + "https://openalex.org/W2169741726", + "https://openalex.org/W2170120409", + "https://openalex.org/W2170419248", + "https://openalex.org/W2170628770", + "https://openalex.org/W2172263315", + "https://openalex.org/W2177274842", + "https://openalex.org/W2791807800", + "https://openalex.org/W2911835288", + "https://openalex.org/W2914011225", + "https://openalex.org/W2999811158", + "https://openalex.org/W3040777582", + "https://openalex.org/W4236137412", + "https://openalex.org/W4250453583", + "https://openalex.org/W6631707545", + "https://openalex.org/W6634737366", + "https://openalex.org/W6637324600", + "https://openalex.org/W6677385351", + "https://openalex.org/W6679388247", + "https://openalex.org/W6680873466" + ], + "related_works": [ + "https://openalex.org/W2054654791", + "https://openalex.org/W2039361535", + "https://openalex.org/W1985861440", + "https://openalex.org/W2344562887", + "https://openalex.org/W1566379417", + "https://openalex.org/W4232672640", + "https://openalex.org/W2102080789", + "https://openalex.org/W2350376800", + "https://openalex.org/W2122784802", + "https://openalex.org/W2372805521" + ], + "abstract_inverted_index": { + "The": [ + 0, + 20, + 43 + ], + "repeatability": [ + 1, + 21, + 155 + ], + "and": [ + 2, + 203 + ], + "efficiency": [ + 3, + 44 + ], + "of": [ + 4, + 101, + 139, + 148, + 204 + ], + "a": [ + 5, + 17, + 72, + 84, + 145, + 196 + ], + "corner": [ + 6, + 149 + ], + "detector": [ + 7, + 52, + 86, + 118, + 176, + 197 + ], + "determines": [ + 8, + 49 + ], + "how": [ + 9 + ], + "likely": [ + 10 + ], + "it": [ + 11, + 130 + ], + "is": [ + 12, + 22, + 45, + 199 + ], + "to": [ + 13, + 37, + 131, + 158 + ], + "be": [ + 14, + 132 + ], + "useful": [ + 15 + ], + "in": [ + 16, + 66, + 193 + ], + "real-world": [ + 18, + 40 + ], + "application.": [ + 19 + ], + "important": [ + 23, + 46 + ], + "because": [ + 24, + 47 + ], + "the": [ + 25, + 38, + 51, + 102, + 127, + 153, + 183 + ], + "same": [ + 26, + 39 + ], + "scene": [ + 27 + ], + "viewed": [ + 28 + ], + "from": [ + 29, + 87 + ], + "different": [ + 30 + ], + "positions": [ + 31 + ], + "should": [ + 32 + ], + "yield": [ + 33 + ], + "features": [ + 34 + ], + "which": [ + 35, + 89 + ], + "correspond": [ + 36 + ], + "3D": [ + 41, + 159 + ], + "locations.": [ + 42 + ], + "this": [ + 48, + 67, + 88 + ], + "whether": [ + 50 + ], + "combined": [ + 53 + ], + "with": [ + 54, + 136 + ], + "further": [ + 55 + ], + "processing": [ + 56, + 104 + ], + "can": [ + 57, + 90 + ], + "operate": [ + 58, + 113 + ], + "at": [ + 59, + 114 + ], + "frame": [ + 60, + 115 + ], + "rate.": [ + 61 + ], + "Three": [ + 62 + ], + "advances": [ + 63 + ], + "are": [ + 64 + ], + "described": [ + 65 + ], + "paper.": [ + 68 + ], + "First,": [ + 69 + ], + "we": [ + 70, + 82, + 125, + 142 + ], + "present": [ + 71 + ], + "new": [ + 73 + ], + "heuristic": [ + 74, + 175 + ], + "for": [ + 75, + 134, + 168 + ], + "feature": [ + 76, + 85, + 180 + ], + "detection": [ + 77 + ], + "and,": [ + 78 + ], + "using": [ + 79, + 96, + 187 + ], + "machine": [ + 80, + 188 + ], + "learning,": [ + 81 + ], + "derive": [ + 83 + ], + "fully": [ + 91 + ], + "process": [ + 92 + ], + "live": [ + 93 + ], + "PAL": [ + 94 + ], + "video": [ + 95 + ], + "less": [ + 97 + ], + "than": [ + 98 + ], + "5": [ + 99 + ], + "percent": [ + 100 + ], + "available": [ + 103 + ], + "time.": [ + 105 + ], + "By": [ + 106 + ], + "comparison,": [ + 107 + ], + "most": [ + 108 + ], + "other": [ + 109 + ], + "detectors": [ + 110, + 150 + ], + "cannot": [ + 111 + ], + "even": [ + 112 + ], + "rate": [ + 116 + ], + "(Harris": [ + 117 + ], + "115": [ + 119 + ], + "percent,": [ + 120 + ], + "SIFT": [ + 121 + ], + "195": [ + 122 + ], + "percent).": [ + 123 + ], + "Second,": [ + 124 + ], + "generalize": [ + 126 + ], + "detector,": [ + 128 + ], + "allowing": [ + 129 + ], + "optimized": [ + 133 + ], + "repeatability,": [ + 135, + 194 + ], + "little": [ + 137 + ], + "loss": [ + 138 + ], + "efficiency.": [ + 140 + ], + "Third,": [ + 141 + ], + "carry": [ + 143 + ], + "out": [ + 144 + ], + "rigorous": [ + 146 + ], + "comparison": [ + 147, + 184 + ], + "based": [ + 151 + ], + "on": [ + 152, + 170 + ], + "above": [ + 154 + ], + "criterion": [ + 156 + ], + "applied": [ + 157 + ], + "scenes.": [ + 160 + ], + "We": [ + 161 + ], + "show": [ + 162 + ], + "that,": [ + 163 + ], + "despite": [ + 164 + ], + "being": [ + 165 + ], + "principally": [ + 166 + ], + "constructed": [ + 167 + ], + "speed,": [ + 169 + ], + "these": [ + 171 + ], + "stringent": [ + 172 + ], + "tests,": [ + 173 + ], + "our": [ + 174 + ], + "significantly": [ + 177 + ], + "outperforms": [ + 178 + ], + "existing": [ + 179 + ], + "detectors.": [ + 181 + ], + "Finally,": [ + 182 + ], + "demonstrates": [ + 185 + ], + "that": [ + 186, + 198 + ], + "learning": [ + 189 + ], + "produces": [ + 190 + ], + "significant": [ + 191 + ], + "improvements": [ + 192 + ], + "yielding": [ + 195 + ], + "both": [ + 200 + ], + "very": [ + 201, + 205 + ], + "fast": [ + 202 + ], + "high": [ + 206 + ], + "quality.": [ + 207 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 15 + }, + { + "year": 2025, + "cited_by_count": 77 + }, + { + "year": 2024, + "cited_by_count": 90 + }, + { + "year": 2023, + "cited_by_count": 105 + }, + { + "year": 2022, + "cited_by_count": 124 + }, + { + "year": 2021, + "cited_by_count": 125 + }, + { + "year": 2020, + "cited_by_count": 145 + }, + { + "year": 2019, + "cited_by_count": 149 + }, + { + "year": 2018, + "cited_by_count": 159 + }, + { + "year": 2017, + "cited_by_count": 165 + }, + { + "year": 2016, + "cited_by_count": 141 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 129 + }, + { + "year": 2013, + "cited_by_count": 118 + }, + { + "year": 2012, + "cited_by_count": 68 + } + ], + "updated_date": "2026-05-25T08:39:21.599409", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2015811642", + "doi": "https://doi.org/10.1080/00107514.2014.964942", + "title": "An introduction to quantum machine learning", + "display_name": "An introduction to quantum machine learning", + "relevance_score": 2622.9817, + "publication_year": 2014, + "publication_date": "2014-10-15", + "ids": { + "openalex": "https://openalex.org/W2015811642", + "doi": "https://doi.org/10.1080/00107514.2014.964942", + "mag": "2015811642" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1080/00107514.2014.964942", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1080/00107514.2014.964942", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S161902083", + "display_name": "Contemporary Physics", + "issn_l": "0010-7514", + "issn": [ + "0010-7514", + "1366-5812" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Contemporary Physics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1409.3097", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Maria Schuld", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95023434", + "display_name": "University of KwaZulu-Natal", + "ror": "https://ror.org/04qzfn040", + "country_code": "ZA", + "type": "education", + "lineage": [ + "https://openalex.org/I95023434" + ] + } + ], + "countries": [ + "ZA" + ], + "is_corresponding": true, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa", + "institution_ids": [ + "https://openalex.org/I95023434" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Ilya Sinayskiy", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ilya Sinayskiy", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Francesco Petruccione", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Francesco Petruccione", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I95023434" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 19.4531, + "has_fulltext": false, + "cited_by_count": 1227, + "citation_normalized_percentile": { + "value": 0.99357972, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "56", + "issue": "2", + "first_page": "172", + "last_page": "185" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.817799985408783, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.817799985408783, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10622", + "display_name": "Quantum Mechanics and Applications", + "score": 0.01489999983459711, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10020", + "display_name": "Quantum Information and Cryptography", + "score": 0.011599999852478504, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/quantum-machine-learning", + "display_name": "Quantum machine learning", + "score": 0.6427000164985657 + }, + { + "id": "https://openalex.org/keywords/subroutine", + "display_name": "Subroutine", + "score": 0.6392999887466431 + }, + { + "id": "https://openalex.org/keywords/machine-translation", + "display_name": "Machine translation", + "score": 0.5587000250816345 + }, + { + "id": "https://openalex.org/keywords/quantum-computer", + "display_name": "Quantum computer", + "score": 0.5418000221252441 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5389000177383423 + }, + { + "id": "https://openalex.org/keywords/quantum", + "display_name": "Quantum", + "score": 0.49810001254081726 + }, + { + "id": "https://openalex.org/keywords/relation", + "display_name": "Relation (database)", + "score": 0.492000013589859 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.38510000705718994 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.37560001015663147 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7555999755859375 + }, + { + "id": "https://openalex.org/C2779094486", + "wikidata": "https://www.wikidata.org/wiki/Q18811578", + "display_name": "Quantum machine learning", + "level": 4, + "score": 0.6427000164985657 + }, + { + "id": "https://openalex.org/C96147967", + "wikidata": "https://www.wikidata.org/wiki/Q190686", + "display_name": "Subroutine", + "level": 2, + "score": 0.6392999887466431 + }, + { + "id": "https://openalex.org/C203005215", + "wikidata": "https://www.wikidata.org/wiki/Q79798", + "display_name": "Machine translation", + "level": 2, + "score": 0.5587000250816345 + }, + { + "id": "https://openalex.org/C58053490", + "wikidata": "https://www.wikidata.org/wiki/Q176555", + "display_name": "Quantum computer", + "level": 3, + "score": 0.5418000221252441 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5389000177383423 + }, + { + "id": "https://openalex.org/C84114770", + "wikidata": "https://www.wikidata.org/wiki/Q46344", + "display_name": "Quantum", + "level": 2, + "score": 0.49810001254081726 + }, + { + "id": "https://openalex.org/C25343380", + "wikidata": "https://www.wikidata.org/wiki/Q277521", + "display_name": "Relation (database)", + "level": 2, + "score": 0.492000013589859 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4293999969959259 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.38679999113082886 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.38510000705718994 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.37560001015663147 + }, + { + "id": "https://openalex.org/C131671149", + "wikidata": "https://www.wikidata.org/wiki/Q2703890", + "display_name": "Universal Turing machine", + "level": 4, + "score": 0.36239999532699585 + }, + { + "id": "https://openalex.org/C149364088", + "wikidata": "https://www.wikidata.org/wiki/Q185917", + "display_name": "Translation (biology)", + "level": 4, + "score": 0.3573000133037567 + }, + { + "id": "https://openalex.org/C137019171", + "wikidata": "https://www.wikidata.org/wiki/Q2623817", + "display_name": "Quantum algorithm", + "level": 3, + "score": 0.35510000586509705 + }, + { + "id": "https://openalex.org/C169699857", + "wikidata": "https://www.wikidata.org/wiki/Q2122243", + "display_name": "Quantum information", + "level": 3, + "score": 0.34360000491142273 + }, + { + "id": "https://openalex.org/C192061203", + "wikidata": "https://www.wikidata.org/wiki/Q765620", + "display_name": "Quantum Turing machine", + "level": 5, + "score": 0.33169999718666077 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.31439998745918274 + }, + { + "id": "https://openalex.org/C62641251", + "wikidata": "https://www.wikidata.org/wiki/Q7269097", + "display_name": "Quantum sort", + "level": 5, + "score": 0.31119999289512634 + }, + { + "id": "https://openalex.org/C190463098", + "wikidata": "https://www.wikidata.org/wiki/Q2081419", + "display_name": "Quantum technology", + "level": 4, + "score": 0.3100999891757965 + }, + { + "id": "https://openalex.org/C5320026", + "wikidata": "https://www.wikidata.org/wiki/Q2122216", + "display_name": "Quantum information science", + "level": 4, + "score": 0.30160000920295715 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.28349998593330383 + }, + { + "id": "https://openalex.org/C182306322", + "wikidata": "https://www.wikidata.org/wiki/Q1779371", + "display_name": "Order (exchange)", + "level": 2, + "score": 0.2777999937534332 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.2728999853134155 + }, + { + "id": "https://openalex.org/C2982832238", + "wikidata": "https://www.wikidata.org/wiki/Q5531640", + "display_name": "General purpose", + "level": 2, + "score": 0.2621999979019165 + }, + { + "id": "https://openalex.org/C2986862884", + "wikidata": "https://www.wikidata.org/wiki/Q7553", + "display_name": "Language translation", + "level": 3, + "score": 0.25360000133514404 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1080/00107514.2014.964942", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1080/00107514.2014.964942", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S161902083", + "display_name": "Contemporary Physics", + "issn_l": "0010-7514", + "issn": [ + "0010-7514", + "1366-5812" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Contemporary Physics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1409.3097", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1409.3097", + "pdf_url": "https://arxiv.org/pdf/1409.3097", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1409.3097", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1409.3097", + "pdf_url": "https://arxiv.org/pdf/1409.3097", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 44, + "referenced_works": [ + "https://openalex.org/W1485920032", + "https://openalex.org/W1490115964", + "https://openalex.org/W1492999010", + "https://openalex.org/W1498436455", + "https://openalex.org/W1514004320", + "https://openalex.org/W1581516671", + "https://openalex.org/W1804957150", + "https://openalex.org/W1942423339", + "https://openalex.org/W1968561119", + "https://openalex.org/W1971567680", + "https://openalex.org/W1979692035", + "https://openalex.org/W1980073965", + "https://openalex.org/W1987915183", + "https://openalex.org/W1990514347", + "https://openalex.org/W2008355848", + "https://openalex.org/W2010505240", + "https://openalex.org/W2019112050", + "https://openalex.org/W2020783771", + "https://openalex.org/W2030545386", + "https://openalex.org/W2031056773", + "https://openalex.org/W2034539720", + "https://openalex.org/W2037645123", + "https://openalex.org/W2038713182", + "https://openalex.org/W2040870580", + "https://openalex.org/W2044799191", + "https://openalex.org/W2055784634", + "https://openalex.org/W2061422883", + "https://openalex.org/W2064268005", + "https://openalex.org/W2076257979", + "https://openalex.org/W2089365259", + "https://openalex.org/W2095984596", + "https://openalex.org/W2103956991", + "https://openalex.org/W2111084110", + "https://openalex.org/W2121062711", + "https://openalex.org/W2122964527", + "https://openalex.org/W2124269824", + "https://openalex.org/W2125838338", + "https://openalex.org/W2133892930", + "https://openalex.org/W2136922672", + "https://openalex.org/W2138178898", + "https://openalex.org/W2990961515", + "https://openalex.org/W3022578515", + "https://openalex.org/W3037443854", + "https://openalex.org/W3037687232" + ], + "related_works": [], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 54 + ], + "algorithms": [ + 2, + 62 + ], + "learn": [ + 3 + ], + "a": [ + 4, + 68, + 86, + 115 + ], + "desired": [ + 5 + ], + "input-output": [ + 6 + ], + "relation": [ + 7 + ], + "from": [ + 8, + 58 + ], + "examples": [ + 9 + ], + "in": [ + 10, + 33, + 106 + ], + "order": [ + 11 + ], + "to": [ + 12, + 50, + 71 + ], + "interpret": [ + 13 + ], + "new": [ + 14 + ], + "inputs.": [ + 15 + ], + "This": [ + 16, + 83 + ], + "is": [ + 17 + ], + "important": [ + 18 + ], + "for": [ + 19 + ], + "tasks": [ + 20 + ], + "such": [ + 21 + ], + "as": [ + 22, + 101, + 103 + ], + "image": [ + 23 + ], + "and": [ + 24, + 110 + ], + "speech": [ + 25 + ], + "recognition": [ + 26 + ], + "or": [ + 27, + 63 + ], + "strategy": [ + 28 + ], + "optimisation,": [ + 29 + ], + "with": [ + 30 + ], + "growing": [ + 31 + ], + "applications": [ + 32 + ], + "the": [ + 34, + 38, + 72, + 78, + 90, + 99, + 112 + ], + "IT": [ + 35 + ], + "industry.": [ + 36 + ], + "In": [ + 37 + ], + "last": [ + 39 + ], + "couple": [ + 40 + ], + "of": [ + 41, + 74, + 80, + 89, + 93, + 114, + 118 + ], + "years,": [ + 42 + ], + "researchers": [ + 43 + ], + "investigated": [ + 44 + ], + "if": [ + 45 + ], + "quantum": [ + 46, + 69, + 81, + 94, + 119 + ], + "computing": [ + 47 + ], + "can": [ + 48 + ], + "help": [ + 49 + ], + "improve": [ + 51 + ], + "classical": [ + 52 + ], + "machine": [ + 53, + 95 + ], + "algorithms.": [ + 55 + ], + "Ideas": [ + 56 + ], + "range": [ + 57 + ], + "running": [ + 59 + ], + "computationally": [ + 60 + ], + "costly": [ + 61 + ], + "their": [ + 64 + ], + "subroutines": [ + 65 + ], + "efficiently": [ + 66 + ], + "on": [ + 67 + ], + "computer": [ + 70 + ], + "translation": [ + 73 + ], + "stochastic": [ + 75 + ], + "methods": [ + 76 + ], + "into": [ + 77 + ], + "language": [ + 79 + ], + "theory.": [ + 82 + ], + "contribution": [ + 84 + ], + "gives": [ + 85 + ], + "systematic": [ + 87 + ], + "overview": [ + 88 + ], + "emerging": [ + 91 + ], + "field": [ + 92 + ], + "learning.": [ + 96, + 120 + ], + "It": [ + 97 + ], + "presents": [ + 98 + ], + "approaches": [ + 100 + ], + "well": [ + 102 + ], + "technical": [ + 104 + ], + "details": [ + 105 + ], + "an": [ + 107 + ], + "accessible": [ + 108 + ], + "way,": [ + 109 + ], + "discusses": [ + 111 + ], + "potential": [ + 113 + ], + "future": [ + 116 + ], + "theory": [ + 117 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 127 + }, + { + "year": 2025, + "cited_by_count": 267 + }, + { + "year": 2024, + "cited_by_count": 218 + }, + { + "year": 2023, + "cited_by_count": 168 + }, + { + "year": 2022, + "cited_by_count": 128 + }, + { + "year": 2021, + "cited_by_count": 94 + }, + { + "year": 2020, + "cited_by_count": 82 + }, + { + "year": 2019, + "cited_by_count": 57 + }, + { + "year": 2018, + "cited_by_count": 40 + }, + { + "year": 2017, + "cited_by_count": 31 + }, + { + "year": 2016, + "cited_by_count": 11 + }, + { + "year": 2015, + "cited_by_count": 3 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2789894922", + "doi": "https://doi.org/10.1001/jama.2017.18391", + "title": "Big Data and Machine Learning in Health Care", + "display_name": "Big Data and Machine Learning in Health Care", + "relevance_score": 2616.3196, + "publication_year": 2018, + "publication_date": "2018-03-12", + "ids": { + "openalex": "https://openalex.org/W2789894922", + "doi": "https://doi.org/10.1001/jama.2017.18391", + "mag": "2789894922", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29532063" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1001/jama.2017.18391", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1001/jama.2017.18391", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S172573765", + "display_name": "JAMA", + "issn_l": "0098-7484", + "issn": [ + "0098-7484", + "1538-3598" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320259", + "host_organization_name": "American Medical Association", + "host_organization_lineage": [ + "https://openalex.org/P4310320259" + ], + "host_organization_lineage_names": [ + "American Medical Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5077007622", + "display_name": "Andrew L. Beam", + "orcid": "https://orcid.org/0000-0002-6657-2787" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Andrew L. Beam", + "raw_affiliation_strings": [ + "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088509061", + "display_name": "Isaac S. Kohane", + "orcid": "https://orcid.org/0000-0003-2192-5160" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isaac S. Kohane", + "raw_affiliation_strings": [ + "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5077007622" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 125.0749, + "has_fulltext": false, + "cited_by_count": 2107, + "citation_normalized_percentile": { + "value": 0.99976569, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "319", + "issue": "13", + "first_page": "1317", + "last_page": "1317" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10261", + "display_name": "Genetic Associations and Epidemiology", + "score": 0.9894000291824341, + "subfield": { + "id": "https://openalex.org/subfields/1311", + "display_name": "Genetics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10261", + "display_name": "Genetic Associations and Epidemiology", + "score": 0.9894000291824341, + "subfield": { + "id": "https://openalex.org/subfields/1311", + "display_name": "Genetics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9599000215530396, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9545000195503235, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.9493777751922607 + }, + { + "id": "https://openalex.org/keywords/otorhinolaryngology", + "display_name": "Otorhinolaryngology", + "score": 0.5338343977928162 + }, + { + "id": "https://openalex.org/keywords/family-medicine", + "display_name": "Family medicine", + "score": 0.5010433197021484 + }, + { + "id": "https://openalex.org/keywords/sign", + "display_name": "Sign (mathematics)", + "score": 0.4248647093772888 + }, + { + "id": "https://openalex.org/keywords/psychiatry", + "display_name": "Psychiatry", + "score": 0.32425233721733093 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.9493777751922607 + }, + { + "id": "https://openalex.org/C108516343", + "wikidata": "https://www.wikidata.org/wiki/Q189553", + "display_name": "Otorhinolaryngology", + "level": 2, + "score": 0.5338343977928162 + }, + { + "id": "https://openalex.org/C512399662", + "wikidata": "https://www.wikidata.org/wiki/Q3505712", + "display_name": "Family medicine", + "level": 1, + "score": 0.5010433197021484 + }, + { + "id": "https://openalex.org/C139676723", + "wikidata": "https://www.wikidata.org/wiki/Q1193832", + "display_name": "Sign (mathematics)", + "level": 2, + "score": 0.4248647093772888 + }, + { + "id": "https://openalex.org/C118552586", + "wikidata": "https://www.wikidata.org/wiki/Q7867", + "display_name": "Psychiatry", + "level": 1, + "score": 0.32425233721733093 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1001/jama.2017.18391", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1001/jama.2017.18391", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S172573765", + "display_name": "JAMA", + "issn_l": "0098-7484", + "issn": [ + "0098-7484", + "1538-3598" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320259", + "host_organization_name": "American Medical Association", + "host_organization_lineage": [ + "https://openalex.org/P4310320259" + ], + "host_organization_lineage_names": [ + "American Medical Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": "journal-article" + }, + { + "id": "pmid:29532063", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29532063", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W1984116324", + "https://openalex.org/W2076652359", + "https://openalex.org/W2257979135", + "https://openalex.org/W2557738935", + "https://openalex.org/W2766447205" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W2048182022", + "https://openalex.org/W2604872355" + ], + "abstract_inverted_index": { + "Our": [ + 0 + ], + "website": [ + 1 + ], + "uses": [ + 2 + ], + "cookies": [ + 3 + ], + "to": [ + 4, + 10, + 20, + 171 + ], + "enhance": [ + 5 + ], + "your": [ + 6, + 158 + ], + "experience.": [ + 7 + ], + "By": [ + 8 + ], + "continuing": [ + 9 + ], + "use": [ + 11 + ], + "our": [ + 12, + 21 + ], + "site,": [ + 13 + ], + "or": [ + 14 + ], + "clicking": [ + 15 + ], + "\"Continue,\"": [ + 16 + ], + "you": [ + 17 + ], + "are": [ + 18 + ], + "agreeing": [ + 19 + ], + "Cookie": [ + 22 + ], + "Policy": [ + 23, + 92 + ], + "|": [ + 24, + 90, + 93 + ], + "Continue": [ + 25 + ], + "JAMA": [ + 26, + 32, + 33, + 36, + 38, + 40, + 43, + 46, + 48, + 50, + 52, + 57, + 59, + 61, + 105, + 106, + 109, + 111, + 113, + 116, + 119, + 122, + 124, + 126, + 128, + 133, + 135, + 137, + 173 + ], + "HomeNew": [ + 27 + ], + "OnlineCurrent": [ + 28 + ], + "IssueFor": [ + 29 + ], + "Authors": [ + 30 + ], + "Publications": [ + 31 + ], + "Network": [ + 34, + 107 + ], + "Open": [ + 35, + 108 + ], + "Cardiology": [ + 37, + 110 + ], + "Dermatology": [ + 39, + 112 + ], + "Health": [ + 41, + 117 + ], + "Forum": [ + 42, + 114, + 118 + ], + "Internal": [ + 44, + 120 + ], + "Medicine": [ + 45, + 121 + ], + "Neurology": [ + 47, + 65, + 123, + 141 + ], + "Oncology": [ + 49, + 125 + ], + "Ophthalmology": [ + 51, + 127 + ], + "Otolaryngology–Head": [ + 53, + 129 + ], + "&": [ + 54, + 66, + 85, + 130, + 142 + ], + "Neck": [ + 55, + 131 + ], + "Surgery": [ + 56, + 62, + 132, + 138 + ], + "Pediatrics": [ + 58, + 134 + ], + "Psychiatry": [ + 60, + 67, + 136, + 143 + ], + "Archives": [ + 63, + 139 + ], + "of": [ + 64, + 88, + 140 + ], + "(1919-1959)": [ + 68 + ], + "Podcasts": [ + 69 + ], + "Clinical": [ + 70 + ], + "Reviews": [ + 71 + ], + "Editors'": [ + 72 + ], + "Summary": [ + 73 + ], + "Medical": [ + 74, + 98 + ], + "News": [ + 75 + ], + "Author": [ + 76 + ], + "Interviews": [ + 77 + ], + "More": [ + 78 + ], + "JN": [ + 79 + ], + "Learning": [ + 80 + ], + "/": [ + 81, + 83 + ], + "CMESubscribeJobsInstitutions": [ + 82 + ], + "LibrariansReprints": [ + 84 + ], + "Permissions": [ + 86 + ], + "Terms": [ + 87 + ], + "Use": [ + 89 + ], + "Privacy": [ + 91 + ], + "Accessibility": [ + 94 + ], + "Statement": [ + 95 + ], + "2023": [ + 96 + ], + "American": [ + 97 + ], + "Association.": [ + 99 + ], + "All": [ + 100, + 104 + ], + "Rights": [ + 101 + ], + "Reserved": [ + 102 + ], + "Search": [ + 103, + 145 + ], + "Archive": [ + 115 + ], + "Input": [ + 144 + ], + "Term": [ + 146 + ], + "Sign": [ + 147, + 150, + 152, + 160 + ], + "In": [ + 148, + 151, + 161 + ], + "Individual": [ + 149 + ], + "inCreate": [ + 153 + ], + "an": [ + 154 + ], + "Account": [ + 155 + ], + "Access": [ + 156 + ], + "through": [ + 157 + ], + "institution": [ + 159 + ], + "Purchase": [ + 162 + ], + "Options:": [ + 163 + ], + "Buy": [ + 164 + ], + "this": [ + 165, + 168 + ], + "article": [ + 166, + 169 + ], + "Rent": [ + 167 + ], + "Subscribe": [ + 170 + ], + "the": [ + 172 + ], + "journal": [ + 174 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 207 + }, + { + "year": 2025, + "cited_by_count": 376 + }, + { + "year": 2024, + "cited_by_count": 311 + }, + { + "year": 2023, + "cited_by_count": 274 + }, + { + "year": 2022, + "cited_by_count": 237 + }, + { + "year": 2021, + "cited_by_count": 279 + }, + { + "year": 2020, + "cited_by_count": 230 + }, + { + "year": 2019, + "cited_by_count": 133 + }, + { + "year": 2018, + "cited_by_count": 56 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2996061341", + "doi": "https://doi.org/10.1145/3359786", + "title": "Techniques for interpretable machine learning", + "display_name": "Techniques for interpretable machine learning", + "relevance_score": 2609.185, + "publication_year": 2019, + "publication_date": "2019-12-20", + "ids": { + "openalex": "https://openalex.org/W2996061341", + "doi": "https://doi.org/10.1145/3359786", + "mag": "2996061341" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3359786", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3359786", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5072191151", + "display_name": "Mengnan Du", + "orcid": "https://orcid.org/0000-0002-1614-6069" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Mengnan Du", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5007489034", + "display_name": "Ninghao Liu", + "orcid": "https://orcid.org/0000-0002-9170-2424" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ninghao Liu", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5068477431", + "display_name": "Xia Hu", + "orcid": "https://orcid.org/0000-0003-2234-3226" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xia Hu", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5072191151" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I91045830" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 84.3145, + "has_fulltext": false, + "cited_by_count": 1231, + "citation_normalized_percentile": { + "value": 0.99944809, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "63", + "issue": "1", + "first_page": "68", + "last_page": "77" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9957000017166138, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6890396475791931 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6587886810302734 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.590798556804657 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6890396475791931 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6587886810302734 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.590798556804657 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3359786", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3359786", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 41, + "referenced_works": [ + "https://openalex.org/W1514535095", + "https://openalex.org/W1787224781", + "https://openalex.org/W1932198206", + "https://openalex.org/W1945616565", + "https://openalex.org/W1951216520", + "https://openalex.org/W1996796871", + "https://openalex.org/W2026905436", + "https://openalex.org/W2102636708", + "https://openalex.org/W2123045220", + "https://openalex.org/W2128420091", + "https://openalex.org/W2133564696", + "https://openalex.org/W2169393322", + "https://openalex.org/W2253993278", + "https://openalex.org/W2292919134", + "https://openalex.org/W2295598076", + "https://openalex.org/W2418098761", + "https://openalex.org/W2516809705", + "https://openalex.org/W2559655401", + "https://openalex.org/W2594475271", + "https://openalex.org/W2606462007", + "https://openalex.org/W2612690371", + "https://openalex.org/W2764024122", + "https://openalex.org/W2765204106", + "https://openalex.org/W2785760873", + "https://openalex.org/W2788403449", + "https://openalex.org/W2796096336", + "https://openalex.org/W2809002738", + "https://openalex.org/W2809376420", + "https://openalex.org/W2810511505", + "https://openalex.org/W2907174776", + "https://openalex.org/W2914018283", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963615251", + "https://openalex.org/W3101609372", + "https://openalex.org/W3102476541", + "https://openalex.org/W3128452405", + "https://openalex.org/W4301861531", + "https://openalex.org/W6639927594", + "https://openalex.org/W6740789180", + "https://openalex.org/W6743446608", + "https://openalex.org/W6748634344" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Uncovering": [ + 0 + ], + "the": [ + 1 + ], + "mysterious": [ + 2 + ], + "ways": [ + 3 + ], + "machine": [ + 4 + ], + "learning": [ + 5 + ], + "models": [ + 6 + ], + "make": [ + 7 + ], + "decisions.": [ + 8 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 40 + }, + { + "year": 2025, + "cited_by_count": 162 + }, + { + "year": 2024, + "cited_by_count": 221 + }, + { + "year": 2023, + "cited_by_count": 223 + }, + { + "year": 2022, + "cited_by_count": 221 + }, + { + "year": 2021, + "cited_by_count": 187 + }, + { + "year": 2020, + "cited_by_count": 139 + }, + { + "year": 2019, + "cited_by_count": 34 + }, + { + "year": 2018, + "cited_by_count": 3 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2284729062", + "doi": "https://doi.org/10.1177/1745691617693393", + "title": "Choosing Prediction Over Explanation in Psychology: Lessons From Machine Learning", + "display_name": "Choosing Prediction Over Explanation in Psychology: Lessons From Machine Learning", + "relevance_score": 2585.2322, + "publication_year": 2017, + "publication_date": "2017-08-25", + "ids": { + "openalex": "https://openalex.org/W2284729062", + "doi": "https://doi.org/10.1177/1745691617693393", + "mag": "2284729062", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28841086" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1177/1745691617693393", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1177/1745691617693393", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S27228949", + "display_name": "Perspectives on Psychological Science", + "issn_l": "1745-6916", + "issn": [ + "1745-6916", + "1745-6924" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on Psychological Science", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "datacite", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5089396175", + "display_name": "Tal Yarkoni", + "orcid": "https://orcid.org/0000-0002-6558-5113" + }, + "institutions": [ + { + "id": "https://openalex.org/I86519309", + "display_name": "The University of Texas at Austin", + "ror": "https://ror.org/00hj54h04", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86519309" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Tal Yarkoni", + "raw_affiliation_strings": [ + "University of Texas at Austin" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Texas at Austin", + "institution_ids": [ + "https://openalex.org/I86519309" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5011718072", + "display_name": "Jacob Westfall", + "orcid": "https://orcid.org/0000-0001-7566-3544" + }, + "institutions": [ + { + "id": "https://openalex.org/I86519309", + "display_name": "The University of Texas at Austin", + "ror": "https://ror.org/00hj54h04", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86519309" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jacob Westfall", + "raw_affiliation_strings": [ + "University of Texas at Austin" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Texas at Austin", + "institution_ids": [ + "https://openalex.org/I86519309" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5089396175" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I86519309" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 142.2309, + "has_fulltext": false, + "cited_by_count": 1985, + "citation_normalized_percentile": { + "value": 0.99990782, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "12", + "issue": "6", + "first_page": "1100", + "last_page": "1122" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13283", + "display_name": "Mental Health Research Topics", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/3205", + "display_name": "Experimental and Cognitive Psychology" + }, + "field": { + "id": "https://openalex.org/fields/32", + "display_name": "Psychology" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13283", + "display_name": "Mental Health Research Topics", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/3205", + "display_name": "Experimental and Cognitive Psychology" + }, + "field": { + "id": "https://openalex.org/fields/32", + "display_name": "Psychology" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10315", + "display_name": "Decision-Making and Behavioral Economics", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/1800", + "display_name": "General Decision Sciences" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9757999777793884, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.6357313990592957 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.6339761018753052 + }, + { + "id": "https://openalex.org/keywords/psychological-research", + "display_name": "Psychological research", + "score": 0.623198390007019 + }, + { + "id": "https://openalex.org/keywords/mechanism", + "display_name": "Mechanism (biology)", + "score": 0.5662316679954529 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.5525527000427246 + }, + { + "id": "https://openalex.org/keywords/psychological-science", + "display_name": "Psychological science", + "score": 0.5363956689834595 + }, + { + "id": "https://openalex.org/keywords/cognitive-psychology", + "display_name": "Cognitive psychology", + "score": 0.4831187427043915 + }, + { + "id": "https://openalex.org/keywords/basic-science", + "display_name": "Basic science", + "score": 0.44798544049263 + }, + { + "id": "https://openalex.org/keywords/experimental-psychology", + "display_name": "Experimental psychology", + "score": 0.4426892101764679 + }, + { + "id": "https://openalex.org/keywords/contrast", + "display_name": "Contrast (vision)", + "score": 0.4320238530635834 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.4234526753425598 + }, + { + "id": "https://openalex.org/keywords/cognitive-science", + "display_name": "Cognitive science", + "score": 0.4131108522415161 + }, + { + "id": "https://openalex.org/keywords/epistemology", + "display_name": "Epistemology", + "score": 0.39459776878356934 + }, + { + "id": "https://openalex.org/keywords/social-psychology", + "display_name": "Social psychology", + "score": 0.30900537967681885 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.2976836562156677 + }, + { + "id": "https://openalex.org/keywords/cognition", + "display_name": "Cognition", + "score": 0.22188469767570496 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.21790143847465515 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.6357313990592957 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.6339761018753052 + }, + { + "id": "https://openalex.org/C188255311", + "wikidata": "https://www.wikidata.org/wiki/Q7256388", + "display_name": "Psychological research", + "level": 2, + "score": 0.623198390007019 + }, + { + "id": "https://openalex.org/C89611455", + "wikidata": "https://www.wikidata.org/wiki/Q6804646", + "display_name": "Mechanism (biology)", + "level": 2, + "score": 0.5662316679954529 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.5525527000427246 + }, + { + "id": "https://openalex.org/C2992048920", + "wikidata": "https://www.wikidata.org/wiki/Q7256367", + "display_name": "Psychological science", + "level": 2, + "score": 0.5363956689834595 + }, + { + "id": "https://openalex.org/C180747234", + "wikidata": "https://www.wikidata.org/wiki/Q23373", + "display_name": "Cognitive psychology", + "level": 1, + "score": 0.4831187427043915 + }, + { + "id": "https://openalex.org/C96526673", + "wikidata": "https://www.wikidata.org/wiki/Q4867047", + "display_name": "Basic science", + "level": 2, + "score": 0.44798544049263 + }, + { + "id": "https://openalex.org/C101068787", + "wikidata": "https://www.wikidata.org/wiki/Q475042", + "display_name": "Experimental psychology", + "level": 3, + "score": 0.4426892101764679 + }, + { + "id": "https://openalex.org/C2776502983", + "wikidata": "https://www.wikidata.org/wiki/Q690182", + "display_name": "Contrast (vision)", + "level": 2, + "score": 0.4320238530635834 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.4234526753425598 + }, + { + "id": "https://openalex.org/C188147891", + "wikidata": "https://www.wikidata.org/wiki/Q147638", + "display_name": "Cognitive science", + "level": 1, + "score": 0.4131108522415161 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.39459776878356934 + }, + { + "id": "https://openalex.org/C77805123", + "wikidata": "https://www.wikidata.org/wiki/Q161272", + "display_name": "Social psychology", + "level": 1, + "score": 0.30900537967681885 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.2976836562156677 + }, + { + "id": "https://openalex.org/C169900460", + "wikidata": "https://www.wikidata.org/wiki/Q2200417", + "display_name": "Cognition", + "level": 2, + "score": 0.22188469767570496 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.21790143847465515 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C169760540", + "wikidata": "https://www.wikidata.org/wiki/Q207011", + "display_name": "Neuroscience", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + } + ], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1177/1745691617693393", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1177/1745691617693393", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S27228949", + "display_name": "Perspectives on Psychological Science", + "issn_l": "1745-6916", + "issn": [ + "1745-6916", + "1745-6924" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on Psychological Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:28841086", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28841086", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on psychological science : a journal of the Association for Psychological Science", + "raw_type": null + }, + { + "id": "pmh:oai:figshare.com:article/2441878", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6603289", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6603289", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Perspect Psychol Sci", + "raw_type": "Text" + }, + { + "id": "doi:10.6084/m9.figshare.2441878.v1", + "is_oa": true, + "landing_page_url": "https://doi.org/10.6084/m9.figshare.2441878.v1", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article-journal" + } + ], + "best_oa_location": { + "id": "pmh:oai:figshare.com:article/2441878", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + "sustainable_development_goals": [ + { + "score": 0.4300000071525574, + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [ + { + "id": "https://openalex.org/G6072193115", + "display_name": null, + "funder_award_id": "R01MH096906", + "funder_id": "https://openalex.org/F4320337346", + "funder_display_name": "National Institute of Mental Health" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320337346", + "display_name": "National Institute of Mental Health", + "ror": "https://ror.org/04xeg9z08" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 117, + "referenced_works": [ + "https://openalex.org/W832971097", + "https://openalex.org/W1480376833", + "https://openalex.org/W1529288103", + "https://openalex.org/W1587094587", + "https://openalex.org/W1650809201", + "https://openalex.org/W1678356000", + "https://openalex.org/W1849277567", + "https://openalex.org/W1897139626", + "https://openalex.org/W1928997582", + "https://openalex.org/W1940090105", + "https://openalex.org/W1941783251", + "https://openalex.org/W1965803289", + "https://openalex.org/W1966023201", + "https://openalex.org/W1966797434", + "https://openalex.org/W1972820248", + "https://openalex.org/W1973871257", + "https://openalex.org/W1974829123", + "https://openalex.org/W1975494033", + "https://openalex.org/W1980331490", + "https://openalex.org/W1981457167", + "https://openalex.org/W1985898303", + "https://openalex.org/W1987997380", + "https://openalex.org/W1989462718", + "https://openalex.org/W1993193779", + "https://openalex.org/W1997161938", + "https://openalex.org/W2007178835", + "https://openalex.org/W2007307305", + "https://openalex.org/W2008607322", + "https://openalex.org/W2019448438", + "https://openalex.org/W2020769785", + "https://openalex.org/W2024729467", + "https://openalex.org/W2028171536", + "https://openalex.org/W2028966152", + "https://openalex.org/W2033198212", + "https://openalex.org/W2033872649", + "https://openalex.org/W2036231449", + "https://openalex.org/W2037557484", + "https://openalex.org/W2045573770", + "https://openalex.org/W2046281162", + "https://openalex.org/W2046398551", + "https://openalex.org/W2047104567", + "https://openalex.org/W2054106228", + "https://openalex.org/W2054251181", + "https://openalex.org/W2056418346", + "https://openalex.org/W2059246838", + "https://openalex.org/W2062787021", + "https://openalex.org/W2065692954", + "https://openalex.org/W2075046656", + "https://openalex.org/W2076063813", + "https://openalex.org/W2077088203", + "https://openalex.org/W2080581973", + "https://openalex.org/W2081156723", + "https://openalex.org/W2084341220", + "https://openalex.org/W2091959199", + "https://openalex.org/W2100267603", + "https://openalex.org/W2101645095", + "https://openalex.org/W2106095564", + "https://openalex.org/W2108598243", + "https://openalex.org/W2110223897", + "https://openalex.org/W2111621157", + "https://openalex.org/W2113085067", + "https://openalex.org/W2117350000", + "https://openalex.org/W2119472994", + "https://openalex.org/W2119862467", + "https://openalex.org/W2121880170", + "https://openalex.org/W2122572782", + "https://openalex.org/W2123263696", + "https://openalex.org/W2128431628", + "https://openalex.org/W2132193240", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137351972", + "https://openalex.org/W2137739415", + "https://openalex.org/W2139394602", + "https://openalex.org/W2139852278", + "https://openalex.org/W2141007997", + "https://openalex.org/W2144345994", + "https://openalex.org/W2144710514", + "https://openalex.org/W2150215887", + "https://openalex.org/W2150833190", + "https://openalex.org/W2151554678", + "https://openalex.org/W2153803020", + "https://openalex.org/W2154290668", + "https://openalex.org/W2154776925", + "https://openalex.org/W2155449866", + "https://openalex.org/W2157668596", + "https://openalex.org/W2158196600", + "https://openalex.org/W2158647686", + "https://openalex.org/W2159401492", + "https://openalex.org/W2160455305", + "https://openalex.org/W2161336914", + "https://openalex.org/W2161498332", + "https://openalex.org/W2162148411", + "https://openalex.org/W2166154125", + "https://openalex.org/W2166823678", + "https://openalex.org/W2168979204", + "https://openalex.org/W2169214811", + "https://openalex.org/W2183510664", + "https://openalex.org/W2329873939", + "https://openalex.org/W2333692357", + "https://openalex.org/W2345613236", + "https://openalex.org/W2520456228", + "https://openalex.org/W2781367932", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W2951936974", + "https://openalex.org/W2951964571", + "https://openalex.org/W3121452939", + "https://openalex.org/W3124333825", + "https://openalex.org/W4206439534", + "https://openalex.org/W4239677523", + "https://openalex.org/W4243177274", + "https://openalex.org/W4245648902", + "https://openalex.org/W4250304879", + "https://openalex.org/W4250528183", + "https://openalex.org/W4253418570", + "https://openalex.org/W4298870098" + ], + "related_works": [ + "https://openalex.org/W2967614692", + "https://openalex.org/W3162937339", + "https://openalex.org/W2811220869", + "https://openalex.org/W4390171572", + "https://openalex.org/W4205565064", + "https://openalex.org/W3104930238", + "https://openalex.org/W2792663123", + "https://openalex.org/W2178719713", + "https://openalex.org/W4248643446", + "https://openalex.org/W2330276990" + ], + "abstract_inverted_index": { + "Psychology": [ + 0 + ], + "has": [ + 1, + 59 + ], + "historically": [ + 2 + ], + "been": [ + 3, + 133 + ], + "concerned,": [ + 4 + ], + "first": [ + 5 + ], + "and": [ + 6, + 31, + 40, + 97, + 120, + 125, + 138 + ], + "foremost,": [ + 7 + ], + "with": [ + 8, + 89 + ], + "explaining": [ + 9, + 54 + ], + "the": [ + 10, + 25, + 37, + 55, + 63, + 100, + 117 + ], + "causal": [ + 11 + ], + "mechanisms": [ + 12 + ], + "that": [ + 13, + 43, + 49, + 71, + 79, + 95, + 142, + 150 + ], + "give": [ + 14 + ], + "rise": [ + 15 + ], + "to": [ + 16, + 65, + 85, + 135, + 163 + ], + "behavior.": [ + 17, + 167 + ], + "Randomized,": [ + 18 + ], + "tightly": [ + 19 + ], + "controlled": [ + 20 + ], + "experiments": [ + 21 + ], + "are": [ + 22, + 33 + ], + "enshrined": [ + 23 + ], + "as": [ + 24 + ], + "gold": [ + 26 + ], + "standard": [ + 27 + ], + "of": [ + 28, + 36, + 57, + 62, + 75, + 102, + 116, + 122, + 166 + ], + "psychological": [ + 29, + 76, + 140 + ], + "research,": [ + 30 + ], + "there": [ + 32 + ], + "endless": [ + 34 + ], + "investigations": [ + 35 + ], + "various": [ + 38, + 45 + ], + "mediating": [ + 39 + ], + "moderating": [ + 41 + ], + "variables": [ + 42 + ], + "govern": [ + 44 + ], + "behaviors.": [ + 46 + ], + "We": [ + 47, + 93, + 113, + 148 + ], + "argue": [ + 48 + ], + "psychology's": [ + 50 + ], + "near-total": [ + 51 + ], + "focus": [ + 52, + 153 + ], + "on": [ + 53, + 144, + 154 + ], + "causes": [ + 56 + ], + "behavior": [ + 58 + ], + "led": [ + 60 + ], + "much": [ + 61 + ], + "field": [ + 64, + 101 + ], + "be": [ + 66 + ], + "populated": [ + 67 + ], + "by": [ + 68 + ], + "research": [ + 69, + 141, + 146 + ], + "programs": [ + 70 + ], + "provide": [ + 72 + ], + "intricate": [ + 73 + ], + "theories": [ + 74 + ], + "mechanism": [ + 77 + ], + "but": [ + 78 + ], + "have": [ + 80, + 132 + ], + "little": [ + 81 + ], + "(or": [ + 82 + ], + "unknown)": [ + 83 + ], + "ability": [ + 84 + ], + "predict": [ + 86 + ], + "future": [ + 87 + ], + "behaviors": [ + 88 + ], + "any": [ + 90 + ], + "appreciable": [ + 91 + ], + "accuracy.": [ + 92 + ], + "propose": [ + 94 + ], + "principles": [ + 96 + ], + "techniques": [ + 98 + ], + "from": [ + 99 + ], + "machine": [ + 103, + 123 + ], + "learning": [ + 104, + 124 + ], + "can": [ + 105, + 159 + ], + "help": [ + 106 + ], + "psychology": [ + 107 + ], + "become": [ + 108 + ], + "a": [ + 109 + ], + "more": [ + 110 + ], + "predictive": [ + 111, + 145 + ], + "science.": [ + 112 + ], + "review": [ + 114 + ], + "some": [ + 115 + ], + "fundamental": [ + 118 + ], + "concepts": [ + 119, + 131 + ], + "tools": [ + 121 + ], + "point": [ + 126 + ], + "out": [ + 127 + ], + "examples": [ + 128 + ], + "where": [ + 129 + ], + "these": [ + 130 + ], + "used": [ + 134 + ], + "conduct": [ + 136 + ], + "interesting": [ + 137 + ], + "important": [ + 139 + ], + "focuses": [ + 143 + ], + "questions.": [ + 147 + ], + "suggest": [ + 149 + ], + "an": [ + 151 + ], + "increased": [ + 152 + ], + "prediction,": [ + 155 + ], + "rather": [ + 156 + ], + "than": [ + 157 + ], + "explanation,": [ + 158 + ], + "ultimately": [ + 160 + ], + "lead": [ + 161 + ], + "us": [ + 162 + ], + "greater": [ + 164 + ], + "understanding": [ + 165 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 100 + }, + { + "year": 2025, + "cited_by_count": 252 + }, + { + "year": 2024, + "cited_by_count": 244 + }, + { + "year": 2023, + "cited_by_count": 243 + }, + { + "year": 2022, + "cited_by_count": 252 + }, + { + "year": 2021, + "cited_by_count": 274 + }, + { + "year": 2020, + "cited_by_count": 290 + }, + { + "year": 2019, + "cited_by_count": 180 + }, + { + "year": 2018, + "cited_by_count": 107 + }, + { + "year": 2017, + "cited_by_count": 28 + }, + { + "year": 2016, + "cited_by_count": 13 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2469230926", + "doi": "https://doi.org/10.1109/tsp.2017.2690524", + "title": "Tensor Decomposition for Signal Processing and Machine Learning", + "display_name": "Tensor Decomposition for Signal Processing and Machine Learning", + "relevance_score": 2578.0544, + "publication_year": 2017, + "publication_date": "2017-04-03", + "ids": { + "openalex": "https://openalex.org/W2469230926", + "doi": "https://doi.org/10.1109/tsp.2017.2690524", + "mag": "2469230926" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tsp.2017.2690524", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tsp.2017.2690524", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S168680287", + "display_name": "IEEE Transactions on Signal Processing", + "issn_l": "1053-587X", + "issn": [ + "1053-587X", + "1941-0476" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Signal Processing", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1607.01668", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5050186120", + "display_name": "Nicholas D. Sidiropoulos", + "orcid": "https://orcid.org/0000-0002-3385-7911" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nicholas D. Sidiropoulos", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009006026", + "display_name": "Lieven De Lathauwer", + "orcid": "https://orcid.org/0000-0001-5562-5014" + }, + "institutions": [ + { + "id": "https://openalex.org/I99464096", + "display_name": "KU Leuven", + "ror": "https://ror.org/05f950310", + "country_code": "BE", + "type": "education", + "lineage": [ + "https://openalex.org/I99464096" + ] + } + ], + "countries": [ + "BE" + ], + "is_corresponding": false, + "raw_author_name": "Lieven De Lathauwer", + "raw_affiliation_strings": [ + "KU Leuven, Leuven, Belgium" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "KU Leuven, Leuven, Belgium", + "institution_ids": [ + "https://openalex.org/I99464096" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015075381", + "display_name": "Xiao Fu", + "orcid": "https://orcid.org/0000-0003-4847-9586" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xiao Fu", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002695199", + "display_name": "Kejun Huang", + "orcid": "https://orcid.org/0000-0002-6460-6365" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kejun Huang", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5054849323", + "display_name": "Evangelos E. Papalexakis", + "orcid": "https://orcid.org/0000-0002-3411-8483" + }, + "institutions": [ + { + "id": "https://openalex.org/I103635307", + "display_name": "University of California, Riverside", + "ror": "https://ror.org/03nawhv43", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I103635307" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evangelos E. Papalexakis", + "raw_affiliation_strings": [ + "Department of Computer Science, University of California, Riverside, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of California, Riverside, CA, USA", + "institution_ids": [ + "https://openalex.org/I103635307" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5035605036", + "display_name": "Christos Faloutsos", + "orcid": "https://orcid.org/0000-0003-2996-9790" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christos Faloutsos", + "raw_affiliation_strings": [ + "Department of Computer Science, Carnegie Mellon University, Pittsburgh, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, Carnegie Mellon University, Pittsburgh, PA, USA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5050186120" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I130238516" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 70.6888, + "has_fulltext": true, + "cited_by_count": 1593, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "65", + "issue": "13", + "first_page": "3551", + "last_page": "3582" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12303", + "display_name": "Tensor decomposition and applications", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2605", + "display_name": "Computational Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12303", + "display_name": "Tensor decomposition and applications", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2605", + "display_name": "Computational Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.967199981212616, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11447", + "display_name": "Blind Source Separation Techniques", + "score": 0.925000011920929, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/tensor", + "display_name": "Tensor (intrinsic definition)", + "score": 0.6821173429489136 + }, + { + "id": "https://openalex.org/keywords/identifiability", + "display_name": "Identifiability", + "score": 0.6632334589958191 + }, + { + "id": "https://openalex.org/keywords/multilinear-algebra", + "display_name": "Multilinear algebra", + "score": 0.6560895442962646 + }, + { + "id": "https://openalex.org/keywords/multilinear-map", + "display_name": "Multilinear map", + "score": 0.6472100615501404 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6300849318504333 + }, + { + "id": "https://openalex.org/keywords/matrix-decomposition", + "display_name": "Matrix decomposition", + "score": 0.5968412160873413 + }, + { + "id": "https://openalex.org/keywords/signal-processing", + "display_name": "Signal processing", + "score": 0.5858262777328491 + }, + { + "id": "https://openalex.org/keywords/rank", + "display_name": "Rank (graph theory)", + "score": 0.4913288652896881 + }, + { + "id": "https://openalex.org/keywords/ranging", + "display_name": "Ranging", + "score": 0.4827932119369507 + }, + { + "id": "https://openalex.org/keywords/subspace-topology", + "display_name": "Subspace topology", + "score": 0.46624651551246643 + }, + { + "id": "https://openalex.org/keywords/statistical-signal-processing", + "display_name": "Statistical signal processing", + "score": 0.45162856578826904 + }, + { + "id": "https://openalex.org/keywords/analytics", + "display_name": "Analytics", + "score": 0.4217430055141449 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.41538673639297485 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.38948237895965576 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3768589496612549 + }, + { + "id": "https://openalex.org/keywords/algebra-over-a-field", + "display_name": "Algebra over a field", + "score": 0.29181069135665894 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.2590547800064087 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2379186749458313 + }, + { + "id": "https://openalex.org/keywords/digital-signal-processing", + "display_name": "Digital signal processing", + "score": 0.20643731951713562 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C155281189", + "wikidata": "https://www.wikidata.org/wiki/Q3518150", + "display_name": "Tensor (intrinsic definition)", + "level": 2, + "score": 0.6821173429489136 + }, + { + "id": "https://openalex.org/C122770356", + "wikidata": "https://www.wikidata.org/wiki/Q1656753", + "display_name": "Identifiability", + "level": 2, + "score": 0.6632334589958191 + }, + { + "id": "https://openalex.org/C60321788", + "wikidata": "https://www.wikidata.org/wiki/Q1197190", + "display_name": "Multilinear algebra", + "level": 5, + "score": 0.6560895442962646 + }, + { + "id": "https://openalex.org/C84392682", + "wikidata": "https://www.wikidata.org/wiki/Q1952404", + "display_name": "Multilinear map", + "level": 2, + "score": 0.6472100615501404 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6300849318504333 + }, + { + "id": "https://openalex.org/C42355184", + "wikidata": "https://www.wikidata.org/wiki/Q1361088", + "display_name": "Matrix decomposition", + "level": 3, + "score": 0.5968412160873413 + }, + { + "id": "https://openalex.org/C104267543", + "wikidata": "https://www.wikidata.org/wiki/Q208163", + "display_name": "Signal processing", + "level": 3, + "score": 0.5858262777328491 + }, + { + "id": "https://openalex.org/C164226766", + "wikidata": "https://www.wikidata.org/wiki/Q7293202", + "display_name": "Rank (graph theory)", + "level": 2, + "score": 0.4913288652896881 + }, + { + "id": "https://openalex.org/C115051666", + "wikidata": "https://www.wikidata.org/wiki/Q6522493", + "display_name": "Ranging", + "level": 2, + "score": 0.4827932119369507 + }, + { + "id": "https://openalex.org/C32834561", + "wikidata": "https://www.wikidata.org/wiki/Q660730", + "display_name": "Subspace topology", + "level": 2, + "score": 0.46624651551246643 + }, + { + "id": "https://openalex.org/C105125183", + "wikidata": "https://www.wikidata.org/wiki/Q208163", + "display_name": "Statistical signal processing", + "level": 4, + "score": 0.45162856578826904 + }, + { + "id": "https://openalex.org/C79158427", + "wikidata": "https://www.wikidata.org/wiki/Q485396", + "display_name": "Analytics", + "level": 2, + "score": 0.4217430055141449 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.41538673639297485 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.38948237895965576 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3768589496612549 + }, + { + "id": "https://openalex.org/C136119220", + "wikidata": "https://www.wikidata.org/wiki/Q1000660", + "display_name": "Algebra over a field", + "level": 2, + "score": 0.29181069135665894 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.2590547800064087 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2379186749458313 + }, + { + "id": "https://openalex.org/C84462506", + "wikidata": "https://www.wikidata.org/wiki/Q173142", + "display_name": "Digital signal processing", + "level": 2, + "score": 0.20643731951713562 + }, + { + "id": "https://openalex.org/C114614502", + "wikidata": "https://www.wikidata.org/wiki/Q76592", + "display_name": "Combinatorics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138354692", + "wikidata": "https://www.wikidata.org/wiki/Q1231309", + "display_name": "Division algebra", + "level": 4, + "score": 0.0 + }, + { + "id": "https://openalex.org/C169171071", + "wikidata": "https://www.wikidata.org/wiki/Q5449241", + "display_name": "Filtered algebra", + "level": 3, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C158693339", + "wikidata": "https://www.wikidata.org/wiki/Q190524", + "display_name": "Eigenvalues and eigenvectors", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C9390403", + "wikidata": "https://www.wikidata.org/wiki/Q3966", + "display_name": "Computer hardware", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1109/tsp.2017.2690524", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tsp.2017.2690524", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S168680287", + "display_name": "IEEE Transactions on Signal Processing", + "issn_l": "1053-587X", + "issn": [ + "1053-587X", + "1941-0476" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Signal Processing", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1607.01668", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1607.01668", + "pdf_url": "https://arxiv.org/pdf/1607.01668", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:lirias2repo.kuleuven.be:123456789/577591", + "is_oa": true, + "landing_page_url": "https://lirias.kuleuven.be/bitstream/123456789/577591/3/sidiropoulos2016tensor.pdf", + "pdf_url": "https://lirias.kuleuven.be/retrieve/eb8ab0fd-a4ff-419b-9ba1-24b97d90fb22", + "source": { + "id": "https://openalex.org/S4306401954", + "display_name": "Lirias (KU Leuven)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I99464096", + "host_organization_name": "KU Leuven", + "host_organization_lineage": [ + "https://openalex.org/I99464096" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "IEEE Transactions on Signal Processing, vol. 65 (13), (3551-3582)", + "raw_type": "info:eu-repo/semantics/publishedVersion" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1607.01668", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1607.01668", + "pdf_url": "https://arxiv.org/pdf/1607.01668", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "score": 0.4300000071525574, + "display_name": "Industry, innovation and infrastructure", + "id": "https://metadata.un.org/sdg/9" + } + ], + "awards": [ + { + "id": "https://openalex.org/G1371775621", + "display_name": null, + "funder_award_id": "C16/15/059", + "funder_id": "https://openalex.org/F4320322308", + "funder_display_name": "KU Leuven" + }, + { + "id": "https://openalex.org/G1676009052", + "display_name": null, + "funder_award_id": "CoE EF/05/006", + "funder_id": "https://openalex.org/F4320322308", + "funder_display_name": "KU Leuven" + }, + { + "id": "https://openalex.org/G2832174611", + "display_name": null, + "funder_award_id": "IIS-1247632", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4104599821", + "display_name": null, + "funder_award_id": "FP7/2007-2013", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4967211227", + "display_name": "BIGDATA: Mid-Scale: DA: Collaborative Research: Big Tensor Mining: Theory, Scalable Algorithms and Applications", + "funder_award_id": "1247489", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G5519121898", + "display_name": "BIGDATA: Mid-Scale: DA: Collaborative Research: Big Tensor Mining: Theory, Scalable Algorithms and Applications", + "funder_award_id": "1247632", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G5946195615", + "display_name": null, + "funder_award_id": "IIS-1447788", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6685711771", + "display_name": null, + "funder_award_id": "IIS-1247489", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6734414162", + "display_name": null, + "funder_award_id": "IUAP P7", + "funder_id": "https://openalex.org/F4320321454", + "funder_display_name": "Belgian Federal Science Policy Office" + }, + { + "id": "https://openalex.org/G8796945004", + "display_name": null, + "funder_award_id": "FP7/2007-2013", + "funder_id": "https://openalex.org/F4320334960", + "funder_display_name": "Seventh Framework Programme" + }, + { + "id": "https://openalex.org/G8907058826", + "display_name": null, + "funder_award_id": "1447788", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320321454", + "display_name": "Belgian Federal Science Policy Office", + "ror": "https://ror.org/01fapfv42" + }, + { + "id": "https://openalex.org/F4320322308", + "display_name": "KU Leuven", + "ror": "https://ror.org/05f950310" + }, + { + "id": "https://openalex.org/F4320334678", + "display_name": "European Research Council", + "ror": "https://ror.org/0472cxd90" + }, + { + "id": "https://openalex.org/F4320334960", + "display_name": "Seventh Framework Programme", + "ror": "https://ror.org/00k4n6c32" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 174, + "referenced_works": [ + "https://openalex.org/W40848148", + "https://openalex.org/W49160414", + "https://openalex.org/W50417968", + "https://openalex.org/W94565353", + "https://openalex.org/W104065991", + "https://openalex.org/W111803032", + "https://openalex.org/W182499956", + "https://openalex.org/W227277429", + "https://openalex.org/W303777154", + "https://openalex.org/W343638764", + "https://openalex.org/W1500188831", + "https://openalex.org/W1511885491", + "https://openalex.org/W1525270046", + "https://openalex.org/W1539811621", + "https://openalex.org/W1562564874", + "https://openalex.org/W1590929617", + "https://openalex.org/W1632866817", + "https://openalex.org/W1682665945", + "https://openalex.org/W1755563775", + "https://openalex.org/W1850275953", + "https://openalex.org/W1852495720", + "https://openalex.org/W1870083876", + "https://openalex.org/W1964650132", + "https://openalex.org/W1965392255", + "https://openalex.org/W1966845080", + "https://openalex.org/W1967077133", + "https://openalex.org/W1969082792", + "https://openalex.org/W1970195563", + "https://openalex.org/W1973246170", + "https://openalex.org/W1974785908", + "https://openalex.org/W1978259121", + "https://openalex.org/W1980906180", + "https://openalex.org/W1982725637", + "https://openalex.org/W1989811026", + "https://openalex.org/W1993482030", + "https://openalex.org/W2000045479", + "https://openalex.org/W2000215628", + "https://openalex.org/W2008560788", + "https://openalex.org/W2008751154", + "https://openalex.org/W2008972618", + "https://openalex.org/W2009235538", + "https://openalex.org/W2009685860", + "https://openalex.org/W2010417247", + "https://openalex.org/W2011179711", + "https://openalex.org/W2013912476", + "https://openalex.org/W2014565165", + "https://openalex.org/W2014617517", + "https://openalex.org/W2017948584", + "https://openalex.org/W2018282388", + "https://openalex.org/W2019219605", + "https://openalex.org/W2024165284", + "https://openalex.org/W2024166170", + "https://openalex.org/W2027559251", + "https://openalex.org/W2030790903", + "https://openalex.org/W2033332370", + "https://openalex.org/W2033393326", + "https://openalex.org/W2038920431", + "https://openalex.org/W2042901969", + "https://openalex.org/W2043034352", + "https://openalex.org/W2044777402", + "https://openalex.org/W2044901395", + "https://openalex.org/W2047680880", + "https://openalex.org/W2049063033", + "https://openalex.org/W2049878767", + "https://openalex.org/W2050968963", + "https://openalex.org/W2057503509", + "https://openalex.org/W2058236771", + "https://openalex.org/W2066392792", + "https://openalex.org/W2068425868", + "https://openalex.org/W2070013413", + "https://openalex.org/W2070135644", + "https://openalex.org/W2072139290", + "https://openalex.org/W2072509929", + "https://openalex.org/W2076214866", + "https://openalex.org/W2076603483", + "https://openalex.org/W2078314058", + "https://openalex.org/W2078465266", + "https://openalex.org/W2079705627", + "https://openalex.org/W2081106919", + "https://openalex.org/W2081504597", + "https://openalex.org/W2084313768", + "https://openalex.org/W2086261631", + "https://openalex.org/W2090705694", + "https://openalex.org/W2098171862", + "https://openalex.org/W2101641981", + "https://openalex.org/W2102892751", + "https://openalex.org/W2102937240", + "https://openalex.org/W2103392911", + "https://openalex.org/W2103537693", + "https://openalex.org/W2105186495", + "https://openalex.org/W2105724942", + "https://openalex.org/W2106221905", + "https://openalex.org/W2108138101", + "https://openalex.org/W2110322013", + "https://openalex.org/W2111885075", + "https://openalex.org/W2112487361", + "https://openalex.org/W2113055885", + "https://openalex.org/W2118550318", + "https://openalex.org/W2119412403", + "https://openalex.org/W2119741678", + "https://openalex.org/W2120186527", + "https://openalex.org/W2121739212", + "https://openalex.org/W2128203095", + "https://openalex.org/W2129914124", + "https://openalex.org/W2130026668", + "https://openalex.org/W2130629120", + "https://openalex.org/W2131746221", + "https://openalex.org/W2132639093", + "https://openalex.org/W2136023375", + "https://openalex.org/W2136559714", + "https://openalex.org/W2138996475", + "https://openalex.org/W2140862024", + "https://openalex.org/W2141280932", + "https://openalex.org/W2142486198", + "https://openalex.org/W2142638745", + "https://openalex.org/W2144070955", + "https://openalex.org/W2148507357", + "https://openalex.org/W2150059498", + "https://openalex.org/W2150204240", + "https://openalex.org/W2150273584", + "https://openalex.org/W2151139595", + "https://openalex.org/W2152044198", + "https://openalex.org/W2157615762", + "https://openalex.org/W2158218920", + "https://openalex.org/W2158670239", + "https://openalex.org/W2164278908", + "https://openalex.org/W2167083368", + "https://openalex.org/W2167430018", + "https://openalex.org/W2170668800", + "https://openalex.org/W2172195418", + "https://openalex.org/W2181680249", + "https://openalex.org/W2191558661", + "https://openalex.org/W2195165862", + "https://openalex.org/W2237941226", + "https://openalex.org/W2258054274", + "https://openalex.org/W2264065105", + "https://openalex.org/W2282347063", + "https://openalex.org/W2294755503", + "https://openalex.org/W2295739661", + "https://openalex.org/W2296319761", + "https://openalex.org/W2298042388", + "https://openalex.org/W2322520062", + "https://openalex.org/W2328976642", + "https://openalex.org/W2396803706", + "https://openalex.org/W2404578340", + "https://openalex.org/W2490308495", + "https://openalex.org/W2528907418", + "https://openalex.org/W2592422147", + "https://openalex.org/W2595142274", + "https://openalex.org/W2614404377", + "https://openalex.org/W2949940479", + "https://openalex.org/W2964313686", + "https://openalex.org/W3011953977", + "https://openalex.org/W3098973674", + "https://openalex.org/W3104141160", + "https://openalex.org/W3104226882", + "https://openalex.org/W3118552534", + "https://openalex.org/W4236462140", + "https://openalex.org/W4242209908", + "https://openalex.org/W4244393449", + "https://openalex.org/W4250589301", + "https://openalex.org/W4251986282", + "https://openalex.org/W4285719527", + "https://openalex.org/W4292363360", + "https://openalex.org/W4295910354", + "https://openalex.org/W4301014524", + "https://openalex.org/W6603861661", + "https://openalex.org/W6636705969", + "https://openalex.org/W6676039487", + "https://openalex.org/W6676820125", + "https://openalex.org/W6681015807", + "https://openalex.org/W6681780477", + "https://openalex.org/W6687535707", + "https://openalex.org/W6787650870" + ], + "related_works": [ + "https://openalex.org/W2071105597", + "https://openalex.org/W2242909499", + "https://openalex.org/W2405717268", + "https://openalex.org/W2946637708", + "https://openalex.org/W4235893778", + "https://openalex.org/W2100779717", + "https://openalex.org/W2901391673", + "https://openalex.org/W4376274937", + "https://openalex.org/W3189506985", + "https://openalex.org/W3022422766" + ], + "abstract_inverted_index": { + "Tensors": [ + 0, + 33 + ], + "or": [ + 1, + 8 + ], + "multiway": [ + 2 + ], + "arrays": [ + 3 + ], + "are": [ + 4, + 23 + ], + "functions": [ + 5, + 24 + ], + "of": [ + 6, + 25, + 63, + 112, + 174, + 178 + ], + "three": [ + 7 + ], + "more": [ + 9 + ], + "indices": [ + 10, + 27 + ], + "(i,": [ + 11 + ], + "j,": [ + 12 + ], + "k,": [ + 13 + ], + ".": [ + 14, + 15, + 16 + ], + ")-similar": [ + 17 + ], + "to": [ + 18, + 76, + 107, + 130, + 184, + 196 + ], + "matrices": [ + 19 + ], + "(two-way": [ + 20 + ], + "arrays),": [ + 21 + ], + "which": [ + 22 + ], + "two": [ + 26 + ], + "(r,": [ + 28 + ], + "c)": [ + 29 + ], + "for": [ + 30, + 82 + ], + "(row,": [ + 31 + ], + "column).": [ + 32 + ], + "have": [ + 34, + 50 + ], + "a": [ + 35, + 41, + 78 + ], + "rich": [ + 36 + ], + "history,": [ + 37 + ], + "stretching": [ + 38 + ], + "over": [ + 39 + ], + "almost": [ + 40 + ], + "century,": [ + 42 + ], + "and": [ + 43, + 57, + 69, + 84, + 90, + 100, + 114, + 128, + 139, + 158, + 165, + 168, + 190, + 200, + 204 + ], + "touching": [ + 44 + ], + "upon": [ + 45 + ], + "numerous": [ + 46 + ], + "disciplines;": [ + 47 + ], + "but": [ + 48, + 148 + ], + "they": [ + 49 + ], + "only": [ + 51 + ], + "recently": [ + 52 + ], + "become": [ + 53 + ], + "ubiquitous": [ + 54 + ], + "in": [ + 55, + 87, + 125, + 143 + ], + "signal": [ + 56, + 64 + ], + "data": [ + 58, + 67 + ], + "analytics": [ + 59 + ], + "at": [ + 60 + ], + "the": [ + 61 + ], + "confluence": [ + 62 + ], + "processing,": [ + 65 + ], + "statistics,": [ + 66 + ], + "mining,": [ + 68 + ], + "machine": [ + 70 + ], + "learning.": [ + 71, + 207 + ], + "This": [ + 72 + ], + "overview": [ + 73 + ], + "article": [ + 74 + ], + "aims": [ + 75 + ], + "provide": [ + 77 + ], + "good": [ + 79, + 172 + ], + "starting": [ + 80 + ], + "point": [ + 81 + ], + "researchers": [ + 83 + ], + "practitioners": [ + 85 + ], + "interested": [ + 86 + ], + "learning": [ + 88 + ], + "about": [ + 89 + ], + "working": [ + 91 + ], + "with": [ + 92 + ], + "tensors.": [ + 93 + ], + "As": [ + 94 + ], + "such,": [ + 95 + ], + "it": [ + 96 + ], + "focuses": [ + 97 + ], + "on": [ + 98 + ], + "fundamentals": [ + 99 + ], + "motivation": [ + 101 + ], + "(using": [ + 102 + ], + "various": [ + 103 + ], + "application": [ + 104 + ], + "examples),": [ + 105 + ], + "aiming": [ + 106 + ], + "strike": [ + 108 + ], + "an": [ + 109 + ], + "appropriate": [ + 110 + ], + "balance": [ + 111 + ], + "breadth": [ + 113 + ], + "depth": [ + 115 + ], + "that": [ + 116 + ], + "will": [ + 117 + ], + "enable": [ + 118 + ], + "someone": [ + 119 + ], + "having": [ + 120 + ], + "taken": [ + 121 + ], + "first": [ + 122 + ], + "graduate": [ + 123 + ], + "courses": [ + 124 + ], + "matrix": [ + 126 + ], + "algebra": [ + 127 + ], + "probability": [ + 129 + ], + "get": [ + 131 + ], + "started": [ + 132 + ], + "doing": [ + 133 + ], + "research": [ + 134 + ], + "and/or": [ + 135 + ], + "developing": [ + 136 + ], + "tensor": [ + 137, + 156, + 162 + ], + "algorithms": [ + 138, + 179 + ], + "software.": [ + 140 + ], + "Some": [ + 141 + ], + "background": [ + 142 + ], + "applied": [ + 144 + ], + "optimization": [ + 145, + 183 + ], + "is": [ + 146 + ], + "useful": [ + 147 + ], + "not": [ + 149 + ], + "strictly": [ + 150 + ], + "required.": [ + 151 + ], + "The": [ + 152 + ], + "material": [ + 153 + ], + "covered": [ + 154 + ], + "includes": [ + 155 + ], + "rank": [ + 157, + 159 + ], + "decomposition;": [ + 160 + ], + "basic": [ + 161 + ], + "factorization": [ + 163 + ], + "models": [ + 164 + ], + "their": [ + 166 + ], + "relationships": [ + 167 + ], + "properties": [ + 169 + ], + "(including": [ + 170 + ], + "fairly": [ + 171 + ], + "coverage": [ + 173, + 177 + ], + "identifiability);": [ + 175 + ], + "broad": [ + 176 + ], + "ranging": [ + 180, + 192 + ], + "from": [ + 181, + 193 + ], + "alternating": [ + 182 + ], + "stochastic": [ + 185 + ], + "gradient;": [ + 186 + ], + "statistical": [ + 187 + ], + "performance": [ + 188 + ], + "analysis;": [ + 189 + ], + "applications": [ + 191 + ], + "source": [ + 194 + ], + "separation": [ + 195 + ], + "collaborative": [ + 197 + ], + "filtering,": [ + 198 + ], + "mixture": [ + 199 + ], + "topic": [ + 201 + ], + "modeling,": [ + 202 + ], + "classification,": [ + 203 + ], + "multilinear": [ + 205 + ], + "subspace": [ + 206 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 51 + }, + { + "year": 2025, + "cited_by_count": 180 + }, + { + "year": 2024, + "cited_by_count": 149 + }, + { + "year": 2023, + "cited_by_count": 151 + }, + { + "year": 2022, + "cited_by_count": 216 + }, + { + "year": 2021, + "cited_by_count": 245 + }, + { + "year": 2020, + "cited_by_count": 223 + }, + { + "year": 2019, + "cited_by_count": 200 + }, + { + "year": 2018, + "cited_by_count": 129 + }, + { + "year": 2017, + "cited_by_count": 43 + }, + { + "year": 2016, + "cited_by_count": 6 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2588978745", + "doi": "https://doi.org/10.1148/rg.2017160130", + "title": "Machine Learning for Medical Imaging", + "display_name": "Machine Learning for Medical Imaging", + "relevance_score": 2574.9812, + "publication_year": 2017, + "publication_date": "2017-02-17", + "ids": { + "openalex": "https://openalex.org/W2588978745", + "doi": "https://doi.org/10.1148/rg.2017160130", + "mag": "2588978745", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28212054" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1148/rg.2017160130", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1148/rg.2017160130", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S26381749", + "display_name": "Radiographics", + "issn_l": "0271-5333", + "issn": [ + "0271-5333", + "1527-1323" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315931", + "host_organization_name": "Radiological Society of North America", + "host_organization_lineage": [ + "https://openalex.org/P4310315931" + ], + "host_organization_lineage_names": [ + "Radiological Society of North America" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "RadioGraphics", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5008832314", + "display_name": "Bradley J. Erickson", + "orcid": "https://orcid.org/0000-0001-7926-6095" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Bradley J. Erickson", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5053303391", + "display_name": "Panagiotis Korfiatis", + "orcid": "https://orcid.org/0000-0003-2516-1751" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Panagiotis Korfiatis", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5052077725", + "display_name": "Zeynettin Akkus", + "orcid": "https://orcid.org/0000-0003-3920-1515" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zeynettin Akkus", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016336723", + "display_name": "Timothy L. Kline", + "orcid": "https://orcid.org/0000-0002-7917-9853" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Timothy L. Kline", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5008832314" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1330342723" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 85.7828, + "has_fulltext": false, + "cited_by_count": 1624, + "citation_normalized_percentile": { + "value": 0.99931379, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "37", + "issue": "2", + "first_page": "505", + "last_page": "515" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12422", + "display_name": "Radiomics and Machine Learning in Medical Imaging", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11775", + "display_name": "COVID-19 diagnosis using AI", + "score": 0.994700014591217, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7838993072509766 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7787308096885681 + }, + { + "id": "https://openalex.org/keywords/medical-diagnosis", + "display_name": "Medical diagnosis", + "score": 0.6961835026741028 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5870267152786255 + }, + { + "id": "https://openalex.org/keywords/medical-imaging", + "display_name": "Medical imaging", + "score": 0.5376978516578674 + }, + { + "id": "https://openalex.org/keywords/rendering", + "display_name": "Rendering (computer graphics)", + "score": 0.5225207805633545 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.4827798902988434 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.46324601769447327 + }, + { + "id": "https://openalex.org/keywords/identification", + "display_name": "Identification (biology)", + "score": 0.4527209401130676 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.4446392059326172 + }, + { + "id": "https://openalex.org/keywords/metric", + "display_name": "Metric (unit)", + "score": 0.4362000823020935 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2772611975669861 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7838993072509766 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7787308096885681 + }, + { + "id": "https://openalex.org/C534262118", + "wikidata": "https://www.wikidata.org/wiki/Q177719", + "display_name": "Medical diagnosis", + "level": 2, + "score": 0.6961835026741028 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5870267152786255 + }, + { + "id": "https://openalex.org/C31601959", + "wikidata": "https://www.wikidata.org/wiki/Q931309", + "display_name": "Medical imaging", + "level": 2, + "score": 0.5376978516578674 + }, + { + "id": "https://openalex.org/C205711294", + "wikidata": "https://www.wikidata.org/wiki/Q176953", + "display_name": "Rendering (computer graphics)", + "level": 2, + "score": 0.5225207805633545 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.4827798902988434 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.46324601769447327 + }, + { + "id": "https://openalex.org/C116834253", + "wikidata": "https://www.wikidata.org/wiki/Q2039217", + "display_name": "Identification (biology)", + "level": 2, + "score": 0.4527209401130676 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.4446392059326172 + }, + { + "id": "https://openalex.org/C176217482", + "wikidata": "https://www.wikidata.org/wiki/Q860554", + "display_name": "Metric (unit)", + "level": 2, + "score": 0.4362000823020935 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2772611975669861 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C21547014", + "wikidata": "https://www.wikidata.org/wiki/Q1423657", + "display_name": "Operations management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1148/rg.2017160130", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1148/rg.2017160130", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S26381749", + "display_name": "Radiographics", + "issn_l": "0271-5333", + "issn": [ + "0271-5333", + "1527-1323" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315931", + "host_organization_name": "Radiological Society of North America", + "host_organization_lineage": [ + "https://openalex.org/P4310315931" + ], + "host_organization_lineage_names": [ + "Radiological Society of North America" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "RadioGraphics", + "raw_type": "journal-article" + }, + { + "id": "pmid:28212054", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28212054", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Radiographics : a review publication of the Radiological Society of North America, Inc", + "raw_type": null + }, + { + "id": "pmh:oai:europepmc.org:4343850", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5375621", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.49000000953674316, + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [ + { + "id": "https://openalex.org/G392204494", + "display_name": null, + "funder_award_id": "DK90728", + "funder_id": "https://openalex.org/F4320337351", + "funder_display_name": "National Cancer Institute" + }, + { + "id": "https://openalex.org/G7637728122", + "display_name": null, + "funder_award_id": "206g16a", + "funder_id": "https://openalex.org/F4320306478", + "funder_display_name": "PKD Foundation" + }, + { + "id": "https://openalex.org/G7783623847", + "display_name": null, + "funder_award_id": "CA160045", + "funder_id": "https://openalex.org/F4320337351", + "funder_display_name": "National Cancer Institute" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306478", + "display_name": "PKD Foundation", + "ror": "https://ror.org/05g0xkn45" + }, + { + "id": "https://openalex.org/F4320337351", + "display_name": "National Cancer Institute", + "ror": "https://ror.org/040gcmg81" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 59, + "referenced_works": [ + "https://openalex.org/W56743589", + "https://openalex.org/W1481460540", + "https://openalex.org/W1485026097", + "https://openalex.org/W1539741229", + "https://openalex.org/W1563088657", + "https://openalex.org/W1597405158", + "https://openalex.org/W1632778076", + "https://openalex.org/W1945544474", + "https://openalex.org/W1971022913", + "https://openalex.org/W1972070393", + "https://openalex.org/W1977513632", + "https://openalex.org/W1981552604", + "https://openalex.org/W1984992673", + "https://openalex.org/W1990368529", + "https://openalex.org/W1995450389", + "https://openalex.org/W1998871699", + "https://openalex.org/W2014711341", + "https://openalex.org/W2028053538", + "https://openalex.org/W2032026767", + "https://openalex.org/W2050997943", + "https://openalex.org/W2052604140", + "https://openalex.org/W2062227835", + "https://openalex.org/W2067191022", + "https://openalex.org/W2080915836", + "https://openalex.org/W2083780116", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096798358", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100736366", + "https://openalex.org/W2103868202", + "https://openalex.org/W2112525988", + "https://openalex.org/W2112796928", + "https://openalex.org/W2117539524", + "https://openalex.org/W2119387367", + "https://openalex.org/W2120111102", + "https://openalex.org/W2122111042", + "https://openalex.org/W2123498585", + "https://openalex.org/W2130623086", + "https://openalex.org/W2137983211", + "https://openalex.org/W2142730785", + "https://openalex.org/W2144412017", + "https://openalex.org/W2145343783", + "https://openalex.org/W2165428595", + "https://openalex.org/W2168217710", + "https://openalex.org/W2248644291", + "https://openalex.org/W2271840356", + "https://openalex.org/W2573231840", + "https://openalex.org/W2604272474", + "https://openalex.org/W2911964244", + "https://openalex.org/W3017143921", + "https://openalex.org/W3022861191", + "https://openalex.org/W3104887532", + "https://openalex.org/W4212883601", + "https://openalex.org/W4234556776", + "https://openalex.org/W4236137412", + "https://openalex.org/W4246484440", + "https://openalex.org/W4299689471", + "https://openalex.org/W6636708973", + "https://openalex.org/W6674914833" + ], + "related_works": [ + "https://openalex.org/W4249377076", + "https://openalex.org/W4210389441", + "https://openalex.org/W4375867731", + "https://openalex.org/W2395241803", + "https://openalex.org/W2003211637", + "https://openalex.org/W2021488205", + "https://openalex.org/W3024479225", + "https://openalex.org/W3171371563", + "https://openalex.org/W2995680918", + "https://openalex.org/W3003847115" + ], + "abstract_inverted_index": { + "RSNA,": [ + 0 + ], + "2017.": [ + 1 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 52 + }, + { + "year": 2025, + "cited_by_count": 189 + }, + { + "year": 2024, + "cited_by_count": 209 + }, + { + "year": 2023, + "cited_by_count": 278 + }, + { + "year": 2022, + "cited_by_count": 212 + }, + { + "year": 2021, + "cited_by_count": 266 + }, + { + "year": 2020, + "cited_by_count": 186 + }, + { + "year": 2019, + "cited_by_count": 140 + }, + { + "year": 2018, + "cited_by_count": 63 + }, + { + "year": 2017, + "cited_by_count": 23 + }, + { + "year": 2015, + "cited_by_count": 2 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1985987493", + "doi": "https://doi.org/10.1109/sp.2010.25", + "title": "Outside the Closed World: On Using Machine Learning for Network Intrusion Detection", + "display_name": "Outside the Closed World: On Using Machine Learning for Network Intrusion Detection", + "relevance_score": 2572.306, + "publication_year": 2010, + "publication_date": "2010-01-01", + "ids": { + "openalex": "https://openalex.org/W1985987493", + "doi": "https://doi.org/10.1109/sp.2010.25", + "mag": "1985987493" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2010.25", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2010.25", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2010 IEEE Symposium on Security and Privacy", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5015612893", + "display_name": "Robin Sommer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1297971548", + "display_name": "International Computer Science Institute", + "ror": "https://ror.org/01ewh7m12", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I1297971548" + ] + }, + { + "id": "https://openalex.org/I148283060", + "display_name": "Lawrence Berkeley National Laboratory", + "ror": "https://ror.org/02jbv0t02", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I148283060", + "https://openalex.org/I39565521" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Robin Sommer", + "raw_affiliation_strings": [ + "Lawrence Berkeley National Laboratory, International Computer Science Institute, USA", + "Int. Comput. Sci. Inst., Lawrence Berkeley Nat. Lab., Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Lawrence Berkeley National Laboratory, International Computer Science Institute, USA", + "institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I148283060" + ] + }, + { + "raw_affiliation_string": "Int. Comput. Sci. Inst., Lawrence Berkeley Nat. Lab., Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I148283060" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5002219113", + "display_name": "Vern Paxson", + "orcid": "https://orcid.org/0009-0005-2673-543X" + }, + "institutions": [ + { + "id": "https://openalex.org/I1297971548", + "display_name": "International Computer Science Institute", + "ror": "https://ror.org/01ewh7m12", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I1297971548" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vern Paxson", + "raw_affiliation_strings": [ + "International Computer Science Institute, University of California, Berkeley, USA", + "Int. Comput. Sci. Inst., Univ. of California, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "International Computer Science Institute, University of California, Berkeley, USA", + "institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Int. Comput. Sci. Inst., Univ. of California, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5015612893" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I148283060" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 53.6749, + "has_fulltext": false, + "cited_by_count": 1827, + "citation_normalized_percentile": { + "value": 0.99950798, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "305", + "last_page": "316" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11598", + "display_name": "Internet Traffic Analysis and Secure E-voting", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/intrusion-detection-system", + "display_name": "Intrusion detection system", + "score": 0.8441348075866699 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7383659482002258 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6644471883773804 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6305571794509888 + }, + { + "id": "https://openalex.org/keywords/anomaly-detection", + "display_name": "Anomaly detection", + "score": 0.6277502179145813 + }, + { + "id": "https://openalex.org/keywords/anomaly-based-intrusion-detection-system", + "display_name": "Anomaly-based intrusion detection system", + "score": 0.5756117701530457 + }, + { + "id": "https://openalex.org/keywords/task", + "display_name": "Task (project management)", + "score": 0.4769274592399597 + }, + { + "id": "https://openalex.org/keywords/intrusion", + "display_name": "Intrusion", + "score": 0.4673961102962494 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4657863676548004 + }, + { + "id": "https://openalex.org/keywords/intrusion-prevention-system", + "display_name": "Intrusion prevention system", + "score": 0.45944297313690186 + }, + { + "id": "https://openalex.org/keywords/learning-network", + "display_name": "Learning network", + "score": 0.4306923449039459 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.339436411857605 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.18274590373039246 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C35525427", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion detection system", + "level": 2, + "score": 0.8441348075866699 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7383659482002258 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6644471883773804 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6305571794509888 + }, + { + "id": "https://openalex.org/C739882", + "wikidata": "https://www.wikidata.org/wiki/Q3560506", + "display_name": "Anomaly detection", + "level": 2, + "score": 0.6277502179145813 + }, + { + "id": "https://openalex.org/C137524506", + "wikidata": "https://www.wikidata.org/wiki/Q2247688", + "display_name": "Anomaly-based intrusion detection system", + "level": 3, + "score": 0.5756117701530457 + }, + { + "id": "https://openalex.org/C2780451532", + "wikidata": "https://www.wikidata.org/wiki/Q759676", + "display_name": "Task (project management)", + "level": 2, + "score": 0.4769274592399597 + }, + { + "id": "https://openalex.org/C158251709", + "wikidata": "https://www.wikidata.org/wiki/Q354025", + "display_name": "Intrusion", + "level": 2, + "score": 0.4673961102962494 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4657863676548004 + }, + { + "id": "https://openalex.org/C27061796", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion prevention system", + "level": 3, + "score": 0.45944297313690186 + }, + { + "id": "https://openalex.org/C2987015589", + "wikidata": "https://www.wikidata.org/wiki/Q1040098", + "display_name": "Learning network", + "level": 2, + "score": 0.4306923449039459 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.339436411857605 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.18274590373039246 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17409809", + "wikidata": "https://www.wikidata.org/wiki/Q161764", + "display_name": "Geochemistry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C201995342", + "wikidata": "https://www.wikidata.org/wiki/Q682496", + "display_name": "Systems engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/sp.2010.25", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2010.25", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2010 IEEE Symposium on Security and Privacy", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.212.1482", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.212.1482", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.icir.org/robin/papers/oakland10-ml.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 73, + "referenced_works": [ + "https://openalex.org/W6091113", + "https://openalex.org/W105475431", + "https://openalex.org/W191098608", + "https://openalex.org/W1490025813", + "https://openalex.org/W1490760466", + "https://openalex.org/W1510508184", + "https://openalex.org/W1512586648", + "https://openalex.org/W1516506771", + "https://openalex.org/W1545904932", + "https://openalex.org/W1570448133", + "https://openalex.org/W1573594453", + "https://openalex.org/W1582482241", + "https://openalex.org/W1590936031", + "https://openalex.org/W1591480890", + "https://openalex.org/W1602011302", + "https://openalex.org/W1805704774", + "https://openalex.org/W1986697120", + "https://openalex.org/W1988918299", + "https://openalex.org/W1989121667", + "https://openalex.org/W1999427165", + "https://openalex.org/W2001642682", + "https://openalex.org/W2021795960", + "https://openalex.org/W2032247543", + "https://openalex.org/W2048465382", + "https://openalex.org/W2058737869", + "https://openalex.org/W2069734023", + "https://openalex.org/W2087922528", + "https://openalex.org/W2096431803", + "https://openalex.org/W2096847629", + "https://openalex.org/W2102101901", + "https://openalex.org/W2102399005", + "https://openalex.org/W2103018059", + "https://openalex.org/W2103042216", + "https://openalex.org/W2103378897", + "https://openalex.org/W2108638430", + "https://openalex.org/W2117646649", + "https://openalex.org/W2119168550", + "https://openalex.org/W2122646361", + "https://openalex.org/W2125735062", + "https://openalex.org/W2130087897", + "https://openalex.org/W2130523241", + "https://openalex.org/W2135930857", + "https://openalex.org/W2147215426", + "https://openalex.org/W2149544709", + "https://openalex.org/W2150847526", + "https://openalex.org/W2151298633", + "https://openalex.org/W2155409100", + "https://openalex.org/W2156916299", + "https://openalex.org/W2159094788", + "https://openalex.org/W2168761028", + "https://openalex.org/W2171873915", + "https://openalex.org/W2275675895", + "https://openalex.org/W2341535507", + "https://openalex.org/W2404193357", + "https://openalex.org/W2966207845", + "https://openalex.org/W3005635621", + "https://openalex.org/W3208688400", + "https://openalex.org/W3216912485", + "https://openalex.org/W4230513520", + "https://openalex.org/W4230946174", + "https://openalex.org/W4253289766", + "https://openalex.org/W6604348779", + "https://openalex.org/W6607784307", + "https://openalex.org/W6630637722", + "https://openalex.org/W6630758996", + "https://openalex.org/W6635150131", + "https://openalex.org/W6638227319", + "https://openalex.org/W6650820226", + "https://openalex.org/W6674805939", + "https://openalex.org/W6679027663", + "https://openalex.org/W6680267248", + "https://openalex.org/W6694748896", + "https://openalex.org/W6713347195" + ], + "related_works": [ + "https://openalex.org/W2357468538", + "https://openalex.org/W2362800560", + "https://openalex.org/W4300599821", + "https://openalex.org/W2355007334", + "https://openalex.org/W1496376327", + "https://openalex.org/W2133389611", + "https://openalex.org/W2383127772", + "https://openalex.org/W2348767155", + "https://openalex.org/W2374614522", + "https://openalex.org/W1937493481" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "network": [ + 1, + 78, + 133 + ], + "intrusion": [ + 2, + 59, + 79, + 116, + 134 + ], + "detection": [ + 3, + 60, + 80, + 117 + ], + "research,": [ + 4 + ], + "one": [ + 5, + 43 + ], + "popular": [ + 6 + ], + "strategy": [ + 7 + ], + "for": [ + 8, + 16, + 114 + ], + "finding": [ + 9, + 101 + ], + "attacks": [ + 10, + 102 + ], + "is": [ + 11, + 64, + 96, + 103 + ], + "monitoring": [ + 12 + ], + "a": [ + 13, + 45, + 138 + ], + "network's": [ + 14 + ], + "activity": [ + 15 + ], + "anomalies:": [ + 17 + ], + "deviations": [ + 18 + ], + "from": [ + 19, + 25, + 33, + 106 + ], + "profiles": [ + 20 + ], + "of": [ + 21, + 50, + 53, + 100, + 140 + ], + "normality": [ + 22 + ], + "previously": [ + 23 + ], + "learned": [ + 24 + ], + "benign": [ + 26 + ], + "traffic,": [ + 27 + ], + "typically": [ + 28 + ], + "identified": [ + 29 + ], + "using": [ + 30 + ], + "tools": [ + 31 + ], + "borrowed": [ + 32 + ], + "the": [ + 34, + 74, + 77, + 98, + 115 + ], + "machine": [ + 35, + 62, + 86, + 121 + ], + "learning": [ + 36, + 63, + 87, + 122 + ], + "community.": [ + 37 + ], + "However,": [ + 38 + ], + "despite": [ + 39 + ], + "extensive": [ + 40 + ], + "academic": [ + 41 + ], + "research": [ + 42, + 146 + ], + "finds": [ + 44, + 89 + ], + "striking": [ + 46 + ], + "gap": [ + 47 + ], + "in": [ + 48, + 67 + ], + "terms": [ + 49 + ], + "actual": [ + 51 + ], + "deployments": [ + 52 + ], + "such": [ + 54 + ], + "systems:": [ + 55 + ], + "compared": [ + 56 + ], + "with": [ + 57 + ], + "other": [ + 58, + 83, + 108 + ], + "approaches,": [ + 61 + ], + "rarely": [ + 65 + ], + "employed": [ + 66 + ], + "operational": [ + 68 + ], + "\"real": [ + 69 + ], + "world\"": [ + 70 + ], + "settings.": [ + 71 + ], + "We": [ + 72, + 124 + ], + "examine": [ + 73 + ], + "differences": [ + 75 + ], + "between": [ + 76 + ], + "problem": [ + 81 + ], + "and": [ + 82, + 136 + ], + "areas": [ + 84 + ], + "where": [ + 85 + ], + "regularly": [ + 88 + ], + "much": [ + 90 + ], + "more": [ + 91 + ], + "success.": [ + 92 + ], + "Our": [ + 93 + ], + "main": [ + 94 + ], + "claim": [ + 95, + 127 + ], + "that": [ + 97 + ], + "task": [ + 99 + ], + "fundamentally": [ + 104 + ], + "different": [ + 105 + ], + "these": [ + 107 + ], + "applications,": [ + 109 + ], + "making": [ + 110 + ], + "it": [ + 111 + ], + "significantly": [ + 112 + ], + "harder": [ + 113 + ], + "community": [ + 118 + ], + "to": [ + 119, + 132, + 143 + ], + "employ": [ + 120 + ], + "effectively.": [ + 123 + ], + "support": [ + 125 + ], + "this": [ + 126 + ], + "by": [ + 128 + ], + "identifying": [ + 129 + ], + "challenges": [ + 130 + ], + "particular": [ + 131 + ], + "detection,": [ + 135 + ], + "provide": [ + 137 + ], + "set": [ + 139 + ], + "guidelines": [ + 141 + ], + "meant": [ + 142 + ], + "strengthen": [ + 144 + ], + "future": [ + 145 + ], + "on": [ + 147 + ], + "anomaly": [ + 148 + ], + "detection.": [ + 149 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 92 + }, + { + "year": 2025, + "cited_by_count": 271 + }, + { + "year": 2024, + "cited_by_count": 159 + }, + { + "year": 2023, + "cited_by_count": 98 + }, + { + "year": 2022, + "cited_by_count": 109 + }, + { + "year": 2021, + "cited_by_count": 127 + }, + { + "year": 2020, + "cited_by_count": 162 + }, + { + "year": 2019, + "cited_by_count": 195 + }, + { + "year": 2018, + "cited_by_count": 136 + }, + { + "year": 2017, + "cited_by_count": 113 + }, + { + "year": 2016, + "cited_by_count": 98 + }, + { + "year": 2015, + "cited_by_count": 65 + }, + { + "year": 2014, + "cited_by_count": 58 + }, + { + "year": 2013, + "cited_by_count": 60 + }, + { + "year": 2012, + "cited_by_count": 43 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1529533208", + "doi": "https://doi.org/10.1109/jproc.2015.2483592", + "title": "A Review of Relational Machine Learning for Knowledge Graphs", + "display_name": "A Review of Relational Machine Learning for Knowledge Graphs", + "relevance_score": 2569.3381, + "publication_year": 2015, + "publication_date": "2015-12-17", + "ids": { + "openalex": "https://openalex.org/W1529533208", + "doi": "https://doi.org/10.1109/jproc.2015.2483592", + "mag": "1529533208" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/jproc.2015.2483592", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/jproc.2015.2483592", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S68686220", + "display_name": "Proceedings of the IEEE", + "issn_l": "0018-9219", + "issn": [ + "0018-9219", + "1558-2256" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the IEEE", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1503.00759", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5000667901", + "display_name": "Maximilian Nickel", + "orcid": "https://orcid.org/0000-0001-5006-0827" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + }, + { + "id": "https://openalex.org/I30771326", + "display_name": "Italian Institute of Technology", + "ror": "https://ror.org/042t93s57", + "country_code": "IT", + "type": "facility", + "lineage": [ + "https://openalex.org/I30771326" + ] + } + ], + "countries": [ + "IT", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Maximilian Nickel", + "raw_affiliation_strings": [ + "Laboratory for Computational and Statistical Learning (LCSL), Istituto Italiano di Tecnologia, Genova, MA, Italy", + "[Laboratory for Computational and Statistical Learning (LCSL), Massachusetts Institute of Technology, Cambridge, MA, USA]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Computational and Statistical Learning (LCSL), Istituto Italiano di Tecnologia, Genova, MA, Italy", + "institution_ids": [ + "https://openalex.org/I30771326" + ] + }, + { + "raw_affiliation_string": "[Laboratory for Computational and Statistical Learning (LCSL), Massachusetts Institute of Technology, Cambridge, MA, USA]", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002713363", + "display_name": "Kevin Murphy", + "orcid": "https://orcid.org/0000-0001-5196-7236" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kevin Murphy", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA", + "Google Inc., Mountain View, CA USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google Inc., Mountain View, CA USA", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074808403", + "display_name": "Volker Tresp", + "orcid": "https://orcid.org/0000-0001-9428-3686" + }, + "institutions": [ + { + "id": "https://openalex.org/I8204097", + "display_name": "Ludwig-Maximilians-Universität München", + "ror": "https://ror.org/05591te55", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I8204097" + ] + }, + { + "id": "https://openalex.org/I1325886976", + "display_name": "Siemens (Germany)", + "ror": "https://ror.org/059mq0909", + "country_code": "DE", + "type": "company", + "lineage": [ + "https://openalex.org/I1325886976" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Volker Tresp", + "raw_affiliation_strings": [ + "Siemens AG, Corporate Technology, Ludwig Maximilian University of Munich, Munich, Germany", + "Siemens AG, Corporate Technology, Munich, Germany#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Siemens AG, Corporate Technology, Ludwig Maximilian University of Munich, Munich, Germany", + "institution_ids": [ + "https://openalex.org/I1325886976", + "https://openalex.org/I8204097" + ] + }, + { + "raw_affiliation_string": "Siemens AG, Corporate Technology, Munich, Germany#TAB#", + "institution_ids": [ + "https://openalex.org/I1325886976" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5013932834", + "display_name": "Evgeniy Gabrilovich", + "orcid": "https://orcid.org/0000-0001-7933-1926" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evgeniy Gabrilovich", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA", + "Google Inc., Mountain View, CA USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google Inc., Mountain View, CA USA", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5000667901" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I30771326", + "https://openalex.org/I63966007" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 124.23, + "has_fulltext": false, + "cited_by_count": 1637, + "citation_normalized_percentile": { + "value": 0.99972151, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "104", + "issue": "1", + "first_page": "11", + "last_page": "33" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11273", + "display_name": "Advanced Graph Neural Networks", + "score": 0.916700005531311, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11273", + "display_name": "Advanced Graph Neural Networks", + "score": 0.916700005531311, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11303", + "display_name": "Bayesian Modeling and Causal Inference", + "score": 0.00989999994635582, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12292", + "display_name": "Graph Theory and Algorithms", + "score": 0.007799999788403511, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/statistical-relational-learning", + "display_name": "Statistical relational learning", + "score": 0.7889400720596313 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7375805377960205 + }, + { + "id": "https://openalex.org/keywords/knowledge-graph", + "display_name": "Knowledge graph", + "score": 0.5366183519363403 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5131645798683167 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5024473667144775 + }, + { + "id": "https://openalex.org/keywords/graph", + "display_name": "Graph", + "score": 0.451494425535202 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.43196582794189453 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.42936253547668457 + }, + { + "id": "https://openalex.org/keywords/observable", + "display_name": "Observable", + "score": 0.4168981909751892 + }, + { + "id": "https://openalex.org/keywords/relational-model", + "display_name": "Relational model", + "score": 0.4146842658519745 + }, + { + "id": "https://openalex.org/keywords/relational-database", + "display_name": "Relational database", + "score": 0.414201021194458 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C177877439", + "wikidata": "https://www.wikidata.org/wiki/Q7604413", + "display_name": "Statistical relational learning", + "level": 3, + "score": 0.7889400720596313 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7375805377960205 + }, + { + "id": "https://openalex.org/C2987255567", + "wikidata": "https://www.wikidata.org/wiki/Q33002955", + "display_name": "Knowledge graph", + "level": 2, + "score": 0.5366183519363403 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5131645798683167 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5024473667144775 + }, + { + "id": "https://openalex.org/C132525143", + "wikidata": "https://www.wikidata.org/wiki/Q141488", + "display_name": "Graph", + "level": 2, + "score": 0.451494425535202 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.43196582794189453 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.42936253547668457 + }, + { + "id": "https://openalex.org/C32848918", + "wikidata": "https://www.wikidata.org/wiki/Q845789", + "display_name": "Observable", + "level": 2, + "score": 0.4168981909751892 + }, + { + "id": "https://openalex.org/C40207289", + "wikidata": "https://www.wikidata.org/wiki/Q755662", + "display_name": "Relational model", + "level": 3, + "score": 0.4146842658519745 + }, + { + "id": "https://openalex.org/C5655090", + "wikidata": "https://www.wikidata.org/wiki/Q192588", + "display_name": "Relational database", + "level": 2, + "score": 0.414201021194458 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1109/jproc.2015.2483592", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/jproc.2015.2483592", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S68686220", + "display_name": "Proceedings of the IEEE", + "issn_l": "0018-9219", + "issn": [ + "0018-9219", + "1558-2256" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the IEEE", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1503.00759", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1503.00759", + "pdf_url": "https://arxiv.org/pdf/1503.00759", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:dspace.mit.edu:1721.1/100193", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/1721.1/100193", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400425", + "display_name": "DSpace@MIT (Massachusetts Institute of Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I63966007", + "host_organization_name": "Massachusetts Institute of Technology", + "host_organization_lineage": [ + "https://openalex.org/I63966007" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Other" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1503.00759", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1503.00759", + "pdf_url": "https://arxiv.org/pdf/1503.00759", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "score": 0.5400000214576721, + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 213, + "referenced_works": [ + "https://openalex.org/W28412257", + "https://openalex.org/W92973652", + "https://openalex.org/W94565353", + "https://openalex.org/W102708294", + "https://openalex.org/W109245773", + "https://openalex.org/W114517082", + "https://openalex.org/W156542065", + "https://openalex.org/W200741916", + "https://openalex.org/W203049729", + "https://openalex.org/W204615560", + "https://openalex.org/W205829674", + "https://openalex.org/W340632675", + "https://openalex.org/W1483236033", + "https://openalex.org/W1487060125", + "https://openalex.org/W1497523460", + "https://openalex.org/W1503398984", + "https://openalex.org/W1510675600", + "https://openalex.org/W1511986666", + "https://openalex.org/W1512387364", + "https://openalex.org/W1516346799", + "https://openalex.org/W1521736627", + "https://openalex.org/W1533230146", + "https://openalex.org/W1565102206", + "https://openalex.org/W1585529040", + "https://openalex.org/W1614298861", + "https://openalex.org/W1666347389", + "https://openalex.org/W1756422141", + "https://openalex.org/W1782550378", + "https://openalex.org/W1835243625", + "https://openalex.org/W1841189810", + "https://openalex.org/W1852412531", + "https://openalex.org/W1884516485", + "https://openalex.org/W1910578190", + "https://openalex.org/W1913703133", + "https://openalex.org/W1930472418", + "https://openalex.org/W1975346989", + "https://openalex.org/W1975563293", + "https://openalex.org/W1976526581", + "https://openalex.org/W1977970897", + "https://openalex.org/W1979104937", + "https://openalex.org/W1979629649", + "https://openalex.org/W1984179398", + "https://openalex.org/W1985009003", + "https://openalex.org/W1986380628", + "https://openalex.org/W1993500013", + "https://openalex.org/W1994389483", + "https://openalex.org/W1999138184", + "https://openalex.org/W2008620264", + "https://openalex.org/W2008896880", + "https://openalex.org/W2009937976", + "https://openalex.org/W2013494846", + "https://openalex.org/W2015191210", + "https://openalex.org/W2016753842", + "https://openalex.org/W2017102965", + "https://openalex.org/W2018758196", + "https://openalex.org/W2022166150", + "https://openalex.org/W2024165284", + "https://openalex.org/W2026417691", + "https://openalex.org/W2027324989", + "https://openalex.org/W2029249040", + "https://openalex.org/W2037705937", + "https://openalex.org/W2037933327", + "https://openalex.org/W2039688703", + "https://openalex.org/W2045495924", + "https://openalex.org/W2052390074", + "https://openalex.org/W2054141820", + "https://openalex.org/W2055317074", + "https://openalex.org/W2065758089", + "https://openalex.org/W2066459332", + "https://openalex.org/W2066636486", + "https://openalex.org/W2080133951", + "https://openalex.org/W2081210343", + "https://openalex.org/W2081580037", + "https://openalex.org/W2089349245", + "https://openalex.org/W2094286023", + "https://openalex.org/W2094728533", + "https://openalex.org/W2097266862", + "https://openalex.org/W2099752825", + "https://openalex.org/W2101705355", + "https://openalex.org/W2101802482", + "https://openalex.org/W2102363952", + "https://openalex.org/W2102907934", + "https://openalex.org/W2107306718", + "https://openalex.org/W2107658650", + "https://openalex.org/W2108044891", + "https://openalex.org/W2108177663", + "https://openalex.org/W2111488410", + "https://openalex.org/W2114157818", + "https://openalex.org/W2117373207", + "https://openalex.org/W2119831128", + "https://openalex.org/W2121773050", + "https://openalex.org/W2121906195", + "https://openalex.org/W2122865749", + "https://openalex.org/W2123228027", + "https://openalex.org/W2125027602", + "https://openalex.org/W2125315567", + "https://openalex.org/W2127048411", + "https://openalex.org/W2127345773", + "https://openalex.org/W2127426251", + "https://openalex.org/W2127795553", + "https://openalex.org/W2128407051", + "https://openalex.org/W2129207602", + "https://openalex.org/W2129842875", + "https://openalex.org/W2131844696", + "https://openalex.org/W2133134975", + "https://openalex.org/W2138204945", + "https://openalex.org/W2140141795", + "https://openalex.org/W2141312052", + "https://openalex.org/W2148019918", + "https://openalex.org/W2148507357", + "https://openalex.org/W2149474573", + "https://openalex.org/W2151502664", + "https://openalex.org/W2153595771", + "https://openalex.org/W2154454189", + "https://openalex.org/W2158781217", + "https://openalex.org/W2159203990", + "https://openalex.org/W2159583324", + "https://openalex.org/W2160605923", + "https://openalex.org/W2161371014", + "https://openalex.org/W2165428180", + "https://openalex.org/W2167187514", + "https://openalex.org/W2170902582", + "https://openalex.org/W2171278097", + "https://openalex.org/W2171472464", + "https://openalex.org/W2175268987", + "https://openalex.org/W2187164964", + "https://openalex.org/W2244992438", + "https://openalex.org/W2247119764", + "https://openalex.org/W2247380138", + "https://openalex.org/W2250184916", + "https://openalex.org/W2288526505", + "https://openalex.org/W2293485652", + "https://openalex.org/W2295240344", + "https://openalex.org/W2338322935", + "https://openalex.org/W2396685807", + "https://openalex.org/W2471366537", + "https://openalex.org/W2487770199", + "https://openalex.org/W2520858206", + "https://openalex.org/W2536888436", + "https://openalex.org/W2548695521", + "https://openalex.org/W2785884112", + "https://openalex.org/W2911581497", + "https://openalex.org/W2940690142", + "https://openalex.org/W2951166049", + "https://openalex.org/W2952738808", + "https://openalex.org/W2954527143", + "https://openalex.org/W2963572185", + "https://openalex.org/W2963587356", + "https://openalex.org/W2999525678", + "https://openalex.org/W3102641634", + "https://openalex.org/W3125520394", + "https://openalex.org/W3149838063", + "https://openalex.org/W3192290435", + "https://openalex.org/W4206727053", + "https://openalex.org/W4211035117", + "https://openalex.org/W4212943651", + "https://openalex.org/W4230553559", + "https://openalex.org/W4232932184", + "https://openalex.org/W4234117503", + "https://openalex.org/W4235345084", + "https://openalex.org/W4235469532", + "https://openalex.org/W4239231974", + "https://openalex.org/W4250809414", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293249558", + "https://openalex.org/W4297732326", + "https://openalex.org/W4300062145", + "https://openalex.org/W4300564796", + "https://openalex.org/W4386506836", + "https://openalex.org/W6603669155", + "https://openalex.org/W6604452468", + "https://openalex.org/W6604653223", + "https://openalex.org/W6608338930", + "https://openalex.org/W6608344535", + "https://openalex.org/W6628965601", + "https://openalex.org/W6629025635", + "https://openalex.org/W6630579473", + "https://openalex.org/W6631964550", + "https://openalex.org/W6633947679", + "https://openalex.org/W6636510571", + "https://openalex.org/W6637194779", + "https://openalex.org/W6637805884", + "https://openalex.org/W6638051237", + "https://openalex.org/W6638588478", + "https://openalex.org/W6638754787", + "https://openalex.org/W6639281467", + "https://openalex.org/W6639731090", + "https://openalex.org/W6652957868", + "https://openalex.org/W6674413621", + "https://openalex.org/W6675204935", + "https://openalex.org/W6675255137", + "https://openalex.org/W6675925752", + "https://openalex.org/W6676581672", + "https://openalex.org/W6678067405", + "https://openalex.org/W6678347102", + "https://openalex.org/W6678830454", + "https://openalex.org/W6678846912", + "https://openalex.org/W6679197216", + "https://openalex.org/W6679243379", + "https://openalex.org/W6682467843", + "https://openalex.org/W6682619722", + "https://openalex.org/W6683404736", + "https://openalex.org/W6683461794", + "https://openalex.org/W6683612810", + "https://openalex.org/W6683773206", + "https://openalex.org/W6683861112", + "https://openalex.org/W6684350123", + "https://openalex.org/W6685018051", + "https://openalex.org/W6696035201", + "https://openalex.org/W6696966448", + "https://openalex.org/W6720922435", + "https://openalex.org/W6729382431", + "https://openalex.org/W6764731963" + ], + "related_works": [ + "https://openalex.org/W2267077731", + "https://openalex.org/W2386578196", + "https://openalex.org/W3091612633", + "https://openalex.org/W2483382562", + "https://openalex.org/W1549959306", + "https://openalex.org/W2085988990", + "https://openalex.org/W1528519853", + "https://openalex.org/W1510134535", + "https://openalex.org/W3181676408", + "https://openalex.org/W2389834944" + ], + "abstract_inverted_index": { + "Relational": [ + 0 + ], + "machine": [ + 1 + ], + "learning": [ + 2 + ], + "studies": [ + 3 + ], + "methods": [ + 4, + 137 + ], + "for": [ + 5, + 138 + ], + "the": [ + 6, + 41, + 51, + 99, + 144 + ], + "statistical": [ + 7, + 24, + 62, + 126 + ], + "analysis": [ + 8 + ], + "of": [ + 9, + 21, + 61, + 66, + 128, + 159 + ], + "relational,": [ + 10 + ], + "or": [ + 11 + ], + "graph-structured,": [ + 12 + ], + "data.": [ + 13 + ], + "In": [ + 14, + 53 + ], + "this": [ + 15, + 147 + ], + "paper,": [ + 16 + ], + "we": [ + 17, + 55, + 122, + 149 + ], + "provide": [ + 18 + ], + "a": [ + 19 + ], + "review": [ + 20 + ], + "how": [ + 22, + 104, + 124 + ], + "such": [ + 23, + 82, + 125, + 160 + ], + "models": [ + 25, + 81, + 111, + 127 + ], + "can": [ + 26, + 68, + 130 + ], + "be": [ + 27, + 131 + ], + "“trained”": [ + 28 + ], + "on": [ + 29, + 78, + 94 + ], + "large": [ + 30 + ], + "knowledge": [ + 31, + 141, + 153 + ], + "graphs,": [ + 32 + ], + "and": [ + 33, + 86, + 109 + ], + "then": [ + 34 + ], + "used": [ + 35 + ], + "to": [ + 36, + 46, + 70, + 105, + 112 + ], + "predict": [ + 37 + ], + "new": [ + 38, + 48 + ], + "facts": [ + 39 + ], + "about": [ + 40 + ], + "world": [ + 42 + ], + "(which": [ + 43 + ], + "is": [ + 44, + 76, + 92 + ], + "equivalent": [ + 45 + ], + "predicting": [ + 47 + ], + "edges": [ + 49 + ], + "in": [ + 50, + 98 + ], + "graph).": [ + 52 + ], + "particular,": [ + 54 + ], + "discuss": [ + 56, + 123, + 151 + ], + "two": [ + 57 + ], + "fundamentally": [ + 58 + ], + "different": [ + 59 + ], + "kinds": [ + 60 + ], + "relational": [ + 63 + ], + "models,": [ + 64 + ], + "both": [ + 65 + ], + "which": [ + 67 + ], + "scale": [ + 69 + ], + "massive": [ + 71 + ], + "data": [ + 72 + ], + "sets.": [ + 73 + ], + "The": [ + 74, + 90 + ], + "first": [ + 75 + ], + "based": [ + 77, + 93 + ], + "latent": [ + 79, + 108 + ], + "feature": [ + 80 + ], + "as": [ + 83, + 156 + ], + "tensor": [ + 84 + ], + "factorization": [ + 85 + ], + "multiway": [ + 87 + ], + "neural": [ + 88 + ], + "networks.": [ + 89 + ], + "second": [ + 91 + ], + "mining": [ + 95 + ], + "observable": [ + 96, + 110 + ], + "patterns": [ + 97 + ], + "graph.": [ + 100 + ], + "We": [ + 101 + ], + "also": [ + 102, + 150 + ], + "show": [ + 103 + ], + "combine": [ + 106 + ], + "these": [ + 107 + ], + "get": [ + 113 + ], + "improved": [ + 114 + ], + "modeling": [ + 115 + ], + "power": [ + 116 + ], + "at": [ + 117 + ], + "decreased": [ + 118 + ], + "computational": [ + 119 + ], + "cost.": [ + 120 + ], + "Finally,": [ + 121 + ], + "graphs": [ + 129, + 142 + ], + "combined": [ + 132 + ], + "with": [ + 133 + ], + "text-based": [ + 134 + ], + "information": [ + 135 + ], + "extraction": [ + 136 + ], + "automatically": [ + 139 + ], + "constructing": [ + 140 + ], + "from": [ + 143 + ], + "Web.": [ + 145 + ], + "To": [ + 146 + ], + "end,": [ + 148 + ], + "Google's": [ + 152 + ], + "vault": [ + 154 + ], + "project": [ + 155 + ], + "an": [ + 157 + ], + "example": [ + 158 + ], + "combination.": [ + 161 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 36 + }, + { + "year": 2025, + "cited_by_count": 115 + }, + { + "year": 2024, + "cited_by_count": 121 + }, + { + "year": 2023, + "cited_by_count": 180 + }, + { + "year": 2022, + "cited_by_count": 158 + }, + { + "year": 2021, + "cited_by_count": 263 + }, + { + "year": 2020, + "cited_by_count": 286 + }, + { + "year": 2019, + "cited_by_count": 199 + }, + { + "year": 2018, + "cited_by_count": 127 + }, + { + "year": 2017, + "cited_by_count": 107 + }, + { + "year": 2016, + "cited_by_count": 40 + }, + { + "year": 2015, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2963784900", + "doi": "https://doi.org/10.1038/s41524-017-0056-5", + "title": "Machine learning in materials informatics: recent applications and prospects", + "display_name": "Machine learning in materials informatics: recent applications and prospects", + "relevance_score": 2568.6206, + "publication_year": 2017, + "publication_date": "2017-12-07", + "ids": { + "openalex": "https://openalex.org/W2963784900", + "doi": "https://doi.org/10.1038/s41524-017-0056-5", + "mag": "2963784900" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5031952600", + "display_name": "Rampi Ramprasad", + "orcid": "https://orcid.org/0000-0003-4630-1565" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Rampi Ramprasad", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003850818", + "display_name": "Rohit Batra", + "orcid": "https://orcid.org/0000-0002-1098-7035" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rohit Batra", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5075051974", + "display_name": "Ghanshyam Pilania", + "orcid": "https://orcid.org/0000-0003-4460-1572" + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + }, + { + "id": "https://openalex.org/I2800875726", + "display_name": "Fritz Haber Institute of the Max Planck Society", + "ror": "https://ror.org/03k9qs827", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I2800875726" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ghanshyam Pilania", + "raw_affiliation_strings": [ + "Fritz-Haber-Institut der Max-Planck-Gesellschaft, Faradayweg 4-6, 14195, Berlin, Germany", + "Materials Science and Technology Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Fritz-Haber-Institut der Max-Planck-Gesellschaft, Faradayweg 4-6, 14195, Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Materials Science and Technology Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032715041", + "display_name": "Arun Mannodi‐Kanakkithodi", + "orcid": "https://orcid.org/0000-0003-0780-1583" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + }, + { + "id": "https://openalex.org/I4210164505", + "display_name": "NanoScale Corporation (United States)", + "ror": "https://ror.org/05rtsja45", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210164505" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Arun Mannodi-Kanakkithodi", + "raw_affiliation_strings": [ + "Center for Nanoscale Materials, Lamont National Laboratory, 9700 S. Cass Ave., Lemont, IL, 60439, USA", + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Nanoscale Materials, Lamont National Laboratory, 9700 S. Cass Ave., Lemont, IL, 60439, USA", + "institution_ids": [ + "https://openalex.org/I4210164505" + ] + }, + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5018939520", + "display_name": "Chiho Kim", + "orcid": "https://orcid.org/0000-0002-1814-4980" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chiho Kim", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5031952600" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I140172145" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 50.7176, + "has_fulltext": true, + "cited_by_count": 1745, + "citation_normalized_percentile": { + "value": 0.99974343, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9868999719619751, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6980394721031189 + }, + { + "id": "https://openalex.org/keywords/informatics", + "display_name": "Informatics", + "score": 0.6778385639190674 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.6716209650039673 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.5613667368888855 + }, + { + "id": "https://openalex.org/keywords/fingerprint", + "display_name": "Fingerprint (computing)", + "score": 0.5255624055862427 + }, + { + "id": "https://openalex.org/keywords/property", + "display_name": "Property (philosophy)", + "score": 0.5245295166969299 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4813131093978882 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.47415369749069214 + }, + { + "id": "https://openalex.org/keywords/materials-informatics", + "display_name": "Materials informatics", + "score": 0.4402523338794708 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.42585843801498413 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.364216685295105 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.34198737144470215 + }, + { + "id": "https://openalex.org/keywords/health-informatics", + "display_name": "Health informatics", + "score": 0.2691514790058136 + }, + { + "id": "https://openalex.org/keywords/engineering-informatics", + "display_name": "Engineering informatics", + "score": 0.2533683776855469 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.1932530701160431 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.12165293097496033 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.11709535121917725 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6980394721031189 + }, + { + "id": "https://openalex.org/C191630685", + "wikidata": "https://www.wikidata.org/wiki/Q4027615", + "display_name": "Informatics", + "level": 2, + "score": 0.6778385639190674 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.6716209650039673 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.5613667368888855 + }, + { + "id": "https://openalex.org/C2777826928", + "wikidata": "https://www.wikidata.org/wiki/Q3745713", + "display_name": "Fingerprint (computing)", + "level": 2, + "score": 0.5255624055862427 + }, + { + "id": "https://openalex.org/C189950617", + "wikidata": "https://www.wikidata.org/wiki/Q937228", + "display_name": "Property (philosophy)", + "level": 2, + "score": 0.5245295166969299 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4813131093978882 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.47415369749069214 + }, + { + "id": "https://openalex.org/C62085286", + "wikidata": "https://www.wikidata.org/wiki/Q6786605", + "display_name": "Materials informatics", + "level": 5, + "score": 0.4402523338794708 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.42585843801498413 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.364216685295105 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.34198737144470215 + }, + { + "id": "https://openalex.org/C145642194", + "wikidata": "https://www.wikidata.org/wiki/Q870895", + "display_name": "Health informatics", + "level": 3, + "score": 0.2691514790058136 + }, + { + "id": "https://openalex.org/C158518442", + "wikidata": "https://www.wikidata.org/wiki/Q2843902", + "display_name": "Engineering informatics", + "level": 4, + "score": 0.2533683776855469 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.1932530701160431 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.12165293097496033 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.11709535121917725 + }, + { + "id": "https://openalex.org/C119599485", + "wikidata": "https://www.wikidata.org/wiki/Q43035", + "display_name": "Electrical engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138816342", + "wikidata": "https://www.wikidata.org/wiki/Q189603", + "display_name": "Public health", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159110408", + "wikidata": "https://www.wikidata.org/wiki/Q121176", + "display_name": "Nursing", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:osti.gov:1416298", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1416298", + "pdf_url": "https://www.osti.gov/servlets/purl/1416298", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:oai:pure.mpg.de:item_2567070", + "is_oa": true, + "landing_page_url": "https://hdl.handle.net/21.11116/0000-0001-1CC3-4", + "pdf_url": "http://hdl.handle.net/21.11116/0000-0001-1CC3-4", + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials", + "raw_type": "info:eu-repo/semantics/article" + }, + { + "id": "pmh:oai:doaj.org/article:b5673072856d4e9fb243f09ce3ef9ed8", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/b5673072856d4e9fb243f09ce3ef9ed8", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials, Vol 3, Iss 1, Pp 1-13 (2017)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G3448238085", + "display_name": null, + "funder_award_id": "N00014-14-1-0098", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G5295348260", + "display_name": null, + "funder_award_id": "N00014-16-1-2580", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G8627259979", + "display_name": null, + "funder_award_id": "N00014-10-1-0944", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G8876996369", + "display_name": null, + "funder_award_id": "N00014", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320308269", + "display_name": "Alexander von Humboldt-Stiftung", + "ror": "https://ror.org/012kf4317" + }, + { + "id": "https://openalex.org/F4320337345", + "display_name": "Office of Naval Research", + "ror": "https://ror.org/00rk2pe57" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2963784900.pdf" + }, + "referenced_works_count": 127, + "referenced_works": [ + "https://openalex.org/W26088913", + "https://openalex.org/W73132726", + "https://openalex.org/W214291446", + "https://openalex.org/W654619586", + "https://openalex.org/W1505168701", + "https://openalex.org/W1513260206", + "https://openalex.org/W1542208167", + "https://openalex.org/W1545048062", + "https://openalex.org/W1568537411", + "https://openalex.org/W1584846110", + "https://openalex.org/W1597841398", + "https://openalex.org/W1678620623", + "https://openalex.org/W1747451850", + "https://openalex.org/W1772299910", + "https://openalex.org/W1800437104", + "https://openalex.org/W1865667476", + "https://openalex.org/W1901616594", + "https://openalex.org/W1965192594", + "https://openalex.org/W1972135189", + "https://openalex.org/W1977739742", + "https://openalex.org/W1978183953", + "https://openalex.org/W1979769287", + "https://openalex.org/W1982598895", + "https://openalex.org/W1982886636", + "https://openalex.org/W1984087004", + "https://openalex.org/W1986575501", + "https://openalex.org/W1988887547", + "https://openalex.org/W1989885311", + "https://openalex.org/W1993765343", + "https://openalex.org/W2000957843", + "https://openalex.org/W2005543043", + "https://openalex.org/W2010785223", + "https://openalex.org/W2019903457", + "https://openalex.org/W2020786104", + "https://openalex.org/W2025444507", + "https://openalex.org/W2025882616", + "https://openalex.org/W2029413789", + "https://openalex.org/W2037566781", + "https://openalex.org/W2046505730", + "https://openalex.org/W2051801258", + "https://openalex.org/W2055974394", + "https://openalex.org/W2057858097", + "https://openalex.org/W2061333371", + "https://openalex.org/W2068123181", + "https://openalex.org/W2068456806", + "https://openalex.org/W2069034916", + "https://openalex.org/W2073357703", + "https://openalex.org/W2074616700", + "https://openalex.org/W2083415705", + "https://openalex.org/W2085607286", + "https://openalex.org/W2087292325", + "https://openalex.org/W2089843324", + "https://openalex.org/W2097489306", + "https://openalex.org/W2097968133", + "https://openalex.org/W2104489082", + "https://openalex.org/W2115003579", + "https://openalex.org/W2115096312", + "https://openalex.org/W2128873947", + "https://openalex.org/W2146611938", + "https://openalex.org/W2161262329", + "https://openalex.org/W2163272368", + "https://openalex.org/W2164524421", + "https://openalex.org/W2215223440", + "https://openalex.org/W2225949634", + "https://openalex.org/W2229902564", + "https://openalex.org/W2258702411", + "https://openalex.org/W2261108203", + "https://openalex.org/W2281127889", + "https://openalex.org/W2291908932", + "https://openalex.org/W2313966941", + "https://openalex.org/W2315793378", + "https://openalex.org/W2329258563", + "https://openalex.org/W2336382837", + "https://openalex.org/W2337110853", + "https://openalex.org/W2337496963", + "https://openalex.org/W2337529739", + "https://openalex.org/W2343462019", + "https://openalex.org/W2344188443", + "https://openalex.org/W2345653852", + "https://openalex.org/W2346778841", + "https://openalex.org/W2352719088", + "https://openalex.org/W2356584815", + "https://openalex.org/W2372859909", + "https://openalex.org/W2396196938", + "https://openalex.org/W2415372084", + "https://openalex.org/W2460314483", + "https://openalex.org/W2464725281", + "https://openalex.org/W2471982001", + "https://openalex.org/W2475256989", + "https://openalex.org/W2476592117", + "https://openalex.org/W2486570794", + "https://openalex.org/W2490507458", + "https://openalex.org/W2490901606", + "https://openalex.org/W2498941985", + "https://openalex.org/W2499226730", + "https://openalex.org/W2503343131", + "https://openalex.org/W2504731129", + "https://openalex.org/W2510431877", + "https://openalex.org/W2520500207", + "https://openalex.org/W2522125346", + "https://openalex.org/W2527749992", + "https://openalex.org/W2529958128", + "https://openalex.org/W2530960271", + "https://openalex.org/W2555683692", + "https://openalex.org/W2560817727", + "https://openalex.org/W2563751252", + "https://openalex.org/W2564078846", + "https://openalex.org/W2566573083", + "https://openalex.org/W2566642125", + "https://openalex.org/W2567115595", + "https://openalex.org/W2585152223", + "https://openalex.org/W2592939032", + "https://openalex.org/W2593838212", + "https://openalex.org/W2594250440", + "https://openalex.org/W2600236415", + "https://openalex.org/W2603482245", + "https://openalex.org/W2608722029", + "https://openalex.org/W2616136793", + "https://openalex.org/W2617604238", + "https://openalex.org/W2762836614", + "https://openalex.org/W3022711947", + "https://openalex.org/W3098539674", + "https://openalex.org/W3100710928", + "https://openalex.org/W3104005636", + "https://openalex.org/W4230031267", + "https://openalex.org/W4240060230", + "https://openalex.org/W4300789312" + ], + "related_works": [ + "https://openalex.org/W4375957285", + "https://openalex.org/W4206469383", + "https://openalex.org/W2359548422", + "https://openalex.org/W2083600684", + "https://openalex.org/W2373478723", + "https://openalex.org/W2118804853", + "https://openalex.org/W4376271842", + "https://openalex.org/W2754122850", + "https://openalex.org/W2162773262", + "https://openalex.org/W2901223208" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "Propelled": [ + 1 + ], + "partly": [ + 2, + 9 + ], + "by": [ + 3, + 10, + 53, + 57, + 156 + ], + "the": [ + 4, + 11, + 15, + 87, + 110, + 134, + 137, + 157, + 188, + 197, + 204, + 215, + 226 + ], + "Materials": [ + 5 + ], + "Genome": [ + 6 + ], + "Initiative,": [ + 7 + ], + "and": [ + 8, + 14, + 123, + 136, + 152, + 160, + 219 + ], + "algorithmic": [ + 12 + ], + "developments": [ + 13 + ], + "resounding": [ + 16 + ], + "successes": [ + 17 + ], + "of": [ + 18, + 109, + 139, + 149, + 185, + 187 + ], + "data-driven": [ + 19, + 191 + ], + "efforts": [ + 20 + ], + "in": [ + 21, + 59, + 196, + 225 + ], + "other": [ + 22 + ], + "domains,": [ + 23 + ], + "informatics": [ + 24, + 67 + ], + "strategies": [ + 25, + 194 + ], + "are": [ + 26, + 63, + 69, + 77, + 114, + 173 + ], + "beginning": [ + 27 + ], + "to": [ + 28, + 37, + 72, + 79, + 86, + 144, + 181 + ], + "take": [ + 29 + ], + "shape": [ + 30 + ], + "within": [ + 31 + ], + "materials": [ + 32, + 169 + ], + "science.": [ + 33 + ], + "These": [ + 34 + ], + "approaches": [ + 35 + ], + "lead": [ + 36 + ], + "surrogate": [ + 38 + ], + "machine": [ + 39 + ], + "learning": [ + 40, + 131 + ], + "models": [ + 41 + ], + "that": [ + 42, + 76, + 221 + ], + "enable": [ + 43 + ], + "rapid": [ + 44 + ], + "predictions": [ + 45 + ], + "based": [ + 46 + ], + "purely": [ + 47 + ], + "on": [ + 48, + 203 + ], + "past": [ + 49 + ], + "data": [ + 50, + 96 + ], + "rather": [ + 51 + ], + "than": [ + 52 + ], + "direct": [ + 54 + ], + "experimentation": [ + 55 + ], + "or": [ + 56, + 81, + 90, + 100, + 206 + ], + "computations/simulations": [ + 58 + ], + "which": [ + 60, + 94 + ], + "fundamental": [ + 61 + ], + "equations": [ + 62 + ], + "explicitly": [ + 64 + ], + "solved.": [ + 65 + ], + "Data-centric": [ + 66 + ], + "methods": [ + 68 + ], + "becoming": [ + 70 + ], + "useful": [ + 71 + ], + "determine": [ + 73 + ], + "material": [ + 74, + 120 + ], + "properties": [ + 75 + ], + "hard": [ + 78 + ], + "measure": [ + 80 + ], + "compute": [ + 82 + ], + "using": [ + 83 + ], + "traditional": [ + 84 + ], + "methods—due": [ + 85 + ], + "cost,": [ + 88 + ], + "time": [ + 89 + ], + "effort": [ + 91 + ], + "involved—but": [ + 92 + ], + "for": [ + 93, + 104 + ], + "reliable": [ + 95 + ], + "either": [ + 97 + ], + "already": [ + 98 + ], + "exists": [ + 99 + ], + "can": [ + 101 + ], + "be": [ + 102, + 148, + 165, + 223 + ], + "generated": [ + 103 + ], + "at": [ + 105 + ], + "least": [ + 106 + ], + "a": [ + 107, + 119, + 126, + 130 + ], + "subset": [ + 108 + ], + "critical": [ + 111 + ], + "cases.": [ + 112 + ], + "Predictions": [ + 113, + 162 + ], + "typically": [ + 115 + ], + "interpolative,": [ + 116 + ], + "involving": [ + 117 + ], + "fingerprinting": [ + 118 + ], + "numerically": [ + 121 + ], + "first,": [ + 122 + ], + "then": [ + 124 + ], + "following": [ + 125 + ], + "mapping": [ + 127 + ], + "(established": [ + 128 + ], + "via": [ + 129 + ], + "algorithm)": [ + 132 + ], + "between": [ + 133 + ], + "fingerprint": [ + 135, + 205 + ], + "property": [ + 138 + ], + "interest.": [ + 140 + ], + "Fingerprints,": [ + 141 + ], + "also": [ + 142, + 164, + 211 + ], + "referred": [ + 143 + ], + "as": [ + 145, + 154 + ], + "“descriptors”,": [ + 146 + ], + "may": [ + 147, + 163 + ], + "many": [ + 150 + ], + "types": [ + 151 + ], + "scales,": [ + 153 + ], + "dictated": [ + 155 + ], + "application": [ + 158 + ], + "domain": [ + 159 + ], + "needs.": [ + 161 + ], + "extrapolative—extending": [ + 166 + ], + "into": [ + 167, + 176 + ], + "new": [ + 168 + ], + "spaces—provided": [ + 170 + ], + "prediction": [ + 171 + ], + "uncertainties": [ + 172 + ], + "properly": [ + 174 + ], + "taken": [ + 175 + ], + "account.": [ + 177 + ], + "This": [ + 178 + ], + "article": [ + 179 + ], + "attempts": [ + 180 + ], + "provide": [ + 182 + ], + "an": [ + 183 + ], + "overview": [ + 184 + ], + "some": [ + 186, + 213 + ], + "recent": [ + 189 + ], + "successful": [ + 190 + ], + "“materials": [ + 192 + ], + "informatics”": [ + 193 + ], + "undertaken": [ + 195 + ], + "last": [ + 198 + ], + "decade,": [ + 199 + ], + "with": [ + 200 + ], + "particular": [ + 201 + ], + "emphasis": [ + 202 + ], + "descriptor": [ + 207 + ], + "choices.": [ + 208 + ], + "The": [ + 209 + ], + "review": [ + 210 + ], + "identifies": [ + 212 + ], + "challenges": [ + 214 + ], + "community": [ + 216 + ], + "is": [ + 217 + ], + "facing": [ + 218 + ], + "those": [ + 220 + ], + "should": [ + 222 + ], + "overcome": [ + 224 + ], + "near": [ + 227 + ], + "future.": [ + 228 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 111 + }, + { + "year": 2025, + "cited_by_count": 279 + }, + { + "year": 2024, + "cited_by_count": 235 + }, + { + "year": 2023, + "cited_by_count": 226 + }, + { + "year": 2022, + "cited_by_count": 224 + }, + { + "year": 2021, + "cited_by_count": 231 + }, + { + "year": 2020, + "cited_by_count": 217 + }, + { + "year": 2019, + "cited_by_count": 171 + }, + { + "year": 2018, + "cited_by_count": 48 + }, + { + "year": 2017, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2949767632", + "doi": "https://doi.org/10.1109/access.2019.2923707", + "title": "Effective Heart Disease Prediction Using Hybrid Machine Learning Techniques", + "display_name": "Effective Heart Disease Prediction Using Hybrid Machine Learning Techniques", + "relevance_score": 2562.3347, + "publication_year": 2019, + "publication_date": "2019-01-01", + "ids": { + "openalex": "https://openalex.org/W2949767632", + "doi": "https://doi.org/10.1109/access.2019.2923707", + "mag": "2949767632" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5013635040", + "display_name": "Senthilkumar Mohan", + "orcid": "https://orcid.org/0000-0002-8114-3147" + }, + "institutions": [ + { + "id": "https://openalex.org/I876193797", + "display_name": "Vellore Institute of Technology University", + "ror": "https://ror.org/00qzypv28", + "country_code": "IN", + "type": "education", + "lineage": [ + "https://openalex.org/I876193797" + ] + } + ], + "countries": [ + "IN" + ], + "is_corresponding": true, + "raw_author_name": "Senthilkumar Mohan", + "raw_affiliation_strings": [ + "School of Information Technology and Engineering, VIT University, Vellore, India" + ], + "raw_orcid": "https://orcid.org/0000-0002-8114-3147", + "affiliations": [ + { + "raw_affiliation_string": "School of Information Technology and Engineering, VIT University, Vellore, India", + "institution_ids": [ + "https://openalex.org/I876193797" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012000651", + "display_name": "Chandrasegar Thirumalai", + "orcid": "https://orcid.org/0000-0001-5171-946X" + }, + "institutions": [ + { + "id": "https://openalex.org/I876193797", + "display_name": "Vellore Institute of Technology University", + "ror": "https://ror.org/00qzypv28", + "country_code": "IN", + "type": "education", + "lineage": [ + "https://openalex.org/I876193797" + ] + } + ], + "countries": [ + "IN" + ], + "is_corresponding": false, + "raw_author_name": "Chandrasegar Thirumalai", + "raw_affiliation_strings": [ + "School of Information Technology and Engineering, VIT University, Vellore, India" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Information Technology and Engineering, VIT University, Vellore, India", + "institution_ids": [ + "https://openalex.org/I876193797" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5041541232", + "display_name": "Gautam Srivastava", + "orcid": "https://orcid.org/0000-0001-9851-4103" + }, + "institutions": [ + { + "id": "https://openalex.org/I48890080", + "display_name": "Brandon University", + "ror": "https://ror.org/02qp25a50", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I48890080" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Gautam Srivastava", + "raw_affiliation_strings": [ + "Department of Mathematics and Computer Science, Brandon University, Brandon, MB, Canada" + ], + "raw_orcid": "https://orcid.org/0000-0001-9851-4103", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics and Computer Science, Brandon University, Brandon, MB, Canada", + "institution_ids": [ + "https://openalex.org/I48890080" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5013635040" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I876193797" + ], + "apc_list": { + "value": 1850, + "currency": "USD", + "value_usd": 1850 + }, + "apc_paid": { + "value": 1850, + "currency": "USD", + "value_usd": 1850 + }, + "fwci": 215.0425, + "has_fulltext": true, + "cited_by_count": 1857, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "7", + "issue": null, + "first_page": "81542", + "last_page": "81554" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9962000250816345, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9962000250816345, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11021", + "display_name": "ECG Monitoring and Analysis", + "score": 0.991100013256073, + "subfield": { + "id": "https://openalex.org/subfields/2705", + "display_name": "Cardiology and Cardiovascular Medicine" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13038", + "display_name": "Internet of Things and AI", + "score": 0.9423999786376953, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7656811475753784 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7299566864967346 + }, + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.6608107089996338 + }, + { + "id": "https://openalex.org/keywords/heart-disease", + "display_name": "Heart disease", + "score": 0.6548975110054016 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6171836853027344 + }, + { + "id": "https://openalex.org/keywords/predictive-modelling", + "display_name": "Predictive modelling", + "score": 0.49283671379089355 + }, + { + "id": "https://openalex.org/keywords/disease", + "display_name": "Disease", + "score": 0.48001474142074585 + }, + { + "id": "https://openalex.org/keywords/internet-of-things", + "display_name": "Internet of Things", + "score": 0.4755784571170807 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.4480767250061035 + }, + { + "id": "https://openalex.org/keywords/the-internet", + "display_name": "The Internet", + "score": 0.41082069277763367 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3668927550315857 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.10342156887054443 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7656811475753784 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7299566864967346 + }, + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.6608107089996338 + }, + { + "id": "https://openalex.org/C2780074459", + "wikidata": "https://www.wikidata.org/wiki/Q389735", + "display_name": "Heart disease", + "level": 2, + "score": 0.6548975110054016 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6171836853027344 + }, + { + "id": "https://openalex.org/C45804977", + "wikidata": "https://www.wikidata.org/wiki/Q7239673", + "display_name": "Predictive modelling", + "level": 2, + "score": 0.49283671379089355 + }, + { + "id": "https://openalex.org/C2779134260", + "wikidata": "https://www.wikidata.org/wiki/Q12136", + "display_name": "Disease", + "level": 2, + "score": 0.48001474142074585 + }, + { + "id": "https://openalex.org/C81860439", + "wikidata": "https://www.wikidata.org/wiki/Q251212", + "display_name": "Internet of Things", + "level": 2, + "score": 0.4755784571170807 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.4480767250061035 + }, + { + "id": "https://openalex.org/C110875604", + "wikidata": "https://www.wikidata.org/wiki/Q75", + "display_name": "The Internet", + "level": 2, + "score": 0.41082069277763367 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3668927550315857 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.10342156887054443 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C164705383", + "wikidata": "https://www.wikidata.org/wiki/Q10379", + "display_name": "Cardiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C149635348", + "wikidata": "https://www.wikidata.org/wiki/Q193040", + "display_name": "Embedded system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:fe87ff1a239645a0979c257a4dea4864", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/fe87ff1a239645a0979c257a4dea4864", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "IEEE Access, Vol 7, Pp 81542-81554 (2019)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "score": 0.4000000059604645, + "display_name": "Good health and well-being", + "id": "https://metadata.un.org/sdg/3" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320324301", + "display_name": "China Medical University", + "ror": "https://ror.org/032d4f246" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 51, + "referenced_works": [ + "https://openalex.org/W1202595205", + "https://openalex.org/W1532110920", + "https://openalex.org/W1965587486", + "https://openalex.org/W1991788616", + "https://openalex.org/W2003552981", + "https://openalex.org/W2062302861", + "https://openalex.org/W2068677783", + "https://openalex.org/W2080084655", + "https://openalex.org/W2103773860", + "https://openalex.org/W2178875556", + "https://openalex.org/W2250033699", + "https://openalex.org/W2291481687", + "https://openalex.org/W2293583529", + "https://openalex.org/W2350016386", + "https://openalex.org/W2485540933", + "https://openalex.org/W2531733772", + "https://openalex.org/W2545758574", + "https://openalex.org/W2548815743", + "https://openalex.org/W2608803612", + "https://openalex.org/W2611268076", + "https://openalex.org/W2621148797", + "https://openalex.org/W2654097460", + "https://openalex.org/W2735054537", + "https://openalex.org/W2754167666", + "https://openalex.org/W2755200181", + "https://openalex.org/W2755582817", + "https://openalex.org/W2766387270", + "https://openalex.org/W2767227735", + "https://openalex.org/W2769429260", + "https://openalex.org/W2774583472", + "https://openalex.org/W2784051633", + "https://openalex.org/W2786070938", + "https://openalex.org/W2790256058", + "https://openalex.org/W2790718901", + "https://openalex.org/W2793130752", + "https://openalex.org/W2795204643", + "https://openalex.org/W2795328221", + "https://openalex.org/W2795595258", + "https://openalex.org/W2808560727", + "https://openalex.org/W2885492729", + "https://openalex.org/W2890070546", + "https://openalex.org/W2891931318", + "https://openalex.org/W2895999059", + "https://openalex.org/W2900794383", + "https://openalex.org/W2901917857", + "https://openalex.org/W2993696341", + "https://openalex.org/W6675712684", + "https://openalex.org/W6729093307", + "https://openalex.org/W6749585949", + "https://openalex.org/W6771454245", + "https://openalex.org/W6986592312" + ], + "related_works": [ + "https://openalex.org/W4245926026", + "https://openalex.org/W3193043704", + "https://openalex.org/W4386259002", + "https://openalex.org/W1546989560", + "https://openalex.org/W4396689146", + "https://openalex.org/W4200112873", + "https://openalex.org/W2955796858", + "https://openalex.org/W2004826645", + "https://openalex.org/W3191198889", + "https://openalex.org/W4399767560" + ], + "abstract_inverted_index": { + "Heart": [ + 0 + ], + "disease": [ + 1, + 18, + 86, + 153 + ], + "is": [ + 2, + 19, + 123 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 16, + 26, + 50, + 71, + 74, + 117, + 128, + 145 + ], + "the": [ + 5, + 12, + 24, + 47, + 54, + 72, + 112, + 115, + 148, + 155 + ], + "most": [ + 6 + ], + "significant": [ + 7, + 102 + ], + "causes": [ + 8 + ], + "mortality": [ + 10 + ], + "in": [ + 11, + 23, + 39, + 41, + 65, + 68, + 110, + 114 + ], + "world": [ + 13 + ], + "today.": [ + 14 + ], + "Prediction": [ + 15 + ], + "cardiovascular": [ + 17, + 118 + ], + "a": [ + 20, + 81, + 95, + 160 + ], + "critical": [ + 21 + ], + "challenge": [ + 22 + ], + "area": [ + 25 + ], + "clinical": [ + 27 + ], + "data": [ + 28, + 51 + ], + "analysis.": [ + 29 + ], + "Machine": [ + 30 + ], + "learning": [ + 31, + 107 + ], + "(ML)": [ + 32 + ], + "has": [ + 33 + ], + "been": [ + 34 + ], + "shown": [ + 35 + ], + "to": [ + 36 + ], + "be": [ + 37 + ], + "effective": [ + 38 + ], + "assisting": [ + 40 + ], + "making": [ + 42 + ], + "decisions": [ + 43 + ], + "and": [ + 44, + 130 + ], + "predictions": [ + 45 + ], + "from": [ + 46 + ], + "large": [ + 48 + ], + "quantity": [ + 49 + ], + "produced": [ + 52 + ], + "by": [ + 53, + 104 + ], + "healthcare": [ + 55 + ], + "industry.": [ + 56 + ], + "We": [ + 57, + 135 + ], + "have": [ + 58 + ], + "also": [ + 59 + ], + "seen": [ + 60 + ], + "ML": [ + 61, + 88 + ], + "techniques": [ + 62, + 108 + ], + "being": [ + 63 + ], + "used": [ + 64 + ], + "recent": [ + 66 + ], + "developments": [ + 67 + ], + "different": [ + 69, + 126 + ], + "areas": [ + 70 + ], + "Internet": [ + 73 + ], + "Things": [ + 75 + ], + "(IoT).": [ + 76 + ], + "Various": [ + 77 + ], + "studies": [ + 78 + ], + "give": [ + 79 + ], + "only": [ + 80 + ], + "glimpse": [ + 82 + ], + "into": [ + 83 + ], + "predicting": [ + 84 + ], + "heart": [ + 85, + 152 + ], + "with": [ + 87, + 125, + 141, + 154, + 159 + ], + "techniques.": [ + 89, + 134 + ], + "In": [ + 90 + ], + "this": [ + 91 + ], + "paper,": [ + 92 + ], + "we": [ + 93 + ], + "propose": [ + 94 + ], + "novel": [ + 96 + ], + "method": [ + 97 + ], + "that": [ + 98 + ], + "aims": [ + 99 + ], + "at": [ + 100 + ], + "finding": [ + 101 + ], + "features": [ + 103, + 129 + ], + "applying": [ + 105 + ], + "machine": [ + 106 + ], + "resulting": [ + 109 + ], + "improving": [ + 111 + ], + "accuracy": [ + 113, + 143 + ], + "prediction": [ + 116, + 121, + 149 + ], + "disease.": [ + 119 + ], + "The": [ + 120 + ], + "model": [ + 122, + 150, + 162 + ], + "introduced": [ + 124 + ], + "combinations": [ + 127 + ], + "several": [ + 131 + ], + "known": [ + 132 + ], + "classification": [ + 133 + ], + "produce": [ + 136 + ], + "an": [ + 137, + 142 + ], + "enhanced": [ + 138 + ], + "performance": [ + 139 + ], + "level": [ + 140, + 144 + ], + "88.7%": [ + 146 + ], + "through": [ + 147 + ], + "for": [ + 151 + ], + "hybrid": [ + 156 + ], + "random": [ + 157 + ], + "forest": [ + 158 + ], + "linear": [ + 161 + ], + "(HRFLM).": [ + 163 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 83 + }, + { + "year": 2025, + "cited_by_count": 299 + }, + { + "year": 2024, + "cited_by_count": 376 + }, + { + "year": 2023, + "cited_by_count": 443 + }, + { + "year": 2022, + "cited_by_count": 335 + }, + { + "year": 2021, + "cited_by_count": 221 + }, + { + "year": 2020, + "cited_by_count": 90 + }, + { + "year": 2019, + "cited_by_count": 9 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2995098893", + "doi": "https://doi.org/10.1186/s12911-019-1004-8", + "title": "Comparing different supervised machine learning algorithms for disease prediction", + "display_name": "Comparing different supervised machine learning algorithms for disease prediction", + "relevance_score": 2537.2148, + "publication_year": 2019, + "publication_date": "2019-12-01", + "ids": { + "openalex": "https://openalex.org/W2995098893", + "doi": "https://doi.org/10.1186/s12911-019-1004-8", + "mag": "2995098893", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31864346" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5073472514", + "display_name": "Shahadat Uddin", + "orcid": "https://orcid.org/0000-0003-0091-6919" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "Shahadat Uddin", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia. shahadat.uddin@sydney.edu.au", + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia" + ], + "raw_orcid": "https://orcid.org/0000-0003-0091-6919", + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia. shahadat.uddin@sydney.edu.au", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + }, + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050771060", + "display_name": "Arif Khan", + "orcid": "https://orcid.org/0000-0002-5793-933X" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + }, + { + "id": "https://openalex.org/I4210117369", + "display_name": "RoZetta Institute", + "ror": "https://ror.org/02ex29a12", + "country_code": "AU", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210117369" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Arif Khan", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "Health Market Quality Research Stream, Capital Markets CRC, Level 3, 55 Harrington Street, Sydney, NSW, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + }, + { + "raw_affiliation_string": "Health Market Quality Research Stream, Capital Markets CRC, Level 3, 55 Harrington Street, Sydney, NSW, Australia", + "institution_ids": [ + "https://openalex.org/I4210117369" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027942770", + "display_name": "Md Ekramul Hossain", + "orcid": "https://orcid.org/0000-0001-6913-8313" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Md Ekramul Hossain", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5034828056", + "display_name": "Mohammad Ali Moni", + "orcid": "https://orcid.org/0000-0003-0756-1006" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Mohammad Ali Moni", + "raw_affiliation_strings": [ + "Faculty of Medicine and Health, School of Medical Sciences, The University of Sydney, Camperdown, NSW, 2006, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Medicine and Health, School of Medical Sciences, The University of Sydney, Camperdown, NSW, 2006, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5073472514" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I129604602" + ], + "apc_list": { + "value": 1570, + "currency": "GBP", + "value_usd": 1925 + }, + "apc_paid": { + "value": 1570, + "currency": "GBP", + "value_usd": 1925 + }, + "fwci": 163.4979, + "has_fulltext": false, + "cited_by_count": 1620, + "citation_normalized_percentile": { + "value": 0.99985261, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "19", + "issue": "1", + "first_page": "281", + "last_page": "281" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.8751999735832214, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.8751999735832214, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.008799999952316284, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.0066999997943639755, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/health-informatics", + "display_name": "Health informatics", + "score": 0.7566148042678833 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6764706373214722 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6419437527656555 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5513378381729126 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.41022202372550964 + }, + { + "id": "https://openalex.org/keywords/public-health", + "display_name": "Public health", + "score": 0.221120685338974 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2029423713684082 + }, + { + "id": "https://openalex.org/keywords/nursing", + "display_name": "Nursing", + "score": 0.09734433889389038 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C145642194", + "wikidata": "https://www.wikidata.org/wiki/Q870895", + "display_name": "Health informatics", + "level": 3, + "score": 0.7566148042678833 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6764706373214722 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6419437527656555 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5513378381729126 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.41022202372550964 + }, + { + "id": "https://openalex.org/C138816342", + "wikidata": "https://www.wikidata.org/wiki/Q189603", + "display_name": "Public health", + "level": 2, + "score": 0.221120685338974 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2029423713684082 + }, + { + "id": "https://openalex.org/C159110408", + "wikidata": "https://www.wikidata.org/wiki/Q121176", + "display_name": "Nursing", + "level": 1, + "score": 0.09734433889389038 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + { + "id": "pmid:31864346", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31864346", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC medical informatics and decision making", + "raw_type": null + }, + { + "id": "pmh:oai:pure.atira.dk:publications/17d2b406-1692-4f37-9f49-13ef0305ae3b", + "is_oa": true, + "landing_page_url": "https://researchoutput.csu.edu.au/en/publications/17d2b406-1692-4f37-9f49-13ef0305ae3b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055442", + "display_name": "Charles Sturt University Research Output (CRO)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Uddin, S, Khan, A, Hossain, M E & Moni, M A 2019, 'Comparing different supervised machine learning algorithms for disease prediction', BMC Medical Informatics and Decision Making, vol. 19, no. 1, 281. https://doi.org/10.1186/s12911-019-1004-8", + "raw_type": "info:eu-repo/semantics/publishedVersion" + }, + { + "id": "pmh:oai:doaj.org/article:9563bebece94495291af01cd287627a5", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/9563bebece94495291af01cd287627a5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Medical Informatics and Decision Making, Vol 19, Iss 1, Pp 1-16 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6925840", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6925840", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Med Inform Decis Mak", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 87, + "referenced_works": [ + "https://openalex.org/W51263609", + "https://openalex.org/W101938375", + "https://openalex.org/W129507607", + "https://openalex.org/W166622706", + "https://openalex.org/W179179905", + "https://openalex.org/W1130077638", + "https://openalex.org/W1171616665", + "https://openalex.org/W1498436455", + "https://openalex.org/W1565746575", + "https://openalex.org/W1590675038", + "https://openalex.org/W1596324102", + "https://openalex.org/W1615991656", + "https://openalex.org/W1648885110", + "https://openalex.org/W1651586605", + "https://openalex.org/W1756788811", + "https://openalex.org/W1968571599", + "https://openalex.org/W1972404374", + "https://openalex.org/W1972588194", + "https://openalex.org/W1973448749", + "https://openalex.org/W1973948212", + "https://openalex.org/W1983024255", + "https://openalex.org/W1995341919", + "https://openalex.org/W1996856743", + "https://openalex.org/W2005501262", + "https://openalex.org/W2012316318", + "https://openalex.org/W2017993392", + "https://openalex.org/W2049623605", + "https://openalex.org/W2052655222", + "https://openalex.org/W2063130532", + "https://openalex.org/W2065831478", + "https://openalex.org/W2066525392", + "https://openalex.org/W2083866813", + "https://openalex.org/W2101234009", + "https://openalex.org/W2103069675", + "https://openalex.org/W2103441516", + "https://openalex.org/W2104890527", + "https://openalex.org/W2111974630", + "https://openalex.org/W2117646649", + "https://openalex.org/W2118020653", + "https://openalex.org/W2120109270", + "https://openalex.org/W2122111042", + "https://openalex.org/W2149706766", + "https://openalex.org/W2156098321", + "https://openalex.org/W2157784421", + "https://openalex.org/W2158698691", + "https://openalex.org/W2184248488", + "https://openalex.org/W2187651840", + "https://openalex.org/W2242827712", + "https://openalex.org/W2256130358", + "https://openalex.org/W2259337669", + "https://openalex.org/W2270635011", + "https://openalex.org/W2277317151", + "https://openalex.org/W2285678238", + "https://openalex.org/W2324845196", + "https://openalex.org/W2339549526", + "https://openalex.org/W2394922069", + "https://openalex.org/W2407129890", + "https://openalex.org/W2478337590", + "https://openalex.org/W2498119267", + "https://openalex.org/W2504629029", + "https://openalex.org/W2511048274", + "https://openalex.org/W2548466742", + "https://openalex.org/W2569214105", + "https://openalex.org/W2604503416", + "https://openalex.org/W2610135452", + "https://openalex.org/W2614141400", + "https://openalex.org/W2754510604", + "https://openalex.org/W2755895186", + "https://openalex.org/W2757722543", + "https://openalex.org/W2764175852", + "https://openalex.org/W2773413394", + "https://openalex.org/W2784168210", + "https://openalex.org/W2791504809", + "https://openalex.org/W2796884049", + "https://openalex.org/W2799071577", + "https://openalex.org/W2800253831", + "https://openalex.org/W2807027008", + "https://openalex.org/W2807992546", + "https://openalex.org/W2885479215", + "https://openalex.org/W2904579171", + "https://openalex.org/W2911495555", + "https://openalex.org/W2911964244", + "https://openalex.org/W2963873275", + "https://openalex.org/W2991792334", + "https://openalex.org/W4285719527", + "https://openalex.org/W6607259140", + "https://openalex.org/W6675354045" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3107602296", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "BACKGROUND:": [ + 0 + ], + "Supervised": [ + 1 + ], + "machine": [ + 2, + 43, + 74, + 108, + 200, + 225 + ], + "learning": [ + 3, + 44, + 75, + 109, + 201, + 226 + ], + "algorithms": [ + 4, + 110, + 202 + ], + "have": [ + 5 + ], + "been": [ + 6 + ], + "a": [ + 7, + 23, + 188 + ], + "dominant": [ + 8 + ], + "method": [ + 9 + ], + "in": [ + 10, + 100, + 163, + 176, + 218 + ], + "the": [ + 11, + 35, + 103, + 118, + 133, + 141, + 151, + 160, + 179, + 192, + 219 + ], + "data": [ + 12, + 19 + ], + "mining": [ + 13 + ], + "field.": [ + 14 + ], + "Disease": [ + 15 + ], + "prediction": [ + 16 + ], + "using": [ + 17 + ], + "health": [ + 18 + ], + "has": [ + 20 + ], + "recently": [ + 21 + ], + "shown": [ + 22 + ], + "potential": [ + 24 + ], + "application": [ + 25 + ], + "area": [ + 26 + ], + "for": [ + 27, + 51, + 89, + 102, + 111, + 203, + 228 + ], + "these": [ + 28 + ], + "methods.": [ + 29 + ], + "This": [ + 30, + 169, + 185, + 206 + ], + "study": [ + 31, + 186 + ], + "ai7ms": [ + 32 + ], + "to": [ + 33, + 64, + 215 + ], + "identify": [ + 34, + 65 + ], + "key": [ + 36 + ], + "trends": [ + 37 + ], + "among": [ + 38, + 105 + ], + "different": [ + 39, + 90, + 196 + ], + "types": [ + 40, + 91 + ], + "of": [ + 41, + 92, + 165, + 178, + 191, + 195, + 198, + 209, + 221 + ], + "supervised": [ + 42, + 73, + 107, + 199, + 224 + ], + "algorithms,": [ + 45 + ], + "and": [ + 46, + 49, + 85 + ], + "their": [ + 47, + 229 + ], + "performance": [ + 48, + 194, + 211 + ], + "usage": [ + 50 + ], + "disease": [ + 52, + 79, + 112, + 204 + ], + "risk": [ + 53 + ], + "prediction.": [ + 54, + 80, + 113, + 205 + ], + "METHODS:": [ + 55 + ], + "In": [ + 56 + ], + "this": [ + 57 + ], + "study,": [ + 58 + ], + "extensive": [ + 59 + ], + "research": [ + 60 + ], + "efforts": [ + 61 + ], + "were": [ + 62, + 87 + ], + "made": [ + 63 + ], + "those": [ + 66 + ], + "studies": [ + 67, + 153, + 180 + ], + "that": [ + 68, + 117 + ], + "applied": [ + 69, + 125 + ], + "more": [ + 70 + ], + "than": [ + 71 + ], + "one": [ + 72 + ], + "algorithm": [ + 76, + 123, + 136, + 145, + 227 + ], + "on": [ + 77 + ], + "single": [ + 78 + ], + "Two": [ + 81 + ], + "databases": [ + 82 + ], + "(i.e.,": [ + 83 + ], + "Scopus": [ + 84 + ], + "PubMed)": [ + 86 + ], + "searched": [ + 88 + ], + "search": [ + 93 + ], + "items.": [ + 94 + ], + "Thus,": [ + 95 + ], + "we": [ + 96 + ], + "selected": [ + 97 + ], + "48": [ + 98 + ], + "articles": [ + 99 + ], + "total": [ + 101 + ], + "comparison": [ + 104 + ], + "variants": [ + 106, + 197 + ], + "RESULTS:": [ + 114 + ], + "We": [ + 115 + ], + "found": [ + 116 + ], + "Support": [ + 119 + ], + "Vector": [ + 120 + ], + "Machine": [ + 121 + ], + "(SVM)": [ + 122 + ], + "is": [ + 124 + ], + "most": [ + 126 + ], + "frequently": [ + 127 + ], + "(in": [ + 128, + 137 + ], + "29": [ + 129 + ], + "studies)": [ + 130 + ], + "followed": [ + 131, + 171 + ], + "by": [ + 132, + 172 + ], + "Naïve": [ + 134 + ], + "Bayes": [ + 135 + ], + "23": [ + 138 + ], + "studies).": [ + 139 + ], + "However,": [ + 140 + ], + "Random": [ + 142 + ], + "Forest": [ + 143 + ], + "(RF)": [ + 144 + ], + "showed": [ + 146, + 159 + ], + "superior": [ + 147 + ], + "accuracy": [ + 148, + 162 + ], + "comparatively.": [ + 149 + ], + "Of": [ + 150 + ], + "17": [ + 152 + ], + "where": [ + 154 + ], + "it": [ + 155, + 181 + ], + "was": [ + 156, + 170, + 182 + ], + "applied,": [ + 157 + ], + "RF": [ + 158 + ], + "highest": [ + 161 + ], + "9": [ + 164 + ], + "them,": [ + 166 + ], + "i.e.,": [ + 167 + ], + "53%.": [ + 168 + ], + "SVM": [ + 173 + ], + "which": [ + 174 + ], + "topped": [ + 175 + ], + "41%": [ + 177 + ], + "considered.": [ + 183 + ], + "CONCLUSION:": [ + 184 + ], + "provides": [ + 187 + ], + "wide": [ + 189 + ], + "overview": [ + 190 + ], + "relative": [ + 193, + 210 + ], + "important": [ + 207 + ], + "information": [ + 208 + ], + "can": [ + 212 + ], + "be": [ + 213 + ], + "used": [ + 214 + ], + "aid": [ + 216 + ], + "researchers": [ + 217 + ], + "selection": [ + 220 + ], + "an": [ + 222 + ], + "appropriate": [ + 223 + ], + "studies.": [ + 230 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 74 + }, + { + "year": 2025, + "cited_by_count": 313 + }, + { + "year": 2024, + "cited_by_count": 370 + }, + { + "year": 2023, + "cited_by_count": 368 + }, + { + "year": 2022, + "cited_by_count": 289 + }, + { + "year": 2021, + "cited_by_count": 168 + }, + { + "year": 2020, + "cited_by_count": 37 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2936573766", + "doi": "https://doi.org/10.1186/s12874-019-0681-4", + "title": "Machine learning in medicine: a practical introduction", + "display_name": "Machine learning in medicine: a practical introduction", + "relevance_score": 2525.034, + "publication_year": 2019, + "publication_date": "2019-03-19", + "ids": { + "openalex": "https://openalex.org/W2936573766", + "doi": "https://doi.org/10.1186/s12874-019-0681-4", + "mag": "2936573766", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30890124" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5011988336", + "display_name": "Jenni A. M. Sidey-Gibbons", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Jenni A. M. Sidey-Gibbons", + "raw_affiliation_strings": [ + "Department of Engineering, University of Cambridge, Trumpington Street, Cambridge, CB2 1PZ, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, University of Cambridge, Trumpington Street, Cambridge, CB2 1PZ, UK", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5038685423", + "display_name": "Chris Sidey‐Gibbons", + "orcid": "https://orcid.org/0000-0002-4732-7305" + }, + "institutions": [ + { + "id": "https://openalex.org/I1283280774", + "display_name": "Brigham and Women's Hospital", + "ror": "https://ror.org/04b6nzv94", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I1283280774", + "https://openalex.org/I48633490" + ] + }, + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + }, + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Chris J. Sidey-Gibbons", + "raw_affiliation_strings": [ + "Department of Surgery, Brigham and Women's Hospital, 75 Francis Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "University of Cambridge Psychometrics Centre, Trumpington Street, Cambridge, CB2 1AG, UK. cgibbons2@bwh.harvard.edu", + "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-4732-7305", + "affiliations": [ + { + "raw_affiliation_string": "Department of Surgery, Brigham and Women's Hospital, 75 Francis Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I1283280774" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + }, + { + "raw_affiliation_string": "University of Cambridge Psychometrics Centre, Trumpington Street, Cambridge, CB2 1AG, UK. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I241749" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5038685423" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1283280774", + "https://openalex.org/I136199984", + "https://openalex.org/I241749" + ], + "apc_list": { + "value": 1790, + "currency": "GBP", + "value_usd": 2195 + }, + "apc_paid": { + "value": 1790, + "currency": "GBP", + "value_usd": 2195 + }, + "fwci": 68.7809, + "has_fulltext": true, + "cited_by_count": 1263, + "citation_normalized_percentile": { + "value": 0.99923339, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "19", + "issue": "1", + "first_page": "64", + "last_page": "64" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9581000208854675, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9581000208854675, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12422", + "display_name": "Radiomics and Machine Learning in Medical Imaging", + "score": 0.003700000001117587, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T12994", + "display_name": "Infrared Thermography in Medicine", + "score": 0.0031999999191612005, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.8439639806747437 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.762427806854248 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7216744422912598 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.7101428508758545 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.48576977849006653 + }, + { + "id": "https://openalex.org/keywords/cross-validation", + "display_name": "Cross-validation", + "score": 0.4503832459449768 + }, + { + "id": "https://openalex.org/keywords/sensitivity", + "display_name": "Sensitivity (control systems)", + "score": 0.4276343286037445 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.39164337515830994 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.33824363350868225 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.8439639806747437 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.762427806854248 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7216744422912598 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.7101428508758545 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.48576977849006653 + }, + { + "id": "https://openalex.org/C27181475", + "wikidata": "https://www.wikidata.org/wiki/Q541014", + "display_name": "Cross-validation", + "level": 2, + "score": 0.4503832459449768 + }, + { + "id": "https://openalex.org/C21200559", + "wikidata": "https://www.wikidata.org/wiki/Q7451068", + "display_name": "Sensitivity (control systems)", + "level": 2, + "score": 0.4276343286037445 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.39164337515830994 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.33824363350868225 + }, + { + "id": "https://openalex.org/C24326235", + "wikidata": "https://www.wikidata.org/wiki/Q126095", + "display_name": "Electronic engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + { + "id": "pmid:30890124", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30890124", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC medical research methodology", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:5bab4056aa204fd895ccd0806796ea31", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/5bab4056aa204fd895ccd0806796ea31", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Medical Research Methodology, Vol 19, Iss 1, Pp 1-18 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:5418903", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6425557", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G3027281633", + "display_name": null, + "funder_award_id": "PDF-2014-07-28", + "funder_id": "https://openalex.org/F4320334659", + "funder_display_name": "Research Trainees Coordinating Centre" + }, + { + "id": "https://openalex.org/G5017041387", + "display_name": null, + "funder_award_id": "PDF-2014-07-028", + "funder_id": "https://openalex.org/F4320319990", + "funder_display_name": "National Institute for Health and Care Research" + }, + { + "id": "https://openalex.org/G6065741097", + "display_name": null, + "funder_award_id": "CDF-2017-10-019", + "funder_id": "https://openalex.org/F4320334659", + "funder_display_name": "Research Trainees Coordinating Centre" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320319990", + "display_name": "National Institute for Health and Care Research", + "ror": "https://ror.org/0187kwz08" + }, + { + "id": "https://openalex.org/F4320334659", + "display_name": "Research Trainees Coordinating Centre", + "ror": "https://ror.org/0187kwz08" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2936573766.pdf", + "grobid_xml": "https://content.openalex.org/works/W2936573766.grobid-xml" + }, + "referenced_works_count": 40, + "referenced_works": [ + "https://openalex.org/W85009029", + "https://openalex.org/W1267646904", + "https://openalex.org/W1880262756", + "https://openalex.org/W1901616594", + "https://openalex.org/W1955303603", + "https://openalex.org/W1969557815", + "https://openalex.org/W1979744342", + "https://openalex.org/W2015795623", + "https://openalex.org/W2039708501", + "https://openalex.org/W2054290230", + "https://openalex.org/W2062227835", + "https://openalex.org/W2068181924", + "https://openalex.org/W2105034425", + "https://openalex.org/W2119821739", + "https://openalex.org/W2122825543", + "https://openalex.org/W2148554370", + "https://openalex.org/W2153803020", + "https://openalex.org/W2157825442", + "https://openalex.org/W2161793142", + "https://openalex.org/W2163605009", + "https://openalex.org/W2180737626", + "https://openalex.org/W2187089797", + "https://openalex.org/W2236731268", + "https://openalex.org/W2254050631", + "https://openalex.org/W2263224247", + "https://openalex.org/W2282821441", + "https://openalex.org/W2440159969", + "https://openalex.org/W2581082771", + "https://openalex.org/W2598641350", + "https://openalex.org/W2599379579", + "https://openalex.org/W2788588291", + "https://openalex.org/W2789894922", + "https://openalex.org/W3023058184", + "https://openalex.org/W3048797457", + "https://openalex.org/W4235011515", + "https://openalex.org/W4235051201", + "https://openalex.org/W4239510810", + "https://openalex.org/W4288077072", + "https://openalex.org/W6632445771", + "https://openalex.org/W6639619044" + ], + "related_works": [ + "https://openalex.org/W2090763504", + "https://openalex.org/W816105089", + "https://openalex.org/W148178222", + "https://openalex.org/W2104657898", + "https://openalex.org/W1948992892", + "https://openalex.org/W1886884218", + "https://openalex.org/W2550904580", + "https://openalex.org/W2963653239", + "https://openalex.org/W4241378172", + "https://openalex.org/W2144801536" + ], + "abstract_inverted_index": { + "BACKGROUND:": [ + 0 + ], + "Following": [ + 1 + ], + "visible": [ + 2 + ], + "successes": [ + 3 + ], + "on": [ + 4, + 131, + 155 + ], + "a": [ + 5, + 35, + 42, + 99, + 190, + 255, + 261 + ], + "wide": [ + 6 + ], + "range": [ + 7 + ], + "of": [ + 8, + 65, + 79, + 171, + 179, + 270 + ], + "predictive": [ + 9, + 49, + 72, + 186 + ], + "tasks,": [ + 10 + ], + "machine": [ + 11, + 39, + 66, + 271 + ], + "learning": [ + 12, + 40, + 67, + 272 + ], + "techniques": [ + 13, + 68 + ], + "are": [ + 14 + ], + "attracting": [ + 15 + ], + "substantial": [ + 16 + ], + "interest": [ + 17 + ], + "from": [ + 18, + 82, + 133 + ], + "medical": [ + 19, + 276 + ], + "researchers": [ + 20 + ], + "and": [ + 21, + 47, + 56, + 104, + 124, + 169, + 181, + 221, + 228, + 268, + 275, + 296 + ], + "clinicians.": [ + 22 + ], + "We": [ + 23, + 61, + 128, + 150, + 175, + 188, + 259 + ], + "address": [ + 24 + ], + "the": [ + 25, + 63, + 113, + 134, + 143, + 147, + 152, + 156, + 160, + 166, + 172, + 177, + 197, + 231, + 237, + 266 + ], + "need": [ + 26 + ], + "for": [ + 27, + 74, + 273 + ], + "capacity": [ + 28 + ], + "development": [ + 29 + ], + "in": [ + 30, + 146 + ], + "this": [ + 31 + ], + "area": [ + 32, + 229 + ], + "by": [ + 33, + 69 + ], + "providing": [ + 34 + ], + "conceptual": [ + 36 + ], + "introduction": [ + 37 + ], + "to": [ + 38, + 45, + 141, + 164, + 184, + 193, + 209, + 264, + 288 + ], + "alongside": [ + 41 + ], + "practical": [ + 43 + ], + "guide": [ + 44, + 192 + ], + "developing": [ + 46, + 70, + 194 + ], + "evaluating": [ + 48 + ], + "algorithms": [ + 50, + 86, + 130, + 195, + 206, + 251 + ], + "using": [ + 51, + 77, + 196, + 236 + ], + "freely-available": [ + 52 + ], + "open": [ + 53 + ], + "source": [ + 54 + ], + "software": [ + 55 + ], + "public": [ + 57 + ], + "domain": [ + 58 + ], + "data.": [ + 59 + ], + "METHODS:": [ + 60 + ], + "demonstrate": [ + 62, + 265, + 282 + ], + "use": [ + 64, + 178, + 260 + ], + "three": [ + 71, + 173 + ], + "models": [ + 73 + ], + "cancer": [ + 75 + ], + "diagnosis": [ + 76 + ], + "descriptions": [ + 78 + ], + "nuclei": [ + 80, + 212 + ], + "sampled": [ + 81 + ], + "breast": [ + 83, + 114 + ], + "masses.": [ + 84 + ], + "These": [ + 85 + ], + "include": [ + 87 + ], + "regularized": [ + 88 + ], + "General": [ + 89 + ], + "Linear": [ + 90 + ], + "Model": [ + 91 + ], + "regression": [ + 92 + ], + "(GLMs),": [ + 93 + ], + "Support": [ + 94 + ], + "Vector": [ + 95 + ], + "Machines": [ + 96 + ], + "(SVMs)": [ + 97 + ], + "with": [ + 98, + 159, + 213 + ], + "radial": [ + 100 + ], + "basis": [ + 101 + ], + "function": [ + 102 + ], + "kernel,": [ + 103 + ], + "single-layer": [ + 105 + ], + "Artificial": [ + 106 + ], + "Neural": [ + 107 + ], + "Networks.": [ + 108 + ], + "The": [ + 109, + 204, + 278 + ], + "publicly-available": [ + 110 + ], + "dataset": [ + 111 + ], + "describing": [ + 112 + ], + "mass": [ + 115 + ], + "samples": [ + 116 + ], + "(N=683)": [ + 117 + ], + "was": [ + 118, + 234 + ], + "randomly": [ + 119 + ], + "split": [ + 120 + ], + "into": [ + 121, + 254 + ], + "evaluation": [ + 122, + 135 + ], + "(n=456)": [ + 123 + ], + "validation": [ + 125, + 148, + 157 + ], + "(n=227)": [ + 126 + ], + "samples.": [ + 127 + ], + "trained": [ + 129, + 205 + ], + "data": [ + 132 + ], + "sample": [ + 136 + ], + "before": [ + 137 + ], + "they": [ + 138 + ], + "were": [ + 139, + 207, + 252 + ], + "used": [ + 140 + ], + "predict": [ + 142 + ], + "diagnostic": [ + 144, + 162 + ], + "outcome": [ + 145 + ], + "dataset.": [ + 149 + ], + "compared": [ + 151 + ], + "predictions": [ + 153 + ], + "made": [ + 154 + ], + "datasets": [ + 158 + ], + "real-world": [ + 161 + ], + "decisions": [ + 163 + ], + "calculate": [ + 165 + ], + "accuracy,": [ + 167 + ], + "sensitivity,": [ + 168 + ], + "specificity": [ + 170, + 222, + 248 + ], + "models.": [ + 174 + ], + "explored": [ + 176 + ], + "averaging": [ + 180 + ], + "voting": [ + 182, + 256 + ], + "ensembles": [ + 183 + ], + "improve": [ + 185 + ], + "performance.": [ + 187 + ], + "provide": [ + 189 + ], + "step-by-step": [ + 191 + ], + "open-source": [ + 198 + ], + "R": [ + 199 + ], + "statistical": [ + 200 + ], + "programming": [ + 201 + ], + "environment.": [ + 202 + ], + "RESULTS:": [ + 203 + ], + "able": [ + 208 + ], + "classify": [ + 210 + ], + "cell": [ + 211 + ], + "high": [ + 214 + ], + "accuracy": [ + 215, + 226 + ], + "(.94": [ + 216 + ], + "-.96),": [ + 217 + ], + "sensitivity": [ + 218, + 246 + ], + "(.97": [ + 219 + ], + "-.99),": [ + 220 + ], + "(.85": [ + 223 + ], + "-.94).": [ + 224 + ], + "Maximum": [ + 225 + ], + "(.96)": [ + 227 + ], + "under": [ + 230 + ], + "curve": [ + 232 + ], + "(.97)": [ + 233 + ], + "achieved": [ + 235 + ], + "SVM": [ + 238 + ], + "algorithm.": [ + 239 + ], + "Prediction": [ + 240 + ], + "performance": [ + 241 + ], + "increased": [ + 242 + ], + "marginally": [ + 243 + ], + "(accuracy": [ + 244 + ], + "=.97,": [ + 245 + ], + "=.99,": [ + 247 + ], + "=.95)": [ + 249 + ], + "when": [ + 250 + ], + "arranged": [ + 253 + ], + "ensemble.": [ + 257 + ], + "CONCLUSIONS:": [ + 258 + ], + "straightforward": [ + 262 + ], + "example": [ + 263 + ], + "theory": [ + 267 + ], + "practice": [ + 269 + ], + "clinicians": [ + 274 + ], + "researchers.": [ + 277 + ], + "principals": [ + 279 + ], + "which": [ + 280 + ], + "we": [ + 281 + ], + "here": [ + 283 + ], + "can": [ + 284 + ], + "be": [ + 285 + ], + "readily": [ + 286 + ], + "applied": [ + 287 + ], + "other": [ + 289 + ], + "complex": [ + 290 + ], + "tasks": [ + 291 + ], + "including": [ + 292 + ], + "natural": [ + 293 + ], + "language": [ + 294 + ], + "processing": [ + 295 + ], + "image": [ + 297 + ], + "recognition.": [ + 298 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 54 + }, + { + "year": 2025, + "cited_by_count": 223 + }, + { + "year": 2024, + "cited_by_count": 252 + }, + { + "year": 2023, + "cited_by_count": 259 + }, + { + "year": 2022, + "cited_by_count": 213 + }, + { + "year": 2021, + "cited_by_count": 167 + }, + { + "year": 2020, + "cited_by_count": 89 + }, + { + "year": 2019, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2540093921", + "doi": "https://doi.org/10.7551/mitpress/8291.003.0006", + "title": "Foundations of Machine Learning", + "display_name": "Foundations of Machine Learning", + "relevance_score": 2524.9668, + "publication_year": 2012, + "publication_date": "2012-05-18", + "ids": { + "openalex": "https://openalex.org/W2540093921", + "doi": "https://doi.org/10.7551/mitpress/8291.003.0006", + "mag": "2540093921" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 46.8615, + "has_fulltext": false, + "cited_by_count": 1088, + "citation_normalized_percentile": { + "value": 0.99935275, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "23", + "last_page": "52" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.056299999356269836, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.056299999356269836, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12874", + "display_name": "Digital Imaging for Blood Diseases", + "score": 0.05420000106096268, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.47987475991249084 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.347138911485672 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.47987475991249084 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.347138911485672 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + } + ], + "best_oa_location": { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2540093921.pdf", + "grobid_xml": "https://content.openalex.org/works/W2540093921.grobid-xml" + }, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2382290278", + "https://openalex.org/W2350741829", + "https://openalex.org/W2130043461", + "https://openalex.org/W2530322880", + "https://openalex.org/W1596801655" + ], + "abstract_inverted_index": { + "Foundations": [ + 0 + ], + "of": [ + 1, + 11, + 63, + 78, + 84, + 89, + 114, + 146, + 154, + 165, + 179, + 187, + 247, + 297, + 311, + 319, + 322 + ], + "Machine": [ + 2 + ], + "LearningSoon": [ + 3 + ], + "we": [ + 4, + 171, + 202, + 207, + 255 + ], + "will": [ + 5, + 41, + 46, + 72, + 172, + 203, + 231, + 256 + ], + "embark": [ + 6 + ], + "on": [ + 7, + 34, + 100, + 239, + 262 + ], + "a": [ + 8, + 23, + 51, + 87, + 92, + 142, + 150, + 210, + 284, + 294 + ], + "theoretical": [ + 9 + ], + "study": [ + 10, + 80 + ], + "AdaBoost": [ + 12 + ], + "in": [ + 13, + 75, + 168, + 183, + 232, + 251, + 270, + 281, + 292, + 332 + ], + "order": [ + 14 + ], + "to": [ + 15, + 26, + 30, + 49, + 54, + 58, + 139, + 149, + 192, + 267 + ], + "understand": [ + 16 + ], + "its": [ + 17, + 20 + ], + "properties,": [ + 18 + ], + "particularly": [ + 19 + ], + "ability": [ + 21 + ], + "as": [ + 22 + ], + "learning": [ + 24, + 115, + 188, + 276 + ], + "algorithm": [ + 25 + ], + "generalize,": [ + 27 + ], + "that": [ + 28, + 71, + 205, + 213 + ], + "is,": [ + 29 + ], + "make": [ + 31 + ], + "accurate": [ + 32, + 99, + 237 + ], + "predictions": [ + 33, + 96, + 238 + ], + "data": [ + 35, + 217 + ], + "not": [ + 36, + 225 + ], + "seen": [ + 37 + ], + "during": [ + 38 + ], + "training.Before": [ + 39 + ], + "this": [ + 40, + 112, + 169, + 185, + 229, + 252, + 282, + 314 + ], + "be": [ + 42, + 47, + 73, + 118, + 124, + 137, + 190, + 193, + 302 + ], + "possible,": [ + 43 + ], + "however,": [ + 44 + ], + "it": [ + 45, + 107, + 136, + 264 + ], + "necessary": [ + 48 + ], + "take": [ + 50 + ], + "step": [ + 52 + ], + "back": [ + 53 + ], + "outline": [ + 55, + 280 + ], + "our": [ + 56, + 76 + ], + "approach": [ + 57, + 249 + ], + "the": [ + 59, + 81, + 128, + 163, + 180, + 215, + 221, + 245, + 248, + 259, + 298, + 309, + 312, + 320, + 323 + ], + "more": [ + 60 + ], + "general": [ + 61, + 260 + ], + "problem": [ + 62, + 83, + 182, + 300 + ], + "machine": [ + 64, + 289 + ], + "learning,": [ + 65, + 290 + ], + "including": [ + 66 + ], + "some": [ + 67 + ], + "fundamental": [ + 68 + ], + "general-purpose": [ + 69 + ], + "tools": [ + 70 + ], + "invaluable": [ + 74 + ], + "analysis": [ + 77, + 261 + ], + "AdaBoost.We": [ + 79 + ], + "basic": [ + 82 + ], + "inferring": [ + 85 + ], + "from": [ + 86, + 141 + ], + "set": [ + 88, + 223 + ], + "training": [ + 90, + 129, + 147, + 216, + 222 + ], + "examples": [ + 91, + 148 + ], + "classification": [ + 93 + ], + "rule": [ + 94, + 212, + 230 + ], + "whose": [ + 95 + ], + "are": [ + 97, + 199 + ], + "highly": [ + 98 + ], + "freshly": [ + 101 + ], + "observed": [ + 102 + ], + "test": [ + 103, + 131, + 155, + 242 + ], + "data.On": [ + 104 + ], + "first": [ + 105 + ], + "encounter,": [ + 106 + ], + "may": [ + 108 + ], + "seem": [ + 109 + ], + "questionable": [ + 110 + ], + "whether": [ + 111 + ], + "kind": [ + 113, + 186 + ], + "should": [ + 116, + 122, + 135 + ], + "even": [ + 117 + ], + "possible.After": [ + 119 + ], + "all,": [ + 120 + ], + "why": [ + 121, + 134 + ], + "there": [ + 123 + ], + "any": [ + 125 + ], + "connection": [ + 126 + ], + "between": [ + 127 + ], + "and": [ + 130, + 133, + 219, + 254, + 274, + 304, + 335 + ], + "examples,": [ + 132 + ], + "possible": [ + 138 + ], + "generalize": [ + 140, + 234 + ], + "relatively": [ + 143 + ], + "small": [ + 144 + ], + "number": [ + 145 + ], + "potentially": [ + 151 + ], + "vast": [ + 152 + ], + "universe": [ + 153 + ], + "examples?Although": [ + 156 + ], + "such": [ + 157 + ], + "objections": [ + 158 + ], + "have": [ + 159, + 328 + ], + "indeed": [ + 160 + ], + "often": [ + 161, + 257 + ], + "been": [ + 162 + ], + "subject": [ + 164 + ], + "philosophical": [ + 166 + ], + "debate,": [ + 167 + ], + "chapter": [ + 170, + 283, + 315 + ], + "identify": [ + 173 + ], + "an": [ + 174 + ], + "idealized": [ + 175 + ], + "but": [ + 176 + ], + "realistic": [ + 177 + ], + "model": [ + 178 + ], + "inference": [ + 181 + ], + "which": [ + 184, + 263, + 293 + ], + "can": [ + 189, + 208, + 301 + ], + "proved": [ + 191 + ], + "entirely": [ + 194 + ], + "feasible": [ + 195 + ], + "when": [ + 196, + 275 + ], + "certain": [ + 197 + ], + "conditions": [ + 198 + ], + "satisfied.In": [ + 200 + ], + "particular,": [ + 201 + ], + "see": [ + 204 + ], + "if": [ + 206, + 220 + ], + "find": [ + 209 + ], + "simple": [ + 211 + ], + "fits": [ + 214 + ], + "well,": [ + 218, + 235 + ], + "is": [ + 224, + 244, + 265, + 277 + ], + "too": [ + 226 + ], + "small,": [ + 227 + ], + "then": [ + 228 + ], + "fact": [ + 233 + ], + "providing": [ + 236 + ], + "previously": [ + 240 + ], + "unseen": [ + 241 + ], + "examples.This": [ + 243 + ], + "basis": [ + 246 + ], + "presented": [ + 250 + ], + "chapter,": [ + 253 + ], + "use": [ + 258 + ], + "founded": [ + 266 + ], + "guide": [ + 268 + ], + "us": [ + 269 + ], + "understanding": [ + 271 + ], + "how,": [ + 272 + ], + "why,": [ + 273 + ], + "possible.We": [ + 278 + ], + "also": [ + 279 + ], + "mathematical": [ + 285 + ], + "framework": [ + 286 + ], + "for": [ + 287 + ], + "studying": [ + 288 + ], + "one": [ + 291 + ], + "precise": [ + 295 + ], + "formulation": [ + 296 + ], + "boosting": [ + 299 + ], + "clearly": [ + 303 + ], + "naturally": [ + 305 + ], + "expressed.Note": [ + 306 + ], + "that,": [ + 307 + ], + "unlike": [ + 308 + ], + "rest": [ + 310 + ], + "book,": [ + 313 + ], + "omits": [ + 316 + ], + "nearly": [ + 317 + ], + "all": [ + 318, + 330 + ], + "proofs": [ + 321 + ], + "main": [ + 324 + ], + "results": [ + 325 + ], + "since": [ + 326 + ], + "these": [ + 327 + ], + "largely": [ + 329 + ], + "appeared": [ + 331 + ], + "various": [ + 333 + ], + "texts": [ + 334 + ], + "articles.": [ + 336 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 33 + }, + { + "year": 2024, + "cited_by_count": 57 + }, + { + "year": 2023, + "cited_by_count": 75 + }, + { + "year": 2022, + "cited_by_count": 93 + }, + { + "year": 2021, + "cited_by_count": 111 + }, + { + "year": 2020, + "cited_by_count": 113 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 116 + }, + { + "year": 2017, + "cited_by_count": 104 + }, + { + "year": 2016, + "cited_by_count": 99 + }, + { + "year": 2015, + "cited_by_count": 73 + }, + { + "year": 2014, + "cited_by_count": 57 + }, + { + "year": 2013, + "cited_by_count": 18 + } + ], + "updated_date": "2026-04-04T16:13:02.066488", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2186615578", + "doi": "https://doi.org/10.48550/arxiv.1512.01274", + "title": "MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems", + "display_name": "MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems", + "relevance_score": 2496.3748, + "publication_year": 2015, + "publication_date": "2015-12-03", + "ids": { + "openalex": "https://openalex.org/W2186615578", + "doi": "https://doi.org/10.48550/arxiv.1512.01274", + "mag": "2186615578" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1512.01274", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101471082", + "display_name": "Tianqi Chen", + "orcid": "https://orcid.org/0000-0002-0277-5163" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Chen, Tianqi", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100399457", + "display_name": "Mu Li", + "orcid": "https://orcid.org/0000-0001-9871-7488" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Li, Mu", + "raw_affiliation_strings": [ + "Carnegie Mellon University" + ], + "affiliations": [ + { + "raw_affiliation_string": "Carnegie Mellon University", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5085236897", + "display_name": "Yutian Li", + "orcid": "https://orcid.org/0000-0003-1810-3000" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Li, Yutian", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100697981", + "display_name": "Min Lin", + "orcid": "https://orcid.org/0000-0002-0296-436X" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Lin, Min", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100742122", + "display_name": "Naiyan Wang", + "orcid": "https://orcid.org/0000-0002-0526-3331" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wang, Naiyan", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101452217", + "display_name": "Minjie Wang", + "orcid": "https://orcid.org/0000-0001-8830-6079" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wang, Minjie", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5020757657", + "display_name": "Tianjun Xiao", + "orcid": "https://orcid.org/0000-0003-4705-1545" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Xiao, Tianjun", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003333136", + "display_name": "Bing Xu", + "orcid": "https://orcid.org/0000-0003-3677-1109" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Xu, Bing", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016054994", + "display_name": "Chiyuan Zhang", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhang, Chiyuan", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100459107", + "display_name": "Zheng Zhang", + "orcid": "https://orcid.org/0000-0002-2292-0030" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhang, Zheng", + "raw_affiliation_strings": [], + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 10, + "corresponding_author_ids": [ + "https://openalex.org/A5101471082" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 1922, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9966999888420105, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9966999888420105, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9911999702453613, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10273", + "display_name": "IoT and Edge/Fog Computing", + "score": 0.9869999885559082, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6740605235099792 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.47939276695251465 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4228232204914093 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6740605235099792 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.47939276695251465 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4228232204914093 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1512.01274", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1512.01274", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 9, + "referenced_works": [ + "https://openalex.org/W753012316", + "https://openalex.org/W1606347560", + "https://openalex.org/W1863582480", + "https://openalex.org/W2083842231", + "https://openalex.org/W2117539524", + "https://openalex.org/W2127941149", + "https://openalex.org/W2155893237", + "https://openalex.org/W2168231600", + "https://openalex.org/W2949117887" + ], + "related_works": [ + "https://openalex.org/W4391375266", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W2382290278", + "https://openalex.org/W2478288626", + "https://openalex.org/W4391913857", + "https://openalex.org/W2350741829" + ], + "abstract_inverted_index": { + "MXNet": [ + 0, + 41 + ], + "is": [ + 1, + 42, + 85 + ], + "a": [ + 2, + 88 + ], + "multi-language": [ + 3 + ], + "machine": [ + 4 + ], + "learning": [ + 5 + ], + "(ML)": [ + 6 + ], + "library": [ + 7 + ], + "to": [ + 8, + 38, + 57 + ], + "ease": [ + 9 + ], + "the": [ + 10, + 22, + 65, + 69 + ], + "development": [ + 11 + ], + "of": [ + 12, + 72, + 78 + ], + "ML": [ + 13 + ], + "algorithms,": [ + 14 + ], + "especially": [ + 15 + ], + "for": [ + 16 + ], + "deep": [ + 17, + 100 + ], + "neural": [ + 18, + 101 + ], + "networks.": [ + 19 + ], + "Embedded": [ + 20 + ], + "in": [ + 21, + 87 + ], + "host": [ + 23 + ], + "language,": [ + 24 + ], + "it": [ + 25 + ], + "blends": [ + 26 + ], + "declarative": [ + 27 + ], + "symbolic": [ + 28, + 80 + ], + "expression": [ + 29, + 81 + ], + "with": [ + 30 + ], + "imperative": [ + 31 + ], + "tensor": [ + 32, + 83 + ], + "computation.": [ + 33 + ], + "It": [ + 34 + ], + "offers": [ + 35 + ], + "auto": [ + 36 + ], + "differentiation": [ + 37 + ], + "derive": [ + 39 + ], + "gradients.": [ + 40 + ], + "computation": [ + 43 + ], + "and": [ + 44, + 47, + 68, + 74, + 82 + ], + "memory": [ + 45 + ], + "efficient": [ + 46 + ], + "runs": [ + 48 + ], + "on": [ + 49, + 97 + ], + "various": [ + 50 + ], + "heterogeneous": [ + 51 + ], + "systems,": [ + 52 + ], + "ranging": [ + 53 + ], + "from": [ + 54 + ], + "mobile": [ + 55 + ], + "devices": [ + 56 + ], + "distributed": [ + 58 + ], + "GPU": [ + 59, + 106 + ], + "clusters.": [ + 60 + ], + "This": [ + 61 + ], + "paper": [ + 62 + ], + "describes": [ + 63 + ], + "both": [ + 64, + 79 + ], + "API": [ + 66 + ], + "design": [ + 67 + ], + "system": [ + 70 + ], + "implementation": [ + 71 + ], + "MXNet,": [ + 73 + ], + "explains": [ + 75 + ], + "how": [ + 76 + ], + "embedding": [ + 77 + ], + "operation": [ + 84 + ], + "handled": [ + 86 + ], + "unified": [ + 89 + ], + "fashion.": [ + 90 + ], + "Our": [ + 91 + ], + "preliminary": [ + 92 + ], + "experiments": [ + 93 + ], + "reveal": [ + 94 + ], + "promising": [ + 95 + ], + "results": [ + 96 + ], + "large": [ + 98 + ], + "scale": [ + 99 + ], + "network": [ + 102 + ], + "applications": [ + 103 + ], + "using": [ + 104 + ], + "multiple": [ + 105 + ], + "machines.": [ + 107 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 23 + }, + { + "year": 2024, + "cited_by_count": 66 + }, + { + "year": 2023, + "cited_by_count": 119 + }, + { + "year": 2022, + "cited_by_count": 116 + }, + { + "year": 2021, + "cited_by_count": 272 + }, + { + "year": 2020, + "cited_by_count": 344 + }, + { + "year": 2019, + "cited_by_count": 425 + }, + { + "year": 2018, + "cited_by_count": 328 + }, + { + "year": 2017, + "cited_by_count": 163 + }, + { + "year": 2016, + "cited_by_count": 63 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-04-15T08:11:43.952461", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1549998098", + "doi": "https://doi.org/10.1201/b17476", + "title": "Machine Learning: An Algorithmic Perspective", + "display_name": "Machine Learning: An Algorithmic Perspective", + "relevance_score": 2493.1604, + "publication_year": 2009, + "publication_date": "2009-04-01", + "ids": { + "openalex": "https://openalex.org/W1549998098", + "doi": "https://doi.org/10.1201/b17476", + "mag": "1549998098" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-017552574", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017552574&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5062355849", + "display_name": "Stephen Marsland", + "orcid": "https://orcid.org/0000-0002-9568-848X" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Stephen Marsland", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5062355849" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 7.7283, + "has_fulltext": false, + "cited_by_count": 1082, + "citation_normalized_percentile": { + "value": 0.97590361, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.9527999758720398, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.9527999758720398, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9485999941825867, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.9290000200271606, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8247708678245544 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6978603005409241 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.6065407991409302 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5084995031356812 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.485168993473053 + }, + { + "id": "https://openalex.org/keywords/reinforcement-learning", + "display_name": "Reinforcement learning", + "score": 0.46519267559051514 + }, + { + "id": "https://openalex.org/keywords/dimensionality-reduction", + "display_name": "Dimensionality reduction", + "score": 0.4341639578342438 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.40039053559303284 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3699588179588318 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.27868103981018066 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8247708678245544 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6978603005409241 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.6065407991409302 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5084995031356812 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.485168993473053 + }, + { + "id": "https://openalex.org/C97541855", + "wikidata": "https://www.wikidata.org/wiki/Q830687", + "display_name": "Reinforcement learning", + "level": 2, + "score": 0.46519267559051514 + }, + { + "id": "https://openalex.org/C70518039", + "wikidata": "https://www.wikidata.org/wiki/Q16000077", + "display_name": "Dimensionality reduction", + "level": 2, + "score": 0.4341639578342438 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.40039053559303284 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3699588179588318 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.27868103981018066 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-017552574", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017552574&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027969692", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027969692&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-032339396", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1201/b17476", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:cds.cern.ch:1338551", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1338551", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2749325", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2749325", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:1549998098", + "is_oa": false, + "landing_page_url": "https://www.comp.hkbu.edu.hk/~cib/2009/Dec/review1/iib_vol10no1_review1.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 4, + "referenced_works": [ + "https://openalex.org/W136111882", + "https://openalex.org/W1554944419", + "https://openalex.org/W1606368318", + "https://openalex.org/W2799061466" + ], + "related_works": [ + "https://openalex.org/W2911964244", + "https://openalex.org/W1663973292", + "https://openalex.org/W1570448133", + "https://openalex.org/W2122410182", + "https://openalex.org/W1554944419", + "https://openalex.org/W2101234009", + "https://openalex.org/W1503398984", + "https://openalex.org/W2919115771", + "https://openalex.org/W3145506661", + "https://openalex.org/W2121863487", + "https://openalex.org/W2124776405", + "https://openalex.org/W1873332500", + "https://openalex.org/W2912934387", + "https://openalex.org/W2119821739", + "https://openalex.org/W1480376833", + "https://openalex.org/W3085162807", + "https://openalex.org/W2140190241", + "https://openalex.org/W2799061466", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766" + ], + "abstract_inverted_index": { + "Traditional": [ + 0 + ], + "books": [ + 1 + ], + "on": [ + 2, + 29 + ], + "machine": [ + 3, + 53 + ], + "learning": [ + 4, + 54 + ], + "can": [ + 5 + ], + "be": [ + 6 + ], + "divided": [ + 7 + ], + "into": [ + 8 + ], + "two": [ + 9 + ], + "groups": [ + 10 + ], + "-": [ + 11 + ], + "those": [ + 12, + 25 + ], + "aimed": [ + 13 + ], + "at": [ + 14 + ], + "advanced": [ + 15 + ], + "undergraduates": [ + 16 + ], + "or": [ + 17 + ], + "early": [ + 18 + ], + "postgraduates": [ + 19 + ], + "with": [ + 20 + ], + "reasonable": [ + 21 + ], + "mathematical": [ + 22 + ], + "knowledge": [ + 23 + ], + "and": [ + 24, + 65 + ], + "that": [ + 26, + 41, + 50, + 76 + ], + "are": [ + 27 + ], + "primers": [ + 28 + ], + "how": [ + 30, + 45, + 64 + ], + "to": [ + 31, + 46, + 62 + ], + "code": [ + 32 + ], + "algorithms.": [ + 33 + ], + "The": [ + 34 + ], + "field": [ + 35 + ], + "is": [ + 36, + 75 + ], + "ready": [ + 37 + ], + "for": [ + 38 + ], + "a": [ + 39 + ], + "text": [ + 40 + ], + "not": [ + 42 + ], + "only": [ + 43 + ], + "demonstrates": [ + 44 + ], + "use": [ + 47 + ], + "the": [ + 48, + 59 + ], + "algorithms": [ + 49, + 68 + ], + "make": [ + 51 + ], + "up": [ + 52, + 79 + ], + "methods,": [ + 55 + ], + "but": [ + 56 + ], + "also": [ + 57 + ], + "provides": [ + 58 + ], + "background": [ + 60 + ], + "needed": [ + 61 + ], + "understand": [ + 63 + ], + "why": [ + 66 + ], + "these": [ + 67 + ], + "work.": [ + 69 + ], + "Machine": [ + 70 + ], + "Learning:": [ + 71 + ], + "An": [ + 72 + ], + "Algorithmic": [ + 73 + ], + "Perspective": [ + 74 + ], + "text.Theory": [ + 77 + ], + "Backed": [ + 78 + ], + "by": [ + 80 + ], + "Practical": [ + 81 + ], + "ExamplesThe": [ + 82 + ], + "book": [ + 83 + ], + "covers": [ + 84 + ], + "neural": [ + 85 + ], + "networks,": [ + 86 + ], + "graphical": [ + 87 + ], + "models,": [ + 88 + ], + "reinforcement": [ + 89 + ], + "le": [ + 90 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 17 + }, + { + "year": 2024, + "cited_by_count": 56 + }, + { + "year": 2023, + "cited_by_count": 70 + }, + { + "year": 2022, + "cited_by_count": 88 + }, + { + "year": 2021, + "cited_by_count": 141 + }, + { + "year": 2020, + "cited_by_count": 140 + }, + { + "year": 2019, + "cited_by_count": 113 + }, + { + "year": 2018, + "cited_by_count": 96 + }, + { + "year": 2017, + "cited_by_count": 77 + }, + { + "year": 2016, + "cited_by_count": 61 + }, + { + "year": 2015, + "cited_by_count": 56 + }, + { + "year": 2014, + "cited_by_count": 45 + }, + { + "year": 2013, + "cited_by_count": 49 + }, + { + "year": 2012, + "cited_by_count": 49 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2464725281", + "doi": "https://doi.org/10.1038/npjcompumats.2016.28", + "title": "A general-purpose machine learning framework for predicting properties of inorganic materials", + "display_name": "A general-purpose machine learning framework for predicting properties of inorganic materials", + "relevance_score": 2488.577, + "publication_year": 2016, + "publication_date": "2016-08-26", + "ids": { + "openalex": "https://openalex.org/W2464725281", + "doi": "https://doi.org/10.1038/npjcompumats.2016.28", + "mag": "2464725281" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021403239", + "display_name": "Logan Ward", + "orcid": "https://orcid.org/0000-0002-1323-5939" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Logan Ward", + "raw_affiliation_strings": [ + "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-1323-5939", + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004659592", + "display_name": "Ankit Agrawal", + "orcid": "https://orcid.org/0000-0002-5519-0302" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ankit Agrawal", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074976770", + "display_name": "Alok Choudhary", + "orcid": "https://orcid.org/0000-0001-8152-6319" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alok Choudhary", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5113557612", + "display_name": "Christopher Wolverton", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christopher Wolverton", + "raw_affiliation_strings": [ + "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5021403239" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I111979921" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 33.8856, + "has_fulltext": true, + "cited_by_count": 1670, + "citation_normalized_percentile": { + "value": 0.99915051, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "2", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11825", + "display_name": "Catalysis and Oxidation Reactions", + "score": 0.9901999831199646, + "subfield": { + "id": "https://openalex.org/subfields/1503", + "display_name": "Catalysis" + }, + "field": { + "id": "https://openalex.org/fields/15", + "display_name": "Chemical Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7177993655204773 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6573723554611206 + }, + { + "id": "https://openalex.org/keywords/variety", + "display_name": "Variety (cybernetics)", + "score": 0.5816711783409119 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5580894351005554 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5311656594276428 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4939315915107727 + }, + { + "id": "https://openalex.org/keywords/materials-science", + "display_name": "Materials science", + "score": 0.1735665500164032 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7177993655204773 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6573723554611206 + }, + { + "id": "https://openalex.org/C136197465", + "wikidata": "https://www.wikidata.org/wiki/Q1729295", + "display_name": "Variety (cybernetics)", + "level": 2, + "score": 0.5816711783409119 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5580894351005554 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5311656594276428 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4939315915107727 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.1735665500164032 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1606.09551", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1606.09551", + "pdf_url": "https://arxiv.org/pdf/1606.09551", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:osti.gov:1437349", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1437349", + "pdf_url": "https://www.osti.gov/servlets/purl/1437349", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G1314375578", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306111", + "funder_display_name": "U.S. Department of Commerce" + }, + { + "id": "https://openalex.org/G1523888516", + "display_name": null, + "funder_award_id": "FA9550-", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G1676583131", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320337819", + "funder_display_name": "Center for Hierarchical Materials Design" + }, + { + "id": "https://openalex.org/G1872610661", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320337819", + "funder_display_name": "Center for Hierarchical Materials Design" + }, + { + "id": "https://openalex.org/G2989483902", + "display_name": "EAGER: Scalable Big Data Analytics", + "funder_award_id": "1343639", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G3481652762", + "display_name": null, + "funder_award_id": "CCF-1409601", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G3532683099", + "display_name": "SHF: Medium: Collaborative Research: Scalable Algorithms for Spatio-temporal Data Analysis", + "funder_award_id": "1409601", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4940832283", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320306111", + "funder_display_name": "U.S. Department of Commerce" + }, + { + "id": "https://openalex.org/G5249168579", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G5490804116", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306078", + "funder_display_name": "U.S. Department of Defense" + }, + { + "id": "https://openalex.org/G552768688", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320332178", + "funder_display_name": "National Institute of Standards and Technology" + }, + { + "id": "https://openalex.org/G5809100787", + "display_name": null, + "funder_award_id": "FA9550", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G6071252945", + "display_name": null, + "funder_award_id": "FA9550-12", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G6131312370", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320332178", + "funder_display_name": "National Institute of Standards and Technology" + }, + { + "id": "https://openalex.org/G6563589624", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7116556506", + "display_name": null, + "funder_award_id": "N66001-15-C-4036", + "funder_id": "https://openalex.org/F4320332180", + "funder_display_name": "Defense Advanced Research Projects Agency" + }, + { + "id": "https://openalex.org/G7999580237", + "display_name": null, + "funder_award_id": "FA9550-12-1", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G8678745938", + "display_name": null, + "funder_award_id": "DESC0007456", + "funder_id": "https://openalex.org/F4320306084", + "funder_display_name": "U.S. Department of Energy" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320306078", + "display_name": "U.S. Department of Defense", + "ror": "https://ror.org/0447fe631" + }, + { + "id": "https://openalex.org/F4320306084", + "display_name": "U.S. Department of Energy", + "ror": "https://ror.org/01bj3aw27" + }, + { + "id": "https://openalex.org/F4320306111", + "display_name": "U.S. Department of Commerce", + "ror": "https://ror.org/04chq2495" + }, + { + "id": "https://openalex.org/F4320332178", + "display_name": "National Institute of Standards and Technology", + "ror": "https://ror.org/05xpvk416" + }, + { + "id": "https://openalex.org/F4320332180", + "display_name": "Defense Advanced Research Projects Agency", + "ror": "https://ror.org/02caytj08" + }, + { + "id": "https://openalex.org/F4320333566", + "display_name": "National Defense Science and Engineering Graduate", + "ror": null + }, + { + "id": "https://openalex.org/F4320337819", + "display_name": "Center for Hierarchical Materials Design", + "ror": null + }, + { + "id": "https://openalex.org/F4320338279", + "display_name": "Air Force Office of Scientific Research", + "ror": "https://ror.org/011e9bt93" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2464725281.pdf", + "grobid_xml": "https://content.openalex.org/works/W2464725281.grobid-xml" + }, + "referenced_works_count": 74, + "referenced_works": [ + "https://openalex.org/W336365082", + "https://openalex.org/W568714467", + "https://openalex.org/W1496257230", + "https://openalex.org/W1545231783", + "https://openalex.org/W1605058418", + "https://openalex.org/W1741949188", + "https://openalex.org/W1861259131", + "https://openalex.org/W1964254287", + "https://openalex.org/W1966216358", + "https://openalex.org/W1968075993", + "https://openalex.org/W1976492731", + "https://openalex.org/W1977053243", + "https://openalex.org/W1988887547", + "https://openalex.org/W1992985800", + "https://openalex.org/W2000009216", + "https://openalex.org/W2013795311", + "https://openalex.org/W2016587795", + "https://openalex.org/W2018351443", + "https://openalex.org/W2019561942", + "https://openalex.org/W2020246947", + "https://openalex.org/W2029637177", + "https://openalex.org/W2034097448", + "https://openalex.org/W2039971369", + "https://openalex.org/W2044012801", + "https://openalex.org/W2045759556", + "https://openalex.org/W2047165001", + "https://openalex.org/W2051801258", + "https://openalex.org/W2052663622", + "https://openalex.org/W2055410454", + "https://openalex.org/W2074616700", + "https://openalex.org/W2083415705", + "https://openalex.org/W2097968133", + "https://openalex.org/W2100833014", + "https://openalex.org/W2102539288", + "https://openalex.org/W2104489082", + "https://openalex.org/W2111124526", + "https://openalex.org/W2112845989", + "https://openalex.org/W2113072508", + "https://openalex.org/W2113242816", + "https://openalex.org/W2115252128", + "https://openalex.org/W2117363206", + "https://openalex.org/W2119735967", + "https://openalex.org/W2123306226", + "https://openalex.org/W2133990480", + "https://openalex.org/W2138060751", + "https://openalex.org/W2142009706", + "https://openalex.org/W2145914706", + "https://openalex.org/W2150757437", + "https://openalex.org/W2159357141", + "https://openalex.org/W2162653998", + "https://openalex.org/W2164524421", + "https://openalex.org/W2164529883", + "https://openalex.org/W2167441267", + "https://openalex.org/W2217912240", + "https://openalex.org/W2241011319", + "https://openalex.org/W2278970271", + "https://openalex.org/W2312842167", + "https://openalex.org/W2313966941", + "https://openalex.org/W2317309722", + "https://openalex.org/W2318376321", + "https://openalex.org/W2329258563", + "https://openalex.org/W2338402873", + "https://openalex.org/W2343462019", + "https://openalex.org/W2494629425", + "https://openalex.org/W2612686989", + "https://openalex.org/W2671074027", + "https://openalex.org/W2911964244", + "https://openalex.org/W2913390193", + "https://openalex.org/W2950537967", + "https://openalex.org/W2963485997", + "https://openalex.org/W4230093030", + "https://openalex.org/W4236360742", + "https://openalex.org/W4239059908", + "https://openalex.org/W4249528159" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "A": [ + 1 + ], + "very": [ + 2 + ], + "active": [ + 3 + ], + "area": [ + 4 + ], + "of": [ + 5, + 51, + 63, + 70, + 82, + 94, + 107, + 131 + ], + "materials": [ + 6, + 23, + 71, + 109 + ], + "research": [ + 7 + ], + "is": [ + 8 + ], + "to": [ + 9, + 16, + 66, + 110, + 127 + ], + "devise": [ + 10 + ], + "methods": [ + 11 + ], + "that": [ + 12 + ], + "use": [ + 13 + ], + "machine": [ + 14, + 40 + ], + "learning": [ + 15, + 41 + ], + "automatically": [ + 17 + ], + "extract": [ + 18 + ], + "predictive": [ + 19, + 113 + ], + "models": [ + 20, + 31, + 53 + ], + "from": [ + 21 + ], + "existing": [ + 22 + ], + "data.": [ + 24, + 72 + ], + "While": [ + 25 + ], + "prior": [ + 26 + ], + "examples": [ + 27 + ], + "have": [ + 28, + 58 + ], + "demonstrated": [ + 29 + ], + "successful": [ + 30 + ], + "for": [ + 32, + 54, + 89, + 100 + ], + "some": [ + 33 + ], + "applications,": [ + 34, + 56 + ], + "many": [ + 35 + ], + "more": [ + 36 + ], + "applications": [ + 37 + ], + "exist": [ + 38 + ], + "where": [ + 39 + ], + "can": [ + 42, + 124 + ], + "make": [ + 43 + ], + "a": [ + 44, + 60, + 67, + 78, + 91, + 97 + ], + "strong": [ + 45 + ], + "impact.": [ + 46 + ], + "To": [ + 47 + ], + "enable": [ + 48 + ], + "faster": [ + 49 + ], + "development": [ + 50 + ], + "machine-learning-based": [ + 52 + ], + "such": [ + 55, + 136 + ], + "we": [ + 57, + 85, + 118 + ], + "created": [ + 59 + ], + "framework": [ + 61 + ], + "capable": [ + 62 + ], + "being": [ + 64 + ], + "applied": [ + 65 + ], + "broad": [ + 68 + ], + "range": [ + 69 + ], + "Our": [ + 73 + ], + "method": [ + 74, + 99, + 123 + ], + "works": [ + 75 + ], + "by": [ + 76 + ], + "using": [ + 77 + ], + "chemically": [ + 79 + ], + "diverse": [ + 80, + 129 + ], + "list": [ + 81 + ], + "attributes,": [ + 83 + ], + "which": [ + 84 + ], + "demonstrate": [ + 86, + 119 + ], + "are": [ + 87 + ], + "suitable": [ + 88 + ], + "describing": [ + 90 + ], + "wide": [ + 92 + ], + "variety": [ + 93 + ], + "properties,": [ + 95 + ], + "and": [ + 96, + 133, + 141 + ], + "novel": [ + 98 + ], + "partitioning": [ + 101 + ], + "the": [ + 102, + 112 + ], + "data": [ + 103 + ], + "set": [ + 104 + ], + "into": [ + 105 + ], + "groups": [ + 106 + ], + "similar": [ + 108 + ], + "boost": [ + 111 + ], + "accuracy.": [ + 114 + ], + "In": [ + 115 + ], + "this": [ + 116, + 121 + ], + "manuscript,": [ + 117 + ], + "how": [ + 120 + ], + "new": [ + 122 + ], + "be": [ + 125 + ], + "used": [ + 126 + ], + "predict": [ + 128 + ], + "properties": [ + 130 + ], + "crystalline": [ + 132 + ], + "amorphous": [ + 134 + ], + "materials,": [ + 135 + ], + "as": [ + 137 + ], + "band": [ + 138 + ], + "gap": [ + 139 + ], + "energy": [ + 140 + ], + "glass-forming": [ + 142 + ], + "ability.": [ + 143 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 137 + }, + { + "year": 2025, + "cited_by_count": 274 + }, + { + "year": 2024, + "cited_by_count": 247 + }, + { + "year": 2023, + "cited_by_count": 215 + }, + { + "year": 2022, + "cited_by_count": 204 + }, + { + "year": 2021, + "cited_by_count": 195 + }, + { + "year": 2020, + "cited_by_count": 185 + }, + { + "year": 2019, + "cited_by_count": 117 + }, + { + "year": 2018, + "cited_by_count": 71 + }, + { + "year": 2017, + "cited_by_count": 22 + }, + { + "year": 2016, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2016-07-22T00:00:00" + }, + { + "id": "https://openalex.org/W2182361439", + "doi": null, + "title": "Efficient and robust automated machine learning", + "display_name": "Efficient and robust automated machine learning", + "relevance_score": 2481.6487, + "publication_year": 2015, + "publication_date": "2015-12-07", + "ids": { + "openalex": "https://openalex.org/W2182361439", + "mag": "2182361439" + }, + "language": "en", + "primary_location": { + "id": "mag:2182361439", + "is_oa": false, + "landing_page_url": "https://papers.nips.cc/paper/2015/file/11d0e6287202fced83f79975ec59a3a6-Paper.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420609", + "display_name": "Neural Information Processing Systems", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Neural Information Processing Systems", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5054262288", + "display_name": "Matthias Feurer", + "orcid": "https://orcid.org/0000-0001-9611-8588" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Matthias Feurer", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0001-9611-8588", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5044806693", + "display_name": "Aaron Klein", + "orcid": "https://orcid.org/0000-0003-3960-7742" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Aaron Klein", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0003-3960-7742", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5081813991", + "display_name": "Katharina Eggensperger", + "orcid": "https://orcid.org/0000-0002-0309-401X" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Katharina Eggensperger", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017985443", + "display_name": "Jost Tobias Springenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Jost Tobias Springenberg", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5102766796", + "display_name": "Manuel Blum", + "orcid": "https://orcid.org/0000-0002-0982-4845" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Manuel Blum", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-0982-4845", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5031002895", + "display_name": "Frank Hutter", + "orcid": "https://orcid.org/0000-0002-2037-3694" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Frank Hutter", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-2037-3694", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5054262288" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161046081" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 26.632, + "has_fulltext": false, + "cited_by_count": 1255, + "citation_normalized_percentile": { + "value": 0.99838319, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "28", + "issue": null, + "first_page": "2755", + "last_page": "2763" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9884999990463257, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/hyperparameter", + "display_name": "Hyperparameter", + "score": 0.8062483668327332 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7956940531730652 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7567195892333984 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7412288188934326 + }, + { + "id": "https://openalex.org/keywords/preprocessor", + "display_name": "Preprocessor", + "score": 0.723639726638794 + }, + { + "id": "https://openalex.org/keywords/bayesian-optimization", + "display_name": "Bayesian optimization", + "score": 0.5717392563819885 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5170496106147766 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4831806719303131 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.41747650504112244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C8642999", + "wikidata": "https://www.wikidata.org/wiki/Q4171168", + "display_name": "Hyperparameter", + "level": 2, + "score": 0.8062483668327332 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7956940531730652 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7567195892333984 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7412288188934326 + }, + { + "id": "https://openalex.org/C34736171", + "wikidata": "https://www.wikidata.org/wiki/Q918333", + "display_name": "Preprocessor", + "level": 2, + "score": 0.723639726638794 + }, + { + "id": "https://openalex.org/C2778049539", + "wikidata": "https://www.wikidata.org/wiki/Q17002908", + "display_name": "Bayesian optimization", + "level": 2, + "score": 0.5717392563819885 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5170496106147766 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4831806719303131 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.41747650504112244 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2182361439", + "is_oa": false, + "landing_page_url": "https://papers.nips.cc/paper/2015/file/11d0e6287202fced83f79975ec59a3a6-Paper.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420609", + "display_name": "Neural Information Processing Systems", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Neural Information Processing Systems", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W28412257", + "https://openalex.org/W60686164", + "https://openalex.org/W76331760", + "https://openalex.org/W116375701", + "https://openalex.org/W122178443", + "https://openalex.org/W1519451279", + "https://openalex.org/W1647221522", + "https://openalex.org/W1840091437", + "https://openalex.org/W1980264541", + "https://openalex.org/W2099201756", + "https://openalex.org/W2101234009", + "https://openalex.org/W2102539288", + "https://openalex.org/W2106411961", + "https://openalex.org/W2112204321", + "https://openalex.org/W2112364454", + "https://openalex.org/W2131241448", + "https://openalex.org/W2132862423", + "https://openalex.org/W2133990480", + "https://openalex.org/W2142334564", + "https://openalex.org/W2149731329", + "https://openalex.org/W2150446468", + "https://openalex.org/W2150753219", + "https://openalex.org/W2165607334", + "https://openalex.org/W2200000192", + "https://openalex.org/W2809054435", + "https://openalex.org/W2911964244" + ], + "related_works": [ + "https://openalex.org/W60686164", + "https://openalex.org/W2964024268", + "https://openalex.org/W2963815651", + "https://openalex.org/W2963423218", + "https://openalex.org/W2947123069", + "https://openalex.org/W2911964244", + "https://openalex.org/W2608595939", + "https://openalex.org/W2553303224", + "https://openalex.org/W2309832917", + "https://openalex.org/W2200000192", + "https://openalex.org/W2194775991", + "https://openalex.org/W2192203593", + "https://openalex.org/W2133990480", + "https://openalex.org/W2132862423", + "https://openalex.org/W2131241448", + "https://openalex.org/W2112364454", + "https://openalex.org/W2106411961", + "https://openalex.org/W2102539288", + "https://openalex.org/W2101234009", + "https://openalex.org/W2097998348" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "success": [ + 1 + ], + "of": [ + 2, + 9, + 75, + 153, + 176, + 190, + 199, + 203 + ], + "machine": [ + 3, + 18, + 68 + ], + "learning": [ + 4, + 19, + 69 + ], + "in": [ + 5, + 33, + 179 + ], + "a": [ + 6, + 41, + 49, + 85, + 108 + ], + "broad": [ + 7 + ], + "range": [ + 8 + ], + "applications": [ + 10 + ], + "has": [ + 11, + 62 + ], + "led": [ + 12 + ], + "to": [ + 13, + 38, + 64, + 107, + 188 + ], + "an": [ + 14 + ], + "ever-growing": [ + 15 + ], + "demand": [ + 16 + ], + "for": [ + 17, + 48 + ], + "systems": [ + 20, + 36 + ], + "that": [ + 21, + 169 + ], + "can": [ + 22 + ], + "be": [ + 23, + 31 + ], + "used": [ + 24 + ], + "off": [ + 25 + ], + "the": [ + 26, + 73, + 141, + 145, + 150, + 154, + 173, + 177, + 184, + 197, + 200 + ], + "shelf": [ + 27 + ], + "by": [ + 28, + 126, + 137 + ], + "non-experts.": [ + 29 + ], + "To": [ + 30 + ], + "effective": [ + 32 + ], + "practice,": [ + 34 + ], + "such": [ + 35 + ], + "need": [ + 37 + ], + "automatically": [ + 39, + 127 + ], + "choose": [ + 40 + ], + "good": [ + 42 + ], + "algorithm": [ + 43 + ], + "and": [ + 44, + 54, + 100, + 136, + 159, + 193 + ], + "feature": [ + 45, + 97 + ], + "preprocessing": [ + 46, + 98, + 103 + ], + "steps": [ + 47 + ], + "new": [ + 50, + 87 + ], + "dataset": [ + 51 + ], + "at": [ + 52 + ], + "hand,": [ + 53 + ], + "also": [ + 55, + 182 + ], + "set": [ + 56 + ], + "their": [ + 57 + ], + "respective": [ + 58 + ], + "hyperparameters.": [ + 59 + ], + "Recent": [ + 60 + ], + "work": [ + 61 + ], + "started": [ + 63 + ], + "tackle": [ + 65 + ], + "this": [ + 66 + ], + "automated": [ + 67 + ], + "(AutoML)": [ + 70 + ], + "problem": [ + 71 + ], + "with": [ + 72, + 112 + ], + "help": [ + 74 + ], + "efficient": [ + 76 + ], + "Bayesian": [ + 77 + ], + "optimization": [ + 78 + ], + "methods.": [ + 79 + ], + "Building": [ + 80 + ], + "on": [ + 81, + 91, + 122, + 133, + 163 + ], + "this,": [ + 82 + ], + "we": [ + 83, + 118 + ], + "introduce": [ + 84 + ], + "robust": [ + 86 + ], + "AutoML": [ + 88, + 124, + 157 + ], + "system": [ + 89, + 148 + ], + "based": [ + 90 + ], + "scikit-learn": [ + 92 + ], + "(using": [ + 93 + ], + "15": [ + 94 + ], + "classifiers,": [ + 95 + ], + "14": [ + 96 + ], + "methods,": [ + 99, + 104 + ], + "4": [ + 101 + ], + "data": [ + 102 + ], + "giving": [ + 105 + ], + "rise": [ + 106 + ], + "structured": [ + 109 + ], + "hypothesis": [ + 110 + ], + "space": [ + 111 + ], + "110": [ + 113 + ], + "hyperparameters).": [ + 114 + ], + "This": [ + 115 + ], + "system,": [ + 116 + ], + "which": [ + 117 + ], + "dub": [ + 119 + ], + "AUTO-SKLEARN,": [ + 120 + ], + "improves": [ + 121 + ], + "existing": [ + 123 + ], + "methods": [ + 125 + ], + "taking": [ + 128 + ], + "into": [ + 129, + 196 + ], + "account": [ + 130 + ], + "past": [ + 131 + ], + "performance": [ + 132, + 185 + ], + "similar": [ + 134 + ], + "datasets,": [ + 135 + ], + "constructing": [ + 138 + ], + "ensembles": [ + 139 + ], + "from": [ + 140 + ], + "models": [ + 142 + ], + "evaluated": [ + 143 + ], + "during": [ + 144 + ], + "optimization.": [ + 146 + ], + "Our": [ + 147 + ], + "won": [ + 149 + ], + "first": [ + 151 + ], + "phase": [ + 152 + ], + "ongoing": [ + 155 + ], + "ChaLearn": [ + 156 + ], + "challenge,": [ + 158 + ], + "our": [ + 160, + 191 + ], + "comprehensive": [ + 161 + ], + "analysis": [ + 162 + ], + "over": [ + 164 + ], + "100": [ + 165 + ], + "diverse": [ + 166 + ], + "datasets": [ + 167 + ], + "shows": [ + 168 + ], + "it": [ + 170 + ], + "substantially": [ + 171 + ], + "outperforms": [ + 172 + ], + "previous": [ + 174 + ], + "state": [ + 175 + ], + "art": [ + 178 + ], + "AutoML.": [ + 180 + ], + "We": [ + 181 + ], + "demonstrate": [ + 183 + ], + "gains": [ + 186 + ], + "due": [ + 187 + ], + "each": [ + 189 + ], + "contributions": [ + 192 + ], + "derive": [ + 194 + ], + "insights": [ + 195 + ], + "effectiveness": [ + 198 + ], + "individual": [ + 201 + ], + "components": [ + 202 + ], + "AUTO-SKLEARN.": [ + 204 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 61 + }, + { + "year": 2024, + "cited_by_count": 99 + }, + { + "year": 2023, + "cited_by_count": 134 + }, + { + "year": 2022, + "cited_by_count": 125 + }, + { + "year": 2021, + "cited_by_count": 221 + }, + { + "year": 2020, + "cited_by_count": 263 + }, + { + "year": 2019, + "cited_by_count": 217 + }, + { + "year": 2018, + "cited_by_count": 86 + }, + { + "year": 2017, + "cited_by_count": 34 + }, + { + "year": 2016, + "cited_by_count": 14 + }, + { + "year": 2015, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-14T08:36:36.166977", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1983989471", + "doi": "https://doi.org/10.1198/jasa.2008.s236", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 2478.1929, + "publication_year": 2008, + "publication_date": "2008-06-01", + "ids": { + "openalex": "https://openalex.org/W1983989471", + "doi": "https://doi.org/10.1198/jasa.2008.s236", + "mag": "1983989471" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1198/jasa.2008.s236", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/jasa.2008.s236", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4394736638", + "display_name": "Journal of the American Statistical Association", + "issn_l": "0162-1459", + "issn": [ + "0162-1459", + "1537-274X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of the American Statistical Association", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109482919", + "display_name": "Thomas Burr", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Thomas Burr", + "raw_affiliation_strings": [ + "Los Alamos National Laboratory", + "LOS Alamos National Laboratory" + ], + "affiliations": [ + { + "raw_affiliation_string": "Los Alamos National Laboratory", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + }, + { + "raw_affiliation_string": "LOS Alamos National Laboratory", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5109482919" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1343871089" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 47.4793, + "has_fulltext": false, + "cited_by_count": 1113, + "citation_normalized_percentile": { + "value": 0.99954397, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "103", + "issue": "482", + "first_page": "886", + "last_page": "887" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.98580002784729, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.98580002784729, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12761", + "display_name": "Data Stream Mining Techniques", + "score": 0.9822999835014343, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9811000227928162, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5010311603546143 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.4807431697845459 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.40664222836494446 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.374175488948822 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5010311603546143 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.4807431697845459 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.40664222836494446 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.374175488948822 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1198/jasa.2008.s236", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/jasa.2008.s236", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4394736638", + "display_name": "Journal of the American Statistical Association", + "issn_l": "0162-1459", + "issn": [ + "0162-1459", + "1537-274X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of the American Statistical Association", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W2009086942", + "https://openalex.org/W2019044526", + "https://openalex.org/W2078502317", + "https://openalex.org/W2090911498", + "https://openalex.org/W4237415315" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3209574120", + "https://openalex.org/W3107602296", + "https://openalex.org/W2033914206", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "\"Pattern": [ + 0 + ], + "Recognition": [ + 1 + ], + "and": [ + 2 + ], + "Machine": [ + 3 + ], + "Learning.\"": [ + 4 + ], + "Journal": [ + 5 + ], + "of": [ + 6 + ], + "the": [ + 7 + ], + "American": [ + 8 + ], + "Statistical": [ + 9 + ], + "Association,": [ + 10 + ], + "103(482),": [ + 11 + ], + "pp.": [ + 12 + ], + "886–887": [ + 13 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 6 + }, + { + "year": 2024, + "cited_by_count": 27 + }, + { + "year": 2023, + "cited_by_count": 55 + }, + { + "year": 2022, + "cited_by_count": 54 + }, + { + "year": 2021, + "cited_by_count": 97 + }, + { + "year": 2020, + "cited_by_count": 87 + }, + { + "year": 2019, + "cited_by_count": 133 + }, + { + "year": 2018, + "cited_by_count": 105 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 67 + }, + { + "year": 2015, + "cited_by_count": 75 + }, + { + "year": 2014, + "cited_by_count": 68 + }, + { + "year": 2013, + "cited_by_count": 73 + }, + { + "year": 2012, + "cited_by_count": 73 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2981679558", + "doi": "https://doi.org/10.1371/journal.pone.0224365", + "title": "Machine learning algorithm validation with a limited sample size", + "display_name": "Machine learning algorithm validation with a limited sample size", + "relevance_score": 2470.6013, + "publication_year": 2019, + "publication_date": "2019-11-07", + "ids": { + "openalex": "https://openalex.org/W2981679558", + "doi": "https://doi.org/10.1371/journal.pone.0224365", + "mag": "2981679558", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31697686" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058581210", + "display_name": "Andrius Vabalas", + "orcid": "https://orcid.org/0000-0002-0659-2890" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Andrius Vabalas", + "raw_affiliation_strings": [ + "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0002-0659-2890", + "affiliations": [ + { + "raw_affiliation_string": "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5054131595", + "display_name": "Emma Gowen", + "orcid": "https://orcid.org/0000-0003-4788-4280" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Emma Gowen", + "raw_affiliation_strings": [ + "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080441481", + "display_name": "Ellen Poliakoff", + "orcid": "https://orcid.org/0000-0003-4975-7787" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Ellen Poliakoff", + "raw_affiliation_strings": [ + "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5091104655", + "display_name": "Alexander J. Casson", + "orcid": "https://orcid.org/0000-0003-1408-1190" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Alexander J. Casson", + "raw_affiliation_strings": [ + "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5058581210" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I28407311" + ], + "apc_list": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "apc_paid": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "fwci": 44.2695, + "has_fulltext": true, + "cited_by_count": 1662, + "citation_normalized_percentile": { + "value": 0.99924832, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "14", + "issue": "11", + "first_page": "e0224365", + "last_page": "e0224365" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9955000281333923, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9955000281333923, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12859", + "display_name": "Cell Image Analysis Techniques", + "score": 0.9606000185012817, + "subfield": { + "id": "https://openalex.org/subfields/1304", + "display_name": "Biophysics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/overfitting", + "display_name": "Overfitting", + "score": 0.8499270677566528 + }, + { + "id": "https://openalex.org/keywords/sample-size-determination", + "display_name": "Sample size determination", + "score": 0.7672773003578186 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6191924810409546 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5842269062995911 + }, + { + "id": "https://openalex.org/keywords/cross-validation", + "display_name": "Cross-validation", + "score": 0.5098270773887634 + }, + { + "id": "https://openalex.org/keywords/data-collection", + "display_name": "Data collection", + "score": 0.4877827763557434 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4619005620479584 + }, + { + "id": "https://openalex.org/keywords/selection-bias", + "display_name": "Selection bias", + "score": 0.438579261302948 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.43803805112838745 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.41916215419769287 + }, + { + "id": "https://openalex.org/keywords/feature-selection", + "display_name": "Feature selection", + "score": 0.412355899810791 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.39342644810676575 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.35772329568862915 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.23591920733451843 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1789134442806244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C22019652", + "wikidata": "https://www.wikidata.org/wiki/Q331309", + "display_name": "Overfitting", + "level": 3, + "score": 0.8499270677566528 + }, + { + "id": "https://openalex.org/C129848803", + "wikidata": "https://www.wikidata.org/wiki/Q2564360", + "display_name": "Sample size determination", + "level": 2, + "score": 0.7672773003578186 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6191924810409546 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5842269062995911 + }, + { + "id": "https://openalex.org/C27181475", + "wikidata": "https://www.wikidata.org/wiki/Q541014", + "display_name": "Cross-validation", + "level": 2, + "score": 0.5098270773887634 + }, + { + "id": "https://openalex.org/C133462117", + "wikidata": "https://www.wikidata.org/wiki/Q4929239", + "display_name": "Data collection", + "level": 2, + "score": 0.4877827763557434 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4619005620479584 + }, + { + "id": "https://openalex.org/C40423286", + "wikidata": "https://www.wikidata.org/wiki/Q284172", + "display_name": "Selection bias", + "level": 2, + "score": 0.438579261302948 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.43803805112838745 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.41916215419769287 + }, + { + "id": "https://openalex.org/C148483581", + "wikidata": "https://www.wikidata.org/wiki/Q446488", + "display_name": "Feature selection", + "level": 2, + "score": 0.412355899810791 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.39342644810676575 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.35772329568862915 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.23591920733451843 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1789134442806244 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + } + ], + "locations_count": 8, + "locations": [ + { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + { + "id": "pmid:31697686", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31697686", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PloS one", + "raw_type": null + }, + { + "id": "pmh:oai:pure.atira.dk:openaire/46636137-42f8-46a3-82e2-565843dbc92a", + "is_oa": true, + "landing_page_url": "https://research.manchester.ac.uk/en/publications/46636137-42f8-46a3-82e2-565843dbc92a", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400662", + "display_name": "Research Explorer (The University of Manchester)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I28407311", + "host_organization_name": "University of Manchester", + "host_organization_lineage": [ + "https://openalex.org/I28407311" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Vabalas, A, Gowen, E, Poliakoff, E & Casson, A 2020, 'Machine learning algorithm validation with a limited sample size', P L o S One, vol. 14, no. 11, e0224365. https://doi.org/10.1371/journal.pone.0224365", + "raw_type": "info:eu-repo/semantics/publishedVersion" + }, + { + "id": "pmh:oai:RePEc:plo:pone00:0224365", + "is_oa": false, + "landing_page_url": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0224365", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:doaj.org/article:df3153cdf6ba4ecc9e209347e26d9f38", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/df3153cdf6ba4ecc9e209347e26d9f38", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS ONE, Vol 14, Iss 11, p e0224365 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:figshare.com:article/10268015", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/dataset/Machine_learning_algorithm_validation_with_a_limited_sample_size/10268015", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Dataset" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6837442", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6837442", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS One", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pure.atira.dk:publications/46636137-42f8-46a3-82e2-565843dbc92a", + "is_oa": true, + "landing_page_url": "https://www.research.manchester.ac.uk/portal/en/publications/machine-learning-algorithm-validation-with-a-limited-sample-size(46636137-42f8-46a3-82e2-565843dbc92a).html", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400662", + "display_name": "Research Explorer (The University of Manchester)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I28407311", + "host_organization_name": "University of Manchester", + "host_organization_lineage": [ + "https://openalex.org/I28407311" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Vabalas, A, Gowen, E, Poliakoff, E & Casson, A 2020, 'Machine learning algorithm validation with a limited sample size', P L o S One, vol. 14, no. 11, e0224365. https://doi.org/10.1371/journal.pone.0224365", + "raw_type": "info:eu-repo/semantics/publishedVersion" + } + ], + "best_oa_location": { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "score": 0.6899999976158142, + "display_name": "Reduced inequalities", + "id": "https://metadata.un.org/sdg/10" + } + ], + "awards": [ + { + "id": "https://openalex.org/G1969528513", + "display_name": null, + "funder_award_id": "1830965", + "funder_id": "https://openalex.org/F4320334627", + "funder_display_name": "Engineering and Physical Sciences Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320320291", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27" + }, + { + "id": "https://openalex.org/F4320334627", + "display_name": "Engineering and Physical Sciences Research Council", + "ror": "https://ror.org/0439y7842" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 33, + "referenced_works": [ + "https://openalex.org/W7299809", + "https://openalex.org/W1493357981", + "https://openalex.org/W1505191356", + "https://openalex.org/W1988975411", + "https://openalex.org/W2002645541", + "https://openalex.org/W2031167046", + "https://openalex.org/W2061553036", + "https://openalex.org/W2065283057", + "https://openalex.org/W2077991879", + "https://openalex.org/W2082704080", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092095117", + "https://openalex.org/W2092444470", + "https://openalex.org/W2101234009", + "https://openalex.org/W2112081648", + "https://openalex.org/W2119155327", + "https://openalex.org/W2119387367", + "https://openalex.org/W2132886902", + "https://openalex.org/W2136487516", + "https://openalex.org/W2141007997", + "https://openalex.org/W2142594886", + "https://openalex.org/W2143426320", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154290668", + "https://openalex.org/W2154776925", + "https://openalex.org/W2310177520", + "https://openalex.org/W2421101021", + "https://openalex.org/W2552047097", + "https://openalex.org/W2917871264", + "https://openalex.org/W2963389298", + "https://openalex.org/W3120421331", + "https://openalex.org/W3139562178", + "https://openalex.org/W6675354045" + ], + "related_works": [ + "https://openalex.org/W4362597605", + "https://openalex.org/W1574414179", + "https://openalex.org/W4297676672", + "https://openalex.org/W3009056573", + "https://openalex.org/W2922073769", + "https://openalex.org/W4281702477", + "https://openalex.org/W3155717344", + "https://openalex.org/W1770458422", + "https://openalex.org/W2801469686", + "https://openalex.org/W2149651625" + ], + "abstract_inverted_index": { + "Advances": [ + 0 + ], + "in": [ + 1 + ], + "neuroimaging,": [ + 2 + ], + "genomic,": [ + 3 + ], + "motion": [ + 4 + ], + "tracking,": [ + 5 + ], + "eye-tracking": [ + 6 + ], + "and": [ + 7, + 59, + 62, + 140, + 153, + 159, + 178, + 201, + 208, + 230 + ], + "many": [ + 8 + ], + "other": [ + 9, + 237 + ], + "technology-based": [ + 10 + ], + "data": [ + 11, + 38, + 45, + 180, + 197 + ], + "collection": [ + 12, + 39 + ], + "methods": [ + 13, + 117, + 210 + ], + "have": [ + 14, + 25, + 81, + 104 + ], + "led": [ + 15 + ], + "to": [ + 16, + 69, + 84, + 183, + 194, + 220, + 232 + ], + "a": [ + 17, + 26, + 47 + ], + "torrent": [ + 18 + ], + "of": [ + 19, + 29, + 32, + 37, + 50, + 53, + 78, + 115, + 149, + 164, + 203, + 236 + ], + "high": [ + 20, + 35 + ], + "dimensional": [ + 21, + 44 + ], + "datasets,": [ + 22 + ], + "which": [ + 23, + 80, + 118 + ], + "commonly": [ + 24 + ], + "small": [ + 27, + 48, + 92, + 137, + 228 + ], + "number": [ + 28, + 49, + 202 + ], + "samples": [ + 30, + 51 + ], + "because": [ + 31 + ], + "the": [ + 33, + 113, + 141, + 192, + 234 + ], + "intrinsic": [ + 34 + ], + "cost": [ + 36 + ], + "involving": [ + 40 + ], + "human": [ + 41 + ], + "participants.": [ + 42 + ], + "High": [ + 43 + ], + "with": [ + 46, + 97, + 136, + 146, + 213, + 227 + ], + "is": [ + 52, + 95, + 143, + 181 + ], + "critical": [ + 54 + ], + "importance": [ + 55 + ], + "for": [ + 56 + ], + "identifying": [ + 57 + ], + "biomarkers": [ + 58 + ], + "conducting": [ + 60 + ], + "feasibility": [ + 61 + ], + "pilot": [ + 63 + ], + "work,": [ + 64 + ], + "however": [ + 65 + ], + "it": [ + 66 + ], + "can": [ + 67 + ], + "lead": [ + 68 + ], + "biased": [ + 70, + 133 + ], + "machine": [ + 71 + ], + "learning": [ + 72 + ], + "(ML)": [ + 73 + ], + "performance": [ + 74, + 134, + 161 + ], + "estimates.": [ + 75 + ], + "Our": [ + 76, + 124 + ], + "review": [ + 77 + ], + "studies": [ + 79, + 238 + ], + "applied": [ + 82 + ], + "ML": [ + 83 + ], + "predict": [ + 85 + ], + "autistic": [ + 86 + ], + "from": [ + 87 + ], + "non-autistic": [ + 88 + ], + "individuals": [ + 89 + ], + "showed": [ + 90 + ], + "that": [ + 91, + 127, + 170 + ], + "sample": [ + 93, + 138, + 147, + 165 + ], + "size": [ + 94, + 148 + ], + "associated": [ + 96 + ], + "higher": [ + 98 + ], + "reported": [ + 99 + ], + "classification": [ + 100 + ], + "accuracy.": [ + 101 + ], + "Thus,": [ + 102 + ], + "we": [ + 103 + ], + "investigated": [ + 105 + ], + "whether": [ + 106 + ], + "this": [ + 107 + ], + "bias": [ + 108, + 142, + 184, + 195 + ], + "could": [ + 109 + ], + "be": [ + 110 + ], + "caused": [ + 111 + ], + "by": [ + 112, + 196 + ], + "use": [ + 114 + ], + "validation": [ + 116, + 209, + 242 + ], + "do": [ + 119 + ], + "not": [ + 120 + ], + "sufficiently": [ + 121 + ], + "control": [ + 122 + ], + "overfitting.": [ + 123 + ], + "simulations": [ + 125 + ], + "show": [ + 126, + 169 + ], + "K-fold": [ + 128 + ], + "Cross-Validation": [ + 129 + ], + "(CV)": [ + 130 + ], + "produces": [ + 131 + ], + "strongly": [ + 132 + ], + "estimates": [ + 135, + 162 + ], + "sizes,": [ + 139 + ], + "still": [ + 144 + ], + "evident": [ + 145 + ], + "1000.": [ + 150 + ], + "Nested": [ + 151 + ], + "CV": [ + 152, + 204 + ], + "train/test": [ + 154 + ], + "split": [ + 155 + ], + "approaches": [ + 156 + ], + "produce": [ + 157 + ], + "robust": [ + 158, + 222 + ], + "unbiased": [ + 160 + ], + "regardless": [ + 163 + ], + "size.": [ + 166 + ], + "We": [ + 167 + ], + "also": [ + 168 + ], + "feature": [ + 171 + ], + "selection": [ + 172 + ], + "if": [ + 173 + ], + "performed": [ + 174 + ], + "on": [ + 175, + 240 + ], + "pooled": [ + 176 + ], + "training": [ + 177 + ], + "testing": [ + 179, + 223 + ], + "contributing": [ + 182 + ], + "considerably": [ + 185 + ], + "more": [ + 186 + ], + "than": [ + 187 + ], + "parameter": [ + 188 + ], + "tuning.": [ + 189 + ], + "In": [ + 190 + ], + "addition,": [ + 191 + ], + "contribution": [ + 193 + ], + "dimensionality,": [ + 198 + ], + "hyper-parameter": [ + 199 + ], + "space": [ + 200 + ], + "folds": [ + 205 + ], + "was": [ + 206, + 244 + ], + "explored,": [ + 207 + ], + "were": [ + 211 + ], + "compared": [ + 212 + ], + "discriminable": [ + 214 + ], + "data.": [ + 215 + ], + "The": [ + 216 + ], + "results": [ + 217, + 235 + ], + "suggest": [ + 218 + ], + "how": [ + 219, + 231 + ], + "design": [ + 221 + ], + "methodologies": [ + 224 + ], + "when": [ + 225 + ], + "working": [ + 226 + ], + "datasets": [ + 229 + ], + "interpret": [ + 233 + ], + "based": [ + 239 + ], + "what": [ + 241 + ], + "method": [ + 243 + ], + "used.": [ + 245 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 179 + }, + { + "year": 2025, + "cited_by_count": 330 + }, + { + "year": 2024, + "cited_by_count": 338 + }, + { + "year": 2023, + "cited_by_count": 299 + }, + { + "year": 2022, + "cited_by_count": 267 + }, + { + "year": 2021, + "cited_by_count": 176 + }, + { + "year": 2020, + "cited_by_count": 70 + }, + { + "year": 2019, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4299828299", + "doi": "https://doi.org/10.48550/arxiv.1207.4676", + "title": "Proceedings of the 29th International Conference on Machine Learning (ICML-12)", + "display_name": "Proceedings of the 29th International Conference on Machine Learning (ICML-12)", + "relevance_score": 2468.407, + "publication_year": 2012, + "publication_date": "2012-07-19", + "ids": { + "openalex": "https://openalex.org/W4299828299", + "doi": "https://doi.org/10.48550/arxiv.1207.4676" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1207.4676", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5005003250", + "display_name": "John Langford", + "orcid": "https://orcid.org/0000-0002-9811-3550" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801032651", + "display_name": "Council of Science Editors", + "ror": "https://ror.org/007cr8911", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I2801032651" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Langford, John", + "raw_affiliation_strings": [ + "Editors" + ], + "affiliations": [ + { + "raw_affiliation_string": "Editors", + "institution_ids": [ + "https://openalex.org/I2801032651" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5080591144", + "display_name": "Joëlle Pineau", + "orcid": "https://orcid.org/0000-0003-0747-7250" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801032651", + "display_name": "Council of Science Editors", + "ror": "https://ror.org/007cr8911", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I2801032651" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Pineau, Joelle", + "raw_affiliation_strings": [ + "Editors" + ], + "affiliations": [ + { + "raw_affiliation_string": "Editors", + "institution_ids": [ + "https://openalex.org/I2801032651" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5005003250" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2801032651" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 1618, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10181", + "display_name": "Natural Language Processing Techniques", + "score": 0.6305000185966492, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10181", + "display_name": "Natural Language Processing Techniques", + "score": 0.6305000185966492, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5253459811210632 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.3677058815956116 + }, + { + "id": "https://openalex.org/keywords/forestry", + "display_name": "Forestry", + "score": 0.32110482454299927 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.18688607215881348 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5253459811210632 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.3677058815956116 + }, + { + "id": "https://openalex.org/C97137747", + "wikidata": "https://www.wikidata.org/wiki/Q38112", + "display_name": "Forestry", + "level": 1, + "score": 0.32110482454299927 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.18688607215881348 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1207.4676", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1207.4676", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W2383882895", + "https://openalex.org/W3111098267", + "https://openalex.org/W2370206093", + "https://openalex.org/W264709706", + "https://openalex.org/W2375009411", + "https://openalex.org/W2371019958", + "https://openalex.org/W2092269694", + "https://openalex.org/W2063002724", + "https://openalex.org/W3150437343" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "is": [ + 1 + ], + "an": [ + 2 + ], + "index": [ + 3 + ], + "to": [ + 4 + ], + "the": [ + 5, + 10, + 13 + ], + "papers": [ + 6 + ], + "that": [ + 7 + ], + "appear": [ + 8 + ], + "in": [ + 9, + 25 + ], + "Proceedings": [ + 11 + ], + "of": [ + 12 + ], + "29th": [ + 14 + ], + "International": [ + 15 + ], + "Conference": [ + 16 + ], + "on": [ + 17 + ], + "Machine": [ + 18 + ], + "Learning": [ + 19 + ], + "(ICML-12).": [ + 20 + ], + "The": [ + 21 + ], + "conference": [ + 22 + ], + "was": [ + 23 + ], + "held": [ + 24 + ], + "Edinburgh,": [ + 26 + ], + "Scotland,": [ + 27 + ], + "June": [ + 28 + ], + "27th": [ + 29 + ], + "-": [ + 30 + ], + "July": [ + 31 + ], + "3rd,": [ + 32 + ], + "2012.": [ + 33 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 100 + }, + { + "year": 2024, + "cited_by_count": 136 + }, + { + "year": 2023, + "cited_by_count": 155 + }, + { + "year": 2022, + "cited_by_count": 120 + }, + { + "year": 2021, + "cited_by_count": 86 + }, + { + "year": 2020, + "cited_by_count": 167 + }, + { + "year": 2019, + "cited_by_count": 218 + }, + { + "year": 2018, + "cited_by_count": 146 + }, + { + "year": 2017, + "cited_by_count": 177 + }, + { + "year": 2016, + "cited_by_count": 136 + }, + { + "year": 2015, + "cited_by_count": 76 + }, + { + "year": 2014, + "cited_by_count": 49 + }, + { + "year": 2013, + "cited_by_count": 37 + }, + { + "year": 2012, + "cited_by_count": 15 + } + ], + "updated_date": "2026-04-24T08:23:43.765630", + "created_date": "2025-10-10T00:00:00" + } +] \ No newline at end of file diff --git a/data/raw/openalex_20260601_191453.json b/data/raw/openalex_20260601_191453.json new file mode 100644 index 000000000..00babf18b --- /dev/null +++ b/data/raw/openalex_20260601_191453.json @@ -0,0 +1,111089 @@ +[ + { + "id": "https://openalex.org/W2101234009", + "doi": "https://doi.org/10.48550/arxiv.1201.0490", + "title": "Scikit-learn: Machine Learning in Python", + "display_name": "Scikit-learn: Machine Learning in Python", + "relevance_score": 17397.934, + "publication_year": 2012, + "publication_date": "2012-01-02", + "ids": { + "openalex": "https://openalex.org/W2101234009", + "doi": "https://doi.org/10.48550/arxiv.1201.0490", + "mag": "2101234009" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1201.0490", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5105141183", + "display_name": "Fabián Pedregosa", + "orcid": "https://orcid.org/0000-0003-4025-3953" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": true, + "raw_author_name": "Pedregosa, Fabian", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074733625", + "display_name": "Gaël Varoquaux", + "orcid": "https://orcid.org/0000-0003-1076-5122" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Varoquaux, Gaël", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018256474", + "display_name": "Alexandre Gramfort", + "orcid": "https://orcid.org/0000-0001-9791-4404" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Gramfort, Alexandre", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027430303", + "display_name": "Vincent Michel", + "orcid": "https://orcid.org/0000-0002-7025-4343" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Michel, Vincent", + "raw_affiliation_strings": [ + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026762833", + "display_name": "Bertrand Thirion", + "orcid": "https://orcid.org/0000-0001-5018-7895" + }, + "institutions": [ + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Thirion, Bertrand", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + }, + { + "raw_affiliation_string": "PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, Bâtiment 145, 91191 Gif-sur-Yvette Cedex - France)", + "institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5112700874", + "display_name": "Olivier Grisel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131947", + "display_name": "Nuxe (France)", + "ror": "https://ror.org/02m7qby09", + "country_code": "FR", + "type": "company", + "lineage": [ + "https://openalex.org/I4210131947" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Grisel, Olivier", + "raw_affiliation_strings": [ + "Nuxeo (18-20 rue Soleillet 75020 Paris - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Nuxeo (18-20 rue Soleillet 75020 Paris - France)", + "institution_ids": [ + "https://openalex.org/I4210131947" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5049123454", + "display_name": "Mathieu Blondel", + "orcid": "https://orcid.org/0000-0002-2366-2993" + }, + "institutions": [ + { + "id": "https://openalex.org/I65837984", + "display_name": "Kobe University", + "ror": "https://ror.org/03tgsfw79", + "country_code": "JP", + "type": "education", + "lineage": [ + "https://openalex.org/I65837984" + ] + } + ], + "countries": [ + "JP" + ], + "is_corresponding": false, + "raw_author_name": "Blondel, Mathieu", + "raw_affiliation_strings": [ + "Kobe University (Japan)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Kobe University (Japan)", + "institution_ids": [ + "https://openalex.org/I65837984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Müller, Andreas", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I51441396", + "display_name": "Bauhaus-Universität Weimar", + "ror": "https://ror.org/033bb5z47", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I51441396" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Müller, Andreas", + "raw_affiliation_strings": [ + "Bauhaus-Universität Weimar (Geschwister-Scholl-Straße 8 99423 Weimar - Germany)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Bauhaus-Universität Weimar (Geschwister-Scholl-Straße 8 99423 Weimar - Germany)", + "institution_ids": [ + "https://openalex.org/I51441396" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Nothman, Joel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210148186", + "display_name": "Google (Canada)", + "ror": "https://ror.org/04d06q394", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969", + "https://openalex.org/I4210148186" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Nothman, Joel", + "raw_affiliation_strings": [ + "Google Inc (Toronto - Canada)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc (Toronto - Canada)", + "institution_ids": [ + "https://openalex.org/I4210148186" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Louppe, Gilles", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Louppe, Gilles", + "raw_affiliation_strings": [ + "LAMI - Laboratoire de Mécanique et Ingénieries (IFMA. Campus des Cézeaux BP 265 63175 Aubière Cedex - France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LAMI - Laboratoire de Mécanique et Ingénieries (IFMA. Campus des Cézeaux BP 265 63175 Aubière Cedex - France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088660184", + "display_name": "Peter Prettenhofer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Prettenhofer, Peter", + "raw_affiliation_strings": [ + "University of Washington [Seattle] (Seattle, Washington 98105 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Washington [Seattle] (Seattle, Washington 98105 - United States)", + "institution_ids": [ + "https://openalex.org/I201448701" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5103273436", + "display_name": "Ron J. Weiss", + "orcid": "https://orcid.org/0000-0003-2010-4053" + }, + "institutions": [ + { + "id": "https://openalex.org/I177605424", + "display_name": "Amherst College", + "ror": "https://ror.org/028vqfs63", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I177605424" + ] + }, + { + "id": "https://openalex.org/I24603500", + "display_name": "University of Massachusetts Amherst", + "ror": "https://ror.org/0072zz521", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I24603500" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Weiss, Ron", + "raw_affiliation_strings": [ + "Department of Mechanical and Industrial Engineering [UMass] (UMass Amherst College of Engineering Department of Mechanical and Industrial Engineering, 220 ELAB, University of Massachusetts Amherst, MA 01003-2210 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Mechanical and Industrial Engineering [UMass] (UMass Amherst College of Engineering Department of Mechanical and Industrial Engineering, 220 ELAB, University of Massachusetts Amherst, MA 01003-2210 - United States)", + "institution_ids": [ + "https://openalex.org/I177605424", + "https://openalex.org/I24603500" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031324436", + "display_name": "Vincent Dubourg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210121859", + "display_name": "Enthought (United States)", + "ror": "https://ror.org/02xfc1977", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210121859" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dubourg, Vincent", + "raw_affiliation_strings": [ + "Enthought Inc (515 Congress Avenue Suite 2100 Austin, TX 78701 - United States)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Enthought Inc (515 Congress Avenue Suite 2100 Austin, TX 78701 - United States)", + "institution_ids": [ + "https://openalex.org/I4210121859" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5038304150", + "display_name": "Jake Vanderplas", + "orcid": "https://orcid.org/0000-0002-9623-3401" + }, + "institutions": [ + { + "id": "https://openalex.org/I103084370", + "display_name": "Total (France)", + "ror": "https://ror.org/04sk34n56", + "country_code": "FR", + "type": "company", + "lineage": [ + "https://openalex.org/I103084370" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Vanderplas, Jake", + "raw_affiliation_strings": [ + "TOTAL S.A. (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "TOTAL S.A. (France)", + "institution_ids": [ + "https://openalex.org/I103084370" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5034029772", + "display_name": "Alexandre Passos", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Passos, Alexandre", + "raw_affiliation_strings": [ + "LNAO (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5023051838", + "display_name": "David Cournapeau", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Cournapeau, David", + "raw_affiliation_strings": [ + "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LNAO - Laboratoire de Neuroimagerie Assistée par Ordinateur (France)", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050910015", + "display_name": "Matthieu Brucher", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Brucher, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107933380", + "display_name": "Matthieu Perrot", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Perrot, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5007095962", + "display_name": "Édouard Duchesnay", + "orcid": "https://orcid.org/0000-0002-4073-3490" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Duchesnay, Édouard", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 5, + "institutions_distinct_count": 19, + "corresponding_author_ids": [ + "https://openalex.org/A5105141183" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 63665, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8748029470443726 + }, + { + "id": "https://openalex.org/keywords/documentation", + "display_name": "Documentation", + "score": 0.834846019744873 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7323822975158691 + }, + { + "id": "https://openalex.org/keywords/mit-license", + "display_name": "MIT License", + "score": 0.5501254796981812 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.511991560459137 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.43965548276901245 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.397538423538208 + }, + { + "id": "https://openalex.org/keywords/license", + "display_name": "License", + "score": 0.35676372051239014 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.34812211990356445 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.18154305219650269 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8748029470443726 + }, + { + "id": "https://openalex.org/C56666940", + "wikidata": "https://www.wikidata.org/wiki/Q788790", + "display_name": "Documentation", + "level": 2, + "score": 0.834846019744873 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7323822975158691 + }, + { + "id": "https://openalex.org/C174183944", + "wikidata": "https://www.wikidata.org/wiki/Q334661", + "display_name": "MIT License", + "level": 3, + "score": 0.5501254796981812 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.511991560459137 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.43965548276901245 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.397538423538208 + }, + { + "id": "https://openalex.org/C2780560020", + "wikidata": "https://www.wikidata.org/wiki/Q79719", + "display_name": "License", + "level": 2, + "score": 0.35676372051239014 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.34812211990356445 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.18154305219650269 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:orbi.ulg.ac.be:2268/225787", + "is_oa": true, + "landing_page_url": "https://orbi.uliege.be/handle/2268/225787", + "pdf_url": "https://orbi.uliege.be/handle/2268/225787", + "source": { + "id": "https://openalex.org/S4306400651", + "display_name": "Open Repository and Bibliography (University of Liège)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157674565", + "host_organization_name": "University of Liège", + "host_organization_lineage": [ + "https://openalex.org/I157674565" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research, 1201 (2012-01-02)", + "raw_type": "peer reviewed" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.763.4227", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.763.4227", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://arxiv.org/pdf/1201.0490.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-00650905v2", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-00650905", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research, 2011", + "raw_type": "Journal articles" + }, + { + "id": "doi:10.48550/arxiv.1201.0490", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1201.0490", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article-journal" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1201.0490", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1201.0490", + "pdf_url": "https://arxiv.org/pdf/1201.0490", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.4399999976158142 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 13, + "referenced_works": [ + "https://openalex.org/W1496508106", + "https://openalex.org/W1571024744", + "https://openalex.org/W2024933578", + "https://openalex.org/W2035776949", + "https://openalex.org/W2040387238", + "https://openalex.org/W2047804403", + "https://openalex.org/W2063978378", + "https://openalex.org/W2097360283", + "https://openalex.org/W2097850441", + "https://openalex.org/W2118585731", + "https://openalex.org/W2146292423", + "https://openalex.org/W2152799677", + "https://openalex.org/W2153635508" + ], + "related_works": [ + "https://openalex.org/W2036021480", + "https://openalex.org/W2207495067", + "https://openalex.org/W1906486629", + "https://openalex.org/W2132241624", + "https://openalex.org/W4392173297", + "https://openalex.org/W4311683883", + "https://openalex.org/W4212902261", + "https://openalex.org/W2546377002", + "https://openalex.org/W4221030787", + "https://openalex.org/W2790811106" + ], + "abstract_inverted_index": { + "Scikit-learn": [ + 0 + ], + "is": [ + 1, + 35, + 51 + ], + "a": [ + 2, + 6, + 30 + ], + "Python": [ + 3 + ], + "module": [ + 4 + ], + "integrating": [ + 5 + ], + "wide": [ + 7 + ], + "range": [ + 8 + ], + "of": [ + 9, + 39 + ], + "state-of-the-art": [ + 10 + ], + "machine": [ + 11, + 25 + ], + "learning": [ + 12, + 26 + ], + "algorithms": [ + 13 + ], + "for": [ + 14 + ], + "medium-scale": [ + 15 + ], + "supervised": [ + 16 + ], + "and": [ + 17, + 43, + 50, + 64, + 70 + ], + "unsupervised": [ + 18 + ], + "problems.": [ + 19 + ], + "This": [ + 20 + ], + "package": [ + 21 + ], + "focuses": [ + 22 + ], + "on": [ + 23, + 37 + ], + "bringing": [ + 24 + ], + "to": [ + 27 + ], + "non-specialists": [ + 28 + ], + "using": [ + 29 + ], + "general-purpose": [ + 31 + ], + "high-level": [ + 32 + ], + "language.": [ + 33 + ], + "Emphasis": [ + 34 + ], + "put": [ + 36 + ], + "ease": [ + 38 + ], + "use,": [ + 40 + ], + "performance,": [ + 41 + ], + "documentation,": [ + 42 + ], + "API": [ + 44 + ], + "consistency.": [ + 45 + ], + "It": [ + 46 + ], + "has": [ + 47 + ], + "minimal": [ + 48 + ], + "dependencies": [ + 49 + ], + "distributed": [ + 52 + ], + "under": [ + 53 + ], + "the": [ + 54 + ], + "simplified": [ + 55 + ], + "BSD": [ + 56 + ], + "license,": [ + 57 + ], + "encouraging": [ + 58 + ], + "its": [ + 59 + ], + "use": [ + 60 + ], + "in": [ + 61 + ], + "both": [ + 62 + ], + "academic": [ + 63 + ], + "commercial": [ + 65 + ], + "settings.": [ + 66 + ], + "Source": [ + 67 + ], + "code,": [ + 68 + ], + "binaries,": [ + 69 + ], + "documentation": [ + 71 + ], + "can": [ + 72 + ], + "be": [ + 73 + ], + "downloaded": [ + 74 + ], + "from": [ + 75 + ], + "http://scikit-learn.org.": [ + 76 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 232 + }, + { + "year": 2025, + "cited_by_count": 3190 + }, + { + "year": 2024, + "cited_by_count": 7800 + }, + { + "year": 2023, + "cited_by_count": 8518 + }, + { + "year": 2022, + "cited_by_count": 7941 + }, + { + "year": 2021, + "cited_by_count": 10725 + }, + { + "year": 2020, + "cited_by_count": 8605 + }, + { + "year": 2019, + "cited_by_count": 6020 + }, + { + "year": 2018, + "cited_by_count": 4131 + }, + { + "year": 2017, + "cited_by_count": 2623 + }, + { + "year": 2016, + "cited_by_count": 1692 + }, + { + "year": 2015, + "cited_by_count": 1075 + }, + { + "year": 2014, + "cited_by_count": 632 + }, + { + "year": 2013, + "cited_by_count": 267 + }, + { + "year": 2012, + "cited_by_count": 80 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3023540311", + "doi": "https://doi.org/10.5860/choice.27-0936", + "title": "Genetic algorithms in search, optimization, and machine learning", + "display_name": "Genetic algorithms in search, optimization, and machine learning", + "relevance_score": 12391.868, + "publication_year": 1989, + "publication_date": "1989-10-01", + "ids": { + "openalex": "https://openalex.org/W3023540311", + "doi": "https://doi.org/10.5860/choice.27-0936", + "mag": "3023540311" + }, + "language": "en", + "primary_location": { + "id": "doi:10.5860/choice.27-0936", + "is_oa": false, + "landing_page_url": "https://doi.org/10.5860/choice.27-0936", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764375719", + "display_name": "Choice Reviews Online", + "issn_l": "0009-4978", + "issn": [ + "0009-4978", + "1523-8253", + "1943-5975" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310316146", + "host_organization_name": "Association of College and Research Libraries", + "host_organization_lineage": [ + "https://openalex.org/P4310316146", + "https://openalex.org/P4310315903" + ], + "host_organization_lineage_names": [ + "Association of College and Research Libraries", + "American Library Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Choice Reviews Online", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 216.8325, + "has_fulltext": false, + "cited_by_count": 49332, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "27", + "issue": "02", + "first_page": "27", + "last_page": "0936" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6865000128746033, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6865000128746033, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.64090496301651 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4825281798839569 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4684337079524994 + }, + { + "id": "https://openalex.org/keywords/quality-control-and-genetic-algorithms", + "display_name": "Quality control and genetic algorithms", + "score": 0.4515381157398224 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.39135777950286865 + }, + { + "id": "https://openalex.org/keywords/genetic-algorithm", + "display_name": "Genetic algorithm", + "score": 0.37594497203826904 + }, + { + "id": "https://openalex.org/keywords/meta-optimization", + "display_name": "Meta-optimization", + "score": 0.18808576464653015 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.64090496301651 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4825281798839569 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4684337079524994 + }, + { + "id": "https://openalex.org/C161164918", + "wikidata": "https://www.wikidata.org/wiki/Q7268775", + "display_name": "Quality control and genetic algorithms", + "level": 4, + "score": 0.4515381157398224 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.39135777950286865 + }, + { + "id": "https://openalex.org/C8880873", + "wikidata": "https://www.wikidata.org/wiki/Q187787", + "display_name": "Genetic algorithm", + "level": 2, + "score": 0.37594497203826904 + }, + { + "id": "https://openalex.org/C4935549", + "wikidata": "https://www.wikidata.org/wiki/Q6822261", + "display_name": "Meta-optimization", + "level": 3, + "score": 0.18808576464653015 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.5860/choice.27-0936", + "is_oa": false, + "landing_page_url": "https://doi.org/10.5860/choice.27-0936", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764375719", + "display_name": "Choice Reviews Online", + "issn_l": "0009-4978", + "issn": [ + "0009-4978", + "1523-8253", + "1943-5975" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310316146", + "host_organization_name": "Association of College and Research Libraries", + "host_organization_lineage": [ + "https://openalex.org/P4310316146", + "https://openalex.org/P4310315903" + ], + "host_organization_lineage_names": [ + "Association of College and Research Libraries", + "American Library Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Choice Reviews Online", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.800000011920929 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W2030843598", + "https://openalex.org/W2381755277", + "https://openalex.org/W4360996914", + "https://openalex.org/W2509607449", + "https://openalex.org/W1608872107", + "https://openalex.org/W2786126153", + "https://openalex.org/W2360904702" + ], + "abstract_inverted_index": { + "From": [ + 0 + ], + "the": [ + 1, + 14 + ], + "Publisher:\r\nThis": [ + 2 + ], + "book": [ + 3 + ], + "brings": [ + 4 + ], + "together": [ + 5 + ], + "-": [ + 6, + 13 + ], + "in": [ + 7, + 35 + ], + "an": [ + 8 + ], + "informal": [ + 9 + ], + "and": [ + 10, + 19, + 27, + 45, + 63, + 70 + ], + "tutorial": [ + 11 + ], + "fashion": [ + 12 + ], + "computer": [ + 15, + 52, + 68 + ], + "techniques,": [ + 16 + ], + "mathematical": [ + 17 + ], + "tools,": [ + 18 + ], + "research": [ + 20 + ], + "results": [ + 21 + ], + "that": [ + 22 + ], + "will": [ + 23 + ], + "enable": [ + 24 + ], + "both": [ + 25 + ], + "students": [ + 26 + ], + "practitioners": [ + 28 + ], + "to": [ + 29, + 33 + ], + "apply": [ + 30 + ], + "genetic": [ + 31 + ], + "algorithms": [ + 32, + 47 + ], + "problems": [ + 34 + ], + "many": [ + 36 + ], + "fields.": [ + 37 + ], + "\r\n\r\nMajor": [ + 38 + ], + "concepts": [ + 39 + ], + "are": [ + 40, + 48 + ], + "illustrated": [ + 41, + 49 + ], + "with": [ + 42 + ], + "running": [ + 43 + ], + "examples,": [ + 44 + ], + "major": [ + 46 + ], + "by": [ + 50 + ], + "Pascal": [ + 51 + ], + "programs.": [ + 53 + ], + "No": [ + 54 + ], + "prior": [ + 55 + ], + "knowledge": [ + 56 + ], + "of": [ + 57, + 67 + ], + "GAs": [ + 58 + ], + "or": [ + 59 + ], + "genetics": [ + 60 + ], + "is": [ + 61, + 73 + ], + "assumed,": [ + 62 + ], + "only": [ + 64 + ], + "a": [ + 65 + ], + "minimum": [ + 66 + ], + "programming": [ + 69 + ], + "mathematics": [ + 71 + ], + "background": [ + 72 + ], + "required.": [ + 74 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 6 + }, + { + "year": 2025, + "cited_by_count": 311 + }, + { + "year": 2024, + "cited_by_count": 480 + }, + { + "year": 2023, + "cited_by_count": 736 + }, + { + "year": 2022, + "cited_by_count": 722 + }, + { + "year": 2021, + "cited_by_count": 1091 + }, + { + "year": 2020, + "cited_by_count": 1203 + }, + { + "year": 2019, + "cited_by_count": 1219 + }, + { + "year": 2018, + "cited_by_count": 1396 + }, + { + "year": 2017, + "cited_by_count": 1475 + }, + { + "year": 2016, + "cited_by_count": 1729 + }, + { + "year": 2015, + "cited_by_count": 1774 + }, + { + "year": 2014, + "cited_by_count": 2001 + }, + { + "year": 2013, + "cited_by_count": 2166 + }, + { + "year": 2012, + "cited_by_count": 2360 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2125055259", + "doi": null, + "title": "C4.5: Programs for Machine Learning", + "display_name": "C4.5: Programs for Machine Learning", + "relevance_score": 10836.938, + "publication_year": 1992, + "publication_date": "1992-10-15", + "ids": { + "openalex": "https://openalex.org/W2125055259", + "mag": "2125055259" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028413442", + "is_oa": false, + "landing_page_url": "http://lib.myilibrary.com?id=677844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110271944", + "display_name": "J. R. Quinlan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "J. R. Quinlan", + "raw_affiliation_strings": [ + "Univ. of Sydney, Sydney, NSW, Australia#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Univ. of Sydney, Sydney, NSW, Australia#TAB#", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110271944" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I129604602" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 37.5253, + "has_fulltext": false, + "cited_by_count": 23696, + "citation_normalized_percentile": { + "value": 0.99811143, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 95, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.732699990272522, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.732699990272522, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7494493126869202 + }, + { + "id": "https://openalex.org/keywords/unix", + "display_name": "Unix", + "score": 0.7103577852249146 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.5452554225921631 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5430417060852051 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5293187499046326 + }, + { + "id": "https://openalex.org/keywords/source-code", + "display_name": "Source code", + "score": 0.5040985345840454 + }, + { + "id": "https://openalex.org/keywords/workstation", + "display_name": "Workstation", + "score": 0.4916697144508362 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.47135013341903687 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.4408881366252899 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.43640998005867004 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.3549916744232178 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.34295010566711426 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.28907880187034607 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.16292878985404968 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7494493126869202 + }, + { + "id": "https://openalex.org/C112968700", + "wikidata": "https://www.wikidata.org/wiki/Q11368", + "display_name": "Unix", + "level": 3, + "score": 0.7103577852249146 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.5452554225921631 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5430417060852051 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5293187499046326 + }, + { + "id": "https://openalex.org/C43126263", + "wikidata": "https://www.wikidata.org/wiki/Q128751", + "display_name": "Source code", + "level": 2, + "score": 0.5040985345840454 + }, + { + "id": "https://openalex.org/C67953723", + "wikidata": "https://www.wikidata.org/wiki/Q192525", + "display_name": "Workstation", + "level": 2, + "score": 0.4916697144508362 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.47135013341903687 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.4408881366252899 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.43640998005867004 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.3549916744232178 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.34295010566711426 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.28907880187034607 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.16292878985404968 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028413442", + "is_oa": false, + "landing_page_url": "http://lib.myilibrary.com?id=677844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:cds.cern.ch:2031749", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2031749", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:2125055259", + "is_oa": false, + "landing_page_url": "https://cds.cern.ch/record/2031749", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Reduced inequalities", + "id": "https://metadata.un.org/sdg/10", + "score": 0.49000000953674316 + }, + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.4300000071525574 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W3085162807", + "https://openalex.org/W2966207845", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766", + "https://openalex.org/W2147169507", + "https://openalex.org/W2140190241", + "https://openalex.org/W2136000097", + "https://openalex.org/W2133990480", + "https://openalex.org/W2123504579", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112076978", + "https://openalex.org/W2084812512", + "https://openalex.org/W1988790447", + "https://openalex.org/W1912123407", + "https://openalex.org/W1670263352", + "https://openalex.org/W1570448133", + "https://openalex.org/W1504694836" + ], + "abstract_inverted_index": { + "Classifier": [ + 0 + ], + "systems": [ + 1 + ], + "play": [ + 2 + ], + "a": [ + 3, + 38, + 55 + ], + "major": [ + 4 + ], + "role": [ + 5 + ], + "in": [ + 6, + 47 + ], + "machine": [ + 7 + ], + "learning": [ + 8 + ], + "and": [ + 9, + 12, + 18, + 69, + 75 + ], + "knowledge-based": [ + 10 + ], + "systems,": [ + 11 + ], + "Ross": [ + 13 + ], + "Quinlan's": [ + 14 + ], + "work": [ + 15 + ], + "on": [ + 16 + ], + "ID3": [ + 17 + ], + "C4.5": [ + 19, + 43, + 85 + ], + "is": [ + 20, + 37 + ], + "widely": [ + 21 + ], + "acknowledged": [ + 22 + ], + "to": [ + 23, + 32, + 41, + 58, + 93 + ], + "have": [ + 24 + ], + "made": [ + 25 + ], + "some": [ + 26 + ], + "of": [ + 27, + 90 + ], + "the": [ + 28, + 42, + 50, + 59, + 63 + ], + "most": [ + 29 + ], + "significant": [ + 30 + ], + "contributions": [ + 31 + ], + "their": [ + 33 + ], + "development.": [ + 34 + ], + "This": [ + 35 + ], + "book": [ + 36 + ], + "complete": [ + 39 + ], + "guide": [ + 40, + 57 + ], + "system": [ + 44 + ], + "as": [ + 45 + ], + "implemented": [ + 46 + ], + "C": [ + 48 + ], + "for": [ + 49, + 81 + ], + "UNIX": [ + 51 + ], + "environment.": [ + 52 + ], + "It": [ + 53 + ], + "contains": [ + 54 + ], + "comprehensive": [ + 56 + ], + "system's": [ + 60 + ], + "use": [ + 61 + ], + ",": [ + 62 + ], + "source": [ + 64, + 73 + ], + "code": [ + 65, + 74 + ], + "(about": [ + 66 + ], + "8,800": [ + 67 + ], + "lines),": [ + 68 + ], + "implementation": [ + 70 + ], + "notes.": [ + 71 + ], + "The": [ + 72, + 96 + ], + "sample": [ + 76 + ], + "datasets": [ + 77 + ], + "are": [ + 78 + ], + "also": [ + 79 + ], + "available": [ + 80 + ], + "download": [ + 82 + ], + "(see": [ + 83 + ], + "below).": [ + 84 + ], + "starts": [ + 86 + ], + "with": [ + 87 + ], + "large": [ + 88 + ], + "sets": [ + 89 + ], + "cases": [ + 91 + ], + "belonging": [ + 92 + ], + "known": [ + 94 + ], + "classes.": [ + 95 + ], + "cases,": [ + 97 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 119 + }, + { + "year": 2024, + "cited_by_count": 234 + }, + { + "year": 2023, + "cited_by_count": 397 + }, + { + "year": 2022, + "cited_by_count": 454 + }, + { + "year": 2021, + "cited_by_count": 798 + }, + { + "year": 2020, + "cited_by_count": 893 + }, + { + "year": 2019, + "cited_by_count": 970 + }, + { + "year": 2018, + "cited_by_count": 978 + }, + { + "year": 2017, + "cited_by_count": 1004 + }, + { + "year": 2016, + "cited_by_count": 1088 + }, + { + "year": 2015, + "cited_by_count": 1179 + }, + { + "year": 2014, + "cited_by_count": 1226 + }, + { + "year": 2013, + "cited_by_count": 1265 + }, + { + "year": 2012, + "cited_by_count": 1268 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1570448133", + "doi": "https://doi.org/10.1016/c2009-0-19715-5", + "title": "Data Mining: Practical Machine Learning Tools and Techniques", + "display_name": "Data Mining: Practical Machine Learning Tools and Techniques", + "relevance_score": 9976.794, + "publication_year": 2011, + "publication_date": "2011-01-01", + "ids": { + "openalex": "https://openalex.org/W1570448133", + "doi": "https://doi.org/10.1016/c2009-0-19715-5", + "mag": "1570448133" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1016/c2009-0-19715-5", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1016/c2009-0-19715-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463230", + "display_name": "Elsevier eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "any_repository_has_fulltext": null + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5045934263", + "display_name": "Ian H. Witten", + "orcid": "https://orcid.org/0000-0001-6428-8988" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Witten, Ian H. 1947-", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059992863", + "display_name": "Eibe Frank", + "orcid": "https://orcid.org/0000-0001-6152-7111" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Frank, Eibe", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5065290010", + "display_name": "Mark A. Hall", + "orcid": "https://orcid.org/0000-0001-6277-144X" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Hall, Mark A.", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5045934263" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 777.8895, + "has_fulltext": false, + "cited_by_count": 25711, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.994700014591217, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9937000274658203, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6216986179351807 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.40141761302948 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.381103515625 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3717349171638489 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3705868124961853 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6216986179351807 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.40141761302948 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.381103515625 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3717349171638489 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3705868124961853 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1016/c2009-0-19715-5", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1016/c2009-0-19715-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463230", + "display_name": "Elsevier eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + { + "id": "pmh:KOHA-OAI-BM:91035", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:KOHA-OAI-BM:44641", + "is_oa": false, + "landing_page_url": "http://www.loc.gov/catdir/enhancements/fy0624/2005043385-t.html", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027751250", + "is_oa": false, + "landing_page_url": "http://www.sciencedirect.com/science/book/9780123748560", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + } + ], + "best_oa_location": { + "id": "pmh:KOHA-OAI-BM:91035", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://www.gbv.de/dms/bowker/toc/9780123748560.pdf", + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "id": "https://metadata.un.org/sdg/9", + "score": 0.47999998927116394 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W1570448133.pdf" + }, + "referenced_works_count": 203, + "referenced_works": [ + "https://openalex.org/W23418094", + "https://openalex.org/W24402856", + "https://openalex.org/W28412257", + "https://openalex.org/W43179442", + "https://openalex.org/W64096637", + "https://openalex.org/W66926763", + "https://openalex.org/W69783631", + "https://openalex.org/W122789262", + "https://openalex.org/W123339444", + "https://openalex.org/W138217685", + "https://openalex.org/W149472151", + "https://openalex.org/W173229765", + "https://openalex.org/W187357405", + "https://openalex.org/W586094522", + "https://openalex.org/W589058777", + "https://openalex.org/W1483135265", + "https://openalex.org/W1483679765", + "https://openalex.org/W1492324553", + "https://openalex.org/W1492698999", + "https://openalex.org/W1495859460", + "https://openalex.org/W1500698297", + "https://openalex.org/W1506285740", + "https://openalex.org/W1513366687", + "https://openalex.org/W1516443426", + "https://openalex.org/W1520687314", + "https://openalex.org/W1523856491", + "https://openalex.org/W1524704912", + "https://openalex.org/W1528113134", + "https://openalex.org/W1530010412", + "https://openalex.org/W1533544838", + "https://openalex.org/W1533946607", + "https://openalex.org/W1536719366", + "https://openalex.org/W1550206324", + "https://openalex.org/W1550821944", + "https://openalex.org/W1551066950", + "https://openalex.org/W1553019137", + "https://openalex.org/W1553313034", + "https://openalex.org/W1554663460", + "https://openalex.org/W1555244713", + "https://openalex.org/W1559060276", + "https://openalex.org/W1560107318", + "https://openalex.org/W1563088657", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571836963", + "https://openalex.org/W1572964175", + "https://openalex.org/W1572978214", + "https://openalex.org/W1573228426", + "https://openalex.org/W1576962511", + "https://openalex.org/W1582036668", + "https://openalex.org/W1583700199", + "https://openalex.org/W1584333058", + "https://openalex.org/W1585221258", + "https://openalex.org/W1585610988", + "https://openalex.org/W1585743408", + "https://openalex.org/W1588100052", + "https://openalex.org/W1588282782", + "https://openalex.org/W1597165973", + "https://openalex.org/W1598333443", + "https://openalex.org/W1598696986", + "https://openalex.org/W1600437712", + "https://openalex.org/W1601529450", + "https://openalex.org/W1604345466", + "https://openalex.org/W1605275907", + "https://openalex.org/W1605688901", + "https://openalex.org/W1605957858", + "https://openalex.org/W1619226191", + "https://openalex.org/W1625504505", + "https://openalex.org/W1630964756", + "https://openalex.org/W1641039719", + "https://openalex.org/W1648885110", + "https://openalex.org/W1670263352", + "https://openalex.org/W1673310716", + "https://openalex.org/W1676820704", + "https://openalex.org/W1678889691", + "https://openalex.org/W1679846099", + "https://openalex.org/W1680392829", + "https://openalex.org/W1763728792", + "https://openalex.org/W1781794689", + "https://openalex.org/W1800049145", + "https://openalex.org/W1806329564", + "https://openalex.org/W1817561967", + "https://openalex.org/W1833977909", + "https://openalex.org/W1861764418", + "https://openalex.org/W1881647329", + "https://openalex.org/W1882120692", + "https://openalex.org/W1906182963", + "https://openalex.org/W1907578970", + "https://openalex.org/W1908888846", + "https://openalex.org/W1912123407", + "https://openalex.org/W1932571505", + "https://openalex.org/W1955600018", + "https://openalex.org/W1969482724", + "https://openalex.org/W1978515644", + "https://openalex.org/W1979711143", + "https://openalex.org/W1982161962", + "https://openalex.org/W1985593448", + "https://openalex.org/W1987947967", + "https://openalex.org/W1990748933", + "https://openalex.org/W1995945562", + "https://openalex.org/W2001619934", + "https://openalex.org/W2008906462", + "https://openalex.org/W2014725748", + "https://openalex.org/W2015401436", + "https://openalex.org/W2017337590", + "https://openalex.org/W2019575783", + "https://openalex.org/W2024046085", + "https://openalex.org/W2024646871", + "https://openalex.org/W2024668293", + "https://openalex.org/W2035890032", + "https://openalex.org/W2037603696", + "https://openalex.org/W2037768235", + "https://openalex.org/W2037965136", + "https://openalex.org/W2042385018", + "https://openalex.org/W2048679005", + "https://openalex.org/W2053154970", + "https://openalex.org/W2057720927", + "https://openalex.org/W2058732827", + "https://openalex.org/W2064853889", + "https://openalex.org/W2065861851", + "https://openalex.org/W2066636486", + "https://openalex.org/W2067098334", + "https://openalex.org/W2068337856", + "https://openalex.org/W2073308541", + "https://openalex.org/W2073583237", + "https://openalex.org/W2074610805", + "https://openalex.org/W2075665712", + "https://openalex.org/W2078579128", + "https://openalex.org/W2095749253", + "https://openalex.org/W2095897464", + "https://openalex.org/W2097089247", + "https://openalex.org/W2097569937", + "https://openalex.org/W2100406636", + "https://openalex.org/W2102009083", + "https://openalex.org/W2105494575", + "https://openalex.org/W2105497548", + "https://openalex.org/W2106393550", + "https://openalex.org/W2108949035", + "https://openalex.org/W2110119381", + "https://openalex.org/W2111746072", + "https://openalex.org/W2112076978", + "https://openalex.org/W2112841646", + "https://openalex.org/W2113242816", + "https://openalex.org/W2117812871", + "https://openalex.org/W2118020653", + "https://openalex.org/W2118383892", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119885577", + "https://openalex.org/W2120216197", + "https://openalex.org/W2122111042", + "https://openalex.org/W2122410182", + "https://openalex.org/W2129113961", + "https://openalex.org/W2129249398", + "https://openalex.org/W2132166479", + "https://openalex.org/W2133632100", + "https://openalex.org/W2134696506", + "https://openalex.org/W2138064700", + "https://openalex.org/W2138621811", + "https://openalex.org/W2139059214", + "https://openalex.org/W2140190241", + "https://openalex.org/W2142767931", + "https://openalex.org/W2142819948", + "https://openalex.org/W2142957916", + "https://openalex.org/W2143349571", + "https://openalex.org/W2143426320", + "https://openalex.org/W2144907232", + "https://openalex.org/W2146257637", + "https://openalex.org/W2147492008", + "https://openalex.org/W2147810216", + "https://openalex.org/W2148949939", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153028052", + "https://openalex.org/W2154318594", + "https://openalex.org/W2154642793", + "https://openalex.org/W2156909104", + "https://openalex.org/W2160642098", + "https://openalex.org/W2161077873", + "https://openalex.org/W2163915185", + "https://openalex.org/W2164818318", + "https://openalex.org/W2166559705", + "https://openalex.org/W2167793421", + "https://openalex.org/W2170112109", + "https://openalex.org/W2170654002", + "https://openalex.org/W2170726034", + "https://openalex.org/W2170913656", + "https://openalex.org/W2172162418", + "https://openalex.org/W2172780573", + "https://openalex.org/W2277957941", + "https://openalex.org/W2331052961", + "https://openalex.org/W2621280964", + "https://openalex.org/W2912934387", + "https://openalex.org/W2913066018", + "https://openalex.org/W2914369697", + "https://openalex.org/W2953014340", + "https://openalex.org/W2988864014", + "https://openalex.org/W3017143921", + "https://openalex.org/W3023540311", + "https://openalex.org/W3083113686", + "https://openalex.org/W3085162807", + "https://openalex.org/W3123294050", + "https://openalex.org/W3163638146", + "https://openalex.org/W3193477162", + "https://openalex.org/W3203633735", + "https://openalex.org/W3208887124" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "As": [ + 0 + ], + "with": [ + 1 + ], + "any": [ + 2 + ], + "burgeoning": [ + 3 + ], + "technology": [ + 4 + ], + "that": [ + 5, + 27, + 61, + 89, + 108 + ], + "enjoys": [ + 6 + ], + "commercial": [ + 7 + ], + "attention,": [ + 8 + ], + "the": [ + 9, + 86, + 94, + 98, + 106, + 120, + 125 + ], + "use": [ + 10 + ], + "of": [ + 11, + 20, + 25, + 37, + 58, + 85 + ], + "data": [ + 12 + ], + "mining": [ + 13 + ], + "is": [ + 14, + 41, + 54, + 81 + ], + "surrounded": [ + 15 + ], + "by": [ + 16, + 31 + ], + "a": [ + 17, + 82, + 150 + ], + "great": [ + 18 + ], + "deal": [ + 19 + ], + "hype.": [ + 21 + ], + "Exaggerated": [ + 22 + ], + "reports": [ + 23 + ], + "tell": [ + 24 + ], + "secrets": [ + 26 + ], + "can": [ + 28, + 62 + ], + "be": [ + 29 + ], + "uncovered": [ + 30 + ], + "setting": [ + 32 + ], + "algorithms": [ + 33 + ], + "loose": [ + 34 + ], + "on": [ + 35, + 147, + 153 + ], + "oceans": [ + 36 + ], + "data.": [ + 38, + 68 + ], + "But": [ + 39 + ], + "there": [ + 40, + 53 + ], + "no": [ + 42, + 47, + 50 + ], + "magic": [ + 43 + ], + "in": [ + 44, + 91 + ], + "machine": [ + 45, + 136 + ], + "learning,": [ + 46 + ], + "hidden": [ + 48 + ], + "power,": [ + 49 + ], + "alchemy.": [ + 51 + ], + "Instead": [ + 52 + ], + "an": [ + 55, + 133, + 142 + ], + "identifiable": [ + 56 + ], + "body": [ + 57 + ], + "practical": [ + 59 + ], + "techniques": [ + 60, + 73 + ], + "extract": [ + 63 + ], + "useful": [ + 64 + ], + "information": [ + 65, + 146 + ], + "from": [ + 66 + ], + "raw": [ + 67 + ], + "This": [ + 69 + ], + "book": [ + 70, + 80 + ], + "describes": [ + 71 + ], + "these": [ + 72 + ], + "and": [ + 74, + 115 + ], + "shows": [ + 75 + ], + "how": [ + 76 + ], + "they": [ + 77 + ], + "work.": [ + 78 + ], + "The": [ + 79, + 122 + ], + "major": [ + 83 + ], + "revision": [ + 84 + ], + "first": [ + 87 + ], + "edition": [ + 88, + 127 + ], + "appeared": [ + 90 + ], + "1999.": [ + 92 + ], + "While": [ + 93 + ], + "basic": [ + 95 + ], + "core": [ + 96 + ], + "remains": [ + 97 + ], + "same,": [ + 99 + ], + "it": [ + 100 + ], + "has": [ + 101, + 117 + ], + "been": [ + 102 + ], + "updated": [ + 103 + ], + "to": [ + 104 + ], + "reflect": [ + 105 + ], + "changes": [ + 107 + ], + "have": [ + 109 + ], + "taken": [ + 110 + ], + "place": [ + 111 + ], + "over": [ + 112 + ], + "five": [ + 113 + ], + "years,": [ + 114 + ], + "now": [ + 116, + 140 + ], + "nearly": [ + 118 + ], + "double": [ + 119 + ], + "references.": [ + 121 + ], + "highlights": [ + 123 + ], + "for": [ + 124 + ], + "new": [ + 126, + 130, + 151 + ], + "include": [ + 128 + ], + "thirty": [ + 129 + ], + "technique": [ + 131 + ], + "sections;": [ + 132 + ], + "enhanced": [ + 134 + ], + "Weka": [ + 135 + ], + "learning": [ + 137 + ], + "workbench,": [ + 138 + ], + "which": [ + 139 + ], + "features": [ + 141 + ], + "interactive": [ + 143 + ], + "interface;": [ + 144 + ], + "comprehensive": [ + 145 + ], + "neural": [ + 148 + ], + "networks;": [ + 149, + 155 + ], + "section": [ + 152 + ], + "Bayesian": [ + 154 + ], + "plus": [ + 156 + ], + "much": [ + 157 + ], + "more.": [ + 158 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 5 + }, + { + "year": 2025, + "cited_by_count": 237 + }, + { + "year": 2024, + "cited_by_count": 449 + }, + { + "year": 2023, + "cited_by_count": 684 + }, + { + "year": 2022, + "cited_by_count": 774 + }, + { + "year": 2021, + "cited_by_count": 1127 + }, + { + "year": 2020, + "cited_by_count": 1434 + }, + { + "year": 2019, + "cited_by_count": 1625 + }, + { + "year": 2018, + "cited_by_count": 1646 + }, + { + "year": 2017, + "cited_by_count": 1443 + }, + { + "year": 2016, + "cited_by_count": 1255 + }, + { + "year": 2015, + "cited_by_count": 1510 + }, + { + "year": 2014, + "cited_by_count": 1529 + }, + { + "year": 2013, + "cited_by_count": 1672 + }, + { + "year": 2012, + "cited_by_count": 1557 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1663973292", + "doi": "https://doi.org/10.1117/1.2819119", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 9309.5625, + "publication_year": 2007, + "publication_date": "2007-01-01", + "ids": { + "openalex": "https://openalex.org/W1663973292", + "doi": "https://doi.org/10.1117/1.2819119", + "mag": "1663973292" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1117/1.2819119", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1117/1.2819119", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S158511090", + "display_name": "Journal of Electronic Imaging", + "issn_l": "1017-9909", + "issn": [ + "1017-9909", + "1560-229X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315543", + "host_organization_name": "SPIE", + "host_organization_lineage": [ + "https://openalex.org/P4310315543" + ], + "host_organization_lineage_names": [ + "SPIE" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Electronic Imaging", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Nasser M. Nasrabadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + }, + { + "id": "https://openalex.org/I4210164937", + "display_name": "Microsoft Research (United Kingdom)", + "ror": "https://ror.org/05k87vq12", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253", + "https://openalex.org/I4210164937" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nasser M. Nasrabadi", + "raw_affiliation_strings": [ + "West Virginia Univ. (United States)", + "Microsoft" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "West Virginia Univ. (United States)", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + }, + { + "raw_affiliation_string": "Microsoft", + "institution_ids": [ + "https://openalex.org/I4210164937" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I12097938", + "https://openalex.org/I4210164937" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 798.0702, + "has_fulltext": false, + "cited_by_count": 22082, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "16", + "issue": "4", + "first_page": "049901", + "last_page": "049901" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10688", + "display_name": "Image and Signal Denoising Methods", + "score": 0.9861999750137329, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5992881655693054 + }, + { + "id": "https://openalex.org/keywords/imaging-science", + "display_name": "Imaging science", + "score": 0.5219192504882812 + }, + { + "id": "https://openalex.org/keywords/cover", + "display_name": "Cover (algebra)", + "score": 0.45677652955055237 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.4510306119918823 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.41892093420028687 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.15935367345809937 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5992881655693054 + }, + { + "id": "https://openalex.org/C57177791", + "wikidata": "https://www.wikidata.org/wiki/Q1038886", + "display_name": "Imaging science", + "level": 2, + "score": 0.5219192504882812 + }, + { + "id": "https://openalex.org/C2780428219", + "wikidata": "https://www.wikidata.org/wiki/Q16952335", + "display_name": "Cover (algebra)", + "level": 2, + "score": 0.45677652955055237 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.4510306119918823 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.41892093420028687 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.15935367345809937 + }, + { + "id": "https://openalex.org/C78519656", + "wikidata": "https://www.wikidata.org/wiki/Q101333", + "display_name": "Mechanical engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1117/1.2819119", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1117/1.2819119", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S158511090", + "display_name": "Journal of Electronic Imaging", + "issn_l": "1017-9909", + "issn": [ + "1017-9909", + "1560-229X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315543", + "host_organization_name": "SPIE", + "host_organization_lineage": [ + "https://openalex.org/P4310315543" + ], + "host_organization_lineage_names": [ + "SPIE" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Electronic Imaging", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W1480376833", + "https://openalex.org/W1496317909", + "https://openalex.org/W2117812871", + "https://openalex.org/W3215037115", + "https://openalex.org/W4232383088", + "https://openalex.org/W4292691288" + ], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W623607250", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W4245429118", + "https://openalex.org/W2382290278", + "https://openalex.org/W4245505501", + "https://openalex.org/W2350741829" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "Journal": [ + 1 + ], + "of": [ + 2, + 27 + ], + "Electronic": [ + 3 + ], + "Imaging": [ + 4 + ], + "(JEI),": [ + 5 + ], + "copublished": [ + 6 + ], + "bimonthly": [ + 7 + ], + "with": [ + 8 + ], + "the": [ + 9 + ], + "Society": [ + 10 + ], + "for": [ + 11 + ], + "Imaging": [ + 12 + ], + "Science": [ + 13 + ], + "and": [ + 14, + 22, + 31 + ], + "Technology,": [ + 15 + ], + "publishes": [ + 16 + ], + "peer-reviewed": [ + 17 + ], + "papers": [ + 18 + ], + "that": [ + 19 + ], + "cover": [ + 20 + ], + "research": [ + 21 + ], + "applications": [ + 23 + ], + "in": [ + 24 + ], + "all": [ + 25 + ], + "areas": [ + 26 + ], + "electronic": [ + 28 + ], + "imaging": [ + 29 + ], + "science": [ + 30 + ], + "technology.": [ + 32 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 22 + }, + { + "year": 2025, + "cited_by_count": 52 + }, + { + "year": 2024, + "cited_by_count": 85 + }, + { + "year": 2023, + "cited_by_count": 106 + }, + { + "year": 2022, + "cited_by_count": 170 + }, + { + "year": 2021, + "cited_by_count": 2005 + }, + { + "year": 2020, + "cited_by_count": 2386 + }, + { + "year": 2019, + "cited_by_count": 1999 + }, + { + "year": 2018, + "cited_by_count": 1718 + }, + { + "year": 2017, + "cited_by_count": 1316 + }, + { + "year": 2016, + "cited_by_count": 1444 + }, + { + "year": 2015, + "cited_by_count": 1951 + }, + { + "year": 2014, + "cited_by_count": 1736 + }, + { + "year": 2013, + "cited_by_count": 1461 + }, + { + "year": 2012, + "cited_by_count": 1440 + } + ], + "updated_date": "2026-05-24T08:33:08.758527", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1639032689", + "doi": null, + "title": "Genetic Algorithms in Search, Optimization and Machine Learning", + "display_name": "Genetic Algorithms in Search, Optimization and Machine Learning", + "relevance_score": 8468.335, + "publication_year": 1988, + "publication_date": "1988-01-01", + "ids": { + "openalex": "https://openalex.org/W1639032689", + "mag": "1639032689" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:KnabeLibrary:353", + "is_oa": false, + "landing_page_url": "http://panmental.de/library/index.php?bibtex|353", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110057218", + "display_name": "David E. Goldberg", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "David E. Goldberg", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110057218" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 26.7962, + "has_fulltext": false, + "cited_by_count": 17771, + "citation_normalized_percentile": { + "value": 0.99576372, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6876999735832214, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.6876999735832214, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/pascal", + "display_name": "Pascal (unit)", + "score": 0.8266515135765076 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6943583488464355 + }, + { + "id": "https://openalex.org/keywords/genetic-programming", + "display_name": "Genetic programming", + "score": 0.6225850582122803 + }, + { + "id": "https://openalex.org/keywords/genetic-algorithm", + "display_name": "Genetic algorithm", + "score": 0.4758467376232147 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4586948752403259 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43886905908584595 + }, + { + "id": "https://openalex.org/keywords/quality-control-and-genetic-algorithms", + "display_name": "Quality control and genetic algorithms", + "score": 0.43597400188446045 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.3935277462005615 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.3595549464225769 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.20000383257865906 + }, + { + "id": "https://openalex.org/keywords/meta-optimization", + "display_name": "Meta-optimization", + "score": 0.1979789137840271 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C75608658", + "wikidata": "https://www.wikidata.org/wiki/Q44395", + "display_name": "Pascal (unit)", + "level": 2, + "score": 0.8266515135765076 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6943583488464355 + }, + { + "id": "https://openalex.org/C110332635", + "wikidata": "https://www.wikidata.org/wiki/Q629498", + "display_name": "Genetic programming", + "level": 2, + "score": 0.6225850582122803 + }, + { + "id": "https://openalex.org/C8880873", + "wikidata": "https://www.wikidata.org/wiki/Q187787", + "display_name": "Genetic algorithm", + "level": 2, + "score": 0.4758467376232147 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4586948752403259 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43886905908584595 + }, + { + "id": "https://openalex.org/C161164918", + "wikidata": "https://www.wikidata.org/wiki/Q7268775", + "display_name": "Quality control and genetic algorithms", + "level": 4, + "score": 0.43597400188446045 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.3935277462005615 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.3595549464225769 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.20000383257865906 + }, + { + "id": "https://openalex.org/C4935549", + "wikidata": "https://www.wikidata.org/wiki/Q6822261", + "display_name": "Meta-optimization", + "level": 3, + "score": 0.1979789137840271 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "pmh:oai:KnabeLibrary:353", + "is_oa": false, + "landing_page_url": "http://panmental.de/library/index.php?bibtex|353", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-001455853", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:206079", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/206079", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cumincad.architexturez.net:8807", + "is_oa": false, + "landing_page_url": "http://cumincad.architexturez.net//doc/oai-cumincadworks-id-a4ce", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:2996648926", + "is_oa": false, + "landing_page_url": "http://papers.cumincad.org/cgi-bin/works/Show?a4ce", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.800000011920929 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3149025087", + "https://openalex.org/W2904250082", + "https://openalex.org/W2339500526", + "https://openalex.org/W2261054240", + "https://openalex.org/W2166843422", + "https://openalex.org/W2152195021", + "https://openalex.org/W2152150600", + "https://openalex.org/W2142183404", + "https://openalex.org/W2126105956", + "https://openalex.org/W2116661285", + "https://openalex.org/W2097571405", + "https://openalex.org/W2096590200", + "https://openalex.org/W2024060531", + "https://openalex.org/W2011039300", + "https://openalex.org/W1659842140", + "https://openalex.org/W1595498733", + "https://openalex.org/W1595159159", + "https://openalex.org/W1576818901", + "https://openalex.org/W1544329015", + "https://openalex.org/W1497256448" + ], + "abstract_inverted_index": { + "David": [ + 0 + ], + "Goldberg's": [ + 1 + ], + "Genetic": [ + 2 + ], + "Algorithms": [ + 3 + ], + "in": [ + 4, + 26, + 69, + 85 + ], + "Search,": [ + 5 + ], + "Optimization": [ + 6 + ], + "and": [ + 7, + 38, + 93, + 111 + ], + "Machine": [ + 8 + ], + "Learning": [ + 9 + ], + "is": [ + 10, + 20, + 39 + ], + "by": [ + 11 + ], + "far": [ + 12 + ], + "the": [ + 13, + 23, + 27, + 45, + 54, + 82, + 86 + ], + "bestselling": [ + 14 + ], + "introduction": [ + 15 + ], + "to": [ + 16, + 106, + 115 + ], + "genetic": [ + 17, + 36, + 48, + 67, + 109, + 113 + ], + "algorithms.": [ + 18 + ], + "Goldberg": [ + 19 + ], + "one": [ + 21 + ], + "of": [ + 22, + 42, + 47, + 53, + 64, + 81 + ], + "preeminent": [ + 24 + ], + "researchers": [ + 25 + ], + "field--he": [ + 28 + ], + "has": [ + 29 + ], + "published": [ + 30 + ], + "over": [ + 31 + ], + "100": [ + 32 + ], + "research": [ + 33 + ], + "articles": [ + 34 + ], + "on": [ + 35 + ], + "algorithms": [ + 37, + 114 + ], + "a": [ + 40, + 61, + 65, + 97, + 100, + 108, + 116 + ], + "student": [ + 41 + ], + "John": [ + 43 + ], + "Holland,": [ + 44 + ], + "father": [ + 46 + ], + "algorithms--and": [ + 49 + ], + "his": [ + 50 + ], + "deep": [ + 51 + ], + "understanding": [ + 52 + ], + "material": [ + 55 + ], + "shines": [ + 56 + ], + "through.": [ + 57 + ], + "The": [ + 58, + 77 + ], + "book": [ + 59, + 78 + ], + "contains": [ + 60 + ], + "complete": [ + 62 + ], + "listing": [ + 63 + ], + "simple": [ + 66 + ], + "algorithm": [ + 68, + 110 + ], + "Pascal,": [ + 70 + ], + "which": [ + 71 + ], + "C": [ + 72 + ], + "programmers": [ + 73 + ], + "can": [ + 74 + ], + "easily": [ + 75 + ], + "understand.": [ + 76 + ], + "covers": [ + 79 + ], + "all": [ + 80 + ], + "important": [ + 83 + ], + "topics": [ + 84 + ], + "field,": [ + 87 + ], + "including": [ + 88 + ], + "crossover,": [ + 89 + ], + "mutation,": [ + 90 + ], + "classifier": [ + 91 + ], + "systems,": [ + 92 + ], + "fitness": [ + 94 + ], + "scaling,": [ + 95 + ], + "giving": [ + 96 + ], + "novice": [ + 98 + ], + "with": [ + 99 + ], + "computer": [ + 101 + ], + "science": [ + 102 + ], + "background": [ + 103 + ], + "enough": [ + 104 + ], + "information": [ + 105 + ], + "implement": [ + 107 + ], + "describe": [ + 112 + ], + "friend.": [ + 117 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 66 + }, + { + "year": 2024, + "cited_by_count": 102 + }, + { + "year": 2023, + "cited_by_count": 182 + }, + { + "year": 2022, + "cited_by_count": 116 + }, + { + "year": 2021, + "cited_by_count": 204 + }, + { + "year": 2020, + "cited_by_count": 176 + }, + { + "year": 2019, + "cited_by_count": 166 + }, + { + "year": 2018, + "cited_by_count": 168 + }, + { + "year": 2017, + "cited_by_count": 217 + }, + { + "year": 2016, + "cited_by_count": 360 + }, + { + "year": 2015, + "cited_by_count": 660 + }, + { + "year": 2014, + "cited_by_count": 886 + }, + { + "year": 2013, + "cited_by_count": 961 + }, + { + "year": 2012, + "cited_by_count": 984 + } + ], + "updated_date": "2026-05-15T08:27:34.491423", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1583837637", + "doi": "https://doi.org/10.1145/1273496", + "title": "Proceedings of the 24th international conference on Machine learning", + "display_name": "Proceedings of the 24th international conference on Machine learning", + "relevance_score": 7144.1416, + "publication_year": 2007, + "publication_date": "2007-06-20", + "ids": { + "openalex": "https://openalex.org/W1583837637", + "doi": "https://doi.org/10.1145/1273496", + "mag": "1583837637" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/1273496", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1273496", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "proceedings" + }, + "type": "preprint", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 11733, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": true, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.9121000170707703, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.9121000170707703, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.6044684648513794 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.4876014292240143 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.42869511246681213 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.3953603208065033 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.27516093850135803 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.6044684648513794 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.4876014292240143 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.42869511246681213 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.3953603208065033 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.27516093850135803 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/1273496", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1273496", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "proceedings" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W4387426029", + "https://openalex.org/W4254162896", + "https://openalex.org/W4388792380", + "https://openalex.org/W1477999932", + "https://openalex.org/W4386731653", + "https://openalex.org/W2376001620", + "https://openalex.org/W2925303117", + "https://openalex.org/W4285219045", + "https://openalex.org/W3167529338" + ], + "abstract_inverted_index": { + "This": [ + 0, + 71 + ], + "volume": [ + 1 + ], + "contains": [ + 2 + ], + "the": [ + 3, + 7, + 34, + 38, + 49, + 57, + 104, + 108, + 121, + 128, + 140, + 151, + 157, + 160, + 164, + 182, + 203, + 215, + 221, + 225, + 273, + 293, + 330, + 347, + 393, + 402, + 428, + 444 + ], + "papers": [ + 4, + 219, + 239, + 252, + 278, + 287 + ], + "accepted": [ + 5, + 197, + 241, + 277, + 334 + ], + "to": [ + 6, + 29, + 77, + 101, + 103, + 188, + 205, + 242, + 329, + 371, + 399, + 409 + ], + "24th": [ + 8 + ], + "International": [ + 9, + 39, + 429 + ], + "Conference": [ + 10, + 430 + ], + "on": [ + 11, + 117, + 218, + 356, + 431, + 443 + ], + "Machine": [ + 12, + 40, + 403 + ], + "Learning": [ + 13, + 41, + 404 + ], + "(ICML": [ + 14 + ], + "2007),": [ + 15 + ], + "which": [ + 16, + 87, + 199, + 253, + 336, + 360 + ], + "was": [ + 17, + 80, + 90, + 200, + 425 + ], + "held": [ + 18, + 440 + ], + "at": [ + 19 + ], + "Oregon": [ + 20 + ], + "State": [ + 21 + ], + "University": [ + 22 + ], + "in": [ + 23, + 56, + 86 + ], + "Corvalis,": [ + 24 + ], + "Oregon,": [ + 25 + ], + "from": [ + 26, + 214, + 268, + 292, + 296, + 299, + 305, + 308, + 312, + 317, + 322 + ], + "June": [ + 27 + ], + "20th": [ + 28 + ], + "24th,": [ + 30 + ], + "2007.": [ + 31, + 449 + ], + "ICML": [ + 32, + 229, + 243, + 265, + 348, + 424, + 437, + 448 + ], + "is": [ + 33 + ], + "annual": [ + 35 + ], + "conference": [ + 36 + ], + "of": [ + 37, + 53, + 59, + 123, + 153, + 159, + 177, + 192, + 232, + 251, + 263, + 333, + 363, + 381, + 413, + 447 + ], + "Society": [ + 42 + ], + "(IMLS),": [ + 43 + ], + "and": [ + 44, + 51, + 107, + 120, + 148, + 170, + 220, + 314, + 319, + 325, + 341, + 353, + 383, + 438 + ], + "provides": [ + 45 + ], + "a": [ + 46, + 81, + 172, + 190, + 247, + 289, + 339, + 411 + ], + "venue": [ + 47 + ], + "for": [ + 48, + 175, + 181, + 228, + 344, + 389 + ], + "presentation": [ + 50, + 343 + ], + "discussion": [ + 52, + 136, + 162 + ], + "current": [ + 54 + ], + "research": [ + 55 + ], + "field": [ + 58 + ], + "machine": [ + 60, + 269, + 357 + ], + "learning.": [ + 61 + ], + "These": [ + 62 + ], + "proceedings": [ + 63 + ], + "can": [ + 64 + ], + "also": [ + 65, + 368 + ], + "be": [ + 66 + ], + "found": [ + 67 + ], + "online": [ + 68, + 118 + ], + "at:": [ + 69 + ], + "http://www.machinelearning.org.": [ + 70 + ], + "year": [ + 72, + 132, + 280, + 422 + ], + "there": [ + 73, + 133 + ], + "were": [ + 74, + 99, + 134, + 186, + 240, + 254, + 281, + 367, + 407, + 419 + ], + "522": [ + 75 + ], + "submissions": [ + 76, + 267 + ], + "ICML.": [ + 78 + ], + "There": [ + 79 + ], + "very": [ + 82, + 248 + ], + "thorough": [ + 83 + ], + "review": [ + 84, + 174, + 226 + ], + "process,": [ + 85 + ], + "each": [ + 88, + 176, + 311, + 321, + 345 + ], + "paper": [ + 89, + 416 + ], + "reviewed": [ + 91 + ], + "by": [ + 92, + 139, + 202, + 401 + ], + "three": [ + 93 + ], + "program": [ + 94, + 142, + 332, + 349 + ], + "committee": [ + 95, + 143 + ], + "(PC)": [ + 96 + ], + "members.": [ + 97 + ], + "Authors": [ + 98 + ], + "able": [ + 100, + 408 + ], + "respond": [ + 102 + ], + "initial": [ + 105 + ], + "reviews,": [ + 106 + ], + "PC": [ + 109 + ], + "members": [ + 110, + 166 + ], + "could": [ + 111 + ], + "then": [ + 112 + ], + "modify": [ + 113 + ], + "their": [ + 114, + 168, + 178, + 195 + ], + "reviews": [ + 115 + ], + "based": [ + 116 + ], + "discussions": [ + 119 + ], + "content": [ + 122 + ], + "this": [ + 124, + 131, + 244, + 279, + 396, + 421 + ], + "author": [ + 125, + 154, + 291 + ], + "response.": [ + 126 + ], + "For": [ + 127 + ], + "first": [ + 129, + 183, + 290, + 445 + ], + "time": [ + 130, + 223 + ], + "two": [ + 135 + ], + "periods": [ + 137 + ], + "led": [ + 138 + ], + "senior": [ + 141 + ], + "(SPC),": [ + 144 + ], + "one": [ + 145, + 149 + ], + "just": [ + 146 + ], + "before": [ + 147 + ], + "after": [ + 150 + ], + "submission": [ + 152 + ], + "responses.": [ + 155 + ], + "At": [ + 156 + ], + "end": [ + 158 + ], + "second": [ + 161 + ], + "period,": [ + 163 + ], + "SPC": [ + 165 + ], + "gave": [ + 167 + ], + "recommendations": [ + 169 + ], + "provided": [ + 171 + ], + "summary": [ + 173 + ], + "papers.": [ + 179 + ], + "Also": [ + 180 + ], + "time,": [ + 184 + ], + "authors": [ + 185 + ], + "asked": [ + 187 + ], + "submit": [ + 189 + ], + "list": [ + 191 + ], + "changes": [ + 193 + ], + "with": [ + 194, + 427 + ], + "final": [ + 196 + ], + "papers,": [ + 198, + 335 + ], + "checked": [ + 201 + ], + "SPCs": [ + 204 + ], + "ensure": [ + 206 + ], + "that": [ + 207, + 231, + 423 + ], + "reviewer": [ + 208 + ], + "comments": [ + 209 + ], + "had": [ + 210, + 288 + ], + "been": [ + 211 + ], + "addressed.": [ + 212 + ], + "Apart": [ + 213 + ], + "length": [ + 216 + ], + "restrictions": [ + 217 + ], + "compressed": [ + 222 + ], + "frame,": [ + 224 + ], + "process": [ + 227 + ], + "resembles": [ + 230 + ], + "many": [ + 233 + ], + "journal": [ + 234 + ], + "publications.": [ + 235 + ], + "In": [ + 236, + 327 + ], + "total,": [ + 237 + ], + "150": [ + 238, + 276 + ], + "year,": [ + 245 + ], + "including": [ + 246 + ], + "small": [ + 249 + ], + "number": [ + 250, + 412 + ], + "initially": [ + 255 + ], + "conditionally": [ + 256 + ], + "accepted,": [ + 257 + ], + "yielding": [ + 258 + ], + "an": [ + 259 + ], + "overall": [ + 260 + ], + "acceptance": [ + 261 + ], + "rate": [ + 262 + ], + "29%.": [ + 264 + ], + "attracts": [ + 266 + ], + "learning": [ + 270, + 358 + ], + "researchers": [ + 271 + ], + "around": [ + 272 + ], + "globe.": [ + 274 + ], + "The": [ + 275 + ], + "geographically": [ + 282 + ], + "distributed": [ + 283 + ], + "as": [ + 284, + 392 + ], + "follows:": [ + 285 + ], + "66": [ + 286 + ], + "US,": [ + 294 + ], + "32": [ + 295 + ], + "Europe,": [ + 297 + ], + "19": [ + 298 + ], + "China": [ + 300 + ], + "or": [ + 301 + ], + "Hong": [ + 302 + ], + "Kong,": [ + 303 + ], + "11": [ + 304 + ], + "Canada,": [ + 306 + ], + "6": [ + 307 + ], + "India,": [ + 309 + ], + "5": [ + 310 + ], + "Australia": [ + 313 + ], + "Japan,": [ + 315 + ], + "3": [ + 316, + 351 + ], + "Israel,": [ + 318 + ], + "1": [ + 320 + ], + "Korea,": [ + 323 + ], + "Russia": [ + 324 + ], + "Taiwan.": [ + 326 + ], + "addition": [ + 328 + ], + "main": [ + 331 + ], + "includes": [ + 337 + ], + "both": [ + 338 + ], + "talk": [ + 340 + ], + "poster": [ + 342 + ], + "paper,": [ + 346 + ], + "included": [ + 350 + ], + "workshops": [ + 352 + ], + "8": [ + 354 + ], + "tutorials": [ + 355 + ], + "topics": [ + 359 + ], + "are": [ + 361 + ], + "currently": [ + 362 + ], + "broad": [ + 364 + ], + "interest.": [ + 365 + ], + "We": [ + 366, + 418 + ], + "extremely": [ + 369 + ], + "pleased": [ + 370 + ], + "have": [ + 372 + ], + "David": [ + 373 + ], + "Heckerman": [ + 374 + ], + "(Microsoft": [ + 375 + ], + "Research),": [ + 376 + ], + "Joshua": [ + 377 + ], + "Tenenbaum": [ + 378 + ], + "(Massachussetts": [ + 379 + ], + "Institute": [ + 380, + 388 + ], + "Technology),": [ + 382 + ], + "Bernhard": [ + 384 + ], + "Schölkopf": [ + 385 + ], + "(Max": [ + 386 + ], + "Planck": [ + 387 + ], + "Biological": [ + 390 + ], + "Cybernetics)": [ + 391 + ], + "invited": [ + 394 + ], + "speakers": [ + 395 + ], + "year.": [ + 397 + ], + "Thanks": [ + 398 + ], + "sponsorship": [ + 400 + ], + "Journal,": [ + 405 + ], + "we": [ + 406 + ], + "award": [ + 410 + ], + "outstanding": [ + 414 + ], + "student": [ + 415 + ], + "prizes.": [ + 417 + ], + "fortunate": [ + 420 + ], + "co-located": [ + 426 + ], + "Inductive": [ + 432 + ], + "Logic": [ + 433 + ], + "Programming": [ + 434 + ], + "(ILP": [ + 435 + ], + "2007).": [ + 436 + ], + "ILP": [ + 439 + ], + "joint": [ + 441 + ], + "sessions": [ + 442 + ], + "day": [ + 446 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 2573 + }, + { + "year": 2024, + "cited_by_count": 2390 + }, + { + "year": 2023, + "cited_by_count": 1818 + }, + { + "year": 2022, + "cited_by_count": 1221 + }, + { + "year": 2021, + "cited_by_count": 622 + }, + { + "year": 2020, + "cited_by_count": 595 + }, + { + "year": 2019, + "cited_by_count": 396 + }, + { + "year": 2018, + "cited_by_count": 268 + }, + { + "year": 2017, + "cited_by_count": 253 + }, + { + "year": 2016, + "cited_by_count": 196 + }, + { + "year": 2015, + "cited_by_count": 162 + }, + { + "year": 2014, + "cited_by_count": 153 + }, + { + "year": 2013, + "cited_by_count": 136 + }, + { + "year": 2012, + "cited_by_count": 135 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1503398984", + "doi": null, + "title": "Machine learning a probabilistic perspective", + "display_name": "Machine learning a probabilistic perspective", + "relevance_score": 6893.345, + "publication_year": 2012, + "publication_date": "2012-01-01", + "ids": { + "openalex": "https://openalex.org/W1503398984", + "mag": "1503398984" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028615309", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=028615309&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5103362817", + "display_name": "Kevin P. Murphy", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Kevin P. Murphy", + "raw_affiliation_strings": [], + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5103362817" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 397.5259, + "has_fulltext": false, + "cited_by_count": 9327, + "citation_normalized_percentile": { + "value": 0.99999101, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.09690000116825104, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.09690000116825104, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14406", + "display_name": "Multidisciplinary Science and Engineering Research", + "score": 0.08969999849796295, + "subfield": { + "id": "https://openalex.org/subfields/1804", + "display_name": "Statistics, Probability and Uncertainty" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6962889432907104 + }, + { + "id": "https://openalex.org/keywords/probabilistic-logic", + "display_name": "Probabilistic logic", + "score": 0.6251402497291565 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6185331344604492 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5668832063674927 + }, + { + "id": "https://openalex.org/keywords/conditional-random-field", + "display_name": "Conditional random field", + "score": 0.5589616298675537 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.5155355930328369 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.49392396211624146 + }, + { + "id": "https://openalex.org/keywords/graphical-model", + "display_name": "Graphical model", + "score": 0.4833957254886627 + }, + { + "id": "https://openalex.org/keywords/regularization", + "display_name": "Regularization (linguistics)", + "score": 0.4277557134628296 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.41000470519065857 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.1839407980442047 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6962889432907104 + }, + { + "id": "https://openalex.org/C49937458", + "wikidata": "https://www.wikidata.org/wiki/Q2599292", + "display_name": "Probabilistic logic", + "level": 2, + "score": 0.6251402497291565 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6185331344604492 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5668832063674927 + }, + { + "id": "https://openalex.org/C152565575", + "wikidata": "https://www.wikidata.org/wiki/Q1124538", + "display_name": "Conditional random field", + "level": 2, + "score": 0.5589616298675537 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.5155355930328369 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.49392396211624146 + }, + { + "id": "https://openalex.org/C155846161", + "wikidata": "https://www.wikidata.org/wiki/Q1143367", + "display_name": "Graphical model", + "level": 2, + "score": 0.4833957254886627 + }, + { + "id": "https://openalex.org/C2776135515", + "wikidata": "https://www.wikidata.org/wiki/Q17143721", + "display_name": "Regularization (linguistics)", + "level": 2, + "score": 0.4277557134628296 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.41000470519065857 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.1839407980442047 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028615309", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=028615309&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-032798127", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=032798127&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:1981503", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1981503", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2723460", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2723460", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.41999998688697815 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2135046866", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112796928", + "https://openalex.org/W2101234009", + "https://openalex.org/W2095705004", + "https://openalex.org/W2064675550", + "https://openalex.org/W2049633694", + "https://openalex.org/W2045656233", + "https://openalex.org/W1880262756", + "https://openalex.org/W1746819321", + "https://openalex.org/W1663973292", + "https://openalex.org/W1554944419", + "https://openalex.org/W1511986666", + "https://openalex.org/W1506806321", + "https://openalex.org/W1480376833" + ], + "abstract_inverted_index": { + "Today's": [ + 0 + ], + "Web-enabled": [ + 1 + ], + "deluge": [ + 2 + ], + "of": [ + 3, + 10, + 47, + 79, + 140, + 155 + ], + "electronic": [ + 4 + ], + "data": [ + 5, + 11, + 25 + ], + "calls": [ + 6 + ], + "for": [ + 7, + 106, + 191 + ], + "automated": [ + 8 + ], + "methods": [ + 9, + 18 + ], + "analysis.": [ + 12 + ], + "Machine": [ + 13 + ], + "learning": [ + 14 + ], + "provides": [ + 15 + ], + "these,": [ + 16 + ], + "developing": [ + 17 + ], + "that": [ + 19 + ], + "can": [ + 20 + ], + "automatically": [ + 21 + ], + "detect": [ + 22 + ], + "patterns": [ + 23, + 31 + ], + "in": [ + 24, + 82, + 98, + 161, + 175 + ], + "and": [ + 26, + 41, + 60, + 72, + 91, + 119, + 133, + 164, + 200 + ], + "then": [ + 27 + ], + "use": [ + 28 + ], + "the": [ + 29, + 45, + 83, + 107, + 144, + 153, + 169 + ], + "uncovered": [ + 30 + ], + "to": [ + 32, + 44, + 158 + ], + "predict": [ + 33 + ], + "future": [ + 34 + ], + "data.": [ + 35 + ], + "This": [ + 36 + ], + "textbook": [ + 37 + ], + "offers": [ + 38 + ], + "a": [ + 39, + 52, + 138, + 147, + 162, + 176 + ], + "comprehensive": [ + 40 + ], + "self-contained": [ + 42 + ], + "introduction": [ + 43 + ], + "field": [ + 46 + ], + "machine": [ + 48 + ], + "learning,": [ + 49 + ], + "based": [ + 50 + ], + "on": [ + 51, + 66 + ], + "unified,": [ + 53 + ], + "probabilistic": [ + 54 + ], + "approach.": [ + 55 + ], + "The": [ + 56, + 94, + 187 + ], + "coverage": [ + 57 + ], + "combines": [ + 58 + ], + "breadth": [ + 59 + ], + "depth,": [ + 61 + ], + "offering": [ + 62 + ], + "necessary": [ + 63 + ], + "background": [ + 64, + 199 + ], + "material": [ + 65 + ], + "such": [ + 67, + 124 + ], + "topics": [ + 68, + 112 + ], + "as": [ + 69, + 75, + 77, + 127 + ], + "probability,": [ + 70 + ], + "optimization,": [ + 71 + ], + "linear": [ + 73 + ], + "algebra": [ + 74 + ], + "well": [ + 76 + ], + "discussion": [ + 78 + ], + "recent": [ + 80 + ], + "developments": [ + 81 + ], + "field,": [ + 84 + ], + "including": [ + 85 + ], + "conditional": [ + 86 + ], + "random": [ + 87 + ], + "fields,": [ + 88 + ], + "L1": [ + 89 + ], + "regularization,": [ + 90 + ], + "deep": [ + 92 + ], + "learning.": [ + 93 + ], + "book": [ + 95, + 145, + 188 + ], + "is": [ + 96, + 183, + 189 + ], + "written": [ + 97 + ], + "an": [ + 99, + 195 + ], + "informal,": [ + 100 + ], + "accessible": [ + 101 + ], + "style,": [ + 102 + ], + "complete": [ + 103 + ], + "with": [ + 104, + 116, + 194 + ], + "pseudo-code": [ + 105 + ], + "most": [ + 108 + ], + "important": [ + 109 + ], + "algorithms.": [ + 110 + ], + "All": [ + 111 + ], + "are": [ + 113 + ], + "copiously": [ + 114 + ], + "illustrated": [ + 115 + ], + "color": [ + 117 + ], + "images": [ + 118 + ], + "worked": [ + 120 + ], + "examples": [ + 121 + ], + "drawn": [ + 122 + ], + "from": [ + 123 + ], + "application": [ + 125 + ], + "domains": [ + 126 + ], + "biology,": [ + 128 + ], + "text": [ + 129 + ], + "processing,": [ + 130 + ], + "computer": [ + 131 + ], + "vision,": [ + 132 + ], + "robotics.": [ + 134 + ], + "Rather": [ + 135 + ], + "than": [ + 136 + ], + "providing": [ + 137 + ], + "cookbook": [ + 139 + ], + "different": [ + 141 + ], + "heuristic": [ + 142 + ], + "methods,": [ + 143 + ], + "stresses": [ + 146 + ], + "principled": [ + 148 + ], + "model-based": [ + 149 + ], + "approach,": [ + 150 + ], + "often": [ + 151 + ], + "using": [ + 152 + ], + "language": [ + 154 + ], + "graphical": [ + 156 + ], + "models": [ + 157, + 160, + 170 + ], + "specify": [ + 159 + ], + "concise": [ + 163 + ], + "intuitive": [ + 165 + ], + "way.": [ + 166 + ], + "Almost": [ + 167 + ], + "all": [ + 168 + ], + "described": [ + 171 + ], + "have": [ + 172 + ], + "been": [ + 173 + ], + "implemented": [ + 174 + ], + "MATLAB": [ + 177 + ], + "software": [ + 178 + ], + "package--PMTK": [ + 179 + ], + "(probabilistic": [ + 180 + ], + "modeling": [ + 181 + ], + "toolkit)--that": [ + 182 + ], + "freely": [ + 184 + ], + "available": [ + 185 + ], + "online.": [ + 186 + ], + "suitable": [ + 190 + ], + "upper-level": [ + 192 + ], + "undergraduates": [ + 193 + ], + "introductory-level": [ + 196 + ], + "college": [ + 197 + ], + "math": [ + 198 + ], + "beginning": [ + 201 + ], + "graduate": [ + 202 + ], + "students.": [ + 203 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 363 + }, + { + "year": 2024, + "cited_by_count": 626 + }, + { + "year": 2023, + "cited_by_count": 915 + }, + { + "year": 2022, + "cited_by_count": 929 + }, + { + "year": 2021, + "cited_by_count": 1245 + }, + { + "year": 2020, + "cited_by_count": 1184 + }, + { + "year": 2019, + "cited_by_count": 1006 + }, + { + "year": 2018, + "cited_by_count": 862 + }, + { + "year": 2017, + "cited_by_count": 696 + }, + { + "year": 2016, + "cited_by_count": 594 + }, + { + "year": 2015, + "cited_by_count": 475 + }, + { + "year": 2014, + "cited_by_count": 294 + }, + { + "year": 2013, + "cited_by_count": 118 + }, + { + "year": 2012, + "cited_by_count": 12 + } + ], + "updated_date": "2026-04-19T08:26:33.389920", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1901616594", + "doi": "https://doi.org/10.1126/science.aaa8415", + "title": "Machine learning: Trends, perspectives, and prospects", + "display_name": "Machine learning: Trends, perspectives, and prospects", + "relevance_score": 6839.5435, + "publication_year": 2015, + "publication_date": "2015-07-16", + "ids": { + "openalex": "https://openalex.org/W1901616594", + "doi": "https://doi.org/10.1126/science.aaa8415", + "mag": "1901616594", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/26185243" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1126/science.aaa8415", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aaa8415", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5049812527", + "display_name": "Michael I. Jordan", + "orcid": "https://orcid.org/0000-0001-8935-817X" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "M. I. Jordan", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Sciences, Department of Statistics, University of California, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Sciences, Department of Statistics, University of California, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102921433", + "display_name": "Tom M. Mitchell", + "orcid": "https://orcid.org/0000-0001-7373-0301" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "T. M. Mitchell", + "raw_affiliation_strings": [ + "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA", + "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + }, + { + "raw_affiliation_string": "Machine Learning Department, Carnegie Mellon University, Pittsburgh, PA, USA#TAB#", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5049812527", + "https://openalex.org/A5102921433" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I74973139", + "https://openalex.org/I95457486" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 231.985, + "has_fulltext": false, + "cited_by_count": 9497, + "citation_normalized_percentile": { + "value": 0.99992528, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "349", + "issue": "6245", + "first_page": "255", + "last_page": "260" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9993000030517578, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9993000030517578, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12761", + "display_name": "Data Stream Mining Techniques", + "score": 0.9962999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/intersection", + "display_name": "Intersection (aeronautics)", + "score": 0.6641911268234253 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6273059248924255 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5956528782844543 + }, + { + "id": "https://openalex.org/keywords/core", + "display_name": "Core (optical fiber)", + "score": 0.529660165309906 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.5171177387237549 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5001497268676758 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.4807169735431671 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.4387192130088806 + }, + { + "id": "https://openalex.org/keywords/lying", + "display_name": "Lying", + "score": 0.41993552446365356 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.14734527468681335 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.13175764679908752 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C64543145", + "wikidata": "https://www.wikidata.org/wiki/Q162942", + "display_name": "Intersection (aeronautics)", + "level": 2, + "score": 0.6641911268234253 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6273059248924255 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5956528782844543 + }, + { + "id": "https://openalex.org/C2164484", + "wikidata": "https://www.wikidata.org/wiki/Q5170150", + "display_name": "Core (optical fiber)", + "level": 2, + "score": 0.529660165309906 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.5171177387237549 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5001497268676758 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.4807169735431671 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.4387192130088806 + }, + { + "id": "https://openalex.org/C119421448", + "wikidata": "https://www.wikidata.org/wiki/Q2268776", + "display_name": "Lying", + "level": 2, + "score": 0.41993552446365356 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.14734527468681335 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.13175764679908752 + }, + { + "id": "https://openalex.org/C146978453", + "wikidata": "https://www.wikidata.org/wiki/Q3798668", + "display_name": "Aerospace engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003199", + "descriptor_name": "Computer Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1126/science.aaa8415", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aaa8415", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:26185243", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/26185243", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science (New York, N.Y.)", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 32, + "referenced_works": [ + "https://openalex.org/W99485931", + "https://openalex.org/W1503398984", + "https://openalex.org/W1512585804", + "https://openalex.org/W1554944419", + "https://openalex.org/W1569098853", + "https://openalex.org/W1873763122", + "https://openalex.org/W1970472910", + "https://openalex.org/W1992570774", + "https://openalex.org/W1999352252", + "https://openalex.org/W2006452405", + "https://openalex.org/W2019363670", + "https://openalex.org/W2042469398", + "https://openalex.org/W2047281923", + "https://openalex.org/W2076063813", + "https://openalex.org/W2097381042", + "https://openalex.org/W2100495367", + "https://openalex.org/W2117726420", + "https://openalex.org/W2127180992", + "https://openalex.org/W2132001804", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146774335", + "https://openalex.org/W2151320232", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163605009", + "https://openalex.org/W2174706414", + "https://openalex.org/W2618530766", + "https://openalex.org/W3102480238", + "https://openalex.org/W4214717370", + "https://openalex.org/W4231109964", + "https://openalex.org/W4238893454", + "https://openalex.org/W4244670803", + "https://openalex.org/W4292363360" + ], + "related_works": [ + "https://openalex.org/W2955910435", + "https://openalex.org/W2888123326", + "https://openalex.org/W2501458630", + "https://openalex.org/W2982312151", + "https://openalex.org/W4246089694", + "https://openalex.org/W2747462053", + "https://openalex.org/W2753162950", + "https://openalex.org/W4210719352", + "https://openalex.org/W2347526077", + "https://openalex.org/W1568263573" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 48, + 58 + ], + "addresses": [ + 2 + ], + "the": [ + 3, + 27, + 36, + 54, + 64, + 68 + ], + "question": [ + 4 + ], + "of": [ + 5, + 18, + 29, + 38, + 56, + 70, + 78, + 98 + ], + "how": [ + 6 + ], + "to": [ + 7, + 91 + ], + "build": [ + 8 + ], + "computers": [ + 9 + ], + "that": [ + 10 + ], + "improve": [ + 11 + ], + "automatically": [ + 12 + ], + "through": [ + 13 + ], + "experience.": [ + 14 + ], + "It": [ + 15 + ], + "is": [ + 16 + ], + "one": [ + 17 + ], + "today's": [ + 19 + ], + "most": [ + 20 + ], + "rapidly": [ + 21 + ], + "growing": [ + 22 + ], + "technical": [ + 23 + ], + "fields,": [ + 24 + ], + "lying": [ + 25 + ], + "at": [ + 26, + 35 + ], + "intersection": [ + 28 + ], + "computer": [ + 30 + ], + "science": [ + 31 + ], + "and": [ + 32, + 34, + 41, + 60, + 62, + 73, + 88, + 108 + ], + "statistics,": [ + 33 + ], + "core": [ + 37 + ], + "artificial": [ + 39 + ], + "intelligence": [ + 40 + ], + "data": [ + 42, + 72 + ], + "science.": [ + 43 + ], + "Recent": [ + 44 + ], + "progress": [ + 45 + ], + "in": [ + 46, + 67 + ], + "machine": [ + 47 + ], + "has": [ + 49 + ], + "been": [ + 50 + ], + "driven": [ + 51 + ], + "both": [ + 52 + ], + "by": [ + 53, + 63 + ], + "development": [ + 55 + ], + "new": [ + 57 + ], + "algorithms": [ + 59 + ], + "theory": [ + 61 + ], + "ongoing": [ + 65 + ], + "explosion": [ + 66 + ], + "availability": [ + 69 + ], + "online": [ + 71 + ], + "low-cost": [ + 74 + ], + "computation.": [ + 75 + ], + "The": [ + 76 + ], + "adoption": [ + 77 + ], + "data-intensive": [ + 79 + ], + "machine-learning": [ + 80 + ], + "methods": [ + 81 + ], + "can": [ + 82 + ], + "be": [ + 83 + ], + "found": [ + 84 + ], + "throughout": [ + 85 + ], + "science,": [ + 86 + ], + "technology": [ + 87 + ], + "commerce,": [ + 89 + ], + "leading": [ + 90 + ], + "more": [ + 92 + ], + "evidence-based": [ + 93 + ], + "decision-making": [ + 94 + ], + "across": [ + 95 + ], + "many": [ + 96 + ], + "walks": [ + 97 + ], + "life,": [ + 99 + ], + "including": [ + 100 + ], + "health": [ + 101 + ], + "care,": [ + 102 + ], + "manufacturing,": [ + 103 + ], + "education,": [ + 104 + ], + "financial": [ + 105 + ], + "modeling,": [ + 106 + ], + "policing,": [ + 107 + ], + "marketing.": [ + 109 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 560 + }, + { + "year": 2025, + "cited_by_count": 1716 + }, + { + "year": 2024, + "cited_by_count": 1766 + }, + { + "year": 2023, + "cited_by_count": 1523 + }, + { + "year": 2022, + "cited_by_count": 1276 + }, + { + "year": 2021, + "cited_by_count": 961 + }, + { + "year": 2020, + "cited_by_count": 657 + }, + { + "year": 2019, + "cited_by_count": 517 + }, + { + "year": 2018, + "cited_by_count": 271 + }, + { + "year": 2017, + "cited_by_count": 157 + }, + { + "year": 2016, + "cited_by_count": 79 + }, + { + "year": 2015, + "cited_by_count": 13 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1746819321", + "doi": "https://doi.org/10.7551/mitpress/3206.001.0001", + "title": "Gaussian Processes for Machine Learning", + "display_name": "Gaussian Processes for Machine Learning", + "relevance_score": 6815.038, + "publication_year": 2005, + "publication_date": "2005-11-23", + "ids": { + "openalex": "https://openalex.org/W1746819321", + "doi": "https://doi.org/10.7551/mitpress/3206.001.0001", + "mag": "1746819321" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/3206.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/3206.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5108711177", + "display_name": "Carl Edward Rasmussen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210112925", + "display_name": "Max Planck Institute for Biological Cybernetics", + "ror": "https://ror.org/026nmvv73", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ] + }, + { + "id": "https://openalex.org/I149899117", + "display_name": "Max Planck Society", + "ror": "https://ror.org/01hhn8329", + "country_code": "DE", + "type": "funder", + "lineage": [ + "https://openalex.org/I149899117" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Carl Edward Rasmussen", + "raw_affiliation_strings": [ + "Max Planck Institute for Biological Cybernetics, Max Planck Society" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "institution_ids": [ + "https://openalex.org/I4210112925", + "https://openalex.org/I149899117" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5080713659", + "display_name": "Christopher K. I. Williams", + "orcid": "https://orcid.org/0000-0002-6270-4703" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Christopher K. I. Williams", + "raw_affiliation_strings": [ + "School of Informatics" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Informatics", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5108711177" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 60.0909, + "has_fulltext": false, + "cited_by_count": 10487, + "citation_normalized_percentile": { + "value": 0.99936548, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9882000088691711, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13126", + "display_name": "Scientific Research and Discoveries", + "score": 0.9718000292778015, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.830909252166748 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7165400981903076 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.678665816783905 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.5565923452377319 + }, + { + "id": "https://openalex.org/keywords/gaussian-process", + "display_name": "Gaussian process", + "score": 0.5361518859863281 + }, + { + "id": "https://openalex.org/keywords/probabilistic-logic", + "display_name": "Probabilistic logic", + "score": 0.5021359920501709 + }, + { + "id": "https://openalex.org/keywords/relevance-vector-machine", + "display_name": "Relevance vector machine", + "score": 0.5012705326080322 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.48535385727882385 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.47896531224250793 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.3814472556114197 + }, + { + "id": "https://openalex.org/keywords/gaussian", + "display_name": "Gaussian", + "score": 0.2928916811943054 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.830909252166748 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7165400981903076 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.678665816783905 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.5565923452377319 + }, + { + "id": "https://openalex.org/C61326573", + "wikidata": "https://www.wikidata.org/wiki/Q1496376", + "display_name": "Gaussian process", + "level": 3, + "score": 0.5361518859863281 + }, + { + "id": "https://openalex.org/C49937458", + "wikidata": "https://www.wikidata.org/wiki/Q2599292", + "display_name": "Probabilistic logic", + "level": 2, + "score": 0.5021359920501709 + }, + { + "id": "https://openalex.org/C14948415", + "wikidata": "https://www.wikidata.org/wiki/Q7310972", + "display_name": "Relevance vector machine", + "level": 3, + "score": 0.5012705326080322 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.48535385727882385 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.47896531224250793 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.3814472556114197 + }, + { + "id": "https://openalex.org/C163716315", + "wikidata": "https://www.wikidata.org/wiki/Q901177", + "display_name": "Gaussian", + "level": 2, + "score": 0.2928916811943054 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 12, + "locations": [ + { + "id": "doi:10.7551/mitpress/3206.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/3206.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.363.7289", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.363.7289", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://mlg.eng.cam.ac.uk/pub/pdf/Ras04.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.86.3414", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.86.3414", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.ubc.ca/~hutter/earg/papers05/rasmussen_gps_in_ml.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-014768173", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=014768173&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:2307304", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2307304", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:edoc.mpg.de:232601", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/232601", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Advanced Lectures on Machine Learning: ML Summer Schools 2003, Canberra, Australia, February 2 - 14, 2003, Tübingen, Germany, August 4 - 16, 2003, Revised Lectures, 63-71 (2004)", + "raw_type": "InBook" + }, + { + "id": "pmh:oai:edoc.mpg.de:312148", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/312148", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book" + }, + { + "id": "pmh:oai:generic.eprints.org:325766", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/325766/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book" + }, + { + "id": "pmh:oai:generic.eprints.org:327253", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/327253/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Book Section" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1791157", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-D2FB-6", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Adaptive Computation and Machine Learning", + "raw_type": "info:eu-repo/semantics/book" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1792157", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-F365-A", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Advanced Lectures on Machine Learning: ML Summer Schools 2003, Canberra, Australia, February 2 - 14, 2003, Tübingen, Germany, August 4 - 16, 2003", + "raw_type": "info:eu-repo/semantics/conferenceObject" + }, + { + "id": "mag:3023062339", + "is_oa": false, + "landing_page_url": "https://www.research.ed.ac.uk/portal/en/publications/covariance-functions(33de55b3-5bb5-43f6-874e-301a6d2b2160)/export.html", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463626", + "display_name": "MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "MIT Press eBooks", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 180, + "referenced_works": [ + "https://openalex.org/W14377099", + "https://openalex.org/W44447720", + "https://openalex.org/W61071295", + "https://openalex.org/W131514509", + "https://openalex.org/W186419298", + "https://openalex.org/W336602872", + "https://openalex.org/W1213006044", + "https://openalex.org/W1484867920", + "https://openalex.org/W1486089539", + "https://openalex.org/W1486164486", + "https://openalex.org/W1496317909", + "https://openalex.org/W1497675750", + "https://openalex.org/W1505043854", + "https://openalex.org/W1506153731", + "https://openalex.org/W1510355813", + "https://openalex.org/W1512098439", + "https://openalex.org/W1512149552", + "https://openalex.org/W1515272691", + "https://openalex.org/W1543996294", + "https://openalex.org/W1549258098", + "https://openalex.org/W1550570395", + "https://openalex.org/W1551209770", + "https://openalex.org/W1554663460", + "https://openalex.org/W1564947197", + "https://openalex.org/W1567512734", + "https://openalex.org/W1571894236", + "https://openalex.org/W1574225613", + "https://openalex.org/W1598589417", + "https://openalex.org/W1601740268", + "https://openalex.org/W1604293137", + "https://openalex.org/W1607751291", + "https://openalex.org/W1618393386", + "https://openalex.org/W1618449801", + "https://openalex.org/W1628829797", + "https://openalex.org/W1633751774", + "https://openalex.org/W1642427530", + "https://openalex.org/W1648445109", + "https://openalex.org/W1654787807", + "https://openalex.org/W1755117326", + "https://openalex.org/W1859781365", + "https://openalex.org/W1963533512", + "https://openalex.org/W1965999112", + "https://openalex.org/W1967396577", + "https://openalex.org/W1975780894", + "https://openalex.org/W1976382401", + "https://openalex.org/W1976625337", + "https://openalex.org/W1978188282", + "https://openalex.org/W1978394996", + "https://openalex.org/W1981025032", + "https://openalex.org/W1982032418", + "https://openalex.org/W1982276155", + "https://openalex.org/W1986280275", + "https://openalex.org/W1995672551", + "https://openalex.org/W1998167411", + "https://openalex.org/W2000241167", + "https://openalex.org/W2003706076", + "https://openalex.org/W2003870625", + "https://openalex.org/W2006314423", + "https://openalex.org/W2008827410", + "https://openalex.org/W2014831690", + "https://openalex.org/W2015904350", + "https://openalex.org/W2018044188", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020999234", + "https://openalex.org/W2023163512", + "https://openalex.org/W2033839039", + "https://openalex.org/W2041863660", + "https://openalex.org/W2047028564", + "https://openalex.org/W2049387919", + "https://openalex.org/W2056735347", + "https://openalex.org/W2062291655", + "https://openalex.org/W2063852603", + "https://openalex.org/W2065540158", + "https://openalex.org/W2069371995", + "https://openalex.org/W2069527924", + "https://openalex.org/W2072555316", + "https://openalex.org/W2078206416", + "https://openalex.org/W2081873601", + "https://openalex.org/W2085877024", + "https://openalex.org/W2087978636", + "https://openalex.org/W2088538739", + "https://openalex.org/W2090102379", + "https://openalex.org/W2090353374", + "https://openalex.org/W2093268114", + "https://openalex.org/W2094169479", + "https://openalex.org/W2094212611", + "https://openalex.org/W2096335861", + "https://openalex.org/W2098115979", + "https://openalex.org/W2098626000", + "https://openalex.org/W2098949458", + "https://openalex.org/W2100136038", + "https://openalex.org/W2101709642", + "https://openalex.org/W2103972570", + "https://openalex.org/W2104533781", + "https://openalex.org/W2106868411", + "https://openalex.org/W2107152312", + "https://openalex.org/W2107636931", + "https://openalex.org/W2107725114", + "https://openalex.org/W2108966602", + "https://openalex.org/W2111176881", + "https://openalex.org/W2111494971", + "https://openalex.org/W2112545207", + "https://openalex.org/W2114229504", + "https://openalex.org/W2114412769", + "https://openalex.org/W2115606304", + "https://openalex.org/W2116723448", + "https://openalex.org/W2117063635", + "https://openalex.org/W2117812871", + "https://openalex.org/W2118195892", + "https://openalex.org/W2123687908", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2126455177", + "https://openalex.org/W2127713198", + "https://openalex.org/W2129564505", + "https://openalex.org/W2129869373", + "https://openalex.org/W2130475491", + "https://openalex.org/W2130859329", + "https://openalex.org/W2137467792", + "https://openalex.org/W2137557016", + "https://openalex.org/W2137956165", + "https://openalex.org/W2139479120", + "https://openalex.org/W2140170995", + "https://openalex.org/W2140251433", + "https://openalex.org/W2141274633", + "https://openalex.org/W2141436719", + "https://openalex.org/W2142182841", + "https://openalex.org/W2142387771", + "https://openalex.org/W2142575165", + "https://openalex.org/W2143022286", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144286620", + "https://openalex.org/W2145295623", + "https://openalex.org/W2146766088", + "https://openalex.org/W2148603752", + "https://openalex.org/W2149417376", + "https://openalex.org/W2149846618", + "https://openalex.org/W2151238122", + "https://openalex.org/W2152701363", + "https://openalex.org/W2152937653", + "https://openalex.org/W2153347097", + "https://openalex.org/W2153756422", + "https://openalex.org/W2156909104", + "https://openalex.org/W2158451137", + "https://openalex.org/W2158529569", + "https://openalex.org/W2160840682", + "https://openalex.org/W2161767008", + "https://openalex.org/W2162114812", + "https://openalex.org/W2163057507", + "https://openalex.org/W2167061265", + "https://openalex.org/W2167986580", + "https://openalex.org/W2168022998", + "https://openalex.org/W2169779569", + "https://openalex.org/W2170076406", + "https://openalex.org/W2170078560", + "https://openalex.org/W2170120409", + "https://openalex.org/W2170334710", + "https://openalex.org/W2171522835", + "https://openalex.org/W2172039283", + "https://openalex.org/W2296319761", + "https://openalex.org/W2408196097", + "https://openalex.org/W2464224693", + "https://openalex.org/W2548695521", + "https://openalex.org/W2554813760", + "https://openalex.org/W2782810849", + "https://openalex.org/W2797583072", + "https://openalex.org/W2798909945", + "https://openalex.org/W2904816695", + "https://openalex.org/W2916304084", + "https://openalex.org/W2989448192", + "https://openalex.org/W3014600732", + "https://openalex.org/W3017143921", + "https://openalex.org/W3023786531", + "https://openalex.org/W3048078645", + "https://openalex.org/W3119264854", + "https://openalex.org/W3127325877", + "https://openalex.org/W3134067276", + "https://openalex.org/W3140968660", + "https://openalex.org/W3148924112", + "https://openalex.org/W3165771198" + ], + "related_works": [ + "https://openalex.org/W3140968660", + "https://openalex.org/W2951665052", + "https://openalex.org/W2911964244", + "https://openalex.org/W2192203593", + "https://openalex.org/W2168464387", + "https://openalex.org/W2156909104", + "https://openalex.org/W2131241448", + "https://openalex.org/W2107386393", + "https://openalex.org/W2101234009", + "https://openalex.org/W2099768828", + "https://openalex.org/W2099201756", + "https://openalex.org/W2038669746", + "https://openalex.org/W2018044188", + "https://openalex.org/W1973333099", + "https://openalex.org/W1663973292", + "https://openalex.org/W1571870753", + "https://openalex.org/W1567512734", + "https://openalex.org/W1560724230", + "https://openalex.org/W1510052597", + "https://openalex.org/W137285897" + ], + "abstract_inverted_index": { + "A": [ + 0 + ], + "comprehensive": [ + 1 + ], + "and": [ + 2 + ], + "self-contained": [ + 3 + ], + "introduction": [ + 4 + ], + "to": [ + 5, + 15 + ], + "Gaussian": [ + 6 + ], + "processes,": [ + 7 + ], + "which": [ + 8 + ], + "provide": [ + 9 + ], + "a": [ + 10 + ], + "principled,": [ + 11 + ], + "practical,": [ + 12 + ], + "probabilistic": [ + 13 + ], + "approach": [ + 14 + ], + "learning": [ + 16 + ], + "in": [ + 17 + ], + "kernel": [ + 18 + ], + "machines.": [ + 19 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 2 + }, + { + "year": 2025, + "cited_by_count": 3 + }, + { + "year": 2024, + "cited_by_count": 8 + }, + { + "year": 2023, + "cited_by_count": 30 + }, + { + "year": 2022, + "cited_by_count": 123 + }, + { + "year": 2021, + "cited_by_count": 1209 + }, + { + "year": 2020, + "cited_by_count": 1390 + }, + { + "year": 2019, + "cited_by_count": 1013 + }, + { + "year": 2018, + "cited_by_count": 912 + }, + { + "year": 2017, + "cited_by_count": 810 + }, + { + "year": 2016, + "cited_by_count": 818 + }, + { + "year": 2015, + "cited_by_count": 825 + }, + { + "year": 2014, + "cited_by_count": 736 + }, + { + "year": 2013, + "cited_by_count": 598 + }, + { + "year": 2012, + "cited_by_count": 493 + } + ], + "updated_date": "2026-05-14T08:36:36.166977", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2997591727", + "doi": "https://doi.org/10.5555/1953048.2078195", + "title": "Scikit-learn: Machine Learning in Python", + "display_name": "Scikit-learn: Machine Learning in Python", + "relevance_score": 6227.3545, + "publication_year": 2011, + "publication_date": "2011-11-01", + "ids": { + "openalex": "https://openalex.org/W2997591727", + "doi": "https://doi.org/10.5555/1953048.2078195", + "mag": "2997591727" + }, + "language": "en", + "primary_location": { + "id": "mag:2997591727", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1953048.2078195", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5001344255", + "display_name": "PedregosaFabian", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "PedregosaFabian", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015155577", + "display_name": "VaroquauxGaël", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "VaroquauxGaël", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5082193384", + "display_name": "GramfortAlexandre", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "GramfortAlexandre", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5046730698", + "display_name": "MichelVincent", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "MichelVincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5057304980", + "display_name": "ThirionBertrand", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "ThirionBertrand", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031085857", + "display_name": "GriselOlivier", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "GriselOlivier", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5023292999", + "display_name": "BlondelMathieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "BlondelMathieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088096317", + "display_name": "PrettenhoferPeter", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PrettenhoferPeter", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5083564992", + "display_name": "WeissRon", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "WeissRon", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5056576127", + "display_name": "DubourgVincent", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "DubourgVincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5082383435", + "display_name": "VanderplasJake", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "VanderplasJake", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027220078", + "display_name": "PassosAlexandre", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PassosAlexandre", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002306909", + "display_name": "CournapeauDavid", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "CournapeauDavid", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026983194", + "display_name": "BrucherMatthieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "BrucherMatthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014917008", + "display_name": "PerrotMatthieu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "PerrotMatthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5034896968", + "display_name": "DuchesnayÉdouard", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "DuchesnayÉdouard", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 16, + "corresponding_author_ids": [ + "https://openalex.org/A5001344255" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 21.1011, + "has_fulltext": false, + "cited_by_count": 8193, + "citation_normalized_percentile": { + "value": 0.99448925, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.7835000157356262, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8940595388412476 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6587178707122803 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5495919585227966 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4344472587108612 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.3134846091270447 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8940595388412476 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6587178707122803 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5495919585227966 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4344472587108612 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.3134846091270447 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2997591727", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1953048.2078195", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.5299999713897705 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W3102476541", + "https://openalex.org/W2911964244", + "https://openalex.org/W2064675550", + "https://openalex.org/W2011301426", + "https://openalex.org/W2153635508", + "https://openalex.org/W2119821739", + "https://openalex.org/W2250539671", + "https://openalex.org/W1678356000", + "https://openalex.org/W3103145119", + "https://openalex.org/W3120740533", + "https://openalex.org/W2194775991", + "https://openalex.org/W2146292423", + "https://openalex.org/W3085162807", + "https://openalex.org/W2342249984", + "https://openalex.org/W2056132907", + "https://openalex.org/W2187089797", + "https://openalex.org/W2097998348", + "https://openalex.org/W1880262756", + "https://openalex.org/W2148143831", + "https://openalex.org/W1480376833" + ], + "abstract_inverted_index": { + "Scikit-learn": [ + 0 + ], + "is": [ + 1 + ], + "a": [ + 2, + 6 + ], + "Python": [ + 3 + ], + "module": [ + 4 + ], + "integrating": [ + 5 + ], + "wide": [ + 7 + ], + "range": [ + 8 + ], + "of": [ + 9 + ], + "state-of-the-art": [ + 10 + ], + "machine": [ + 11 + ], + "learning": [ + 12 + ], + "algorithms": [ + 13 + ], + "for": [ + 14 + ], + "medium-scale": [ + 15 + ], + "supervised": [ + 16 + ], + "and": [ + 17 + ], + "unsupervised": [ + 18 + ], + "problems.": [ + 19 + ], + "This": [ + 20 + ], + "package": [ + 21 + ], + "focuses": [ + 22 + ], + "on": [ + 23 + ], + "bringing": [ + 24 + ], + "mach...": [ + 25 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 179 + }, + { + "year": 2025, + "cited_by_count": 3317 + }, + { + "year": 2024, + "cited_by_count": 1191 + }, + { + "year": 2023, + "cited_by_count": 907 + }, + { + "year": 2022, + "cited_by_count": 726 + }, + { + "year": 2021, + "cited_by_count": 629 + }, + { + "year": 2020, + "cited_by_count": 479 + }, + { + "year": 2019, + "cited_by_count": 250 + }, + { + "year": 2018, + "cited_by_count": 193 + }, + { + "year": 2017, + "cited_by_count": 136 + }, + { + "year": 2016, + "cited_by_count": 87 + }, + { + "year": 2015, + "cited_by_count": 50 + }, + { + "year": 2014, + "cited_by_count": 34 + }, + { + "year": 2013, + "cited_by_count": 13 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2953384591", + "doi": "https://doi.org/10.48550/arxiv.1605.08695", + "title": "TensorFlow: A system for large-scale machine learning", + "display_name": "TensorFlow: A system for large-scale machine learning", + "relevance_score": 6134.0415, + "publication_year": 2016, + "publication_date": "2016-05-27", + "ids": { + "openalex": "https://openalex.org/W2953384591", + "doi": "https://doi.org/10.48550/arxiv.1605.08695", + "mag": "2953384591" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1605.08695", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Abadi, Martín", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Barham, Paul", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100665512", + "display_name": "Jianmin Chen", + "orcid": "https://orcid.org/0000-0001-5859-3070" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Jianmin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715424", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-8631-2424" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Zhifeng", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Davis, Andy", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dean, Jeffrey", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Devin, Matthieu", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ghemawat, Sanjay", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Irving, Geoffrey", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isard, Michael", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kudlur, Manjunath", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Levenberg, Josh", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Monga, Rajat", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Moore, Sherry", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Murray, Derek G.", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Steiner, Benoit", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Tucker, Paul", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vasudevan, Vijay", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Warden, Pete", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Wicke, Martin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yu, Yuan", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zheng, Xiaoqiang", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 22, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 8815, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.996999979019165, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.996999979019165, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.9926000237464905, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9921000003814697, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6736689805984497 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5508862733840942 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4714523255825043 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3947470188140869 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.1177549660205841 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.11608994007110596 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6736689805984497 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5508862733840942 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4714523255825043 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3947470188140869 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.1177549660205841 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.11608994007110596 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1605.08695", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1605.08695", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1605.08695", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1605.08695", + "pdf_url": "https://arxiv.org/pdf/1605.08695", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "id": "https://metadata.un.org/sdg/9", + "score": 0.4099999964237213 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 56, + "referenced_works": [ + "https://openalex.org/W104184427", + "https://openalex.org/W145476170", + "https://openalex.org/W941230081", + "https://openalex.org/W1442374986", + "https://openalex.org/W1484210532", + "https://openalex.org/W1485981043", + "https://openalex.org/W1493893823", + "https://openalex.org/W1498436455", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1869752048", + "https://openalex.org/W1978660892", + "https://openalex.org/W1992479210", + "https://openalex.org/W2041517243", + "https://openalex.org/W2055312318", + "https://openalex.org/W2061570747", + "https://openalex.org/W2066443755", + "https://openalex.org/W2072566913", + "https://openalex.org/W2083842231", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100664567", + "https://openalex.org/W2109722477", + "https://openalex.org/W2117539524", + "https://openalex.org/W2120480077", + "https://openalex.org/W2131400476", + "https://openalex.org/W2131975293", + "https://openalex.org/W2132339004", + "https://openalex.org/W2140833774", + "https://openalex.org/W2141992894", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146757372", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163961697", + "https://openalex.org/W2168231600", + "https://openalex.org/W2173213060", + "https://openalex.org/W2186615578", + "https://openalex.org/W2198403777", + "https://openalex.org/W2259472270", + "https://openalex.org/W2308045930", + "https://openalex.org/W2336650964", + "https://openalex.org/W2339765813", + "https://openalex.org/W2384495648", + "https://openalex.org/W2591588155", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949245006", + "https://openalex.org/W2949501655", + "https://openalex.org/W2949605076", + "https://openalex.org/W2949650786", + "https://openalex.org/W2949888546", + "https://openalex.org/W2950094539", + "https://openalex.org/W2950179405", + "https://openalex.org/W2950577311", + "https://openalex.org/W2951714314", + "https://openalex.org/W2951781666" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 15, + 92, + 103, + 125, + 152, + 166 + ], + "is": [ + 1, + 87 + ], + "a": [ + 2, + 36, + 43, + 47, + 105 + ], + "machine": [ + 3, + 48, + 143 + ], + "learning": [ + 4, + 144 + ], + "system": [ + 5 + ], + "that": [ + 6, + 27, + 29, + 165 + ], + "operates": [ + 7 + ], + "at": [ + 8 + ], + "large": [ + 9 + ], + "scale": [ + 10 + ], + "and": [ + 11, + 24, + 45, + 58, + 100, + 115, + 136, + 160 + ], + "in": [ + 12, + 42, + 77, + 126, + 155 + ], + "heterogeneous": [ + 13 + ], + "environments.": [ + 14 + ], + "uses": [ + 16 + ], + "dataflow": [ + 17, + 37, + 153 + ], + "graphs": [ + 18 + ], + "to": [ + 19, + 72, + 95, + 157 + ], + "represent": [ + 20 + ], + "computation,": [ + 21 + ], + "shared": [ + 22, + 85 + ], + "state,": [ + 23 + ], + "the": [ + 25, + 33, + 73, + 82, + 90, + 151, + 162 + ], + "operations": [ + 26 + ], + "mutate": [ + 28 + ], + "state.": [ + 30 + ], + "It": [ + 31 + ], + "maps": [ + 32 + ], + "nodes": [ + 34 + ], + "of": [ + 35, + 84, + 107 + ], + "graph": [ + 38 + ], + "across": [ + 39, + 49 + ], + "many": [ + 40 + ], + "machines": [ + 41 + ], + "cluster,": [ + 44 + ], + "within": [ + 46 + ], + "multiple": [ + 50 + ], + "computational": [ + 51 + ], + "devices,": [ + 52 + ], + "including": [ + 53 + ], + "multicore": [ + 54 + ], + "CPUs,": [ + 55 + ], + "general-purpose": [ + 56 + ], + "GPUs,": [ + 57 + ], + "custom": [ + 59 + ], + "designed": [ + 60 + ], + "ASICs": [ + 61 + ], + "known": [ + 62 + ], + "as": [ + 63, + 132 + ], + "Tensor": [ + 64 + ], + "Processing": [ + 65 + ], + "Units": [ + 66 + ], + "(TPUs).": [ + 67 + ], + "This": [ + 68 + ], + "architecture": [ + 69 + ], + "gives": [ + 70 + ], + "flexibility": [ + 71 + ], + "application": [ + 74 + ], + "developer:": [ + 75 + ], + "whereas": [ + 76 + ], + "previous": [ + 78 + ], + "\"parameter": [ + 79 + ], + "server\"": [ + 80 + ], + "designs": [ + 81 + ], + "management": [ + 83 + ], + "state": [ + 86 + ], + "built": [ + 88 + ], + "into": [ + 89 + ], + "system,": [ + 91 + ], + "enables": [ + 93 + ], + "developers": [ + 94 + ], + "experiment": [ + 96 + ], + "with": [ + 97, + 109 + ], + "novel": [ + 98 + ], + "optimizations": [ + 99 + ], + "training": [ + 101, + 114 + ], + "algorithms.": [ + 102 + ], + "supports": [ + 104 + ], + "variety": [ + 106 + ], + "applications,": [ + 108 + ], + "particularly": [ + 110 + ], + "strong": [ + 111 + ], + "support": [ + 112 + ], + "for": [ + 113, + 142, + 168 + ], + "inference": [ + 116 + ], + "on": [ + 117 + ], + "deep": [ + 118 + ], + "neural": [ + 119 + ], + "networks.": [ + 120 + ], + "Several": [ + 121 + ], + "Google": [ + 122 + ], + "services": [ + 123 + ], + "use": [ + 124 + ], + "production,": [ + 127 + ], + "we": [ + 128, + 149 + ], + "have": [ + 129 + ], + "released": [ + 130 + ], + "it": [ + 131, + 137 + ], + "an": [ + 133 + ], + "open-source": [ + 134 + ], + "project,": [ + 135 + ], + "has": [ + 138 + ], + "become": [ + 139 + ], + "widely": [ + 140 + ], + "used": [ + 141 + ], + "research.": [ + 145 + ], + "In": [ + 146 + ], + "this": [ + 147 + ], + "paper,": [ + 148 + ], + "describe": [ + 150 + ], + "model": [ + 154 + ], + "contrast": [ + 156 + ], + "existing": [ + 158 + ], + "systems,": [ + 159 + ], + "demonstrate": [ + 161 + ], + "compelling": [ + 163 + ], + "performance": [ + 164 + ], + "achieves": [ + 167 + ], + "several": [ + 169 + ], + "real-world": [ + 170 + ], + "applications.": [ + 171 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 15 + }, + { + "year": 2025, + "cited_by_count": 161 + }, + { + "year": 2024, + "cited_by_count": 343 + }, + { + "year": 2023, + "cited_by_count": 730 + }, + { + "year": 2022, + "cited_by_count": 866 + }, + { + "year": 2021, + "cited_by_count": 1829 + }, + { + "year": 2020, + "cited_by_count": 1859 + }, + { + "year": 2019, + "cited_by_count": 1814 + }, + { + "year": 2018, + "cited_by_count": 959 + }, + { + "year": 2017, + "cited_by_count": 226 + }, + { + "year": 2016, + "cited_by_count": 12 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2118020653", + "doi": "https://doi.org/10.1145/505282.505283", + "title": "Machine learning in automated text categorization", + "display_name": "Machine learning in automated text categorization", + "relevance_score": 6087.0835, + "publication_year": 2002, + "publication_date": "2002-03-01", + "ids": { + "openalex": "https://openalex.org/W2118020653", + "doi": "https://doi.org/10.1145/505282.505283", + "mag": "2118020653" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/505282.505283", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/505282.505283", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S157921468", + "display_name": "ACM Computing Surveys", + "issn_l": "0360-0300", + "issn": [ + "0360-0300", + "1557-7341" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Computing Surveys", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/cs/0110053", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5063975186", + "display_name": "Fabrizio Sebastiani", + "orcid": "https://orcid.org/0000-0003-4221-6427" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210107558", + "display_name": "Consorzio Pisa Ricerche", + "ror": "https://ror.org/01t0n3b84", + "country_code": "IT", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210107558" + ] + } + ], + "countries": [ + "IT" + ], + "is_corresponding": true, + "raw_author_name": "Fabrizio Sebastiani", + "raw_affiliation_strings": [ + "Consiglio Nazionale delle Ricerche, Pisa, Italy" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Consiglio Nazionale delle Ricerche, Pisa, Italy", + "institution_ids": [ + "https://openalex.org/I4210107558" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5063975186" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210107558" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 291.6231, + "has_fulltext": false, + "cited_by_count": 7884, + "citation_normalized_percentile": { + "value": 0.99998629, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "34", + "issue": "1", + "first_page": "1", + "last_page": "47" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13083", + "display_name": "Advanced Text Analysis Techniques", + "score": 0.9939000010490417, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9889000058174133, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8797882795333862 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.7666846513748169 + }, + { + "id": "https://openalex.org/keywords/software-portability", + "display_name": "Software portability", + "score": 0.7267234325408936 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6928958892822266 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.678881049156189 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6749231815338135 + }, + { + "id": "https://openalex.org/keywords/text-categorization", + "display_name": "Text categorization", + "score": 0.5723184943199158 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.41375380754470825 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8797882795333862 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.7666846513748169 + }, + { + "id": "https://openalex.org/C63000827", + "wikidata": "https://www.wikidata.org/wiki/Q3080428", + "display_name": "Software portability", + "level": 2, + "score": 0.7267234325408936 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6928958892822266 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.678881049156189 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6749231815338135 + }, + { + "id": "https://openalex.org/C2986744138", + "wikidata": "https://www.wikidata.org/wiki/Q302088", + "display_name": "Text categorization", + "level": 3, + "score": 0.5723184943199158 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.41375380754470825 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1145/505282.505283", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/505282.505283", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S157921468", + "display_name": "ACM Computing Surveys", + "issn_l": "0360-0300", + "issn": [ + "0360-0300", + "1557-7341" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Computing Surveys", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:cs/0110053", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0110053", + "pdf_url": "https://arxiv.org/pdf/cs/0110053", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:dnet:people______::286d170179fde02bc512e4870a2b12b5", + "is_oa": false, + "landing_page_url": "https://openportal.isti.cnr.it/doc?id=people______::286d170179fde02bc512e4870a2b12b5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055261", + "display_name": "ISTI Open Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "ACM computing surveys 34 (2002): 1–47. doi:10.1145/505282.505283", + "raw_type": "Journal article" + }, + { + "id": "pmh:oai:dnet:people______::3938b196dad6eb4120aca01c3005413b", + "is_oa": false, + "landing_page_url": "https://openportal.isti.cnr.it/doc?id=people______::3938b196dad6eb4120aca01c3005413b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055261", + "display_name": "ISTI Open Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "ISTI Technical reports, pp.1–63, 1999", + "raw_type": "Other" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:cs/0110053", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0110053", + "pdf_url": "https://arxiv.org/pdf/cs/0110053", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Decent work and economic growth", + "id": "https://metadata.un.org/sdg/8", + "score": 0.7099999785423279 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 204, + "referenced_works": [ + "https://openalex.org/W12876238", + "https://openalex.org/W22906612", + "https://openalex.org/W35304842", + "https://openalex.org/W59979790", + "https://openalex.org/W74894479", + "https://openalex.org/W81384683", + "https://openalex.org/W81511778", + "https://openalex.org/W104970664", + "https://openalex.org/W107306860", + "https://openalex.org/W112196149", + "https://openalex.org/W116328816", + "https://openalex.org/W148103248", + "https://openalex.org/W166124110", + "https://openalex.org/W1482260847", + "https://openalex.org/W1487445520", + "https://openalex.org/W1490175418", + "https://openalex.org/W1493526108", + "https://openalex.org/W1505794130", + "https://openalex.org/W1507179106", + "https://openalex.org/W1508175965", + "https://openalex.org/W1513874326", + "https://openalex.org/W1514707997", + "https://openalex.org/W1520963883", + "https://openalex.org/W1522930027", + "https://openalex.org/W1523389133", + "https://openalex.org/W1523949738", + "https://openalex.org/W1533946607", + "https://openalex.org/W1544227718", + "https://openalex.org/W1547553618", + "https://openalex.org/W1550961891", + "https://openalex.org/W1553682320", + "https://openalex.org/W1556094091", + "https://openalex.org/W1561056154", + "https://openalex.org/W1574901103", + "https://openalex.org/W1576676390", + "https://openalex.org/W1577216492", + "https://openalex.org/W1578881253", + "https://openalex.org/W1591234214", + "https://openalex.org/W1592212241", + "https://openalex.org/W1594962278", + "https://openalex.org/W1597379537", + "https://openalex.org/W1601145406", + "https://openalex.org/W1619226191", + "https://openalex.org/W1620204465", + "https://openalex.org/W1813610639", + "https://openalex.org/W1857571498", + "https://openalex.org/W1907380269", + "https://openalex.org/W1924689489", + "https://openalex.org/W1966065191", + "https://openalex.org/W1969572066", + "https://openalex.org/W1970858159", + "https://openalex.org/W1970974276", + "https://openalex.org/W1971666241", + "https://openalex.org/W1973911615", + "https://openalex.org/W1975496312", + "https://openalex.org/W1977182536", + "https://openalex.org/W1978394996", + "https://openalex.org/W1979648751", + "https://openalex.org/W1980776671", + "https://openalex.org/W1983078185", + "https://openalex.org/W1986913017", + "https://openalex.org/W1988711048", + "https://openalex.org/W1989568037", + "https://openalex.org/W1989738209", + "https://openalex.org/W1993657037", + "https://openalex.org/W1993934121", + "https://openalex.org/W1995014490", + "https://openalex.org/W2001664274", + "https://openalex.org/W2002675557", + "https://openalex.org/W2002857471", + "https://openalex.org/W2003436527", + "https://openalex.org/W2004180556", + "https://openalex.org/W2004871537", + "https://openalex.org/W2005422315", + "https://openalex.org/W2005758492", + "https://openalex.org/W2006119904", + "https://openalex.org/W2006187024", + "https://openalex.org/W2007395264", + "https://openalex.org/W2007512902", + "https://openalex.org/W2008931716", + "https://openalex.org/W2009190245", + "https://openalex.org/W2010652031", + "https://openalex.org/W2013657661", + "https://openalex.org/W2015267443", + "https://openalex.org/W2015518873", + "https://openalex.org/W2017867386", + "https://openalex.org/W2019778169", + "https://openalex.org/W2020316999", + "https://openalex.org/W2025451713", + "https://openalex.org/W2029609769", + "https://openalex.org/W2033751006", + "https://openalex.org/W2035754578", + "https://openalex.org/W2040424159", + "https://openalex.org/W2041726831", + "https://openalex.org/W2043909051", + "https://openalex.org/W2045812729", + "https://openalex.org/W2047031127", + "https://openalex.org/W2049384587", + "https://openalex.org/W2053463056", + "https://openalex.org/W2058982198", + "https://openalex.org/W2059019405", + "https://openalex.org/W2060216474", + "https://openalex.org/W2060476676", + "https://openalex.org/W2060704583", + "https://openalex.org/W2062847911", + "https://openalex.org/W2062914707", + "https://openalex.org/W2063198646", + "https://openalex.org/W2063862666", + "https://openalex.org/W2064580901", + "https://openalex.org/W2065010255", + "https://openalex.org/W2065747622", + "https://openalex.org/W2066462377", + "https://openalex.org/W2071415686", + "https://openalex.org/W2071664212", + "https://openalex.org/W2076008912", + "https://openalex.org/W2077777431", + "https://openalex.org/W2080251601", + "https://openalex.org/W2084044465", + "https://openalex.org/W2085302848", + "https://openalex.org/W2085989833", + "https://openalex.org/W2087609354", + "https://openalex.org/W2088658068", + "https://openalex.org/W2092134162", + "https://openalex.org/W2092488901", + "https://openalex.org/W2092689128", + "https://openalex.org/W2093098531", + "https://openalex.org/W2094934653", + "https://openalex.org/W2096152098", + "https://openalex.org/W2096411881", + "https://openalex.org/W2097089247", + "https://openalex.org/W2097847889", + "https://openalex.org/W2101154521", + "https://openalex.org/W2104808840", + "https://openalex.org/W2106365165", + "https://openalex.org/W2107008379", + "https://openalex.org/W2107827038", + "https://openalex.org/W2110224739", + "https://openalex.org/W2114535528", + "https://openalex.org/W2125776553", + "https://openalex.org/W2126502509", + "https://openalex.org/W2126631147", + "https://openalex.org/W2126850915", + "https://openalex.org/W2127994451", + "https://openalex.org/W2130337399", + "https://openalex.org/W2132315067", + "https://openalex.org/W2133890944", + "https://openalex.org/W2135276756", + "https://openalex.org/W2139578439", + "https://openalex.org/W2140785063", + "https://openalex.org/W2140956226", + "https://openalex.org/W2142515059", + "https://openalex.org/W2145036943", + "https://openalex.org/W2145296344", + "https://openalex.org/W2146888100", + "https://openalex.org/W2147152072", + "https://openalex.org/W2149684865", + "https://openalex.org/W2151801809", + "https://openalex.org/W2153211312", + "https://openalex.org/W2153962014", + "https://openalex.org/W2158738673", + "https://openalex.org/W2165612380", + "https://openalex.org/W2169384781", + "https://openalex.org/W2170654002", + "https://openalex.org/W2172142456", + "https://openalex.org/W2174678383", + "https://openalex.org/W2435251607", + "https://openalex.org/W2561675875", + "https://openalex.org/W2798573942", + "https://openalex.org/W2915186198", + "https://openalex.org/W2949696181", + "https://openalex.org/W2952299822", + "https://openalex.org/W2953123431", + "https://openalex.org/W3042893949", + "https://openalex.org/W3157411736", + "https://openalex.org/W4205241946", + "https://openalex.org/W4240008182", + "https://openalex.org/W4249379282", + "https://openalex.org/W4285719527", + "https://openalex.org/W6604296810", + "https://openalex.org/W6614676750", + "https://openalex.org/W6629232668", + "https://openalex.org/W6630268012", + "https://openalex.org/W6631307659", + "https://openalex.org/W6632118081", + "https://openalex.org/W6633640926", + "https://openalex.org/W6635379667", + "https://openalex.org/W6635548358", + "https://openalex.org/W6636628491", + "https://openalex.org/W6638423001", + "https://openalex.org/W6641777427", + "https://openalex.org/W6643036076", + "https://openalex.org/W6644484350", + "https://openalex.org/W6666817399", + "https://openalex.org/W6673691841", + "https://openalex.org/W6673781366", + "https://openalex.org/W6679004887", + "https://openalex.org/W6679453733", + "https://openalex.org/W6681835404", + "https://openalex.org/W6682342947", + "https://openalex.org/W6738852829", + "https://openalex.org/W6792154874", + "https://openalex.org/W6794861161", + "https://openalex.org/W7046466245", + "https://openalex.org/W7064660697" + ], + "related_works": [ + "https://openalex.org/W2360898036", + "https://openalex.org/W2390857744", + "https://openalex.org/W2133651098", + "https://openalex.org/W2390698788", + "https://openalex.org/W2383063829", + "https://openalex.org/W2138922887", + "https://openalex.org/W2082678934", + "https://openalex.org/W2035261173", + "https://openalex.org/W2106892947", + "https://openalex.org/W2237299843" + ], + "abstract_inverted_index": { + "The": [ + 0, + 74 + ], + "automated": [ + 1 + ], + "categorization": [ + 2, + 122 + ], + "(or": [ + 3 + ], + "classification)": [ + 4 + ], + "of": [ + 5, + 25, + 66, + 71, + 76, + 89, + 104 + ], + "texts": [ + 6 + ], + "into": [ + 7 + ], + "predefined": [ + 8 + ], + "categories": [ + 9 + ], + "has": [ + 10 + ], + "witnessed": [ + 11 + ], + "a": [ + 12, + 53, + 59, + 64, + 90, + 96 + ], + "booming": [ + 13 + ], + "interest": [ + 14 + ], + "in": [ + 15, + 27, + 85, + 102, + 133 + ], + "the": [ + 16, + 22, + 31, + 38, + 41, + 69, + 72, + 80, + 86, + 117, + 126 + ], + "last": [ + 17 + ], + "10": [ + 18 + ], + "years,": [ + 19 + ], + "due": [ + 20 + ], + "to": [ + 21, + 34, + 44, + 111, + 120, + 137 + ], + "increased": [ + 23 + ], + "availability": [ + 24 + ], + "documents": [ + 26 + ], + "digital": [ + 28 + ], + "form": [ + 29 + ], + "and": [ + 30, + 108, + 146 + ], + "ensuing": [ + 32 + ], + "need": [ + 33 + ], + "organize": [ + 35 + ], + "them.": [ + 36 + ], + "In": [ + 37 + ], + "research": [ + 39 + ], + "community": [ + 40 + ], + "dominant": [ + 42 + ], + "approach": [ + 43, + 78, + 83 + ], + "this": [ + 45, + 77 + ], + "problem": [ + 46 + ], + "is": [ + 47 + ], + "based": [ + 48 + ], + "on": [ + 49 + ], + "machine": [ + 50, + 127 + ], + "learning": [ + 51, + 128 + ], + "techniques:": [ + 52 + ], + "general": [ + 54 + ], + "inductive": [ + 55 + ], + "process": [ + 56 + ], + "automatically": [ + 57 + ], + "builds": [ + 58 + ], + "classifier": [ + 60, + 91, + 144, + 147 + ], + "by": [ + 61, + 92 + ], + "learning,": [ + 62 + ], + "from": [ + 63 + ], + "set": [ + 65 + ], + "preclassified": [ + 67 + ], + "documents,": [ + 68 + ], + "characteristics": [ + 70 + ], + "categories.": [ + 73 + ], + "advantages": [ + 75 + ], + "over": [ + 79 + ], + "knowledge": [ + 81 + ], + "engineering": [ + 82 + ], + "(consisting": [ + 84 + ], + "manual": [ + 87 + ], + "definition": [ + 88 + ], + "domain": [ + 93 + ], + "experts)": [ + 94 + ], + "are": [ + 95 + ], + "very": [ + 97 + ], + "good": [ + 98 + ], + "effectiveness,": [ + 99 + ], + "considerable": [ + 100 + ], + "savings": [ + 101 + ], + "terms": [ + 103 + ], + "expert": [ + 105 + ], + "labor": [ + 106 + ], + "power,": [ + 107 + ], + "straightforward": [ + 109 + ], + "portability": [ + 110 + ], + "different": [ + 112, + 139 + ], + "domains.": [ + 113 + ], + "This": [ + 114 + ], + "survey": [ + 115 + ], + "discusses": [ + 116 + ], + "main": [ + 118 + ], + "approaches": [ + 119 + ], + "text": [ + 121 + ], + "that": [ + 123 + ], + "fall": [ + 124 + ], + "within": [ + 125 + ], + "paradigm.": [ + 129 + ], + "We": [ + 130 + ], + "will": [ + 131 + ], + "discuss": [ + 132 + ], + "detail": [ + 134 + ], + "issues": [ + 135 + ], + "pertaining": [ + 136 + ], + "three": [ + 138 + ], + "problems,": [ + 140 + ], + "namely,": [ + 141 + ], + "document": [ + 142 + ], + "representation,": [ + 143 + ], + "construction,": [ + 145 + ], + "evaluation.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 43 + }, + { + "year": 2025, + "cited_by_count": 154 + }, + { + "year": 2024, + "cited_by_count": 162 + }, + { + "year": 2023, + "cited_by_count": 189 + }, + { + "year": 2022, + "cited_by_count": 208 + }, + { + "year": 2021, + "cited_by_count": 255 + }, + { + "year": 2020, + "cited_by_count": 387 + }, + { + "year": 2019, + "cited_by_count": 377 + }, + { + "year": 2018, + "cited_by_count": 423 + }, + { + "year": 2017, + "cited_by_count": 392 + }, + { + "year": 2016, + "cited_by_count": 423 + }, + { + "year": 2015, + "cited_by_count": 449 + }, + { + "year": 2014, + "cited_by_count": 482 + }, + { + "year": 2013, + "cited_by_count": 433 + }, + { + "year": 2012, + "cited_by_count": 433 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2021-02-01T00:00:00" + }, + { + "id": "https://openalex.org/W1504694836", + "doi": null, + "title": "Programs for Machine Learning", + "display_name": "Programs for Machine Learning", + "relevance_score": 5951.1997, + "publication_year": 1994, + "publication_date": "1994-01-01", + "ids": { + "openalex": "https://openalex.org/W1504694836", + "mag": "1504694836" + }, + "language": "en", + "primary_location": { + "id": "mag:1504694836", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5010384159", + "display_name": "Steven L. Salzberg", + "orcid": "https://orcid.org/0000-0002-8859-7432" + }, + "institutions": [ + { + "id": "https://openalex.org/I145311948", + "display_name": "Johns Hopkins University", + "ror": "https://ror.org/00za53h95", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I145311948" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Steven L. Salzberg", + "raw_affiliation_strings": [ + "Johns Hopkins University (" + ], + "raw_orcid": "https://orcid.org/0000-0002-8859-7432", + "affiliations": [ + { + "raw_affiliation_string": "Johns Hopkins University (", + "institution_ids": [ + "https://openalex.org/I145311948" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5071525910", + "display_name": "Alberto M. Segre", + "orcid": "https://orcid.org/0000-0002-8886-6559" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Alberto M. Segre", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-8886-6559", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5010384159" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I145311948" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 107.5137, + "has_fulltext": false, + "cited_by_count": 5804, + "citation_normalized_percentile": { + "value": 0.9997644, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11063", + "display_name": "Rough Sets and Fuzzy Logic", + "score": 0.9908000230789185, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/successor-cardinal", + "display_name": "Successor cardinal", + "score": 0.7589357495307922 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6884413957595825 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6734851002693176 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.6281428337097168 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6256998777389526 + }, + { + "id": "https://openalex.org/keywords/subject", + "display_name": "Subject (documents)", + "score": 0.5763391256332397 + }, + { + "id": "https://openalex.org/keywords/id3-algorithm", + "display_name": "ID3 algorithm", + "score": 0.5538088083267212 + }, + { + "id": "https://openalex.org/keywords/decision-tree-learning", + "display_name": "Decision tree learning", + "score": 0.2895125150680542 + }, + { + "id": "https://openalex.org/keywords/incremental-decision-tree", + "display_name": "Incremental decision tree", + "score": 0.1487756371498108 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.12600353360176086 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.1005239188671112 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C75306776", + "wikidata": "https://www.wikidata.org/wiki/Q7632662", + "display_name": "Successor cardinal", + "level": 2, + "score": 0.7589357495307922 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6884413957595825 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6734851002693176 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.6281428337097168 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6256998777389526 + }, + { + "id": "https://openalex.org/C2777855551", + "wikidata": "https://www.wikidata.org/wiki/Q12310021", + "display_name": "Subject (documents)", + "level": 2, + "score": 0.5763391256332397 + }, + { + "id": "https://openalex.org/C183931066", + "wikidata": "https://www.wikidata.org/wiki/Q1653378", + "display_name": "ID3 algorithm", + "level": 5, + "score": 0.5538088083267212 + }, + { + "id": "https://openalex.org/C5481197", + "wikidata": "https://www.wikidata.org/wiki/Q16766476", + "display_name": "Decision tree learning", + "level": 3, + "score": 0.2895125150680542 + }, + { + "id": "https://openalex.org/C10229987", + "wikidata": "https://www.wikidata.org/wiki/Q17083028", + "display_name": "Incremental decision tree", + "level": 4, + "score": 0.1487756371498108 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.12600353360176086 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.1005239188671112 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:1504694836", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.5799999833106995 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W1534707631", + "https://openalex.org/W1573640198", + "https://openalex.org/W1594031697", + "https://openalex.org/W1604329830", + "https://openalex.org/W2149706766", + "https://openalex.org/W3085162807" + ], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W2966207845", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766", + "https://openalex.org/W2147169507", + "https://openalex.org/W2140190241", + "https://openalex.org/W2136000097", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2123504579", + "https://openalex.org/W2112076978", + "https://openalex.org/W2084812512", + "https://openalex.org/W1988790447", + "https://openalex.org/W1912123407", + "https://openalex.org/W1670263352", + "https://openalex.org/W1594031697", + "https://openalex.org/W1585743408", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "Algorithms": [ + 0 + ], + "for": [ + 1, + 64, + 87 + ], + "constructing": [ + 2 + ], + "decision": [ + 3, + 20, + 68 + ], + "trees": [ + 4, + 69 + ], + "are": [ + 5, + 31 + ], + "among": [ + 6 + ], + "the": [ + 7, + 33, + 37, + 49, + 104, + 117 + ], + "most": [ + 8, + 34, + 61 + ], + "well": [ + 9 + ], + "known": [ + 10 + ], + "and": [ + 11, + 27, + 43, + 122 + ], + "widely": [ + 12 + ], + "used": [ + 13 + ], + "of": [ + 14, + 51, + 99, + 119 + ], + "all": [ + 15 + ], + "machine": [ + 16, + 38 + ], + "learning": [ + 17, + 39 + ], + "methods.": [ + 18 + ], + "Among": [ + 19 + ], + "tree": [ + 21 + ], + "algorithms,": [ + 22 + ], + "J.": [ + 23 + ], + "Ross": [ + 24 + ], + "Quinlan's": [ + 25, + 72 + ], + "ID3": [ + 26 + ], + "its": [ + 28 + ], + "successor,": [ + 29 + ], + "C4.5,": [ + 30 + ], + "probably": [ + 32 + ], + "popular": [ + 35 + ], + "in": [ + 36 + ], + "community.": [ + 40 + ], + "These": [ + 41 + ], + "algorithms": [ + 42 + ], + "variations": [ + 44 + ], + "on": [ + 45 + ], + "them": [ + 46 + ], + "have": [ + 47 + ], + "been": [ + 48 + ], + "subject": [ + 50 + ], + "numerous": [ + 52 + ], + "research": [ + 53 + ], + "papers": [ + 54 + ], + "since": [ + 55 + ], + "Quinlan": [ + 56, + 90 + ], + "introduced": [ + 57 + ], + "ID3.": [ + 58 + ], + "Until": [ + 59 + ], + "recently,": [ + 60 + ], + "researchers": [ + 62, + 121 + ], + "looking": [ + 63 + ], + "an": [ + 65 + ], + "introduction": [ + 66 + ], + "to": [ + 67, + 71, + 116 + ], + "turned": [ + 70 + ], + "seminal": [ + 73 + ], + "1986": [ + 74 + ], + "Machine": [ + 75, + 88 + ], + "Learning": [ + 76 + ], + "journal": [ + 77 + ], + "article": [ + 78 + ], + "[Quinlan,": [ + 79 + ], + "1986].": [ + 80 + ], + "In": [ + 81 + ], + "his": [ + 82, + 100 + ], + "new": [ + 83 + ], + "book,": [ + 84 + ], + "C4.5:": [ + 85 + ], + "Programs": [ + 86 + ], + "Learning,": [ + 89 + ], + "has": [ + 91 + ], + "put": [ + 92 + ], + "together": [ + 93 + ], + "a": [ + 94, + 113 + ], + "definitive,": [ + 95 + ], + "much": [ + 96 + ], + "needed": [ + 97 + ], + "description": [ + 98 + ], + "complete": [ + 101 + ], + "system,": [ + 102 + ], + "including": [ + 103 + ], + "latest": [ + 105 + ], + "developments.": [ + 106 + ], + "As": [ + 107 + ], + "such,": [ + 108 + ], + "this": [ + 109 + ], + "book": [ + 110 + ], + "will": [ + 111 + ], + "be": [ + 112 + ], + "welcome": [ + 114 + ], + "addition": [ + 115 + ], + "library": [ + 118 + ], + "many": [ + 120 + ], + "students.": [ + 123 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 11 + }, + { + "year": 2024, + "cited_by_count": 25 + }, + { + "year": 2023, + "cited_by_count": 36 + }, + { + "year": 2022, + "cited_by_count": 48 + }, + { + "year": 2021, + "cited_by_count": 153 + }, + { + "year": 2020, + "cited_by_count": 167 + }, + { + "year": 2019, + "cited_by_count": 143 + }, + { + "year": 2018, + "cited_by_count": 160 + }, + { + "year": 2017, + "cited_by_count": 145 + }, + { + "year": 2016, + "cited_by_count": 190 + }, + { + "year": 2015, + "cited_by_count": 311 + }, + { + "year": 2014, + "cited_by_count": 283 + }, + { + "year": 2013, + "cited_by_count": 321 + }, + { + "year": 2012, + "cited_by_count": 284 + } + ], + "updated_date": "2026-04-26T08:31:28.666265", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2271840356", + "doi": "https://doi.org/10.48550/arxiv.1603.04467", + "title": "TensorFlow: Large-Scale Machine Learning on Heterogeneous Distributed Systems", + "display_name": "TensorFlow: Large-Scale Machine Learning on Heterogeneous Distributed Systems", + "relevance_score": 5946.9307, + "publication_year": 2016, + "publication_date": "2016-03-14", + "ids": { + "openalex": "https://openalex.org/W2271840356", + "doi": "https://doi.org/10.48550/arxiv.1603.04467", + "mag": "2271840356" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1603.04467", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Abadi, Martín", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027820479", + "display_name": "Ashish Agarwal", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Agarwal, Ashish", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Barham, Paul", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047736127", + "display_name": "Eugene Brevdo", + "orcid": "https://orcid.org/0009-0005-7965-3534" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Brevdo, Eugene", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715424", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-8631-2424" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Chen, Zhifeng", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069624169", + "display_name": "Craig Citro", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Citro, Craig", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5066927687", + "display_name": "Gregory S. Corrado", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Corrado, Greg S.", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Davis, Andy", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Dean, Jeffrey", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Devin, Matthieu", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ghemawat, Sanjay", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004271128", + "display_name": "Ian Goodfellow", + "orcid": "https://orcid.org/0000-0003-3937-2322" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Goodfellow, Ian", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5064042510", + "display_name": "Andrew Harp", + "orcid": "https://orcid.org/0000-0002-4836-7878" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Harp, Andrew", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Irving, Geoffrey", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Isard, Michael", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110220840", + "display_name": "Yangqing Jia", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jia, Yangqing", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067370075", + "display_name": "Rafał Józefowicz", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jozefowicz, Rafal", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5031789995", + "display_name": "Łukasz Kaiser", + "orcid": "https://orcid.org/0000-0003-1092-6010" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kaiser, Lukasz", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kudlur, Manjunath", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Levenberg, Josh", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5045113162", + "display_name": "Dan Mané", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Mane, Dan", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Monga, Rajat", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Moore, Sherry", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Murray, Derek", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039751155", + "display_name": "Chris Olah", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Olah, Chris", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5113452656", + "display_name": "Mike Schuster", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Schuster, Mike", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032356827", + "display_name": "Jonathon Shlens", + "orcid": "https://orcid.org/0000-0001-9513-4244" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shlens, Jonathon", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Steiner, Benoit", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006446297", + "display_name": "Ilya Sutskever", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Sutskever, Ilya", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080065269", + "display_name": "Kunal Talwar", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Talwar, Kunal", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tucker, Paul", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013813527", + "display_name": "Vincent Vanhoucke", + "orcid": "https://orcid.org/0000-0003-0544-2791" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vanhoucke, Vincent", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vasudevan, Vijay", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059594867", + "display_name": "Fernanda Viégas", + "orcid": "https://orcid.org/0000-0002-4951-4008" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Viegas, Fernanda", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003562101", + "display_name": "Oriol Vinyals", + "orcid": "https://orcid.org/0000-0001-7848-7283" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vinyals, Oriol", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Warden, Pete", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039276358", + "display_name": "Martin Wattenberg", + "orcid": "https://orcid.org/0000-0003-0904-4862" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wattenberg, Martin", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wicke, Martin", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Yu, Yuan", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zheng, Xiaoqiang", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 40, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 9772, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9970999956130981, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9970999956130981, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10101", + "display_name": "Cloud Computing and Resource Management", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11986", + "display_name": "Scientific Computing and Data Management", + "score": 0.9957000017166138, + "subfield": { + "id": "https://openalex.org/subfields/1802", + "display_name": "Information Systems and Management" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6250410079956055 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5916432738304138 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.463681161403656 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3644576668739319 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.36219537258148193 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.11677020788192749 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.11492305994033813 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6250410079956055 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5916432738304138 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.463681161403656 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3644576668739319 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.36219537258148193 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.11677020788192749 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.11492305994033813 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1603.04467", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1603.04467", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1603.04467", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1603.04467", + "pdf_url": "https://arxiv.org/pdf/1603.04467", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.5299999713897705 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 42, + "referenced_works": [ + "https://openalex.org/W1442374986", + "https://openalex.org/W1484210532", + "https://openalex.org/W1487337216", + "https://openalex.org/W1498436455", + "https://openalex.org/W1526734559", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1614298861", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1738019091", + "https://openalex.org/W1827297289", + "https://openalex.org/W1869752048", + "https://openalex.org/W1947291763", + "https://openalex.org/W1978660892", + "https://openalex.org/W1978924650", + "https://openalex.org/W2002257715", + "https://openalex.org/W2016053056", + "https://openalex.org/W2017351599", + "https://openalex.org/W2032036568", + "https://openalex.org/W2035424729", + "https://openalex.org/W2055312318", + "https://openalex.org/W2064675550", + "https://openalex.org/W2082171780", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100830825", + "https://openalex.org/W2123024445", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131975293", + "https://openalex.org/W2138243089", + "https://openalex.org/W2141992894", + "https://openalex.org/W2146757372", + "https://openalex.org/W2155893237", + "https://openalex.org/W2160815625", + "https://openalex.org/W2168231600", + "https://openalex.org/W2171532807", + "https://openalex.org/W2181607856", + "https://openalex.org/W2253807446", + "https://openalex.org/W2507756961", + "https://openalex.org/W2949117887", + "https://openalex.org/W2950789693", + "https://openalex.org/W2951781666" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 20, + 138, + 153 + ], + "is": [ + 1, + 65 + ], + "an": [ + 2, + 10, + 141, + 162 + ], + "interface": [ + 3, + 139, + 145 + ], + "for": [ + 4, + 12, + 83, + 93, + 97 + ], + "expressing": [ + 5 + ], + "machine": [ + 6, + 99 + ], + "learning": [ + 7, + 100 + ], + "algorithms,": [ + 8, + 77 + ], + "and": [ + 9, + 43, + 54, + 67, + 80, + 88, + 96, + 113, + 130, + 140, + 155, + 173 + ], + "implementation": [ + 11, + 142, + 158 + ], + "executing": [ + 13 + ], + "such": [ + 14, + 40, + 59 + ], + "algorithms.": [ + 15 + ], + "A": [ + 16 + ], + "computation": [ + 17 + ], + "expressed": [ + 18 + ], + "using": [ + 19 + ], + "can": [ + 21, + 68 + ], + "be": [ + 22, + 69 + ], + "executed": [ + 23 + ], + "with": [ + 24 + ], + "little": [ + 25 + ], + "or": [ + 26 + ], + "no": [ + 27 + ], + "change": [ + 28 + ], + "on": [ + 29 + ], + "a": [ + 30, + 73, + 107, + 156 + ], + "wide": [ + 31, + 74 + ], + "variety": [ + 32, + 75 + ], + "of": [ + 33, + 50, + 52, + 56, + 76, + 110, + 143 + ], + "heterogeneous": [ + 34 + ], + "systems,": [ + 35 + ], + "ranging": [ + 36 + ], + "from": [ + 37 + ], + "mobile": [ + 38 + ], + "devices": [ + 39, + 58 + ], + "as": [ + 41, + 60, + 161 + ], + "phones": [ + 42 + ], + "tablets": [ + 44 + ], + "up": [ + 45 + ], + "to": [ + 46, + 71 + ], + "large-scale": [ + 47 + ], + "distributed": [ + 48 + ], + "systems": [ + 49, + 101 + ], + "hundreds": [ + 51 + ], + "machines": [ + 53 + ], + "thousands": [ + 55 + ], + "computational": [ + 57, + 131 + ], + "GPU": [ + 61 + ], + "cards.": [ + 62 + ], + "The": [ + 63, + 152 + ], + "system": [ + 64 + ], + "flexible": [ + 66 + ], + "used": [ + 70, + 92 + ], + "express": [ + 72 + ], + "including": [ + 78, + 116 + ], + "training": [ + 79 + ], + "inference": [ + 81 + ], + "algorithms": [ + 82 + ], + "deep": [ + 84 + ], + "neural": [ + 85 + ], + "network": [ + 86 + ], + "models,": [ + 87 + ], + "it": [ + 89 + ], + "has": [ + 90 + ], + "been": [ + 91 + ], + "conducting": [ + 94 + ], + "research": [ + 95 + ], + "deploying": [ + 98 + ], + "into": [ + 102 + ], + "production": [ + 103 + ], + "across": [ + 104 + ], + "more": [ + 105 + ], + "than": [ + 106 + ], + "dozen": [ + 108 + ], + "areas": [ + 109 + ], + "computer": [ + 111, + 119 + ], + "science": [ + 112 + ], + "other": [ + 114 + ], + "fields,": [ + 115 + ], + "speech": [ + 117 + ], + "recognition,": [ + 118 + ], + "vision,": [ + 120 + ], + "robotics,": [ + 121 + ], + "information": [ + 122, + 128 + ], + "retrieval,": [ + 123 + ], + "natural": [ + 124 + ], + "language": [ + 125 + ], + "processing,": [ + 126 + ], + "geographic": [ + 127 + ], + "extraction,": [ + 129 + ], + "drug": [ + 132 + ], + "discovery.": [ + 133 + ], + "This": [ + 134 + ], + "paper": [ + 135 + ], + "describes": [ + 136 + ], + "the": [ + 137, + 166 + ], + "that": [ + 144, + 146 + ], + "we": [ + 147 + ], + "have": [ + 148 + ], + "built": [ + 149 + ], + "at": [ + 150, + 176 + ], + "Google.": [ + 151 + ], + "API": [ + 154 + ], + "reference": [ + 157 + ], + "were": [ + 159 + ], + "released": [ + 160 + ], + "open-source": [ + 163 + ], + "package": [ + 164 + ], + "under": [ + 165 + ], + "Apache": [ + 167 + ], + "2.0": [ + 168 + ], + "license": [ + 169 + ], + "in": [ + 170 + ], + "November,": [ + 171 + ], + "2015": [ + 172 + ], + "are": [ + 174 + ], + "available": [ + 175 + ], + "www.tensorflow.org.": [ + 177 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 34 + }, + { + "year": 2025, + "cited_by_count": 298 + }, + { + "year": 2024, + "cited_by_count": 727 + }, + { + "year": 2023, + "cited_by_count": 903 + }, + { + "year": 2022, + "cited_by_count": 846 + }, + { + "year": 2021, + "cited_by_count": 1496 + }, + { + "year": 2020, + "cited_by_count": 1433 + }, + { + "year": 2019, + "cited_by_count": 1315 + }, + { + "year": 2018, + "cited_by_count": 1564 + }, + { + "year": 2017, + "cited_by_count": 996 + }, + { + "year": 2016, + "cited_by_count": 156 + }, + { + "year": 2015, + "cited_by_count": 2 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2402144811", + "doi": "https://doi.org/10.5555/3026877.3026899", + "title": "TensorFlow: a system for large-scale machine learning", + "display_name": "TensorFlow: a system for large-scale machine learning", + "relevance_score": 5231.6167, + "publication_year": 2016, + "publication_date": "2016-11-02", + "ids": { + "openalex": "https://openalex.org/W2402144811", + "doi": "https://doi.org/10.5555/3026877.3026899", + "mag": "2402144811" + }, + "language": "en", + "primary_location": { + "id": "mag:2402144811", + "is_oa": false, + "landing_page_url": "https://www.usenix.org/system/files/conference/osdi16/osdi16-abadi.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420647", + "display_name": "Operating Systems Design and Implementation", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Operating Systems Design and Implementation", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109387322", + "display_name": "Martı́n Abadi", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Martı́n Abadi", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110193634", + "display_name": "Paul Barham", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Paul Barham", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100665512", + "display_name": "Jianmin Chen", + "orcid": "https://orcid.org/0000-0001-5859-3070" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jianmin Chen", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5859-3070", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100715421", + "display_name": "Zhifeng Chen", + "orcid": "https://orcid.org/0000-0001-5137-1344" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zhifeng Chen", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5137-1344", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068599616", + "display_name": "Andy Davis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Andy Davis", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jay B. Dean", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0003-1362-0500", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004386681", + "display_name": "Matthieu Devin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Matthieu Devin", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012998255", + "display_name": "Sanjay Ghemawat", + "orcid": "https://orcid.org/0009-0005-6843-3093" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sanjay Ghemawat", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0009-0005-6843-3093", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029611587", + "display_name": "Geoffrey Irving", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Geoffrey Irving", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089543053", + "display_name": "Michael Isard", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Michael Isard", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5000650022", + "display_name": "Manjunath Kudlur", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Manjunath Kudlur", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009510257", + "display_name": "Josh Levenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Josh Levenberg", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024140027", + "display_name": "Rajat Monga", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rajat Monga", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5063771762", + "display_name": "Sherry Moore", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sherry Moore", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5067335143", + "display_name": "Derek G. Murray", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Derek G. Murray", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5028992619", + "display_name": "Benoit Steiner", + "orcid": "https://orcid.org/0000-0002-5767-4976" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Benoit Steiner", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0002-5767-4976", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016586245", + "display_name": "Paul A. Tucker", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Paul A. Tucker", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004650249", + "display_name": "Vijay Vasudevan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vijay Vasudevan", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5014405928", + "display_name": "Pete Warden", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Pete Warden", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080764662", + "display_name": "Martin Wicke", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Martin Wicke", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104075606", + "display_name": "Yuan Yu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yuan Yu", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5102988664", + "display_name": "Xiaoqiang Zheng", + "orcid": "https://orcid.org/0000-0001-5151-8561" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xiaoqiang Zheng", + "raw_affiliation_strings": [ + "[Google Brain]" + ], + "raw_orcid": "https://orcid.org/0000-0001-5151-8561", + "affiliations": [ + { + "raw_affiliation_string": "[Google Brain]", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 22, + "corresponding_author_ids": [ + "https://openalex.org/A5109387322" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 330.6462, + "has_fulltext": false, + "cited_by_count": 6353, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "265", + "last_page": "283" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9969000220298767, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/dataflow", + "display_name": "Dataflow", + "score": 0.9571843147277832 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.830622673034668 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.711643636226654 + }, + { + "id": "https://openalex.org/keywords/multi-core-processor", + "display_name": "Multi-core processor", + "score": 0.5773373246192932 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5193118453025818 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.4896014332771301 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.4813452661037445 + }, + { + "id": "https://openalex.org/keywords/scalability", + "display_name": "Scalability", + "score": 0.47406429052352905 + }, + { + "id": "https://openalex.org/keywords/inference", + "display_name": "Inference", + "score": 0.4678526520729065 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.44974687695503235 + }, + { + "id": "https://openalex.org/keywords/dataflow-architecture", + "display_name": "Dataflow architecture", + "score": 0.4496024250984192 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.4395424723625183 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.3712141215801239 + }, + { + "id": "https://openalex.org/keywords/parallel-computing", + "display_name": "Parallel computing", + "score": 0.33661338686943054 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.21078741550445557 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.14919248223304749 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C96324660", + "wikidata": "https://www.wikidata.org/wiki/Q205446", + "display_name": "Dataflow", + "level": 2, + "score": 0.9571843147277832 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.830622673034668 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.711643636226654 + }, + { + "id": "https://openalex.org/C78766204", + "wikidata": "https://www.wikidata.org/wiki/Q555032", + "display_name": "Multi-core processor", + "level": 2, + "score": 0.5773373246192932 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5193118453025818 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.4896014332771301 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.4813452661037445 + }, + { + "id": "https://openalex.org/C48044578", + "wikidata": "https://www.wikidata.org/wiki/Q727490", + "display_name": "Scalability", + "level": 2, + "score": 0.47406429052352905 + }, + { + "id": "https://openalex.org/C2776214188", + "wikidata": "https://www.wikidata.org/wiki/Q408386", + "display_name": "Inference", + "level": 2, + "score": 0.4678526520729065 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.44974687695503235 + }, + { + "id": "https://openalex.org/C176727019", + "wikidata": "https://www.wikidata.org/wiki/Q1172415", + "display_name": "Dataflow architecture", + "level": 3, + "score": 0.4496024250984192 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.4395424723625183 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.3712141215801239 + }, + { + "id": "https://openalex.org/C173608175", + "wikidata": "https://www.wikidata.org/wiki/Q232661", + "display_name": "Parallel computing", + "level": 1, + "score": 0.33661338686943054 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.21078741550445557 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.14919248223304749 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2402144811", + "is_oa": false, + "landing_page_url": "https://www.usenix.org/system/files/conference/osdi16/osdi16-abadi.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420647", + "display_name": "Operating Systems Design and Implementation", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Operating Systems Design and Implementation", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "id": "https://metadata.un.org/sdg/9", + "score": 0.4000000059604645 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 55, + "referenced_works": [ + "https://openalex.org/W104184427", + "https://openalex.org/W145476170", + "https://openalex.org/W1425731158", + "https://openalex.org/W1442374986", + "https://openalex.org/W1485981043", + "https://openalex.org/W1493893823", + "https://openalex.org/W1498436455", + "https://openalex.org/W1526734559", + "https://openalex.org/W1539309091", + "https://openalex.org/W1548328233", + "https://openalex.org/W1598866093", + "https://openalex.org/W1658008008", + "https://openalex.org/W1667652561", + "https://openalex.org/W1815076433", + "https://openalex.org/W1947291763", + "https://openalex.org/W1978660892", + "https://openalex.org/W2016053056", + "https://openalex.org/W2032036568", + "https://openalex.org/W2035424729", + "https://openalex.org/W2041517243", + "https://openalex.org/W2061570747", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066443755", + "https://openalex.org/W2083842231", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100664567", + "https://openalex.org/W2100830825", + "https://openalex.org/W2117539524", + "https://openalex.org/W2122465391", + "https://openalex.org/W2131975293", + "https://openalex.org/W2132339004", + "https://openalex.org/W2140833774", + "https://openalex.org/W2141992894", + "https://openalex.org/W2145339207", + "https://openalex.org/W2146502635", + "https://openalex.org/W2146757372", + "https://openalex.org/W2147527908", + "https://openalex.org/W2160815625", + "https://openalex.org/W2168231600", + "https://openalex.org/W2172654076", + "https://openalex.org/W2186615578", + "https://openalex.org/W2194775991", + "https://openalex.org/W2253807446", + "https://openalex.org/W2259472270", + "https://openalex.org/W2336650964", + "https://openalex.org/W2339765813", + "https://openalex.org/W2384495648", + "https://openalex.org/W2521218765", + "https://openalex.org/W2525778437", + "https://openalex.org/W2618530766", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949888546", + "https://openalex.org/W2950577311", + "https://openalex.org/W2951781666", + "https://openalex.org/W2962844195" + ], + "related_works": [ + "https://openalex.org/W3118608800", + "https://openalex.org/W2970971581", + "https://openalex.org/W2964121744", + "https://openalex.org/W2949117887", + "https://openalex.org/W2919115771", + "https://openalex.org/W2899771611", + "https://openalex.org/W2194775991", + "https://openalex.org/W2186615578", + "https://openalex.org/W2163605009", + "https://openalex.org/W2155893237", + "https://openalex.org/W2117539524", + "https://openalex.org/W2112796928", + "https://openalex.org/W2108598243", + "https://openalex.org/W2101234009", + "https://openalex.org/W2099471712", + "https://openalex.org/W2097117768", + "https://openalex.org/W2095705004", + "https://openalex.org/W2064675550", + "https://openalex.org/W1901129140", + "https://openalex.org/W1686810756" + ], + "abstract_inverted_index": { + "TensorFlow": [ + 0, + 91, + 102, + 123, + 150, + 159 + ], + "is": [ + 1, + 86 + ], + "a": [ + 2, + 36, + 43, + 47, + 104, + 109 + ], + "machine": [ + 3, + 48, + 141 + ], + "learning": [ + 4, + 142 + ], + "system": [ + 5 + ], + "that": [ + 6, + 27, + 29, + 158 + ], + "operates": [ + 7 + ], + "at": [ + 8 + ], + "large": [ + 9 + ], + "scale": [ + 10 + ], + "and": [ + 11, + 24, + 45, + 58, + 99, + 113, + 134, + 153 + ], + "in": [ + 12, + 42, + 76, + 124 + ], + "heterogeneous": [ + 13 + ], + "environments.": [ + 14 + ], + "Tensor-Flow": [ + 15 + ], + "uses": [ + 16 + ], + "dataflow": [ + 17, + 37, + 151 + ], + "graphs": [ + 18 + ], + "to": [ + 19, + 71, + 94 + ], + "represent": [ + 20 + ], + "computation,": [ + 21 + ], + "shared": [ + 22, + 84 + ], + "state,": [ + 23 + ], + "the": [ + 25, + 33, + 72, + 81, + 89, + 149, + 155 + ], + "operations": [ + 26 + ], + "mutate": [ + 28 + ], + "state.": [ + 30 + ], + "It": [ + 31 + ], + "maps": [ + 32 + ], + "nodes": [ + 34 + ], + "of": [ + 35, + 83, + 106 + ], + "graph": [ + 38 + ], + "across": [ + 39, + 49 + ], + "many": [ + 40 + ], + "machines": [ + 41 + ], + "cluster,": [ + 44 + ], + "within": [ + 46 + ], + "multiple": [ + 50 + ], + "computational": [ + 51 + ], + "devices,": [ + 52 + ], + "including": [ + 53 + ], + "multicore": [ + 54 + ], + "CPUs,": [ + 55 + ], + "general-purpose": [ + 56 + ], + "GPUs,": [ + 57 + ], + "custom-designed": [ + 59 + ], + "ASICs": [ + 60 + ], + "known": [ + 61 + ], + "as": [ + 62, + 130 + ], + "Tensor": [ + 63 + ], + "Processing": [ + 64 + ], + "Units": [ + 65 + ], + "(TPUs).": [ + 66 + ], + "This": [ + 67 + ], + "architecture": [ + 68 + ], + "gives": [ + 69 + ], + "flexibility": [ + 70 + ], + "application": [ + 73 + ], + "developer:": [ + 74 + ], + "whereas": [ + 75 + ], + "previous": [ + 77 + ], + "parameter": [ + 78 + ], + "server": [ + 79 + ], + "designs": [ + 80 + ], + "management": [ + 82 + ], + "state": [ + 85 + ], + "built": [ + 87 + ], + "into": [ + 88 + ], + "system,": [ + 90 + ], + "enables": [ + 92 + ], + "developers": [ + 93 + ], + "experiment": [ + 95 + ], + "with": [ + 96, + 108 + ], + "novel": [ + 97 + ], + "optimizations": [ + 98 + ], + "training": [ + 100, + 112 + ], + "algorithms.": [ + 101 + ], + "supports": [ + 103 + ], + "variety": [ + 105 + ], + "applications,": [ + 107 + ], + "focus": [ + 110 + ], + "on": [ + 111, + 115 + ], + "inference": [ + 114 + ], + "deep": [ + 116 + ], + "neural": [ + 117 + ], + "networks.": [ + 118 + ], + "Several": [ + 119 + ], + "Google": [ + 120 + ], + "services": [ + 121 + ], + "use": [ + 122 + ], + "production,": [ + 125 + ], + "we": [ + 126, + 147 + ], + "have": [ + 127 + ], + "released": [ + 128 + ], + "it": [ + 129, + 135 + ], + "an": [ + 131 + ], + "open-source": [ + 132 + ], + "project,": [ + 133 + ], + "has": [ + 136 + ], + "become": [ + 137 + ], + "widely": [ + 138 + ], + "used": [ + 139 + ], + "for": [ + 140, + 161 + ], + "research.": [ + 143 + ], + "In": [ + 144 + ], + "this": [ + 145 + ], + "paper,": [ + 146 + ], + "describe": [ + 148 + ], + "model": [ + 152 + ], + "demonstrate": [ + 154 + ], + "compelling": [ + 156 + ], + "performance": [ + 157 + ], + "achieves": [ + 160 + ], + "several": [ + 162 + ], + "real-world": [ + 163 + ], + "applications.": [ + 164 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 11 + }, + { + "year": 2025, + "cited_by_count": 106 + }, + { + "year": 2024, + "cited_by_count": 160 + }, + { + "year": 2023, + "cited_by_count": 187 + }, + { + "year": 2022, + "cited_by_count": 221 + }, + { + "year": 2021, + "cited_by_count": 1336 + }, + { + "year": 2020, + "cited_by_count": 1696 + }, + { + "year": 2019, + "cited_by_count": 1675 + }, + { + "year": 2018, + "cited_by_count": 802 + }, + { + "year": 2017, + "cited_by_count": 151 + }, + { + "year": 2016, + "cited_by_count": 7 + }, + { + "year": 2015, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2912213068", + "doi": "https://doi.org/10.1145/3298981", + "title": "Federated Machine Learning", + "display_name": "Federated Machine Learning", + "relevance_score": 5104.1743, + "publication_year": 2019, + "publication_date": "2019-01-28", + "ids": { + "openalex": "https://openalex.org/W2912213068", + "doi": "https://doi.org/10.1145/3298981", + "mag": "2912213068" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3298981", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3298981", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2492086750", + "display_name": "ACM Transactions on Intelligent Systems and Technology", + "issn_l": "2157-6904", + "issn": [ + "2157-6904", + "2157-6912" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Transactions on Intelligent Systems and Technology", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5100636286", + "display_name": "Qiang Yang", + "orcid": "https://orcid.org/0000-0001-5059-8360" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": true, + "raw_author_name": "Qiang Yang", + "raw_affiliation_strings": [ + "Hong Kong University of Science and Technology, Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong University of Science and Technology, Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100356161", + "display_name": "Yang Liu", + "orcid": "https://orcid.org/0000-0003-3800-3533" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Yang Liu", + "raw_affiliation_strings": [ + "Webank, Shenzhen, China" + ], + "raw_orcid": "https://orcid.org/0000-0003-3800-3533", + "affiliations": [ + { + "raw_affiliation_string": "Webank, Shenzhen, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5068882233", + "display_name": "Tianjian Chen", + "orcid": "https://orcid.org/0000-0002-8479-2054" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tianjian Chen", + "raw_affiliation_strings": [ + "Webank, Shenzhen, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Webank, Shenzhen, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5051874566", + "display_name": "Yongxin Tong", + "orcid": "https://orcid.org/0000-0002-5598-0312" + }, + "institutions": [ + { + "id": "https://openalex.org/I82880672", + "display_name": "Beihang University", + "ror": "https://ror.org/00wk2mp56", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I82880672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Yongxin Tong", + "raw_affiliation_strings": [ + "Beihang University, Beijing, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Beihang University, Beijing, China", + "institution_ids": [ + "https://openalex.org/I82880672" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5100636286" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I200769079" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 336.5216, + "has_fulltext": false, + "cited_by_count": 5790, + "citation_normalized_percentile": { + "value": 0.99993867, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "10", + "issue": "2", + "first_page": "1", + "last_page": "19" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11598", + "display_name": "Internet Traffic Analysis and Secure E-voting", + "score": 0.9965000152587891, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.9133003950119019 + }, + { + "id": "https://openalex.org/keywords/federated-learning", + "display_name": "Federated learning", + "score": 0.9119365215301514 + }, + { + "id": "https://openalex.org/keywords/transfer-of-learning", + "display_name": "Transfer of learning", + "score": 0.5265006422996521 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.39959585666656494 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.34242358803749084 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.3284221887588501 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.9133003950119019 + }, + { + "id": "https://openalex.org/C2992525071", + "wikidata": "https://www.wikidata.org/wiki/Q50818671", + "display_name": "Federated learning", + "level": 2, + "score": 0.9119365215301514 + }, + { + "id": "https://openalex.org/C150899416", + "wikidata": "https://www.wikidata.org/wiki/Q1820378", + "display_name": "Transfer of learning", + "level": 2, + "score": 0.5265006422996521 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.39959585666656494 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.34242358803749084 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.3284221887588501 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1145/3298981", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3298981", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2492086750", + "display_name": "ACM Transactions on Intelligent Systems and Technology", + "issn_l": "2157-6904", + "issn": [ + "2157-6904", + "2157-6912" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM Transactions on Intelligent Systems and Technology", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:repository.hkust.edu.hk:1783.1-95671", + "is_oa": false, + "landing_page_url": "http://repository.hkust.edu.hk/ir/Record/1783.1-95671", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401796", + "display_name": "Rare & Special e-Zone (The Hong Kong University of Science and Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I200769079", + "host_organization_name": "Hong Kong University of Science and Technology", + "host_organization_lineage": [ + "https://openalex.org/I200769079" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Article" + }, + { + "id": "pmh:oai:repository.ust.hk:1783.1-95671", + "is_oa": false, + "landing_page_url": "http://repository.ust.hk/ir/Record/1783.1-95671", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401796", + "display_name": "Rare & Special e-Zone (The Hong Kong University of Science and Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I200769079", + "host_organization_name": "Hong Kong University of Science and Technology", + "host_organization_lineage": [ + "https://openalex.org/I200769079" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 85, + "referenced_works": [ + "https://openalex.org/W150223756", + "https://openalex.org/W162878246", + "https://openalex.org/W199752024", + "https://openalex.org/W1484769234", + "https://openalex.org/W1485800369", + "https://openalex.org/W1488526968", + "https://openalex.org/W1510952750", + "https://openalex.org/W1559506103", + "https://openalex.org/W1574534563", + "https://openalex.org/W1964366273", + "https://openalex.org/W1968265138", + "https://openalex.org/W1971991172", + "https://openalex.org/W1985511977", + "https://openalex.org/W2016758618", + "https://openalex.org/W2024652123", + "https://openalex.org/W2027471022", + "https://openalex.org/W2041416246", + "https://openalex.org/W2053637704", + "https://openalex.org/W2082624086", + "https://openalex.org/W2092422002", + "https://openalex.org/W2093367651", + "https://openalex.org/W2109426455", + "https://openalex.org/W2112022568", + "https://openalex.org/W2112340198", + "https://openalex.org/W2128906841", + "https://openalex.org/W2132737349", + "https://openalex.org/W2137351756", + "https://openalex.org/W2139336600", + "https://openalex.org/W2159024459", + "https://openalex.org/W2165698076", + "https://openalex.org/W2257979135", + "https://openalex.org/W2283463896", + "https://openalex.org/W2295292576", + "https://openalex.org/W2317339301", + "https://openalex.org/W2435473771", + "https://openalex.org/W2473418344", + "https://openalex.org/W2530417694", + "https://openalex.org/W2536058570", + "https://openalex.org/W2577421826", + "https://openalex.org/W2585580772", + "https://openalex.org/W2591882872", + "https://openalex.org/W2606882085", + "https://openalex.org/W2618494520", + "https://openalex.org/W2679684481", + "https://openalex.org/W2701059868", + "https://openalex.org/W2757853533", + "https://openalex.org/W2765200655", + "https://openalex.org/W2766255512", + "https://openalex.org/W2767079719", + "https://openalex.org/W2768347741", + "https://openalex.org/W2773194476", + "https://openalex.org/W2774000609", + "https://openalex.org/W2777914285", + "https://openalex.org/W2781091734", + "https://openalex.org/W2788629937", + "https://openalex.org/W2793216106", + "https://openalex.org/W2793925626", + "https://openalex.org/W2794888826", + "https://openalex.org/W2798551148", + "https://openalex.org/W2799803467", + "https://openalex.org/W2801958627", + "https://openalex.org/W2807006176", + "https://openalex.org/W2810065831", + "https://openalex.org/W2886722183", + "https://openalex.org/W2895865029", + "https://openalex.org/W2914304175", + "https://openalex.org/W2949140995", + "https://openalex.org/W2950460048", + "https://openalex.org/W2951152347", + "https://openalex.org/W2951368041", + "https://openalex.org/W2951798842", + "https://openalex.org/W2962877476", + "https://openalex.org/W2963106566", + "https://openalex.org/W2990138404", + "https://openalex.org/W3029558105", + "https://openalex.org/W3209546151", + "https://openalex.org/W4248358572", + "https://openalex.org/W4249529812", + "https://openalex.org/W4300427714", + "https://openalex.org/W4301418013", + "https://openalex.org/W4301483968", + "https://openalex.org/W6606067566", + "https://openalex.org/W6732586565", + "https://openalex.org/W6738383168", + "https://openalex.org/W6807767519" + ], + "related_works": [ + "https://openalex.org/W4298221930", + "https://openalex.org/W2777914285", + "https://openalex.org/W3013363440", + "https://openalex.org/W4287823391", + "https://openalex.org/W4312762663", + "https://openalex.org/W3035927627", + "https://openalex.org/W3201126466", + "https://openalex.org/W4317941881", + "https://openalex.org/W3128909129", + "https://openalex.org/W3123837699" + ], + "abstract_inverted_index": { + "Today’s": [ + 0 + ], + "artificial": [ + 1 + ], + "intelligence": [ + 2 + ], + "still": [ + 3 + ], + "faces": [ + 4 + ], + "two": [ + 5 + ], + "major": [ + 6 + ], + "challenges.": [ + 7 + ], + "One": [ + 8 + ], + "is": [ + 9, + 24 + ], + "that,": [ + 10 + ], + "in": [ + 11, + 16, + 51 + ], + "most": [ + 12 + ], + "industries,": [ + 13 + ], + "data": [ + 14, + 28, + 98 + ], + "exists": [ + 15 + ], + "the": [ + 17, + 25, + 44, + 79 + ], + "form": [ + 18 + ], + "of": [ + 19, + 27, + 87 + ], + "isolated": [ + 20 + ], + "islands.": [ + 21 + ], + "The": [ + 22 + ], + "other": [ + 23 + ], + "strengthening": [ + 26 + ], + "privacy": [ + 29 + ], + "and": [ + 30, + 68, + 76, + 82 + ], + "security.": [ + 31 + ], + "We": [ + 32, + 72 + ], + "propose": [ + 33, + 96 + ], + "a": [ + 34, + 55, + 84 + ], + "possible": [ + 35 + ], + "solution": [ + 36, + 109 + ], + "to": [ + 37, + 110, + 113 + ], + "these": [ + 38 + ], + "challenges:": [ + 39 + ], + "secure": [ + 40, + 57 + ], + "federated": [ + 41, + 63, + 66, + 69, + 104 + ], + "learning.": [ + 42, + 71 + ], + "Beyond": [ + 43 + ], + "federated-learning": [ + 45, + 58, + 80 + ], + "framework": [ + 46 + ], + "first": [ + 47 + ], + "proposed": [ + 48 + ], + "by": [ + 49 + ], + "Google": [ + 50 + ], + "2016,": [ + 52 + ], + "we": [ + 53, + 95 + ], + "introduce": [ + 54 + ], + "comprehensive": [ + 56, + 85 + ], + "framework,": [ + 59, + 81 + ], + "which": [ + 60 + ], + "includes": [ + 61 + ], + "horizontal": [ + 62 + ], + "learning,": [ + 64, + 67 + ], + "vertical": [ + 65 + ], + "transfer": [ + 70 + ], + "provide": [ + 73, + 83 + ], + "definitions,": [ + 74 + ], + "architectures,": [ + 75 + ], + "applications": [ + 77 + ], + "for": [ + 78 + ], + "survey": [ + 86 + ], + "existing": [ + 88 + ], + "works": [ + 89 + ], + "on": [ + 90, + 103 + ], + "this": [ + 91 + ], + "subject.": [ + 92 + ], + "In": [ + 93 + ], + "addition,": [ + 94 + ], + "building": [ + 97 + ], + "networks": [ + 99 + ], + "among": [ + 100 + ], + "organizations": [ + 101 + ], + "based": [ + 102 + ], + "mechanisms": [ + 105 + ], + "as": [ + 106 + ], + "an": [ + 107 + ], + "effective": [ + 108 + ], + "allowing": [ + 111 + ], + "knowledge": [ + 112 + ], + "be": [ + 114 + ], + "shared": [ + 115 + ], + "without": [ + 116 + ], + "compromising": [ + 117 + ], + "user": [ + 118 + ], + "privacy.": [ + 119 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 345 + }, + { + "year": 2025, + "cited_by_count": 1176 + }, + { + "year": 2024, + "cited_by_count": 1009 + }, + { + "year": 2023, + "cited_by_count": 939 + }, + { + "year": 2022, + "cited_by_count": 806 + }, + { + "year": 2021, + "cited_by_count": 932 + }, + { + "year": 2020, + "cited_by_count": 496 + }, + { + "year": 2019, + "cited_by_count": 85 + }, + { + "year": 2018, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2009086942", + "doi": "https://doi.org/10.1198/tech.2007.s518", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 4972.8193, + "publication_year": 2007, + "publication_date": "2007-08-01", + "ids": { + "openalex": "https://openalex.org/W2009086942", + "doi": "https://doi.org/10.1198/tech.2007.s518", + "mag": "2009086942" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1198/tech.2007.s518", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/tech.2007.s518", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5062571011", + "display_name": "Radford M. Neal", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Radford M Neal", + "raw_affiliation_strings": [ + "University of Toronto" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Toronto", + "institution_ids": [ + "https://openalex.org/I185261750" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5062571011" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I185261750" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 173.8255, + "has_fulltext": false, + "cited_by_count": 4651, + "citation_normalized_percentile": { + "value": 0.99994787, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 95, + "max": 100 + }, + "biblio": { + "volume": "49", + "issue": "3", + "first_page": "366", + "last_page": "366" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.23559999465942383, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.23559999465942383, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6036144495010376 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5715402960777283 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5367371439933777 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.4431344270706177 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6036144495010376 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5715402960777283 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5367371439933777 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.4431344270706177 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1198/tech.2007.s518", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/tech.2007.s518", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W2033914206", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "(2007).": [ + 0 + ], + "Pattern": [ + 1 + ], + "Recognition": [ + 2 + ], + "and": [ + 3 + ], + "Machine": [ + 4 + ], + "Learning.": [ + 5 + ], + "Technometrics:": [ + 6 + ], + "Vol.": [ + 7 + ], + "49,": [ + 8 + ], + "No.": [ + 9 + ], + "3,": [ + 10 + ], + "pp.": [ + 11 + ], + "366-366.": [ + 12 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 11 + }, + { + "year": 2024, + "cited_by_count": 227 + }, + { + "year": 2023, + "cited_by_count": 381 + }, + { + "year": 2022, + "cited_by_count": 433 + }, + { + "year": 2021, + "cited_by_count": 419 + }, + { + "year": 2020, + "cited_by_count": 369 + }, + { + "year": 2019, + "cited_by_count": 450 + }, + { + "year": 2018, + "cited_by_count": 372 + }, + { + "year": 2017, + "cited_by_count": 291 + }, + { + "year": 2016, + "cited_by_count": 284 + }, + { + "year": 2015, + "cited_by_count": 294 + }, + { + "year": 2014, + "cited_by_count": 222 + }, + { + "year": 2013, + "cited_by_count": 191 + }, + { + "year": 2012, + "cited_by_count": 178 + } + ], + "updated_date": "2026-05-19T08:33:51.333923", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2131241448", + "doi": "https://doi.org/10.48550/arxiv.1206.2944", + "title": "Practical Bayesian Optimization of Machine Learning Algorithms", + "display_name": "Practical Bayesian Optimization of Machine Learning Algorithms", + "relevance_score": 4882.38, + "publication_year": 2012, + "publication_date": "2012-06-13", + "ids": { + "openalex": "https://openalex.org/W2131241448", + "doi": "https://doi.org/10.48550/arxiv.1206.2944", + "mag": "2131241448" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1206.2944", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5112347601", + "display_name": "Jasper Snoek", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Snoek, Jasper", + "raw_affiliation_strings": [ + "[Department of Computer Science, University of Toronto]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Department of Computer Science, University of Toronto]", + "institution_ids": [ + "https://openalex.org/I185261750" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5019862529", + "display_name": "Hugo Larochelle", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I135117807", + "display_name": "Université de Sherbrooke", + "ror": "https://ror.org/00kybxq39", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I135117807" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Larochelle, Hugo", + "raw_affiliation_strings": [ + "Department of Computer Science, University of Sherbrooke," + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of Sherbrooke,", + "institution_ids": [ + "https://openalex.org/I135117807" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5007769527", + "display_name": "Ryan P. Adams", + "orcid": "https://orcid.org/0000-0002-5704-6654" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Adams, Ryan P.", + "raw_affiliation_strings": [ + "School of Engineering & Applied Sciences Harvard University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Engineering & Applied Sciences Harvard University", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5112347601" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I185261750" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 5659, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/bayesian-optimization", + "display_name": "Bayesian optimization", + "score": 0.6480942964553833 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6321470737457275 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.5293997526168823 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.49968791007995605 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4541047513484955 + }, + { + "id": "https://openalex.org/keywords/optimization-algorithm", + "display_name": "Optimization algorithm", + "score": 0.422710120677948 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4147215187549591 + }, + { + "id": "https://openalex.org/keywords/mathematical-optimization", + "display_name": "Mathematical optimization", + "score": 0.23351716995239258 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.17170017957687378 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2778049539", + "wikidata": "https://www.wikidata.org/wiki/Q17002908", + "display_name": "Bayesian optimization", + "level": 2, + "score": 0.6480942964553833 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6321470737457275 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.5293997526168823 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.49968791007995605 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4541047513484955 + }, + { + "id": "https://openalex.org/C2987595161", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Optimization algorithm", + "level": 2, + "score": 0.422710120677948 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4147215187549591 + }, + { + "id": "https://openalex.org/C126255220", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Mathematical optimization", + "level": 1, + "score": 0.23351716995239258 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.17170017957687378 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1206.2944", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1206.2944", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1206.2944", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1206.2944", + "pdf_url": "https://arxiv.org/pdf/1206.2944", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 23, + "referenced_works": [ + "https://openalex.org/W60686164", + "https://openalex.org/W78356000", + "https://openalex.org/W84569508", + "https://openalex.org/W1497675750", + "https://openalex.org/W1746819321", + "https://openalex.org/W1973333099", + "https://openalex.org/W2061144551", + "https://openalex.org/W2097998348", + "https://openalex.org/W2099201756", + "https://openalex.org/W2106411961", + "https://openalex.org/W2106869737", + "https://openalex.org/W2119595900", + "https://openalex.org/W2129458072", + "https://openalex.org/W2132984949", + "https://openalex.org/W2141125852", + "https://openalex.org/W2147196093", + "https://openalex.org/W2151238122", + "https://openalex.org/W2165599843", + "https://openalex.org/W2189424119", + "https://openalex.org/W2197776371", + "https://openalex.org/W2951665052", + "https://openalex.org/W2964172739", + "https://openalex.org/W3118608800" + ], + "related_works": [ + "https://openalex.org/W3199608561", + "https://openalex.org/W4382049207", + "https://openalex.org/W4366549320", + "https://openalex.org/W4287863136", + "https://openalex.org/W3006015132", + "https://openalex.org/W2965078190", + "https://openalex.org/W3040644038", + "https://openalex.org/W4311207076", + "https://openalex.org/W3203633096", + "https://openalex.org/W2355226480" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 53, + 78, + 165, + 181 + ], + "algorithms": [ + 2, + 171, + 200, + 220 + ], + "frequently": [ + 3 + ], + "require": [ + 4 + ], + "careful": [ + 5 + ], + "tuning": [ + 6, + 17, + 67, + 163 + ], + "of": [ + 7, + 29, + 41, + 50, + 72, + 104, + 126, + 146, + 180, + 189, + 218 + ], + "model": [ + 8 + ], + "hyperparameters,": [ + 9 + ], + "regularization": [ + 10 + ], + "terms,": [ + 11 + ], + "and": [ + 12, + 131, + 183, + 206, + 227 + ], + "optimization": [ + 13, + 213 + ], + "parameters.": [ + 14 + ], + "Unfortunately,": [ + 15 + ], + "this": [ + 16, + 61 + ], + "is": [ + 18, + 38, + 82 + ], + "often": [ + 19 + ], + "a": [ + 20, + 51, + 77, + 85, + 88, + 138, + 215 + ], + "\"black": [ + 21 + ], + "art\"": [ + 22 + ], + "that": [ + 23, + 151, + 158, + 172, + 184, + 197 + ], + "requires": [ + 24 + ], + "expert": [ + 25 + ], + "experience,": [ + 26 + ], + "unwritten": [ + 27 + ], + "rules": [ + 28 + ], + "thumb,": [ + 30 + ], + "or": [ + 31, + 144, + 209 + ], + "sometimes": [ + 32 + ], + "brute-force": [ + 33 + ], + "search.": [ + 34 + ], + "Much": [ + 35 + ], + "more": [ + 36 + ], + "appealing": [ + 37 + ], + "the": [ + 39, + 48, + 56, + 65, + 70, + 98, + 105, + 124, + 127, + 132, + 142, + 176, + 187 + ], + "idea": [ + 40 + ], + "developing": [ + 42 + ], + "automatic": [ + 43, + 66, + 204 + ], + "approaches": [ + 44 + ], + "which": [ + 45, + 76 + ], + "can": [ + 46, + 136, + 154, + 185, + 207 + ], + "optimize": [ + 47 + ], + "performance": [ + 49, + 81, + 161 + ], + "given": [ + 52 + ], + "algorithm": [ + 54 + ], + "to": [ + 55, + 101, + 117, + 156 + ], + "task": [ + 57 + ], + "at": [ + 58 + ], + "hand.": [ + 59 + ], + "In": [ + 60 + ], + "work,": [ + 62 + ], + "we": [ + 63, + 121 + ], + "consider": [ + 64 + ], + "problem": [ + 68 + ], + "within": [ + 69 + ], + "framework": [ + 71 + ], + "Bayesian": [ + 73, + 147 + ], + "optimization,": [ + 74 + ], + "in": [ + 75, + 162 + ], + "algorithm's": [ + 79 + ], + "generalization": [ + 80 + ], + "modeled": [ + 83 + ], + "as": [ + 84 + ], + "sample": [ + 86 + ], + "from": [ + 87 + ], + "Gaussian": [ + 89, + 128 + ], + "process": [ + 90, + 129 + ], + "(GP).": [ + 91 + ], + "The": [ + 92 + ], + "tractable": [ + 93 + ], + "posterior": [ + 94 + ], + "distribution": [ + 95 + ], + "induced": [ + 96 + ], + "by": [ + 97, + 108 + ], + "GP": [ + 99 + ], + "leads": [ + 100 + ], + "efficient": [ + 102 + ], + "use": [ + 103 + ], + "information": [ + 106 + ], + "gathered": [ + 107 + ], + "previous": [ + 109, + 203 + ], + "experiments,": [ + 110 + ], + "enabling": [ + 111 + ], + "optimal": [ + 112 + ], + "choices": [ + 113, + 153 + ], + "about": [ + 114 + ], + "what": [ + 115 + ], + "parameters": [ + 116 + ], + "try": [ + 118 + ], + "next.": [ + 119 + ], + "Here": [ + 120 + ], + "show": [ + 122, + 150, + 196 + ], + "how": [ + 123 + ], + "effects": [ + 125 + ], + "prior": [ + 130 + ], + "associated": [ + 133 + ], + "inference": [ + 134 + ], + "procedure": [ + 135 + ], + "have": [ + 137 + ], + "large": [ + 139 + ], + "impact": [ + 140 + ], + "on": [ + 141, + 202, + 214 + ], + "success": [ + 143 + ], + "failure": [ + 145 + ], + "optimization.": [ + 148 + ], + "We": [ + 149, + 167, + 195 + ], + "thoughtful": [ + 152 + ], + "lead": [ + 155 + ], + "results": [ + 157 + ], + "exceed": [ + 159 + ], + "expert-level": [ + 160, + 212 + ], + "machine": [ + 164 + ], + "algorithms.": [ + 166 + ], + "also": [ + 168 + ], + "describe": [ + 169 + ], + "new": [ + 170 + ], + "take": [ + 173 + ], + "into": [ + 174 + ], + "account": [ + 175 + ], + "variable": [ + 177 + ], + "cost": [ + 178 + ], + "(duration)": [ + 179 + ], + "experiments": [ + 182 + ], + "leverage": [ + 186 + ], + "presence": [ + 188 + ], + "multiple": [ + 190 + ], + "cores": [ + 191 + ], + "for": [ + 192 + ], + "parallel": [ + 193 + ], + "experimentation.": [ + 194 + ], + "these": [ + 198 + ], + "proposed": [ + 199 + ], + "improve": [ + 201 + ], + "procedures": [ + 205 + ], + "reach": [ + 208 + ], + "surpass": [ + 210 + ], + "human": [ + 211 + ], + "diverse": [ + 216 + ], + "set": [ + 217 + ], + "contemporary": [ + 219 + ], + "including": [ + 221 + ], + "latent": [ + 222 + ], + "Dirichlet": [ + 223 + ], + "allocation,": [ + 224 + ], + "structured": [ + 225 + ], + "SVMs": [ + 226 + ], + "convolutional": [ + 228 + ], + "neural": [ + 229 + ], + "networks.": [ + 230 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 32 + }, + { + "year": 2025, + "cited_by_count": 500 + }, + { + "year": 2024, + "cited_by_count": 630 + }, + { + "year": 2023, + "cited_by_count": 637 + }, + { + "year": 2022, + "cited_by_count": 632 + }, + { + "year": 2021, + "cited_by_count": 872 + }, + { + "year": 2020, + "cited_by_count": 787 + }, + { + "year": 2019, + "cited_by_count": 613 + }, + { + "year": 2018, + "cited_by_count": 368 + }, + { + "year": 2017, + "cited_by_count": 201 + }, + { + "year": 2016, + "cited_by_count": 154 + }, + { + "year": 2015, + "cited_by_count": 113 + }, + { + "year": 2014, + "cited_by_count": 81 + }, + { + "year": 2013, + "cited_by_count": 31 + }, + { + "year": 2012, + "cited_by_count": 8 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2913668833", + "doi": null, + "title": "Proceedings of the 25th international conference on Machine learning", + "display_name": "Proceedings of the 25th international conference on Machine learning", + "relevance_score": 4811.663, + "publication_year": 2008, + "publication_date": "2008-07-05", + "ids": { + "openalex": "https://openalex.org/W2913668833", + "mag": "2913668833" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209046", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1390156", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5051617344", + "display_name": "William W. Cohen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "William W. Cohen", + "raw_affiliation_strings": [ + "Carnegie Mellon University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Carnegie Mellon University", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107835063", + "display_name": "Andrew McCallum", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I24603500", + "display_name": "University of Massachusetts Amherst", + "ror": "https://ror.org/0072zz521", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I24603500" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Andrew McCallum", + "raw_affiliation_strings": [ + "University of Massachusetts, Amherst" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Massachusetts, Amherst", + "institution_ids": [ + "https://openalex.org/I24603500" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5003010184", + "display_name": "Sam T. Roweis", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I185261750", + "display_name": "University of Toronto", + "ror": "https://ror.org/03dbr7087", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I185261750" + ] + } + ], + "countries": [ + "CA", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sam T. Roweis", + "raw_affiliation_strings": [ + "University of Toronto and Google#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Toronto and Google#TAB#", + "institution_ids": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I185261750" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5051617344" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I74973139" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 211.7166, + "has_fulltext": false, + "cited_by_count": 5549, + "citation_normalized_percentile": { + "value": 0.99996634, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9751999974250793, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9751999974250793, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9610000252723694, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.949999988079071, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5605996251106262 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5152300000190735 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3871921896934509 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.3709452450275421 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.36655187606811523 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.28487396240234375 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5605996251106262 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5152300000190735 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3871921896934509 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.3709452450275421 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.36655187606811523 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.28487396240234375 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209046", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1390156", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:2913668833", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1390156", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306419644", + "display_name": "International Conference on Machine Learning", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "International Conference on Machine Learning", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Partnerships for the goals", + "id": "https://metadata.un.org/sdg/17", + "score": 0.4000000059604645 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [], + "abstract_inverted_index": { + "This": [ + 0, + 395, + 430 + ], + "volume": [ + 1 + ], + "contains": [ + 2 + ], + "the": [ + 3, + 7, + 18, + 22, + 33, + 41, + 62, + 74, + 84, + 128, + 132, + 145, + 158, + 169, + 175, + 178, + 182, + 203, + 215, + 221, + 225, + 285, + 290, + 315, + 330, + 344, + 355, + 422, + 427, + 439, + 442, + 499, + 515 + ], + "papers": [ + 4, + 96, + 199, + 219, + 239, + 251, + 267 + ], + "accepted": [ + 5, + 241 + ], + "to": [ + 6, + 99, + 125, + 127, + 205, + 242, + 307, + 310, + 343, + 450, + 475 + ], + "25th": [ + 8 + ], + "International": [ + 9, + 23 + ], + "Conference": [ + 10, + 77, + 86 + ], + "on": [ + 11, + 78, + 87, + 141, + 218 + ], + "Machine": [ + 12, + 24, + 516 + ], + "Learning": [ + 13, + 25, + 80, + 517 + ], + "(ICML": [ + 14 + ], + "2008).": [ + 15 + ], + "ICML": [ + 16, + 56, + 100, + 229, + 243, + 445, + 503 + ], + "is": [ + 17 + ], + "annual": [ + 19 + ], + "conference": [ + 20, + 292 + ], + "of": [ + 21, + 37, + 43, + 64, + 147, + 171, + 177, + 195, + 232, + 250, + 262, + 284, + 289, + 314, + 318, + 322, + 329, + 337, + 408, + 414, + 426, + 441, + 502, + 522 + ], + "Society": [ + 26 + ], + "(IMLS),": [ + 27 + ], + "and": [ + 28, + 35, + 69, + 82, + 131, + 144, + 166, + 188, + 220, + 270, + 325, + 334, + 364, + 369, + 377, + 382, + 387, + 392, + 404, + 418, + 467, + 470, + 481, + 494 + ], + "provides": [ + 29 + ], + "a": [ + 30, + 104, + 190, + 247, + 272, + 300, + 409, + 433, + 510 + ], + "venue": [ + 31 + ], + "for": [ + 32, + 193, + 228, + 277, + 436, + 490, + 519 + ], + "presentation": [ + 34 + ], + "discussion": [ + 36, + 154, + 180 + ], + "current": [ + 38 + ], + "research": [ + 39 + ], + "in": [ + 40, + 66, + 89, + 109, + 271, + 507 + ], + "field": [ + 42 + ], + "machine": [ + 44 + ], + "learning.": [ + 45 + ], + "These": [ + 46 + ], + "proceedings": [ + 47 + ], + "can": [ + 48 + ], + "also": [ + 49, + 349, + 487 + ], + "be": [ + 50, + 308 + ], + "found": [ + 51 + ], + "online": [ + 52, + 142 + ], + "at": [ + 53, + 61 + ], + "http://www.machinelearning.org.\r\n\r\nThis": [ + 54 + ], + "year,": [ + 55, + 245, + 444 + ], + "was": [ + 57, + 70, + 103, + 113 + ], + "held": [ + 58, + 353 + ], + "July": [ + 59 + ], + "5..9": [ + 60 + ], + "University": [ + 63 + ], + "Helsinki,": [ + 65, + 67 + ], + "Finland,": [ + 68 + ], + "co-located": [ + 71, + 511 + ], + "with": [ + 72, + 280, + 402, + 509 + ], + "COLT-2008,": [ + 73 + ], + "21st": [ + 75 + ], + "Annual": [ + 76 + ], + "Computational": [ + 79 + ], + "Theory,": [ + 81 + ], + "UAI-2008,": [ + 83 + ], + "24th": [ + 85 + ], + "Uncertainty": [ + 88 + ], + "Artificial": [ + 90 + ], + "Intelligence.": [ + 91 + ], + "No": [ + 92 + ], + "less": [ + 93 + ], + "than": [ + 94 + ], + "583": [ + 95 + ], + "were": [ + 97, + 123, + 152, + 200, + 240, + 253, + 304, + 399 + ], + "submitted": [ + 98 + ], + "2008.": [ + 101 + ], + "There": [ + 102, + 151 + ], + "very": [ + 105, + 305 + ], + "thorough": [ + 106 + ], + "review": [ + 107, + 192, + 226 + ], + "process,": [ + 108 + ], + "which": [ + 110, + 252 + ], + "each": [ + 111, + 194 + ], + "paper": [ + 112, + 501, + 524 + ], + "reviewed": [ + 114 + ], + "double-blind": [ + 115 + ], + "by": [ + 116, + 157, + 202, + 299, + 359, + 421 + ], + "three": [ + 117, + 428 + ], + "program": [ + 118, + 160 + ], + "committee": [ + 119, + 161 + ], + "(PC)": [ + 120 + ], + "members.": [ + 121 + ], + "Authors": [ + 122 + ], + "able": [ + 124, + 309 + ], + "respond": [ + 126 + ], + "initial": [ + 129 + ], + "reviews,": [ + 130 + ], + "PC": [ + 133 + ], + "members": [ + 134, + 184 + ], + "could": [ + 135 + ], + "then": [ + 136 + ], + "modify": [ + 137 + ], + "their": [ + 138, + 186, + 196, + 266 + ], + "reviews": [ + 139 + ], + "based": [ + 140 + ], + "discussions": [ + 143, + 279 + ], + "content": [ + 146 + ], + "this": [ + 148, + 244 + ], + "author": [ + 149, + 172 + ], + "response.": [ + 150 + ], + "two": [ + 153, + 296 + ], + "periods": [ + 155 + ], + "led": [ + 156 + ], + "senior": [ + 159 + ], + "(SPC),": [ + 162 + ], + "one": [ + 163, + 167, + 294 + ], + "just": [ + 164 + ], + "before": [ + 165, + 354 + ], + "after": [ + 168 + ], + "submission": [ + 170 + ], + "responses.": [ + 173 + ], + "At": [ + 174 + ], + "end": [ + 176 + ], + "second": [ + 179 + ], + "period,": [ + 181 + ], + "SPC": [ + 183 + ], + "gave": [ + 185, + 488 + ], + "recommendations": [ + 187 + ], + "provided": [ + 189, + 432 + ], + "summary": [ + 191 + ], + "papers.": [ + 197 + ], + "Some": [ + 198 + ], + "checked": [ + 201 + ], + "SPCs": [ + 204 + ], + "ensure": [ + 206 + ], + "that": [ + 207, + 231 + ], + "reviewer": [ + 208 + ], + "comments": [ + 209 + ], + "had": [ + 210 + ], + "been": [ + 211 + ], + "addressed.": [ + 212 + ], + "Apart": [ + 213 + ], + "from": [ + 214 + ], + "length": [ + 216 + ], + "restrictions": [ + 217 + ], + "compressed": [ + 222 + ], + "time": [ + 223, + 276 + ], + "frame,": [ + 224 + ], + "process": [ + 227 + ], + "resembles": [ + 230 + ], + "many": [ + 233 + ], + "journal": [ + 234 + ], + "publications.": [ + 235 + ], + "In": [ + 236, + 341, + 473 + ], + "total,": [ + 237 + ], + "158": [ + 238 + ], + "including": [ + 246 + ], + "small": [ + 248 + ], + "number": [ + 249 + ], + "initially": [ + 254 + ], + "conditionally": [ + 255 + ], + "accepted,": [ + 256 + ], + "yielding": [ + 257 + ], + "an": [ + 258 + ], + "overall": [ + 259 + ], + "acceptance": [ + 260 + ], + "rate": [ + 261 + ], + "27%.\r\n\r\nICML": [ + 263 + ], + "authors": [ + 264 + ], + "presented": [ + 265, + 358 + ], + "both": [ + 268 + ], + "orally": [ + 269 + ], + "poster": [ + 273 + ], + "session,": [ + 274 + ], + "allowing": [ + 275 + ], + "detailed": [ + 278 + ], + "any": [ + 281 + ], + "interested": [ + 282 + ], + "attendees": [ + 283, + 440 + ], + "conference.": [ + 286 + ], + "Each": [ + 287 + ], + "day": [ + 288, + 431 + ], + "main": [ + 291, + 356 + ], + "included": [ + 293, + 350 + ], + "or": [ + 295 + ], + "invited": [ + 297 + ], + "talks": [ + 298 + ], + "prominent": [ + 301 + ], + "researcher.": [ + 302 + ], + "We": [ + 303, + 456, + 513 + ], + "fortunate": [ + 306 + ], + "host": [ + 311 + ], + "Michael": [ + 312 + ], + "Collins,": [ + 313 + ], + "Massachusetts": [ + 316 + ], + "Institute": [ + 317 + ], + "Technology;": [ + 319 + ], + "Andrew": [ + 320 + ], + "Ng,": [ + 321 + ], + "Stanford": [ + 323 + ], + "University;": [ + 324 + ], + "Luc": [ + 326 + ], + "De": [ + 327 + ], + "Raedt,": [ + 328 + ], + "Katholieke": [ + 331 + ], + "Universiteit": [ + 332 + ], + "Leuven,": [ + 333 + ], + "John": [ + 335 + ], + "Winn": [ + 336 + ], + "Microsoft": [ + 338 + ], + "Research": [ + 339 + ], + "Cambridge.": [ + 340 + ], + "addition": [ + 342, + 474 + ], + "technical": [ + 345 + ], + "talks,": [ + 346 + ], + "ICML-": [ + 347 + ], + "2008": [ + 348 + ], + "nine": [ + 351 + ], + "tutorials": [ + 352 + ], + "conference,": [ + 357 + ], + "Alex": [ + 360 + ], + "Smola,": [ + 361 + ], + "Arthur": [ + 362 + ], + "Gretton,": [ + 363 + ], + "Kenji": [ + 365 + ], + "Fukumizu;": [ + 366 + ], + "Bert": [ + 367 + ], + "Kappen": [ + 368 + ], + "Marc": [ + 370 + ], + "Toussaint;": [ + 371 + ], + "Neil": [ + 372 + ], + "Lawrence;": [ + 373 + ], + "MartinWainwright;": [ + 374 + ], + "Ralf": [ + 375 + ], + "Herbrich": [ + 376 + ], + "Thore": [ + 378 + ], + "Graepel;": [ + 379 + ], + "Andreas": [ + 380 + ], + "Krause": [ + 381 + ], + "Carlos": [ + 383 + ], + "Guestrin;": [ + 384 + ], + "Shai": [ + 385 + ], + "Shalev-Shwartz": [ + 386 + ], + "Yoram": [ + 388 + ], + "Singer;": [ + 389 + ], + "Rob": [ + 390 + ], + "Fergus;": [ + 391 + ], + "Matthias": [ + 393 + ], + "Seeger.": [ + 394 + ], + "year": [ + 396 + ], + "our": [ + 397, + 462, + 465, + 476, + 523 + ], + "workshops": [ + 398, + 416 + ], + "organized": [ + 400 + ], + "jointly": [ + 401 + ], + "COLT": [ + 403 + ], + "UAI": [ + 405 + ], + "as": [ + 406 + ], + "part": [ + 407 + ], + "special": [ + 410 + ], + "overlap": [ + 411 + ], + "day,": [ + 412 + ], + "consisting": [ + 413 + ], + "eleven": [ + 415 + ], + "selected": [ + 417 + ], + "arranged": [ + 419 + ], + "collaboratively": [ + 420 + ], + "respective": [ + 423 + ], + "workshop": [ + 424 + ], + "chairs": [ + 425 + ], + "conferences.": [ + 429, + 455 + ], + "rich": [ + 434 + ], + "opportunity": [ + 435 + ], + "interaction": [ + 437 + ], + "among": [ + 438 + ], + "conferences.\r\n\r\nThis": [ + 443 + ], + "enlarged": [ + 446 + ], + "its": [ + 447 + ], + "award": [ + 448 + ], + "offerings": [ + 449 + ], + "match": [ + 451 + ], + "several": [ + 452 + ], + "other": [ + 453 + ], + "well-established": [ + 454 + ], + "hope": [ + 457 + ], + "these": [ + 458 + ], + "will": [ + 459 + ], + "help": [ + 460 + ], + "build": [ + 461 + ], + "community,": [ + 463 + ], + "celebrate": [ + 464 + ], + "advances,": [ + 466 + ], + "encourage": [ + 468 + ], + "applications": [ + 469 + ], + "long-term": [ + 471 + ], + "thinking.": [ + 472 + ], + "previously": [ + 477 + ], + "traditional": [ + 478 + ], + "Best": [ + 496 + ], + "Paper": [ + 480, + 484, + 493, + 497 + ], + "Student": [ + 483 + ], + "awards,": [ + 485 + ], + "we": [ + 486 + ], + "awards": [ + 489 + ], + "Application": [ + 492 + ], + "10-year": [ + 495 + ], + "(for": [ + 498 + ], + "best": [ + 500 + ], + "1998,": [ + 504 + ], + "optionally": [ + 505 + ], + "given": [ + 506 + ], + "conjunction": [ + 508 + ], + "conference).": [ + 512 + ], + "thank": [ + 514 + ], + "Journal": [ + 518 + ], + "sponsoring": [ + 520 + ], + "some": [ + 521 + ], + "awards.": [ + 525 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 1143 + }, + { + "year": 2023, + "cited_by_count": 870 + }, + { + "year": 2022, + "cited_by_count": 611 + }, + { + "year": 2021, + "cited_by_count": 497 + }, + { + "year": 2020, + "cited_by_count": 423 + }, + { + "year": 2019, + "cited_by_count": 289 + }, + { + "year": 2018, + "cited_by_count": 221 + }, + { + "year": 2017, + "cited_by_count": 220 + }, + { + "year": 2016, + "cited_by_count": 148 + }, + { + "year": 2015, + "cited_by_count": 122 + }, + { + "year": 2014, + "cited_by_count": 105 + }, + { + "year": 2013, + "cited_by_count": 109 + }, + { + "year": 2012, + "cited_by_count": 81 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2934399013", + "doi": "https://doi.org/10.1056/nejmra1814259", + "title": "Machine Learning in Medicine", + "display_name": "Machine Learning in Medicine", + "relevance_score": 4743.7256, + "publication_year": 2019, + "publication_date": "2019-04-03", + "ids": { + "openalex": "https://openalex.org/W2934399013", + "doi": "https://doi.org/10.1056/nejmra1814259", + "mag": "2934399013", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30943338" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1056/nejmra1814259", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmra1814259", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5022388476", + "display_name": "Alvin Rajkomar", + "orcid": "https://orcid.org/0000-0001-5750-5016" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Alvin Rajkomar", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Google, Mountain View, CA" + ], + "raw_orcid": "https://orcid.org/0000-0001-5750-5016", + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google, Mountain View, CA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043872671", + "display_name": "Jay B. Dean", + "orcid": "https://orcid.org/0000-0003-1362-0500" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jeffrey Dean", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Google, Mountain View, CA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google, Mountain View, CA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088509061", + "display_name": "Isaac S. Kohane", + "orcid": "https://orcid.org/0000-0003-2192-5160" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isaac Kohane", + "raw_affiliation_strings": [ + "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "Department of Biomedical Informatics, Harvard Medical School, Boston" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Google, Mountain View, CA (A.R., J.D.); and the Department of Biomedical Informatics, Harvard Medical School, Boston (I.K.)", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5022388476" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 204.0333, + "has_fulltext": false, + "cited_by_count": 3873, + "citation_normalized_percentile": { + "value": 0.99985435, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "380", + "issue": "14", + "first_page": "1347", + "last_page": "1358" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11636", + "display_name": "Artificial Intelligence in Healthcare and Education", + "score": 0.9979000091552734, + "subfield": { + "id": "https://openalex.org/subfields/2718", + "display_name": "Health Informatics" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T10350", + "display_name": "Electronic Health Records Systems", + "score": 0.9948999881744385, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/download", + "display_name": "Download", + "score": 0.6465957164764404 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.43065306544303894 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.39671552181243896 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.3796260952949524 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.37657836079597473 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.321466863155365 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.27166682481765747 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2780154274", + "wikidata": "https://www.wikidata.org/wiki/Q7126717", + "display_name": "Download", + "level": 2, + "score": 0.6465957164764404 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.43065306544303894 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.39671552181243896 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.3796260952949524 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.37657836079597473 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.321466863155365 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.27166682481765747 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003658", + "descriptor_name": "Decision Making, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008297", + "descriptor_name": "Male", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008490", + "descriptor_name": "Medical Informatics", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008545", + "descriptor_name": "Melanoma", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008875", + "descriptor_name": "Middle Aged", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D012878", + "descriptor_name": "Skin Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016347", + "descriptor_name": "Medical Records Systems, Computerized", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057188", + "descriptor_name": "Workflow", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1056/nejmra1814259", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmra1814259", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + { + "id": "pmid:30943338", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30943338", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The New England journal of medicine", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 78, + "referenced_works": [ + "https://openalex.org/W1524493166", + "https://openalex.org/W1529983430", + "https://openalex.org/W2005440935", + "https://openalex.org/W2009184733", + "https://openalex.org/W2009954208", + "https://openalex.org/W2027540165", + "https://openalex.org/W2033163059", + "https://openalex.org/W2033609349", + "https://openalex.org/W2043092953", + "https://openalex.org/W2054076956", + "https://openalex.org/W2083721602", + "https://openalex.org/W2096849439", + "https://openalex.org/W2103018059", + "https://openalex.org/W2103889389", + "https://openalex.org/W2119472226", + "https://openalex.org/W2137767404", + "https://openalex.org/W2147246123", + "https://openalex.org/W2166187912", + "https://openalex.org/W2167414941", + "https://openalex.org/W2174931596", + "https://openalex.org/W2267932926", + "https://openalex.org/W2276530525", + "https://openalex.org/W2337116044", + "https://openalex.org/W2415841860", + "https://openalex.org/W2468431774", + "https://openalex.org/W2512902140", + "https://openalex.org/W2515682654", + "https://openalex.org/W2528491735", + "https://openalex.org/W2530247697", + "https://openalex.org/W2548723212", + "https://openalex.org/W2557738935", + "https://openalex.org/W2581082771", + "https://openalex.org/W2598272139", + "https://openalex.org/W2732701910", + "https://openalex.org/W2734356183", + "https://openalex.org/W2738975713", + "https://openalex.org/W2740060821", + "https://openalex.org/W2752747624", + "https://openalex.org/W2753059860", + "https://openalex.org/W2754518417", + "https://openalex.org/W2758348074", + "https://openalex.org/W2762741128", + "https://openalex.org/W2772246530", + "https://openalex.org/W2772723798", + "https://openalex.org/W2782945064", + "https://openalex.org/W2784499877", + "https://openalex.org/W2785268987", + "https://openalex.org/W2785526886", + "https://openalex.org/W2788633781", + "https://openalex.org/W2789894922", + "https://openalex.org/W2790444357", + "https://openalex.org/W2791819448", + "https://openalex.org/W2792902933", + "https://openalex.org/W2793267369", + "https://openalex.org/W2794457162", + "https://openalex.org/W2799837895", + "https://openalex.org/W2804685074", + "https://openalex.org/W2809453031", + "https://openalex.org/W2886281300", + "https://openalex.org/W2887623535", + "https://openalex.org/W2887719255", + "https://openalex.org/W2888109941", + "https://openalex.org/W2889242407", + "https://openalex.org/W2889494558", + "https://openalex.org/W2894917609", + "https://openalex.org/W2896385413", + "https://openalex.org/W2896817483", + "https://openalex.org/W2897434820", + "https://openalex.org/W2899560923", + "https://openalex.org/W2902802452", + "https://openalex.org/W2908201961", + "https://openalex.org/W2914579361", + "https://openalex.org/W2916105049", + "https://openalex.org/W2919115771", + "https://openalex.org/W3098949126", + "https://openalex.org/W4205374244", + "https://openalex.org/W4212774754", + "https://openalex.org/W4296220420" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W4389568370", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W1489783725" + ], + "abstract_inverted_index": { + "Interview": [ + 0 + ], + "with": [ + 1, + 32 + ], + "Dr.": [ + 2 + ], + "Isaac": [ + 3 + ], + "Kohane": [ + 4 + ], + "on": [ + 5 + ], + "machine": [ + 6 + ], + "learning": [ + 7 + ], + "in": [ + 8 + ], + "medicine.": [ + 9 + ], + "(16:31)Download": [ + 10 + ], + "In": [ + 11 + ], + "this": [ + 12 + ], + "view": [ + 13 + ], + "of": [ + 14, + 17, + 28 + ], + "the": [ + 15, + 43 + ], + "future": [ + 16 + ], + "medicine,": [ + 18 + ], + "patient–provider": [ + 19 + ], + "interactions": [ + 20, + 31 + ], + "are": [ + 21, + 37 + ], + "informed": [ + 22 + ], + "and": [ + 23, + 39, + 47 + ], + "supported": [ + 24 + ], + "by": [ + 25 + ], + "massive": [ + 26 + ], + "amounts": [ + 27 + ], + "data": [ + 29, + 36 + ], + "from": [ + 30 + ], + "similar": [ + 33 + ], + "patients.": [ + 34 + ], + "These": [ + 35 + ], + "collected": [ + 38 + ], + "curated": [ + 40 + ], + "to": [ + 41 + ], + "provide": [ + 42 + ], + "latest": [ + 44 + ], + "evidence-based": [ + 45 + ], + "assessment": [ + 46 + ], + "recommendations.": [ + 48 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 438 + }, + { + "year": 2025, + "cited_by_count": 852 + }, + { + "year": 2024, + "cited_by_count": 636 + }, + { + "year": 2023, + "cited_by_count": 536 + }, + { + "year": 2022, + "cited_by_count": 465 + }, + { + "year": 2021, + "cited_by_count": 495 + }, + { + "year": 2020, + "cited_by_count": 354 + }, + { + "year": 2019, + "cited_by_count": 91 + }, + { + "year": 2018, + "cited_by_count": 2 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1485009520", + "doi": "https://doi.org/10.48550/arxiv.1506.04214", + "title": "Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting", + "display_name": "Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting", + "relevance_score": 4733.2676, + "publication_year": 2015, + "publication_date": "2015-06-13", + "ids": { + "openalex": "https://openalex.org/W1485009520", + "doi": "https://doi.org/10.48550/arxiv.1506.04214", + "mag": "1485009520" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1506.04214", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5091515481", + "display_name": "Xingjian Shi", + "orcid": "https://orcid.org/0000-0002-2700-7742" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": true, + "raw_author_name": "Shi, Xingjian", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018500051", + "display_name": "Zhourong Chen", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Chen, Zhourong", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100663938", + "display_name": "Hao Wang", + "orcid": "https://orcid.org/0000-0003-0090-2840" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Wang, Hao", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073139380", + "display_name": "Dit‐Yan Yeung", + "orcid": "https://orcid.org/0000-0003-3716-8125" + }, + "institutions": [ + { + "id": "https://openalex.org/I200769079", + "display_name": "Hong Kong University of Science and Technology", + "ror": "https://ror.org/00q4vv597", + "country_code": "HK", + "type": "education", + "lineage": [ + "https://openalex.org/I200769079" + ] + } + ], + "countries": [ + "HK" + ], + "is_corresponding": false, + "raw_author_name": "Yeung, Dit-Yan", + "raw_affiliation_strings": [ + "Department of Computer Science and Engineering Hong Kong University of Science and Technology" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science and Engineering Hong Kong University of Science and Technology", + "institution_ids": [ + "https://openalex.org/I200769079" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101899480", + "display_name": "Wai Kin Wong", + "orcid": "https://orcid.org/0000-0001-8724-0696" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210104672", + "display_name": "Hong Kong Observatory", + "ror": "https://ror.org/01bvxvq19", + "country_code": "CN", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210104672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Wong, Wai-kin", + "raw_affiliation_strings": [ + "Hong Kong Observatory Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong Observatory Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I4210104672" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5057734311", + "display_name": "Wang‐chun Woo", + "orcid": "https://orcid.org/0000-0001-5401-0333" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210104672", + "display_name": "Hong Kong Observatory", + "ror": "https://ror.org/01bvxvq19", + "country_code": "CN", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210104672" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Woo, Wang-chun", + "raw_affiliation_strings": [ + "Hong Kong Observatory Hong Kong, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hong Kong Observatory Hong Kong, China", + "institution_ids": [ + "https://openalex.org/I4210104672" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5091515481" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I200769079" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 6642, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10466", + "display_name": "Meteorological Phenomena and Simulations", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/1902", + "display_name": "Atmospheric Science" + }, + "field": { + "id": "https://openalex.org/fields/19", + "display_name": "Earth and Planetary Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10466", + "display_name": "Meteorological Phenomena and Simulations", + "score": 0.9984999895095825, + "subfield": { + "id": "https://openalex.org/subfields/1902", + "display_name": "Atmospheric Science" + }, + "field": { + "id": "https://openalex.org/fields/19", + "display_name": "Earth and Planetary Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11490", + "display_name": "Hydrological Forecasting Using AI", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10930", + "display_name": "Flood Risk Assessment and Management", + "score": 0.9973999857902527, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/nowcasting", + "display_name": "Nowcasting", + "score": 0.9966049790382385 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7099078297615051 + }, + { + "id": "https://openalex.org/keywords/convolutional-neural-network", + "display_name": "Convolutional neural network", + "score": 0.6329242587089539 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5754866600036621 + }, + { + "id": "https://openalex.org/keywords/precipitation", + "display_name": "Precipitation", + "score": 0.5342473387718201 + }, + { + "id": "https://openalex.org/keywords/state", + "display_name": "State (computer science)", + "score": 0.4683465361595154 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4540000259876251 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.4144560396671295 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.3392675518989563 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.20132499933242798 + }, + { + "id": "https://openalex.org/keywords/meteorology", + "display_name": "Meteorology", + "score": 0.17883428931236267 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.09717044234275818 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781013037", + "wikidata": "https://www.wikidata.org/wiki/Q1433331", + "display_name": "Nowcasting", + "level": 2, + "score": 0.9966049790382385 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7099078297615051 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.6329242587089539 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5754866600036621 + }, + { + "id": "https://openalex.org/C107054158", + "wikidata": "https://www.wikidata.org/wiki/Q25257", + "display_name": "Precipitation", + "level": 2, + "score": 0.5342473387718201 + }, + { + "id": "https://openalex.org/C48103436", + "wikidata": "https://www.wikidata.org/wiki/Q599031", + "display_name": "State (computer science)", + "level": 2, + "score": 0.4683465361595154 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4540000259876251 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.4144560396671295 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.3392675518989563 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.20132499933242798 + }, + { + "id": "https://openalex.org/C153294291", + "wikidata": "https://www.wikidata.org/wiki/Q25261", + "display_name": "Meteorology", + "level": 1, + "score": 0.17883428931236267 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.09717044234275818 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1506.04214", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1506.04214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1506.04214", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1506.04214", + "pdf_url": "https://arxiv.org/pdf/1506.04214", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Climate action", + "id": "https://metadata.un.org/sdg/13", + "score": 0.8500000238418579 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 27, + "referenced_works": [ + "https://openalex.org/W588441650", + "https://openalex.org/W962117656", + "https://openalex.org/W1514535095", + "https://openalex.org/W1568514080", + "https://openalex.org/W1606347560", + "https://openalex.org/W1810943226", + "https://openalex.org/W1815076433", + "https://openalex.org/W1867429401", + "https://openalex.org/W1903029394", + "https://openalex.org/W1905882502", + "https://openalex.org/W1947481528", + "https://openalex.org/W1982479097", + "https://openalex.org/W2024414272", + "https://openalex.org/W2030459037", + "https://openalex.org/W2064675550", + "https://openalex.org/W2079565659", + "https://openalex.org/W2116435618", + "https://openalex.org/W2130942839", + "https://openalex.org/W2157331557", + "https://openalex.org/W2557283755", + "https://openalex.org/W2787727108", + "https://openalex.org/W2950635152", + "https://openalex.org/W2951183276", + "https://openalex.org/W2952453038", + "https://openalex.org/W4233546237", + "https://openalex.org/W4294306266", + "https://openalex.org/W4308909683" + ], + "related_works": [ + "https://openalex.org/W2098567841", + "https://openalex.org/W3124209601", + "https://openalex.org/W2238969010", + "https://openalex.org/W2189249776", + "https://openalex.org/W1526105959", + "https://openalex.org/W3193710367", + "https://openalex.org/W3122492506", + "https://openalex.org/W4388046081", + "https://openalex.org/W1778290058", + "https://openalex.org/W1166616657" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 21 + ], + "precipitation": [ + 3, + 46, + 101, + 125 + ], + "nowcasting": [ + 4, + 47, + 102 + ], + "is": [ + 5 + ], + "to": [ + 6, + 73, + 93 + ], + "predict": [ + 7 + ], + "the": [ + 8, + 37, + 57, + 60, + 68, + 79, + 86, + 100, + 119 + ], + "future": [ + 9 + ], + "rainfall": [ + 10 + ], + "intensity": [ + 11 + ], + "in": [ + 12, + 54, + 77 + ], + "a": [ + 13, + 17, + 49 + ], + "local": [ + 14 + ], + "region": [ + 15 + ], + "over": [ + 16 + ], + "relatively": [ + 18 + ], + "short": [ + 19 + ], + "period": [ + 20 + ], + "time.": [ + 22 + ], + "Very": [ + 23 + ], + "few": [ + 24 + ], + "previous": [ + 25 + ], + "studies": [ + 26 + ], + "have": [ + 27, + 74 + ], + "examined": [ + 28 + ], + "this": [ + 29, + 42 + ], + "crucial": [ + 30 + ], + "and": [ + 31, + 59, + 81, + 90, + 114, + 118 + ], + "challenging": [ + 32 + ], + "weather": [ + 33 + ], + "forecasting": [ + 34, + 52 + ], + "problem": [ + 35, + 53 + ], + "from": [ + 36 + ], + "machine": [ + 38 + ], + "learning": [ + 39 + ], + "perspective.": [ + 40 + ], + "In": [ + 41 + ], + "paper,": [ + 43 + ], + "we": [ + 44, + 84 + ], + "formulate": [ + 45 + ], + "as": [ + 48 + ], + "spatiotemporal": [ + 50, + 64, + 111 + ], + "sequence": [ + 51 + ], + "which": [ + 55 + ], + "both": [ + 56, + 78 + ], + "input": [ + 58 + ], + "prediction": [ + 61 + ], + "target": [ + 62 + ], + "are": [ + 63 + ], + "sequences.": [ + 65 + ], + "By": [ + 66 + ], + "extending": [ + 67 + ], + "fully": [ + 69 + ], + "connected": [ + 70 + ], + "LSTM": [ + 71, + 88 + ], + "(FC-LSTM)": [ + 72 + ], + "convolutional": [ + 75, + 87 + ], + "structures": [ + 76 + ], + "input-to-state": [ + 80 + ], + "state-to-state": [ + 82 + ], + "transitions,": [ + 83 + ], + "propose": [ + 85 + ], + "(ConvLSTM)": [ + 89 + ], + "use": [ + 91 + ], + "it": [ + 92 + ], + "build": [ + 94 + ], + "an": [ + 95 + ], + "end-to-end": [ + 96 + ], + "trainable": [ + 97 + ], + "model": [ + 98 + ], + "for": [ + 99, + 124 + ], + "problem.": [ + 103 + ], + "Experiments": [ + 104 + ], + "show": [ + 105 + ], + "that": [ + 106 + ], + "our": [ + 107 + ], + "ConvLSTM": [ + 108 + ], + "network": [ + 109 + ], + "captures": [ + 110 + ], + "correlations": [ + 112 + ], + "better": [ + 113 + ], + "consistently": [ + 115 + ], + "outperforms": [ + 116 + ], + "FC-LSTM": [ + 117 + ], + "state-of-the-art": [ + 120 + ], + "operational": [ + 121 + ], + "ROVER": [ + 122 + ], + "algorithm": [ + 123 + ], + "nowcasting.": [ + 126 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 24 + }, + { + "year": 2025, + "cited_by_count": 513 + }, + { + "year": 2024, + "cited_by_count": 855 + }, + { + "year": 2023, + "cited_by_count": 1013 + }, + { + "year": 2022, + "cited_by_count": 1028 + }, + { + "year": 2021, + "cited_by_count": 1126 + }, + { + "year": 2020, + "cited_by_count": 926 + }, + { + "year": 2019, + "cited_by_count": 736 + }, + { + "year": 2018, + "cited_by_count": 294 + }, + { + "year": 2017, + "cited_by_count": 110 + }, + { + "year": 2016, + "cited_by_count": 15 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W114517082", + "doi": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "title": "Large-Scale Machine Learning with Stochastic Gradient Descent", + "display_name": "Large-Scale Machine Learning with Stochastic Gradient Descent", + "relevance_score": 4601.843, + "publication_year": 2010, + "publication_date": "2010-01-01", + "ids": { + "openalex": "https://openalex.org/W114517082", + "doi": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "mag": "114517082" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/978-3-7908-2604-3_16", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of COMPSTAT'2010", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5019206666", + "display_name": "Léon Bottou", + "orcid": "https://orcid.org/0000-0002-9894-8128" + }, + "institutions": [ + { + "id": "https://openalex.org/I20089843", + "display_name": "Princeton University", + "ror": "https://ror.org/00hx57361", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I20089843" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Léon Bottou", + "raw_affiliation_strings": [ + "NEC Labs America, Princeton, NJ, 08542, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "NEC Labs America, Princeton, NJ, 08542, USA", + "institution_ids": [ + "https://openalex.org/I20089843" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5019206666" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I20089843" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 33.3114, + "has_fulltext": false, + "cited_by_count": 5615, + "citation_normalized_percentile": { + "value": 0.99817643, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "177", + "last_page": "186" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.003100000089034438, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12101", + "display_name": "Advanced Bandit Algorithms Research", + "score": 0.0019000000320374966, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.8901551961898804 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6674743294715881 + }, + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.6642521619796753 + }, + { + "id": "https://openalex.org/keywords/stochastic-optimization", + "display_name": "Stochastic optimization", + "score": 0.610326886177063 + }, + { + "id": "https://openalex.org/keywords/gradient-descent", + "display_name": "Gradient descent", + "score": 0.5460410714149475 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5359654426574707 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.5075844526290894 + }, + { + "id": "https://openalex.org/keywords/context", + "display_name": "Context (archaeology)", + "score": 0.5021035671234131 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.44076448678970337 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43065375089645386 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.3568766713142395 + }, + { + "id": "https://openalex.org/keywords/mathematical-optimization", + "display_name": "Mathematical optimization", + "score": 0.3531373143196106 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3442344069480896 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.26637405157089233 + }, + { + "id": "https://openalex.org/keywords/active-learning", + "display_name": "Active learning (machine learning)", + "score": 0.11679795384407043 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.10637149214744568 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.8901551961898804 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6674743294715881 + }, + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.6642521619796753 + }, + { + "id": "https://openalex.org/C194387892", + "wikidata": "https://www.wikidata.org/wiki/Q1747770", + "display_name": "Stochastic optimization", + "level": 2, + "score": 0.610326886177063 + }, + { + "id": "https://openalex.org/C153258448", + "wikidata": "https://www.wikidata.org/wiki/Q1199743", + "display_name": "Gradient descent", + "level": 3, + "score": 0.5460410714149475 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5359654426574707 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.5075844526290894 + }, + { + "id": "https://openalex.org/C2779343474", + "wikidata": "https://www.wikidata.org/wiki/Q3109175", + "display_name": "Context (archaeology)", + "level": 2, + "score": 0.5021035671234131 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.44076448678970337 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43065375089645386 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.3568766713142395 + }, + { + "id": "https://openalex.org/C126255220", + "wikidata": "https://www.wikidata.org/wiki/Q141495", + "display_name": "Mathematical optimization", + "level": 1, + "score": 0.3531373143196106 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3442344069480896 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.26637405157089233 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.11679795384407043 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.10637149214744568 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C151730666", + "wikidata": "https://www.wikidata.org/wiki/Q7205", + "display_name": "Paleontology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1007/978-3-7908-2604-3_16", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1007/978-3-7908-2604-3_16", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of COMPSTAT'2010", + "raw_type": "book-chapter" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.419.462", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.419.462", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://leon.bottou.org/publications/pdf/compstat-2010.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W1505356468", + "https://openalex.org/W1535810436", + "https://openalex.org/W1629097610", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030811966", + "https://openalex.org/W2035720976", + "https://openalex.org/W2043919728", + "https://openalex.org/W2068484625", + "https://openalex.org/W2086161653", + "https://openalex.org/W2098921539", + "https://openalex.org/W2101159990", + "https://openalex.org/W2113651538", + "https://openalex.org/W2119821739", + "https://openalex.org/W2127218421", + "https://openalex.org/W2129191766", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137515395", + "https://openalex.org/W2147880316", + "https://openalex.org/W2150102617", + "https://openalex.org/W2154451187", + "https://openalex.org/W2322150470", + "https://openalex.org/W2416173357", + "https://openalex.org/W2766736793", + "https://openalex.org/W2990138404", + "https://openalex.org/W3207342693", + "https://openalex.org/W4238284510" + ], + "related_works": [ + "https://openalex.org/W2895097035", + "https://openalex.org/W4206903459", + "https://openalex.org/W2754816816", + "https://openalex.org/W4366280654", + "https://openalex.org/W4323366756", + "https://openalex.org/W4286899070", + "https://openalex.org/W4389775782", + "https://openalex.org/W4285259204", + "https://openalex.org/W3207830353", + "https://openalex.org/W114517082" + ], + "abstract_inverted_index": { + "During": [ + 0 + ], + "the": [ + 1, + 4, + 11, + 18, + 28, + 33, + 45, + 57, + 61, + 100 + ], + "last": [ + 2 + ], + "decade,": [ + 3 + ], + "data": [ + 5 + ], + "sizes": [ + 6 + ], + "have": [ + 7 + ], + "grown": [ + 8 + ], + "faster": [ + 9 + ], + "than": [ + 10, + 32 + ], + "speed": [ + 12 + ], + "of": [ + 13, + 20, + 47, + 60 + ], + "processors.": [ + 14 + ], + "In": [ + 15, + 82 + ], + "this": [ + 16 + ], + "context,": [ + 17 + ], + "capabilities": [ + 19 + ], + "statistical": [ + 21 + ], + "machine": [ + 22 + ], + "learning": [ + 23, + 51 + ], + "methods": [ + 24 + ], + "is": [ + 25 + ], + "limited": [ + 26 + ], + "by": [ + 27 + ], + "computing": [ + 29 + ], + "time": [ + 30 + ], + "rather": [ + 31 + ], + "sample": [ + 34 + ], + "size.": [ + 35 + ], + "A": [ + 36 + ], + "more": [ + 37 + ], + "precise": [ + 38 + ], + "analysis": [ + 39 + ], + "uncovers": [ + 40 + ], + "qualitatively": [ + 41 + ], + "different": [ + 42 + ], + "tradeoffs": [ + 43 + ], + "for": [ + 44, + 79 + ], + "case": [ + 46, + 55 + ], + "small-scale": [ + 48 + ], + "and": [ + 49, + 88 + ], + "large-scale": [ + 50, + 54, + 80 + ], + "problems.": [ + 52, + 81 + ], + "The": [ + 53 + ], + "involves": [ + 56 + ], + "computational": [ + 58 + ], + "complexity": [ + 59 + ], + "underlying": [ + 62 + ], + "optimization": [ + 63, + 69 + ], + "algorithm": [ + 64 + ], + "in": [ + 65 + ], + "non-trivial": [ + 66 + ], + "ways.": [ + 67 + ], + "Unlikely": [ + 68 + ], + "algorithms": [ + 70 + ], + "such": [ + 71 + ], + "as": [ + 72 + ], + "stochastic": [ + 73, + 86, + 90 + ], + "gradient": [ + 74, + 87, + 91 + ], + "descent": [ + 75 + ], + "show": [ + 76 + ], + "amazing": [ + 77 + ], + "performance": [ + 78 + ], + "particular,": [ + 83 + ], + "second": [ + 84 + ], + "order": [ + 85 + ], + "averaged": [ + 89 + ], + "are": [ + 92 + ], + "asymptotically": [ + 93 + ], + "efficient": [ + 94 + ], + "after": [ + 95 + ], + "a": [ + 96 + ], + "single": [ + 97 + ], + "pass": [ + 98 + ], + "on": [ + 99 + ], + "training": [ + 101 + ], + "set.": [ + 102 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 79 + }, + { + "year": 2025, + "cited_by_count": 338 + }, + { + "year": 2024, + "cited_by_count": 343 + }, + { + "year": 2023, + "cited_by_count": 392 + }, + { + "year": 2022, + "cited_by_count": 436 + }, + { + "year": 2021, + "cited_by_count": 796 + }, + { + "year": 2020, + "cited_by_count": 903 + }, + { + "year": 2019, + "cited_by_count": 787 + }, + { + "year": 2018, + "cited_by_count": 515 + }, + { + "year": 2017, + "cited_by_count": 392 + }, + { + "year": 2016, + "cited_by_count": 254 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 107 + }, + { + "year": 2013, + "cited_by_count": 66 + }, + { + "year": 2012, + "cited_by_count": 40 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2619383789", + "doi": "https://doi.org/10.1109/tpami.2018.2798607", + "title": "Multimodal Machine Learning: A Survey and Taxonomy", + "display_name": "Multimodal Machine Learning: A Survey and Taxonomy", + "relevance_score": 4482.5703, + "publication_year": 2018, + "publication_date": "2018-01-25", + "ids": { + "openalex": "https://openalex.org/W2619383789", + "doi": "https://doi.org/10.1109/tpami.2018.2798607", + "mag": "2619383789", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29994351" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tpami.2018.2798607", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2018.2798607", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058610902", + "display_name": "Tadas Baltrušaitis", + "orcid": "https://orcid.org/0000-0001-7923-8780" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210164937", + "display_name": "Microsoft Research (United Kingdom)", + "ror": "https://ror.org/05k87vq12", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253", + "https://openalex.org/I4210164937" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Tadas Baltrusaitis", + "raw_affiliation_strings": [ + "Microsoft Corporation, Cambridge, United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0001-7923-8780", + "affiliations": [ + { + "raw_affiliation_string": "Microsoft Corporation, Cambridge, United Kingdom", + "institution_ids": [ + "https://openalex.org/I4210164937" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050602513", + "display_name": "Chaitanya Ahuja", + "orcid": "https://orcid.org/0000-0003-4396-2050" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chaitanya Ahuja", + "raw_affiliation_strings": [ + "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA" + ], + "raw_orcid": "https://orcid.org/0000-0003-4396-2050", + "affiliations": [ + { + "raw_affiliation_string": "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5081398601", + "display_name": "Louis–Philippe Morency", + "orcid": "https://orcid.org/0000-0001-6376-7696" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Louis-Philippe Morency", + "raw_affiliation_strings": [ + "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA" + ], + "raw_orcid": "https://orcid.org/0000-0001-6376-7696", + "affiliations": [ + { + "raw_affiliation_string": "Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5058610902" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210164937" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 162.1177, + "has_fulltext": false, + "cited_by_count": 4129, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "41", + "issue": "2", + "first_page": "423", + "last_page": "443" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11309", + "display_name": "Music and Audio Processing", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11309", + "display_name": "Music and Audio Processing", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13083", + "display_name": "Advanced Text Analysis Techniques", + "score": 0.9890000224113464, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11667", + "display_name": "Advanced Chemical Sensor Technologies", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/2204", + "display_name": "Biomedical Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/multimodal-learning", + "display_name": "Multimodal learning", + "score": 0.7634491920471191 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6933263540267944 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.644882082939148 + }, + { + "id": "https://openalex.org/keywords/modalities", + "display_name": "Modalities", + "score": 0.6390953063964844 + }, + { + "id": "https://openalex.org/keywords/taxonomy", + "display_name": "Taxonomy (biology)", + "score": 0.6077015399932861 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.5977133512496948 + }, + { + "id": "https://openalex.org/keywords/multimodality", + "display_name": "Multimodality", + "score": 0.4987671375274658 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.45902901887893677 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.42995545268058777 + }, + { + "id": "https://openalex.org/keywords/human–computer-interaction", + "display_name": "Human–computer interaction", + "score": 0.35926470160484314 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.08981871604919434 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2780660688", + "wikidata": "https://www.wikidata.org/wiki/Q25052564", + "display_name": "Multimodal learning", + "level": 2, + "score": 0.7634491920471191 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6933263540267944 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.644882082939148 + }, + { + "id": "https://openalex.org/C2779903281", + "wikidata": "https://www.wikidata.org/wiki/Q6888026", + "display_name": "Modalities", + "level": 2, + "score": 0.6390953063964844 + }, + { + "id": "https://openalex.org/C58642233", + "wikidata": "https://www.wikidata.org/wiki/Q8269924", + "display_name": "Taxonomy (biology)", + "level": 2, + "score": 0.6077015399932861 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.5977133512496948 + }, + { + "id": "https://openalex.org/C2780910867", + "wikidata": "https://www.wikidata.org/wiki/Q1952416", + "display_name": "Multimodality", + "level": 2, + "score": 0.4987671375274658 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.45902901887893677 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.42995545268058777 + }, + { + "id": "https://openalex.org/C107457646", + "wikidata": "https://www.wikidata.org/wiki/Q207434", + "display_name": "Human–computer interaction", + "level": 1, + "score": 0.35926470160484314 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.08981871604919434 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C36289849", + "wikidata": "https://www.wikidata.org/wiki/Q34749", + "display_name": "Social science", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/tpami.2018.2798607", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2018.2798607", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + { + "id": "pmid:29994351", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29994351", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE transactions on pattern analysis and machine intelligence", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 369, + "referenced_works": [ + "https://openalex.org/W8316075", + "https://openalex.org/W21006490", + "https://openalex.org/W22229905", + "https://openalex.org/W59175527", + "https://openalex.org/W68733909", + "https://openalex.org/W129606432", + "https://openalex.org/W155596317", + "https://openalex.org/W189596042", + "https://openalex.org/W199018803", + "https://openalex.org/W262578090", + "https://openalex.org/W854541894", + "https://openalex.org/W877909479", + "https://openalex.org/W956551720", + "https://openalex.org/W1123427201", + "https://openalex.org/W1480583224", + "https://openalex.org/W1481820510", + "https://openalex.org/W1488163396", + "https://openalex.org/W1503933356", + "https://openalex.org/W1514535095", + "https://openalex.org/W1522301498", + "https://openalex.org/W1523385540", + "https://openalex.org/W1527575280", + "https://openalex.org/W1528056001", + "https://openalex.org/W1533861849", + "https://openalex.org/W1540429825", + "https://openalex.org/W1555767263", + "https://openalex.org/W1566289585", + "https://openalex.org/W1572567476", + "https://openalex.org/W1573040851", + "https://openalex.org/W1586939924", + "https://openalex.org/W1601567445", + "https://openalex.org/W1628307106", + "https://openalex.org/W1651753422", + "https://openalex.org/W1664311846", + "https://openalex.org/W1686810756", + "https://openalex.org/W1687846465", + "https://openalex.org/W1753482797", + "https://openalex.org/W1762503104", + "https://openalex.org/W1766290689", + "https://openalex.org/W1773149199", + "https://openalex.org/W1811254738", + "https://openalex.org/W1822526425", + "https://openalex.org/W1828348983", + "https://openalex.org/W1836465849", + "https://openalex.org/W1858383477", + "https://openalex.org/W1870428314", + "https://openalex.org/W1872883209", + "https://openalex.org/W1883346539", + "https://openalex.org/W1889038981", + "https://openalex.org/W1889081078", + "https://openalex.org/W1893116441", + "https://openalex.org/W1895577753", + "https://openalex.org/W1897761818", + "https://openalex.org/W1905882502", + "https://openalex.org/W1906515132", + "https://openalex.org/W1922557984", + "https://openalex.org/W1931795219", + "https://openalex.org/W1933065844", + "https://openalex.org/W1933349210", + "https://openalex.org/W1956340063", + "https://openalex.org/W1963540633", + "https://openalex.org/W1964073652", + "https://openalex.org/W1966811077", + "https://openalex.org/W1969616664", + "https://openalex.org/W1970055505", + "https://openalex.org/W1971791733", + "https://openalex.org/W1976066595", + "https://openalex.org/W1977547683", + "https://openalex.org/W1985867508", + "https://openalex.org/W1986451414", + "https://openalex.org/W1987835821", + "https://openalex.org/W1996418862", + "https://openalex.org/W1996478295", + "https://openalex.org/W2000911139", + "https://openalex.org/W2003333103", + "https://openalex.org/W2006969979", + "https://openalex.org/W2009059481", + "https://openalex.org/W2012237712", + "https://openalex.org/W2015394094", + "https://openalex.org/W2015412875", + "https://openalex.org/W2019024625", + "https://openalex.org/W2022799064", + "https://openalex.org/W2025341678", + "https://openalex.org/W2025638820", + "https://openalex.org/W2026012689", + "https://openalex.org/W2026243162", + "https://openalex.org/W2038698865", + "https://openalex.org/W2041288440", + "https://openalex.org/W2042608483", + "https://openalex.org/W2048343491", + "https://openalex.org/W2048679005", + "https://openalex.org/W2051721233", + "https://openalex.org/W2053101950", + "https://openalex.org/W2057568625", + "https://openalex.org/W2058616948", + "https://openalex.org/W2061781940", + "https://openalex.org/W2062632672", + "https://openalex.org/W2062955551", + "https://openalex.org/W2063036810", + "https://openalex.org/W2063330527", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066667210", + "https://openalex.org/W2068676460", + "https://openalex.org/W2069682406", + "https://openalex.org/W2077395415", + "https://openalex.org/W2080576537", + "https://openalex.org/W2083885588", + "https://openalex.org/W2090048052", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096391593", + "https://openalex.org/W2098411764", + "https://openalex.org/W2098562545", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100235303", + "https://openalex.org/W2100561338", + "https://openalex.org/W2101105183", + "https://openalex.org/W2101534792", + "https://openalex.org/W2102765684", + "https://openalex.org/W2105103432", + "https://openalex.org/W2106277773", + "https://openalex.org/W2108710284", + "https://openalex.org/W2109586012", + "https://openalex.org/W2109743529", + "https://openalex.org/W2111078031", + "https://openalex.org/W2111645492", + "https://openalex.org/W2112019442", + "https://openalex.org/W2112184938", + "https://openalex.org/W2112912048", + "https://openalex.org/W2113507809", + "https://openalex.org/W2118714046", + "https://openalex.org/W2119288237", + "https://openalex.org/W2120776756", + "https://openalex.org/W2123024445", + "https://openalex.org/W2124033848", + "https://openalex.org/W2124372976", + "https://openalex.org/W2125336414", + "https://openalex.org/W2125366733", + "https://openalex.org/W2126598020", + "https://openalex.org/W2128856065", + "https://openalex.org/W2129142580", + "https://openalex.org/W2129360799", + "https://openalex.org/W2129382193", + "https://openalex.org/W2130055251", + "https://openalex.org/W2130162821", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131179926", + "https://openalex.org/W2133459682", + "https://openalex.org/W2133564696", + "https://openalex.org/W2135776491", + "https://openalex.org/W2136922672", + "https://openalex.org/W2136985729", + "https://openalex.org/W2137735870", + "https://openalex.org/W2137806537", + "https://openalex.org/W2141477623", + "https://openalex.org/W2142192571", + "https://openalex.org/W2142900973", + "https://openalex.org/W2143449221", + "https://openalex.org/W2143492886", + "https://openalex.org/W2143612262", + "https://openalex.org/W2143926884", + "https://openalex.org/W2145056192", + "https://openalex.org/W2147880316", + "https://openalex.org/W2147885303", + "https://openalex.org/W2148298736", + "https://openalex.org/W2149172860", + "https://openalex.org/W2149557440", + "https://openalex.org/W2149940198", + "https://openalex.org/W2150295085", + "https://openalex.org/W2150658333", + "https://openalex.org/W2150696241", + "https://openalex.org/W2150824314", + "https://openalex.org/W2151096985", + "https://openalex.org/W2151103935", + "https://openalex.org/W2152239535", + "https://openalex.org/W2153579005", + "https://openalex.org/W2153927146", + "https://openalex.org/W2156303437", + "https://openalex.org/W2156503193", + "https://openalex.org/W2159973364", + "https://openalex.org/W2160815625", + "https://openalex.org/W2163108352", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2164186291", + "https://openalex.org/W2164450870", + "https://openalex.org/W2164587673", + "https://openalex.org/W2164699598", + "https://openalex.org/W2167103782", + "https://openalex.org/W2173180041", + "https://openalex.org/W2180844455", + "https://openalex.org/W2181691731", + "https://openalex.org/W2184045248", + "https://openalex.org/W2184188583", + "https://openalex.org/W2185175083", + "https://openalex.org/W2201007611", + "https://openalex.org/W2203543769", + "https://openalex.org/W2220981600", + "https://openalex.org/W2250742840", + "https://openalex.org/W2250842428", + "https://openalex.org/W2251353663", + "https://openalex.org/W2251394420", + "https://openalex.org/W2251885125", + "https://openalex.org/W2251970440", + "https://openalex.org/W2252122141", + "https://openalex.org/W2252238675", + "https://openalex.org/W2266728343", + "https://openalex.org/W2267126114", + "https://openalex.org/W2282219577", + "https://openalex.org/W2291822808", + "https://openalex.org/W2293453011", + "https://openalex.org/W2294797155", + "https://openalex.org/W2296613712", + "https://openalex.org/W2316138215", + "https://openalex.org/W2327501763", + "https://openalex.org/W2342662179", + "https://openalex.org/W2388114291", + "https://openalex.org/W2397159106", + "https://openalex.org/W2399507222", + "https://openalex.org/W2399733683", + "https://openalex.org/W2402955625", + "https://openalex.org/W2405756170", + "https://openalex.org/W2411037331", + "https://openalex.org/W2418349398", + "https://openalex.org/W2434537049", + "https://openalex.org/W2462496837", + "https://openalex.org/W2470413457", + "https://openalex.org/W2489434015", + "https://openalex.org/W2494980014", + "https://openalex.org/W2519091744", + "https://openalex.org/W2519656895", + "https://openalex.org/W2520160253", + "https://openalex.org/W2546919788", + "https://openalex.org/W2557865186", + "https://openalex.org/W2579317665", + "https://openalex.org/W2914699769", + "https://openalex.org/W2949465329", + "https://openalex.org/W2953318193", + "https://openalex.org/W2962706528", + "https://openalex.org/W2962756039", + "https://openalex.org/W2962835968", + "https://openalex.org/W2963082528", + "https://openalex.org/W2963109634", + "https://openalex.org/W2963143316", + "https://openalex.org/W2963192057", + "https://openalex.org/W2963260436", + "https://openalex.org/W2963324994", + "https://openalex.org/W2963383024", + "https://openalex.org/W2963389687", + "https://openalex.org/W2963410018", + "https://openalex.org/W2963576560", + "https://openalex.org/W2963579811", + "https://openalex.org/W2963605190", + "https://openalex.org/W2963656855", + "https://openalex.org/W2963735856", + "https://openalex.org/W2963811219", + "https://openalex.org/W2963899908", + "https://openalex.org/W2963954913", + "https://openalex.org/W2964040984", + "https://openalex.org/W2964118342", + "https://openalex.org/W2964121744", + "https://openalex.org/W2964217371", + "https://openalex.org/W2964241990", + "https://openalex.org/W2964308564", + "https://openalex.org/W2964345931", + "https://openalex.org/W3000384245", + "https://openalex.org/W3023993913", + "https://openalex.org/W3087871082", + "https://openalex.org/W3125032682", + "https://openalex.org/W4211232216", + "https://openalex.org/W4212844288", + "https://openalex.org/W4240592325", + "https://openalex.org/W4244018879", + "https://openalex.org/W4245655784", + "https://openalex.org/W4252331534", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293665662", + "https://openalex.org/W4294170691", + "https://openalex.org/W4297813007", + "https://openalex.org/W4299801216", + "https://openalex.org/W4302613066", + "https://openalex.org/W4320013936", + "https://openalex.org/W6600334730", + "https://openalex.org/W6600827882", + "https://openalex.org/W6605295763", + "https://openalex.org/W6606244218", + "https://openalex.org/W6606327593", + "https://openalex.org/W6607775107", + "https://openalex.org/W6608183366", + "https://openalex.org/W6623517193", + "https://openalex.org/W6623995992", + "https://openalex.org/W6625044600", + "https://openalex.org/W6628794645", + "https://openalex.org/W6629203210", + "https://openalex.org/W6630875275", + "https://openalex.org/W6631190155", + "https://openalex.org/W6631216910", + "https://openalex.org/W6631516269", + "https://openalex.org/W6631943919", + "https://openalex.org/W6634126550", + "https://openalex.org/W6636447180", + "https://openalex.org/W6636942303", + "https://openalex.org/W6637306801", + "https://openalex.org/W6637373629", + "https://openalex.org/W6637698695", + "https://openalex.org/W6637971603", + "https://openalex.org/W6637989529", + "https://openalex.org/W6638549007", + "https://openalex.org/W6638667902", + "https://openalex.org/W6638742206", + "https://openalex.org/W6639103823", + "https://openalex.org/W6639118148", + "https://openalex.org/W6639283537", + "https://openalex.org/W6639358663", + "https://openalex.org/W6639432524", + "https://openalex.org/W6639434097", + "https://openalex.org/W6640257717", + "https://openalex.org/W6640296258", + "https://openalex.org/W6640764460", + "https://openalex.org/W6650605322", + "https://openalex.org/W6652311901", + "https://openalex.org/W6674330103", + "https://openalex.org/W6675048546", + "https://openalex.org/W6676380891", + "https://openalex.org/W6676497082", + "https://openalex.org/W6676647902", + "https://openalex.org/W6676709516", + "https://openalex.org/W6678360021", + "https://openalex.org/W6678470764", + "https://openalex.org/W6678809451", + "https://openalex.org/W6679434410", + "https://openalex.org/W6679436768", + "https://openalex.org/W6680094886", + "https://openalex.org/W6680336390", + "https://openalex.org/W6681184217", + "https://openalex.org/W6682082992", + "https://openalex.org/W6682086108", + "https://openalex.org/W6682222085", + "https://openalex.org/W6682511423", + "https://openalex.org/W6682691769", + "https://openalex.org/W6682864246", + "https://openalex.org/W6683074461", + "https://openalex.org/W6683167905", + "https://openalex.org/W6683277684", + "https://openalex.org/W6684191040", + "https://openalex.org/W6684209796", + "https://openalex.org/W6685183736", + "https://openalex.org/W6685527872", + "https://openalex.org/W6686207219", + "https://openalex.org/W6687543112", + "https://openalex.org/W6687672932", + "https://openalex.org/W6688143368", + "https://openalex.org/W6691419566", + "https://openalex.org/W6691647468", + "https://openalex.org/W6692004142", + "https://openalex.org/W6696843773", + "https://openalex.org/W6697449767", + "https://openalex.org/W6712426025", + "https://openalex.org/W6712802073", + "https://openalex.org/W6713645886", + "https://openalex.org/W6717487601", + "https://openalex.org/W6726977916", + "https://openalex.org/W6727336983", + "https://openalex.org/W6729831399", + "https://openalex.org/W6730042849", + "https://openalex.org/W6730666313", + "https://openalex.org/W6732843983", + "https://openalex.org/W6845679800", + "https://openalex.org/W6898505805", + "https://openalex.org/W7011438494" + ], + "related_works": [ + "https://openalex.org/W4319049579", + "https://openalex.org/W2791907740", + "https://openalex.org/W2135449968", + "https://openalex.org/W2739856905", + "https://openalex.org/W1508553398", + "https://openalex.org/W2170966221", + "https://openalex.org/W1594974701", + "https://openalex.org/W4287761641", + "https://openalex.org/W3034009428", + "https://openalex.org/W2116664529" + ], + "abstract_inverted_index": { + "Our": [ + 0 + ], + "experience": [ + 1 + ], + "of": [ + 2, + 93, + 101, + 164 + ], + "the": [ + 3, + 23, + 56, + 110, + 128, + 162, + 165 + ], + "world": [ + 4, + 57 + ], + "is": [ + 5, + 30, + 36, + 88 + ], + "multimodal": [ + 6, + 39, + 68, + 105, + 114, + 143 + ], + "-": [ + 7 + ], + "we": [ + 8 + ], + "see": [ + 9 + ], + "objects,": [ + 10 + ], + "hear": [ + 11 + ], + "sounds,": [ + 12 + ], + "feel": [ + 13 + ], + "texture,": [ + 14 + ], + "smell": [ + 15 + ], + "odors,": [ + 16 + ], + "and": [ + 17, + 32, + 81, + 96, + 118, + 131, + 135, + 151, + 167 + ], + "taste": [ + 18 + ], + "flavors.": [ + 19 + ], + "Modality": [ + 20 + ], + "refers": [ + 21 + ], + "to": [ + 22, + 51, + 62, + 65, + 75, + 159 + ], + "way": [ + 24 + ], + "in": [ + 25, + 54, + 113, + 121 + ], + "which": [ + 26 + ], + "something": [ + 27 + ], + "happens": [ + 28 + ], + "or": [ + 29 + ], + "experienced": [ + 31 + ], + "a": [ + 33, + 89, + 122 + ], + "research": [ + 34 + ], + "problem": [ + 35 + ], + "characterized": [ + 37 + ], + "as": [ + 38 + ], + "when": [ + 40 + ], + "it": [ + 41, + 60 + ], + "includes": [ + 42 + ], + "multiple": [ + 43, + 85 + ], + "such": [ + 44, + 67 + ], + "modalities.": [ + 45, + 86 + ], + "In": [ + 46 + ], + "order": [ + 47 + ], + "for": [ + 48, + 170 + ], + "Artificial": [ + 49 + ], + "Intelligence": [ + 50 + ], + "make": [ + 52 + ], + "progress": [ + 53 + ], + "understanding": [ + 55 + ], + "around": [ + 58 + ], + "us,": [ + 59 + ], + "needs": [ + 61 + ], + "be": [ + 63 + ], + "able": [ + 64 + ], + "interpret": [ + 66 + ], + "signals": [ + 69 + ], + "together.": [ + 70 + ], + "Multimodal": [ + 71 + ], + "machine": [ + 72, + 115, + 144 + ], + "learning": [ + 73, + 116 + ], + "aims": [ + 74 + ], + "build": [ + 76 + ], + "models": [ + 77 + ], + "that": [ + 78, + 139 + ], + "can": [ + 79 + ], + "process": [ + 80 + ], + "relate": [ + 82 + ], + "information": [ + 83 + ], + "from": [ + 84 + ], + "It": [ + 87 + ], + "vibrant": [ + 90 + ], + "multi-disciplinary": [ + 91 + ], + "field": [ + 92, + 166 + ], + "increasing": [ + 94 + ], + "importance": [ + 95 + ], + "with": [ + 97 + ], + "extraordinary": [ + 98 + ], + "potential.": [ + 99 + ], + "Instead": [ + 100 + ], + "focusing": [ + 102 + ], + "on": [ + 103 + ], + "specific": [ + 104 + ], + "applications,": [ + 106 + ], + "this": [ + 107 + ], + "paper": [ + 108 + ], + "surveys": [ + 109 + ], + "recent": [ + 111 + ], + "advances": [ + 112 + ], + "itself": [ + 117 + ], + "presents": [ + 119 + ], + "them": [ + 120 + ], + "common": [ + 123 + ], + "taxonomy.": [ + 124 + ], + "We": [ + 125 + ], + "go": [ + 126 + ], + "beyond": [ + 127 + ], + "typical": [ + 129 + ], + "early": [ + 130 + ], + "late": [ + 132 + ], + "fusion": [ + 133 + ], + "categorization": [ + 134 + ], + "identify": [ + 136, + 168 + ], + "broader": [ + 137 + ], + "challenges": [ + 138 + ], + "are": [ + 140 + ], + "faced": [ + 141 + ], + "by": [ + 142 + ], + "learning,": [ + 145 + ], + "namely:": [ + 146 + ], + "representation,": [ + 147 + ], + "translation,": [ + 148 + ], + "alignment,": [ + 149 + ], + "fusion,": [ + 150 + ], + "co-learning.": [ + 152 + ], + "This": [ + 153 + ], + "new": [ + 154 + ], + "taxonomy": [ + 155 + ], + "will": [ + 156 + ], + "enable": [ + 157 + ], + "researchers": [ + 158 + ], + "better": [ + 160 + ], + "understand": [ + 161 + ], + "state": [ + 163 + ], + "directions": [ + 169 + ], + "future": [ + 171 + ], + "research.": [ + 172 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 418 + }, + { + "year": 2025, + "cited_by_count": 971 + }, + { + "year": 2024, + "cited_by_count": 697 + }, + { + "year": 2023, + "cited_by_count": 590 + }, + { + "year": 2022, + "cited_by_count": 477 + }, + { + "year": 2021, + "cited_by_count": 383 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 194 + }, + { + "year": 2018, + "cited_by_count": 63 + }, + { + "year": 2017, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2177870565", + "doi": "https://doi.org/10.1161/circulationaha.115.001593", + "title": "Machine Learning in Medicine", + "display_name": "Machine Learning in Medicine", + "relevance_score": 4470.496, + "publication_year": 2015, + "publication_date": "2015-11-16", + "ids": { + "openalex": "https://openalex.org/W2177870565", + "doi": "https://doi.org/10.1161/circulationaha.115.001593", + "mag": "2177870565", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/26572668" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1161/circulationaha.115.001593", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1161/circulationaha.115.001593", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S116251202", + "display_name": "Circulation", + "issn_l": "0009-7322", + "issn": [ + "0009-7322", + "1524-4539" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315671", + "host_organization_name": "Lippincott Williams & Wilkins", + "host_organization_lineage": [ + "https://openalex.org/P4310315671", + "https://openalex.org/P4310318547" + ], + "host_organization_lineage_names": [ + "Lippincott Williams & Wilkins", + "Wolters Kluwer" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5026141445", + "display_name": "Rahul C. Deo", + "orcid": "https://orcid.org/0000-0002-2791-9434" + }, + "institutions": [ + { + "id": "https://openalex.org/I103922791", + "display_name": "QB3", + "ror": "https://ror.org/04n1n3n22", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I103922791", + "https://openalex.org/I180670191", + "https://openalex.org/I185103710", + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Rahul C. Deo", + "raw_affiliation_strings": [ + "From Cardiovascular Research Institute, Department of Medicine and Institute for Human Genetics, University of California, San Francisco, and California Institute for Quantitative Biosciences, San Francisco" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From Cardiovascular Research Institute, Department of Medicine and Institute for Human Genetics, University of California, San Francisco, and California Institute for Quantitative Biosciences, San Francisco", + "institution_ids": [ + "https://openalex.org/I103922791" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5026141445" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I103922791" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 79.7031, + "has_fulltext": false, + "cited_by_count": 3391, + "citation_normalized_percentile": { + "value": 0.99935472, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "132", + "issue": "20", + "first_page": "1920", + "last_page": "1930" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9980000257492065, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11021", + "display_name": "ECG Monitoring and Analysis", + "score": 0.9660999774932861, + "subfield": { + "id": "https://openalex.org/subfields/2705", + "display_name": "Cardiology and Cardiovascular Medicine" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9575999975204468, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.9206037521362305 + }, + { + "id": "https://openalex.org/keywords/medical-physics", + "display_name": "Medical physics", + "score": 0.36205965280532837 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.35273855924606323 + }, + { + "id": "https://openalex.org/keywords/intensive-care-medicine", + "display_name": "Intensive care medicine", + "score": 0.32538071274757385 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.9206037521362305 + }, + { + "id": "https://openalex.org/C19527891", + "wikidata": "https://www.wikidata.org/wiki/Q1120908", + "display_name": "Medical physics", + "level": 1, + "score": 0.36205965280532837 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.35273855924606323 + }, + { + "id": "https://openalex.org/C177713679", + "wikidata": "https://www.wikidata.org/wiki/Q679690", + "display_name": "Intensive care medicine", + "level": 1, + "score": 0.32538071274757385 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + }, + { + "descriptor_ui": "D008511", + "descriptor_name": "Medicine", + "qualifier_ui": "Q000639", + "qualifier_name": "trends", + "is_major_topic": false + } + ], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1161/circulationaha.115.001593", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1161/circulationaha.115.001593", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S116251202", + "display_name": "Circulation", + "issn_l": "0009-7322", + "issn": [ + "0009-7322", + "1524-4539" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315671", + "host_organization_name": "Lippincott Williams & Wilkins", + "host_organization_lineage": [ + "https://openalex.org/P4310315671", + "https://openalex.org/P4310318547" + ], + "host_organization_lineage_names": [ + "Lippincott Williams & Wilkins", + "Wolters Kluwer" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": "journal-article" + }, + { + "id": "pmid:26572668", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/26572668", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Circulation", + "raw_type": null + }, + { + "id": "pmh:oai:escholarship.org:ark:/13030/qt3jv2494f", + "is_oa": false, + "landing_page_url": "https://escholarship.org/uc/item/3jv2494f", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation, vol 132, iss 20", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5831252", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "pmh:oai:pubmedcentral.nih.gov:5831252", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5831252", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Circulation", + "raw_type": "Text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320332161", + "display_name": "National Institutes of Health", + "ror": "https://ror.org/01cwqze88" + }, + { + "id": "https://openalex.org/F4320332622", + "display_name": "University of California, San Francisco", + "ror": "https://ror.org/043mz5j54" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 47, + "referenced_works": [ + "https://openalex.org/W40442397", + "https://openalex.org/W1480376833", + "https://openalex.org/W1678356000", + "https://openalex.org/W1808991731", + "https://openalex.org/W1902027874", + "https://openalex.org/W1976196376", + "https://openalex.org/W2011999110", + "https://openalex.org/W2021701428", + "https://openalex.org/W2029243817", + "https://openalex.org/W2052825782", + "https://openalex.org/W2072128103", + "https://openalex.org/W2073751243", + "https://openalex.org/W2105464873", + "https://openalex.org/W2106665921", + "https://openalex.org/W2110243528", + "https://openalex.org/W2112289645", + "https://openalex.org/W2112592817", + "https://openalex.org/W2113606819", + "https://openalex.org/W2116802246", + "https://openalex.org/W2119361626", + "https://openalex.org/W2120480077", + "https://openalex.org/W2121495423", + "https://openalex.org/W2122111042", + "https://openalex.org/W2127482775", + "https://openalex.org/W2135046866", + "https://openalex.org/W2139212933", + "https://openalex.org/W2147461734", + "https://openalex.org/W2149298154", + "https://openalex.org/W2152072062", + "https://openalex.org/W2158927033", + "https://openalex.org/W2162586165", + "https://openalex.org/W2163697531", + "https://openalex.org/W2164434252", + "https://openalex.org/W2345255551", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2912934387", + "https://openalex.org/W2963481018", + "https://openalex.org/W2998216295", + "https://openalex.org/W3099478002", + "https://openalex.org/W4212883601", + "https://openalex.org/W4231109964", + "https://openalex.org/W4243607236", + "https://openalex.org/W4285719527", + "https://openalex.org/W6601599523", + "https://openalex.org/W6676903177", + "https://openalex.org/W7066667914" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W4389568370", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W1489783725" + ], + "abstract_inverted_index": { + "Spurred": [ + 0 + ], + "by": [ + 1 + ], + "advances": [ + 2 + ], + "in": [ + 3, + 48, + 94, + 107, + 125, + 178 + ], + "processing": [ + 4 + ], + "power,": [ + 5 + ], + "memory,": [ + 6 + ], + "storage,": [ + 7 + ], + "and": [ + 8, + 45, + 80, + 115, + 140, + 150, + 216 + ], + "an": [ + 9 + ], + "unprecedented": [ + 10 + ], + "wealth": [ + 11 + ], + "of": [ + 12, + 35, + 40, + 67, + 99, + 156, + 175, + 185, + 194, + 210 + ], + "data,": [ + 13, + 44, + 164 + ], + "computers": [ + 14 + ], + "are": [ + 15, + 89, + 154 + ], + "being": [ + 16 + ], + "asked": [ + 17 + ], + "to": [ + 18, + 75, + 92, + 103, + 121, + 131, + 162, + 170, + 181, + 188, + 199, + 206 + ], + "tackle": [ + 19 + ], + "increasingly": [ + 20 + ], + "complex": [ + 21, + 72 + ], + "learning": [ + 22, + 113, + 142, + 160, + 187, + 214 + ], + "tasks,": [ + 23 + ], + "often": [ + 24 + ], + "with": [ + 25 + ], + "astonishing": [ + 26 + ], + "success.": [ + 27 + ], + "Computers": [ + 28 + ], + "have": [ + 29, + 55, + 144, + 167 + ], + "now": [ + 30 + ], + "mastered": [ + 31 + ], + "a": [ + 32 + ], + "popular": [ + 33 + ], + "variant": [ + 34 + ], + "poker,": [ + 36 + ], + "learned": [ + 37 + ], + "the": [ + 38, + 65, + 119, + 182, + 208 + ], + "laws": [ + 39 + ], + "physics": [ + 41 + ], + "from": [ + 42, + 111, + 118 + ], + "experimental": [ + 43 + ], + "become": [ + 46 + ], + "experts": [ + 47 + ], + "video": [ + 49 + ], + "games": [ + 50 + ], + "-": [ + 51 + ], + "tasks": [ + 52 + ], + "that": [ + 53, + 85, + 133 + ], + "would": [ + 54 + ], + "been": [ + 56, + 145 + ], + "deemed": [ + 57 + ], + "impossible": [ + 58 + ], + "not": [ + 59 + ], + "too": [ + 60 + ], + "long": [ + 61 + ], + "ago.": [ + 62 + ], + "In": [ + 63 + ], + "parallel,": [ + 64 + ], + "number": [ + 66 + ], + "companies": [ + 68, + 88 + ], + "centered": [ + 69 + ], + "on": [ + 70 + ], + "applying": [ + 71, + 158 + ], + "data": [ + 73, + 138 + ], + "analysis": [ + 74 + ], + "varying": [ + 76 + ], + "industries": [ + 77 + ], + "has": [ + 78 + ], + "exploded,": [ + 79 + ], + "it": [ + 81 + ], + "is": [ + 82, + 102, + 129 + ], + "thus": [ + 83 + ], + "unsurprising": [ + 84 + ], + "some": [ + 86 + ], + "analytic": [ + 87 + ], + "turning": [ + 90 + ], + "attention": [ + 91 + ], + "problems": [ + 93, + 106 + ], + "health": [ + 95 + ], + "care.": [ + 96, + 172 + ], + "The": [ + 97 + ], + "purpose": [ + 98 + ], + "this": [ + 100 + ], + "review": [ + 101 + ], + "explore": [ + 104 + ], + "what": [ + 105, + 201 + ], + "medicine": [ + 108, + 211 + ], + "might": [ + 109, + 220 + ], + "benefit": [ + 110 + ], + "such": [ + 112 + ], + "approaches": [ + 114 + ], + "use": [ + 116 + ], + "examples": [ + 117 + ], + "literature": [ + 120 + ], + "introduce": [ + 122 + ], + "basic": [ + 123 + ], + "concepts": [ + 124 + ], + "machine": [ + 126, + 159, + 186 + ], + "learning.": [ + 127 + ], + "It": [ + 128 + ], + "important": [ + 130 + ], + "note": [ + 132 + ], + "seemingly": [ + 134 + ], + "large": [ + 135 + ], + "enough": [ + 136 + ], + "medical": [ + 137, + 163 + ], + "sets": [ + 139 + ], + "adequate": [ + 141 + ], + "algorithms": [ + 143, + 161 + ], + "available": [ + 146 + ], + "for": [ + 147 + ], + "many": [ + 148, + 189 + ], + "decades,": [ + 149 + ], + "yet,": [ + 151 + ], + "although": [ + 152 + ], + "there": [ + 153, + 203 + ], + "thousands": [ + 155 + ], + "papers": [ + 157 + ], + "very": [ + 165 + ], + "few": [ + 166 + ], + "contributed": [ + 168 + ], + "meaningfully": [ + 169 + ], + "clinical": [ + 171 + ], + "This": [ + 173 + ], + "lack": [ + 174 + ], + "impact": [ + 176 + ], + "stands": [ + 177 + ], + "stark": [ + 179 + ], + "contrast": [ + 180 + ], + "enormous": [ + 183 + ], + "relevance": [ + 184 + ], + "other": [ + 190 + ], + "industries.": [ + 191 + ], + "Thus,": [ + 192 + ], + "part": [ + 193 + ], + "my": [ + 195 + ], + "effort": [ + 196 + ], + "will": [ + 197 + ], + "be": [ + 198, + 205, + 221 + ], + "identify": [ + 200 + ], + "obstacles": [ + 202 + ], + "may": [ + 204 + ], + "changing": [ + 207 + ], + "practice": [ + 209 + ], + "through": [ + 212 + ], + "statistical": [ + 213 + ], + "approaches,": [ + 215 + ], + "discuss": [ + 217 + ], + "how": [ + 218 + ], + "these": [ + 219 + ], + "overcome.": [ + 222 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 176 + }, + { + "year": 2025, + "cited_by_count": 522 + }, + { + "year": 2024, + "cited_by_count": 593 + }, + { + "year": 2023, + "cited_by_count": 500 + }, + { + "year": 2022, + "cited_by_count": 451 + }, + { + "year": 2021, + "cited_by_count": 454 + }, + { + "year": 2020, + "cited_by_count": 319 + }, + { + "year": 2019, + "cited_by_count": 194 + }, + { + "year": 2018, + "cited_by_count": 98 + }, + { + "year": 2017, + "cited_by_count": 55 + }, + { + "year": 2016, + "cited_by_count": 23 + }, + { + "year": 2015, + "cited_by_count": 3 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2750384547", + "doi": "https://doi.org/10.48550/arxiv.1708.07747", + "title": "Fashion-MNIST: a Novel Image Dataset for Benchmarking Machine Learning Algorithms", + "display_name": "Fashion-MNIST: a Novel Image Dataset for Benchmarking Machine Learning Algorithms", + "relevance_score": 4394.2183, + "publication_year": 2017, + "publication_date": "2017-08-25", + "ids": { + "openalex": "https://openalex.org/W2750384547", + "doi": "https://doi.org/10.48550/arxiv.1708.07747", + "mag": "2750384547" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1708.07747", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Xiao, Han", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Xiao, Han", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5075846365", + "display_name": "Kashif Rasul", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Rasul, Kashif", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5011375551", + "display_name": "Roland Vollgraf", + "orcid": "https://orcid.org/0000-0003-4658-0381" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Vollgraf, Roland", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 6068, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10775", + "display_name": "Generative Adversarial Networks and Image Synthesis", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9972000122070312, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.9985602498054504 + }, + { + "id": "https://openalex.org/keywords/benchmarking", + "display_name": "Benchmarking", + "score": 0.8764249086380005 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6721041202545166 + }, + { + "id": "https://openalex.org/keywords/grayscale", + "display_name": "Grayscale", + "score": 0.6421833038330078 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6257829666137695 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5550878643989563 + }, + { + "id": "https://openalex.org/keywords/test-set", + "display_name": "Test set", + "score": 0.548558235168457 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.5261946320533752 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.5203016400337219 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5067091584205627 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.33083993196487427 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.2942641079425812 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.9985602498054504 + }, + { + "id": "https://openalex.org/C86251818", + "wikidata": "https://www.wikidata.org/wiki/Q816754", + "display_name": "Benchmarking", + "level": 2, + "score": 0.8764249086380005 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6721041202545166 + }, + { + "id": "https://openalex.org/C78201319", + "wikidata": "https://www.wikidata.org/wiki/Q685727", + "display_name": "Grayscale", + "level": 3, + "score": 0.6421833038330078 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6257829666137695 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5550878643989563 + }, + { + "id": "https://openalex.org/C169903167", + "wikidata": "https://www.wikidata.org/wiki/Q3985153", + "display_name": "Test set", + "level": 2, + "score": 0.548558235168457 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.5261946320533752 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.5203016400337219 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5067091584205627 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.33083993196487427 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.2942641079425812 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144133560", + "wikidata": "https://www.wikidata.org/wiki/Q4830453", + "display_name": "Business", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162853370", + "wikidata": "https://www.wikidata.org/wiki/Q39809", + "display_name": "Marketing", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1708.07747", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1708.07747", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1708.07747", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1708.07747", + "pdf_url": "https://arxiv.org/pdf/1708.07747", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 3, + "referenced_works": [ + "https://openalex.org/W4919037", + "https://openalex.org/W2112796928", + "https://openalex.org/W2590796488" + ], + "related_works": [ + "https://openalex.org/W4386603768", + "https://openalex.org/W2950475743", + "https://openalex.org/W2886711096", + "https://openalex.org/W2750384547", + "https://openalex.org/W4238897586", + "https://openalex.org/W4380078352", + "https://openalex.org/W3046591097", + "https://openalex.org/W2901671134", + "https://openalex.org/W4289293320", + "https://openalex.org/W2987302549" + ], + "abstract_inverted_index": { + "We": [ + 0 + ], + "present": [ + 1 + ], + "Fashion-MNIST,": [ + 2 + ], + "a": [ + 3, + 42 + ], + "new": [ + 4 + ], + "dataset": [ + 5, + 50, + 74 + ], + "comprising": [ + 6 + ], + "of": [ + 7, + 11, + 68 + ], + "28x28": [ + 8 + ], + "grayscale": [ + 9 + ], + "images": [ + 10, + 20, + 28 + ], + "70,000": [ + 12 + ], + "fashion": [ + 13 + ], + "products": [ + 14 + ], + "from": [ + 15 + ], + "10": [ + 16 + ], + "categories,": [ + 17 + ], + "with": [ + 18 + ], + "7,000": [ + 19 + ], + "per": [ + 21 + ], + "category.": [ + 22 + ], + "The": [ + 23, + 73 + ], + "training": [ + 24, + 69 + ], + "set": [ + 25, + 32 + ], + "has": [ + 26, + 33 + ], + "60,000": [ + 27 + ], + "and": [ + 29, + 65, + 70 + ], + "the": [ + 30, + 47, + 59, + 66 + ], + "test": [ + 31 + ], + "10,000": [ + 34 + ], + "images.": [ + 35 + ], + "Fashion-MNIST": [ + 36 + ], + "is": [ + 37, + 75 + ], + "intended": [ + 38 + ], + "to": [ + 39 + ], + "serve": [ + 40 + ], + "as": [ + 41, + 56 + ], + "direct": [ + 43 + ], + "drop-in": [ + 44 + ], + "replacement": [ + 45 + ], + "for": [ + 46, + 51 + ], + "original": [ + 48 + ], + "MNIST": [ + 49 + ], + "benchmarking": [ + 52 + ], + "machine": [ + 53 + ], + "learning": [ + 54 + ], + "algorithms,": [ + 55 + ], + "it": [ + 57 + ], + "shares": [ + 58 + ], + "same": [ + 60 + ], + "image": [ + 61 + ], + "size,": [ + 62 + ], + "data": [ + 63 + ], + "format": [ + 64 + ], + "structure": [ + 67 + ], + "testing": [ + 71 + ], + "splits.": [ + 72 + ], + "freely": [ + 76 + ], + "available": [ + 77 + ], + "at": [ + 78 + ], + "https://github.com/zalandoresearch/fashion-mnist": [ + 79 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 20 + }, + { + "year": 2025, + "cited_by_count": 272 + }, + { + "year": 2024, + "cited_by_count": 758 + }, + { + "year": 2023, + "cited_by_count": 967 + }, + { + "year": 2022, + "cited_by_count": 759 + }, + { + "year": 2021, + "cited_by_count": 1340 + }, + { + "year": 2020, + "cited_by_count": 1050 + }, + { + "year": 2019, + "cited_by_count": 625 + }, + { + "year": 2018, + "cited_by_count": 256 + }, + { + "year": 2017, + "cited_by_count": 21 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1873332500", + "doi": null, + "title": "Supervised Machine Learning: A Review of Classification Techniques", + "display_name": "Supervised Machine Learning: A Review of Classification Techniques", + "relevance_score": 4288.003, + "publication_year": 2007, + "publication_date": "2007-01-01", + "ids": { + "openalex": "https://openalex.org/W1873332500", + "mag": "1873332500" + }, + "language": "en", + "primary_location": { + "id": "mag:1873332500", + "is_oa": false, + "landing_page_url": "https://dblp.uni-trier.de/db/journals/informaticaSI/informaticaSI31.html#Kotsiantis07", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Informatica", + "raw_type": null + }, + "type": "review", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5066370772", + "display_name": "Sotiris Kotsiantis", + "orcid": "https://orcid.org/0000-0002-2247-3082" + }, + "institutions": [ + { + "id": "https://openalex.org/I158716096", + "display_name": "University of Peloponnese", + "ror": "https://ror.org/04d4d3c02", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I158716096" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Sotiris Kotsiantis", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-2247-3082", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5066370772" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I158716096" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 49.7093, + "has_fulltext": false, + "cited_by_count": 4147, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "160", + "issue": "3", + "first_page": "249", + "last_page": "24" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9936000108718872, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.9873999953269958, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7691857218742371 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7264007925987244 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7053093314170837 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.5915338397026062 + }, + { + "id": "https://openalex.org/keywords/supervised-learning", + "display_name": "Supervised learning", + "score": 0.5904386043548584 + }, + { + "id": "https://openalex.org/keywords/one-class-classification", + "display_name": "One-class classification", + "score": 0.5449395179748535 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.5347427725791931 + }, + { + "id": "https://openalex.org/keywords/semi-supervised-learning", + "display_name": "Semi-supervised learning", + "score": 0.4761357605457306 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.13000115752220154 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7691857218742371 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7264007925987244 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7053093314170837 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.5915338397026062 + }, + { + "id": "https://openalex.org/C136389625", + "wikidata": "https://www.wikidata.org/wiki/Q334384", + "display_name": "Supervised learning", + "level": 3, + "score": 0.5904386043548584 + }, + { + "id": "https://openalex.org/C34872919", + "wikidata": "https://www.wikidata.org/wiki/Q7092302", + "display_name": "One-class classification", + "level": 3, + "score": 0.5449395179748535 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.5347427725791931 + }, + { + "id": "https://openalex.org/C58973888", + "wikidata": "https://www.wikidata.org/wiki/Q1041418", + "display_name": "Semi-supervised learning", + "level": 2, + "score": 0.4761357605457306 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.13000115752220154 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "mag:1873332500", + "is_oa": false, + "landing_page_url": "https://dblp.uni-trier.de/db/journals/informaticaSI/informaticaSI31.html#Kotsiantis07", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Informatica", + "raw_type": null + }, + { + "id": "mag:2295155158", + "is_oa": false, + "landing_page_url": "https://datajobs.com/data-science-repo/Supervised-Learning-%5bSB-Kotsiantis%5d.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "mag:3136385871", + "is_oa": false, + "landing_page_url": "https://ebooks.iospress.nl/volumearticle/3666", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210201731", + "display_name": "Frontiers in artificial intelligence and applications", + "issn_l": "0922-6389", + "issn": [ + "0922-6389", + "1879-8314" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Frontiers in artificial intelligence and applications", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.4099999964237213, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 111, + "referenced_works": [ + "https://openalex.org/W5472403", + "https://openalex.org/W135311109", + "https://openalex.org/W177590838", + "https://openalex.org/W203696055", + "https://openalex.org/W1007293483", + "https://openalex.org/W1497605902", + "https://openalex.org/W1506588750", + "https://openalex.org/W1515851193", + "https://openalex.org/W1520605446", + "https://openalex.org/W1522114398", + "https://openalex.org/W1528113134", + "https://openalex.org/W1537143578", + "https://openalex.org/W1538041071", + "https://openalex.org/W1547833367", + "https://openalex.org/W1554309553", + "https://openalex.org/W1560955742", + "https://openalex.org/W1562368284", + "https://openalex.org/W1563088657", + "https://openalex.org/W1567012231", + "https://openalex.org/W1570329253", + "https://openalex.org/W1570448133", + "https://openalex.org/W1570706771", + "https://openalex.org/W1587647246", + "https://openalex.org/W1588516554", + "https://openalex.org/W1594031697", + "https://openalex.org/W1594781927", + "https://openalex.org/W1602492977", + "https://openalex.org/W1605688901", + "https://openalex.org/W1605844890", + "https://openalex.org/W1637435380", + "https://openalex.org/W1670263352", + "https://openalex.org/W1671614046", + "https://openalex.org/W1746680969", + "https://openalex.org/W1780185704", + "https://openalex.org/W1808644423", + "https://openalex.org/W1813387235", + "https://openalex.org/W1817561967", + "https://openalex.org/W1827261456", + "https://openalex.org/W1904009171", + "https://openalex.org/W1935515061", + "https://openalex.org/W1973991804", + "https://openalex.org/W1974545290", + "https://openalex.org/W1979711143", + "https://openalex.org/W1983479840", + "https://openalex.org/W1983690667", + "https://openalex.org/W1986883011", + "https://openalex.org/W1992419399", + "https://openalex.org/W1993066733", + "https://openalex.org/W2006345381", + "https://openalex.org/W2011101028", + "https://openalex.org/W2016441117", + "https://openalex.org/W2022058268", + "https://openalex.org/W2026718556", + "https://openalex.org/W2037322594", + "https://openalex.org/W2046649434", + "https://openalex.org/W2050829396", + "https://openalex.org/W2063783806", + "https://openalex.org/W2074584355", + "https://openalex.org/W2075932270", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096756482", + "https://openalex.org/W2104333211", + "https://openalex.org/W2110179049", + "https://openalex.org/W2119479037", + "https://openalex.org/W2120199131", + "https://openalex.org/W2122111042", + "https://openalex.org/W2122496402", + "https://openalex.org/W2123623606", + "https://openalex.org/W2125055259", + "https://openalex.org/W2126333738", + "https://openalex.org/W2128912745", + "https://openalex.org/W2133160781", + "https://openalex.org/W2133218851", + "https://openalex.org/W2133632100", + "https://openalex.org/W2136000097", + "https://openalex.org/W2136132422", + "https://openalex.org/W2137130182", + "https://openalex.org/W2139212933", + "https://openalex.org/W2140586694", + "https://openalex.org/W2140785063", + "https://openalex.org/W2142857211", + "https://openalex.org/W2143603257", + "https://openalex.org/W2144731007", + "https://openalex.org/W2145467382", + "https://openalex.org/W2145680191", + "https://openalex.org/W2150796457", + "https://openalex.org/W2151450140", + "https://openalex.org/W2156440942", + "https://openalex.org/W2156571267", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157815868", + "https://openalex.org/W2158724449", + "https://openalex.org/W2159895197", + "https://openalex.org/W2161349318", + "https://openalex.org/W2161782846", + "https://openalex.org/W2161960932", + "https://openalex.org/W2164359548", + "https://openalex.org/W2166985738", + "https://openalex.org/W2167277498", + "https://openalex.org/W2167467747", + "https://openalex.org/W2168754135", + "https://openalex.org/W2171265988", + "https://openalex.org/W2172429451", + "https://openalex.org/W2322002063", + "https://openalex.org/W2488399954", + "https://openalex.org/W2603390332", + "https://openalex.org/W2766736793", + "https://openalex.org/W2911678770", + "https://openalex.org/W2912276539", + "https://openalex.org/W2912934387", + "https://openalex.org/W3015462599" + ], + "related_works": [ + "https://openalex.org/W3120740533", + "https://openalex.org/W3085162807", + "https://openalex.org/W2919115771", + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2156909104", + "https://openalex.org/W2153635508", + "https://openalex.org/W2149706766", + "https://openalex.org/W2140190241", + "https://openalex.org/W2139212933", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2122111042", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119479037", + "https://openalex.org/W2101234009", + "https://openalex.org/W2096352448", + "https://openalex.org/W1680392829", + "https://openalex.org/W1663973292", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "The": [ + 0, + 22 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 11, + 14, + 19, + 39, + 48, + 73 + ], + "supervised": [ + 3, + 58, + 75 + ], + "learning": [ + 4, + 60, + 77 + ], + "is": [ + 5, + 25, + 52 + ], + "to": [ + 6, + 28, + 32, + 113 + ], + "build": [ + 7 + ], + "a": [ + 8, + 65, + 70 + ], + "concise": [ + 9 + ], + "model": [ + 10 + ], + "the": [ + 12, + 33, + 37, + 40, + 46, + 49, + 89, + 94, + 99 + ], + "distribution": [ + 13 + ], + "class": [ + 15, + 30, + 50 + ], + "labels": [ + 16, + 31 + ], + "in": [ + 17, + 101 + ], + "terms": [ + 18 + ], + "predictor": [ + 20, + 41 + ], + "features.": [ + 21 + ], + "resulting": [ + 23 + ], + "classifier": [ + 24 + ], + "then": [ + 26 + ], + "used": [ + 27 + ], + "assign": [ + 29 + ], + "testing": [ + 34 + ], + "instances": [ + 35 + ], + "where": [ + 36 + ], + "values": [ + 38 + ], + "features": [ + 42 + ], + "are": [ + 43 + ], + "known,": [ + 44 + ], + "but": [ + 45 + ], + "value": [ + 47 + ], + "label": [ + 51 + ], + "unknown.": [ + 53 + ], + "This": [ + 54 + ], + "paper": [ + 55 + ], + "describes": [ + 56 + ], + "various": [ + 57 + ], + "machine": [ + 59, + 76 + ], + "classification": [ + 61, + 78, + 83 + ], + "techniques.": [ + 62 + ], + "Of": [ + 63 + ], + "course,": [ + 64 + ], + "single": [ + 66 + ], + "chapter": [ + 67 + ], + "cannot": [ + 68 + ], + "be": [ + 69, + 114 + ], + "complete": [ + 71 + ], + "review": [ + 72 + ], + "all": [ + 74 + ], + "algorithms": [ + 79 + ], + "(also": [ + 80 + ], + "known": [ + 81 + ], + "induction": [ + 82 + ], + "algorithms),": [ + 84 + ], + "yet": [ + 85, + 112 + ], + "we": [ + 86 + ], + "hope": [ + 87 + ], + "that": [ + 88, + 110 + ], + "references": [ + 90 + ], + "cited": [ + 91 + ], + "will": [ + 92 + ], + "cover": [ + 93 + ], + "major": [ + 95 + ], + "theoretical": [ + 96 + ], + "issues,": [ + 97 + ], + "guiding": [ + 98 + ], + "researcher": [ + 100 + ], + "interesting": [ + 102 + ], + "research": [ + 103 + ], + "directions": [ + 104 + ], + "and": [ + 105 + ], + "suggesting": [ + 106 + ], + "possible": [ + 107 + ], + "bias": [ + 108 + ], + "combinations": [ + 109 + ], + "have": [ + 111 + ], + "explored.": [ + 115 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 99 + }, + { + "year": 2024, + "cited_by_count": 227 + }, + { + "year": 2023, + "cited_by_count": 300 + }, + { + "year": 2022, + "cited_by_count": 329 + }, + { + "year": 2021, + "cited_by_count": 490 + }, + { + "year": 2020, + "cited_by_count": 504 + }, + { + "year": 2019, + "cited_by_count": 464 + }, + { + "year": 2018, + "cited_by_count": 344 + }, + { + "year": 2017, + "cited_by_count": 252 + }, + { + "year": 2016, + "cited_by_count": 221 + }, + { + "year": 2015, + "cited_by_count": 233 + }, + { + "year": 2014, + "cited_by_count": 184 + }, + { + "year": 2013, + "cited_by_count": 168 + }, + { + "year": 2012, + "cited_by_count": 125 + } + ], + "updated_date": "2025-10-10T17:16:08.811792", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4236362309", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "title": "Understanding Machine Learning", + "display_name": "Understanding Machine Learning", + "relevance_score": 4238.3584, + "publication_year": 2014, + "publication_date": "2014-05-19", + "ids": { + "openalex": "https://openalex.org/W4236362309", + "doi": "https://doi.org/10.1017/cbo9781107298019" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9781107298019", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9781107298019", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5078263052", + "display_name": "Shai Shalev‐Shwartz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I197251160", + "display_name": "Hebrew University of Jerusalem", + "ror": "https://ror.org/03qxff017", + "country_code": "IL", + "type": "education", + "lineage": [ + "https://openalex.org/I197251160" + ] + } + ], + "countries": [ + "IL" + ], + "is_corresponding": true, + "raw_author_name": "Shai Shalev-Shwartz", + "raw_affiliation_strings": [ + "Hebrew University of Jerusalem" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hebrew University of Jerusalem", + "institution_ids": [ + "https://openalex.org/I197251160" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5112193907", + "display_name": "Shai Ben-David", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I151746483", + "display_name": "University of Waterloo", + "ror": "https://ror.org/01aff2v68", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I151746483" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Shai Ben-David", + "raw_affiliation_strings": [ + "University of Waterloo, Ontario" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Waterloo, Ontario", + "institution_ids": [ + "https://openalex.org/I151746483" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5078263052" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I197251160" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 13.8547, + "has_fulltext": false, + "cited_by_count": 2907, + "citation_normalized_percentile": { + "value": 0.98681112, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.5062000155448914, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.5062000155448914, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7047193050384521 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6659388542175293 + }, + { + "id": "https://openalex.org/keywords/stability", + "display_name": "Stability (learning theory)", + "score": 0.5692204236984253 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.5539110898971558 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.5352068543434143 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5332021117210388 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5140898823738098 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.5117306709289551 + }, + { + "id": "https://openalex.org/keywords/convexity", + "display_name": "Convexity", + "score": 0.51105797290802 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.44482100009918213 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.40191978216171265 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7047193050384521 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6659388542175293 + }, + { + "id": "https://openalex.org/C112972136", + "wikidata": "https://www.wikidata.org/wiki/Q7595718", + "display_name": "Stability (learning theory)", + "level": 2, + "score": 0.5692204236984253 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.5539110898971558 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.5352068543434143 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5332021117210388 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5140898823738098 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.5117306709289551 + }, + { + "id": "https://openalex.org/C72134830", + "wikidata": "https://www.wikidata.org/wiki/Q5166524", + "display_name": "Convexity", + "level": 2, + "score": 0.51105797290802 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.44482100009918213 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.40191978216171265 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106159729", + "wikidata": "https://www.wikidata.org/wiki/Q2294553", + "display_name": "Financial economics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1017/cbo9781107298019", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9781107298019", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.7200000286102295, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W36398315", + "https://openalex.org/W4286799911", + "https://openalex.org/W3176029617", + "https://openalex.org/W2109601080", + "https://openalex.org/W3031362111", + "https://openalex.org/W2183087249", + "https://openalex.org/W4234769374", + "https://openalex.org/W2774684800", + "https://openalex.org/W2339204188", + "https://openalex.org/W2170905826" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 46, + 86, + 135 + ], + "is": [ + 2, + 20 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 17, + 41, + 61, + 70, + 81, + 85, + 90, + 133 + ], + "the": [ + 5, + 26, + 42, + 48, + 62, + 64, + 82, + 88, + 113, + 126, + 129 + ], + "fastest": [ + 6 + ], + "growing": [ + 7 + ], + "areas": [ + 8 + ], + "computer": [ + 10, + 144 + ], + "science,": [ + 11, + 145 + ], + "with": [ + 12 + ], + "far-reaching": [ + 13 + ], + "applications.": [ + 14 + ], + "The": [ + 15, + 35 + ], + "aim": [ + 16 + ], + "this": [ + 18 + ], + "textbook": [ + 19 + ], + "to": [ + 21, + 137 + ], + "introduce": [ + 22 + ], + "machine": [ + 23, + 45, + 134 + ], + "learning,": [ + 24 + ], + "and": [ + 25, + 47, + 87, + 92, + 103, + 107, + 116, + 131, + 139, + 147 + ], + "algorithmic": [ + 27, + 95 + ], + "paradigms": [ + 28, + 96 + ], + "it": [ + 29 + ], + "offers,": [ + 30 + ], + "in": [ + 31, + 142 + ], + "a": [ + 32, + 38, + 59, + 67, + 79 + ], + "principled": [ + 33 + ], + "way.": [ + 34 + ], + "book": [ + 36, + 65 + ], + "provides": [ + 37 + ], + "theoretical": [ + 39, + 109 + ], + "account": [ + 40 + ], + "fundamentals": [ + 43, + 130 + ], + "underlying": [ + 44 + ], + "mathematical": [ + 49 + ], + "derivations": [ + 50 + ], + "that": [ + 51 + ], + "transform": [ + 52 + ], + "these": [ + 53 + ], + "principles": [ + 54 + ], + "into": [ + 55 + ], + "practical": [ + 56 + ], + "algorithms.": [ + 57 + ], + "Following": [ + 58 + ], + "presentation": [ + 60 + ], + "basics,": [ + 63 + ], + "covers": [ + 66 + ], + "wide": [ + 68 + ], + "array": [ + 69 + ], + "central": [ + 71 + ], + "topics": [ + 72 + ], + "unaddressed": [ + 73 + ], + "by": [ + 74 + ], + "previous": [ + 75 + ], + "textbooks.": [ + 76 + ], + "These": [ + 77 + ], + "include": [ + 78 + ], + "discussion": [ + 80 + ], + "computational": [ + 83 + ], + "complexity": [ + 84 + ], + "concepts": [ + 89, + 110 + ], + "convexity": [ + 91 + ], + "stability;": [ + 93 + ], + "important": [ + 94 + ], + "including": [ + 97 + ], + "stochastic": [ + 98 + ], + "gradient": [ + 99 + ], + "descent,": [ + 100 + ], + "neural": [ + 101 + ], + "networks,": [ + 102 + ], + "structured": [ + 104 + ], + "output": [ + 105 + ], + "learning;": [ + 106 + ], + "emerging": [ + 108 + ], + "such": [ + 111 + ], + "as": [ + 112 + ], + "PAC-Bayes": [ + 114 + ], + "approach": [ + 115 + ], + "compression-based": [ + 117 + ], + "bounds.": [ + 118 + ], + "Designed": [ + 119 + ], + "for": [ + 120 + ], + "advanced": [ + 121 + ], + "undergraduates": [ + 122 + ], + "or": [ + 123 + ], + "beginning": [ + 124 + ], + "graduates,": [ + 125 + ], + "text": [ + 127 + ], + "makes": [ + 128 + ], + "algorithms": [ + 132 + ], + "accessible": [ + 136 + ], + "students": [ + 138 + ], + "non-expert": [ + 140 + ], + "readers": [ + 141 + ], + "statistics,": [ + 143 + ], + "mathematics": [ + 146 + ], + "engineering.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 98 + }, + { + "year": 2025, + "cited_by_count": 375 + }, + { + "year": 2024, + "cited_by_count": 400 + }, + { + "year": 2023, + "cited_by_count": 421 + }, + { + "year": 2022, + "cited_by_count": 424 + }, + { + "year": 2021, + "cited_by_count": 368 + }, + { + "year": 2020, + "cited_by_count": 366 + }, + { + "year": 2019, + "cited_by_count": 192 + }, + { + "year": 2018, + "cited_by_count": 144 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 33 + }, + { + "year": 2015, + "cited_by_count": 17 + }, + { + "year": 2014, + "cited_by_count": 4 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2022-05-12T00:00:00" + }, + { + "id": "https://openalex.org/W3198350258", + "doi": "https://doi.org/10.1147/rd.33.0210", + "title": "Some Studies in Machine Learning Using the Game of Checkers", + "display_name": "Some Studies in Machine Learning Using the Game of Checkers", + "relevance_score": 4166.422, + "publication_year": 1959, + "publication_date": "1959-07-01", + "ids": { + "openalex": "https://openalex.org/W3198350258", + "doi": "https://doi.org/10.1147/rd.33.0210", + "mag": "3198350258" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1147/rd.33.0210", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1147/rd.33.0210", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210219925", + "display_name": "IBM Journal of Research and Development", + "issn_l": "0018-8646", + "issn": [ + "0018-8646", + "2151-8556" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320652", + "host_organization_name": "IBM", + "host_organization_lineage": [ + "https://openalex.org/P4310320652" + ], + "host_organization_lineage_names": [ + "IBM" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IBM Journal of Research and Development", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5103515726", + "display_name": "Arthur L. Samuel", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "A. L. Samuel", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5103515726" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 58.6681, + "has_fulltext": false, + "cited_by_count": 4330, + "citation_normalized_percentile": { + "value": 0.99739244, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "3", + "first_page": "210", + "last_page": "229" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11574", + "display_name": "Artificial Intelligence in Games", + "score": 0.8087999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11574", + "display_name": "Artificial Intelligence in Games", + "score": 0.8087999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7188340425491333 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5375511050224304 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3793615698814392 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7188340425491333 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5375511050224304 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3793615698814392 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1147/rd.33.0210", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1147/rd.33.0210", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210219925", + "display_name": "IBM Journal of Research and Development", + "issn_l": "0018-8646", + "issn": [ + "0018-8646", + "2151-8556" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320652", + "host_organization_name": "IBM", + "host_organization_lineage": [ + "https://openalex.org/P4310320652" + ], + "host_organization_lineage_names": [ + "IBM" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IBM Journal of Research and Development", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.5, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W4286629047", + "https://openalex.org/W4306321456", + "https://openalex.org/W4285260836", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4205958290", + "https://openalex.org/W3209574120" + ], + "abstract_inverted_index": { + "Two": [ + 0 + ], + "machine-learning": [ + 1 + ], + "procedures": [ + 2 + ], + "have": [ + 3, + 97 + ], + "been": [ + 4, + 17 + ], + "investigated": [ + 5 + ], + "in": [ + 6, + 59 + ], + "some": [ + 7 + ], + "detail": [ + 8 + ], + "using": [ + 9 + ], + "the": [ + 10, + 21, + 46, + 50, + 76, + 79, + 102 + ], + "game": [ + 11, + 38 + ], + "of": [ + 12, + 39, + 64, + 70, + 78, + 83, + 91, + 117, + 125 + ], + "checkers.": [ + 13 + ], + "Enough": [ + 14 + ], + "work": [ + 15 + ], + "has": [ + 16 + ], + "done": [ + 18 + ], + "to": [ + 19, + 34, + 56, + 96, + 99, + 128 + ], + "verify": [ + 20 + ], + "fact": [ + 22 + ], + "that": [ + 23, + 30 + ], + "a": [ + 24, + 36, + 60, + 81, + 86 + ], + "computer": [ + 25 + ], + "can": [ + 26, + 42, + 54 + ], + "be": [ + 27, + 43 + ], + "programmed": [ + 28 + ], + "so": [ + 29 + ], + "it": [ + 31, + 53 + ], + "will": [ + 32 + ], + "learn": [ + 33, + 55 + ], + "play": [ + 35 + ], + "better": [ + 37 + ], + "checkers": [ + 40 + ], + "than": [ + 41 + ], + "played": [ + 44 + ], + "by": [ + 45, + 121 + ], + "person": [ + 47 + ], + "who": [ + 48 + ], + "wrote": [ + 49 + ], + "program.": [ + 51 + ], + "Furthermore,": [ + 52 + ], + "do": [ + 57, + 100 + ], + "this": [ + 58 + ], + "remarkably": [ + 61 + ], + "short": [ + 62 + ], + "period": [ + 63 + ], + "time": [ + 65 + ], + "(8": [ + 66 + ], + "or": [ + 67 + ], + "10": [ + 68 + ], + "hours": [ + 69 + ], + "machine-playing": [ + 71 + ], + "time)": [ + 72 + ], + "when": [ + 73 + ], + "given": [ + 74 + ], + "only": [ + 75 + ], + "rules": [ + 77 + ], + "game,": [ + 80, + 103 + ], + "sense": [ + 82 + ], + "direction,": [ + 84 + ], + "and": [ + 85, + 88, + 108, + 113 + ], + "redundant": [ + 87 + ], + "incomplete": [ + 89 + ], + "list": [ + 90 + ], + "parameters": [ + 92 + ], + "which": [ + 93 + ], + "are": [ + 94, + 111 + ], + "thought": [ + 95 + ], + "something": [ + 98 + ], + "with": [ + 101 + ], + "but": [ + 104 + ], + "whose": [ + 105 + ], + "correct": [ + 106 + ], + "signs": [ + 107 + ], + "relative": [ + 109 + ], + "weights": [ + 110 + ], + "unknown": [ + 112 + ], + "unspecified.": [ + 114 + ], + "The": [ + 115 + ], + "principles": [ + 116 + ], + "machine": [ + 118 + ], + "learning": [ + 119 + ], + "verified": [ + 120 + ], + "these": [ + 122 + ], + "experiments": [ + 123 + ], + "are,": [ + 124 + ], + "course,": [ + 126 + ], + "applicable": [ + 127 + ], + "many": [ + 129 + ], + "other": [ + 130 + ], + "situations.": [ + 131 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 87 + }, + { + "year": 2025, + "cited_by_count": 322 + }, + { + "year": 2024, + "cited_by_count": 345 + }, + { + "year": 2023, + "cited_by_count": 343 + }, + { + "year": 2022, + "cited_by_count": 342 + }, + { + "year": 2021, + "cited_by_count": 398 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 352 + }, + { + "year": 2018, + "cited_by_count": 221 + }, + { + "year": 2017, + "cited_by_count": 147 + }, + { + "year": 2016, + "cited_by_count": 59 + }, + { + "year": 2015, + "cited_by_count": 42 + }, + { + "year": 2014, + "cited_by_count": 42 + }, + { + "year": 2013, + "cited_by_count": 52 + }, + { + "year": 2012, + "cited_by_count": 45 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2535690855", + "doi": "https://doi.org/10.1109/sp.2017.41", + "title": "Membership Inference Attacks Against Machine Learning Models", + "display_name": "Membership Inference Attacks Against Machine Learning Models", + "relevance_score": 4124.878, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2535690855", + "doi": "https://doi.org/10.1109/sp.2017.41", + "mag": "2535690855" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2017.41", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.41", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5084892128", + "display_name": "Reza Shokri", + "orcid": "https://orcid.org/0000-0001-9816-0173" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Reza Shokri", + "raw_affiliation_strings": [ + "Cornell Tech" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5086560283", + "display_name": "Marco Stronati", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Marco Stronati", + "raw_affiliation_strings": [ + "INRIA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "INRIA", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048446895", + "display_name": "Congzheng Song", + "orcid": "https://orcid.org/0000-0002-5076-7299" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Congzheng Song", + "raw_affiliation_strings": [ + "Cornell" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5038206174", + "display_name": "Vitaly Shmatikov", + "orcid": "https://orcid.org/0009-0002-1336-5714" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vitaly Shmatikov", + "raw_affiliation_strings": [ + "Cornell Tech" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5084892128" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I205783295" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 167.1932, + "has_fulltext": false, + "cited_by_count": 4176, + "citation_normalized_percentile": { + "value": 0.99981039, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "3", + "last_page": "18" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9768000245094299, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/inference", + "display_name": "Inference", + "score": 0.8516879081726074 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7886953949928284 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7878186702728271 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6666349768638611 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5839544534683228 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.5145570635795593 + }, + { + "id": "https://openalex.org/keywords/data-modeling", + "display_name": "Data modeling", + "score": 0.47366389632225037 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.4463120698928833 + }, + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.41243356466293335 + }, + { + "id": "https://openalex.org/keywords/database", + "display_name": "Database", + "score": 0.07796728610992432 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2776214188", + "wikidata": "https://www.wikidata.org/wiki/Q408386", + "display_name": "Inference", + "level": 2, + "score": 0.8516879081726074 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7886953949928284 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7878186702728271 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6666349768638611 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5839544534683228 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.5145570635795593 + }, + { + "id": "https://openalex.org/C67186912", + "wikidata": "https://www.wikidata.org/wiki/Q367664", + "display_name": "Data modeling", + "level": 2, + "score": 0.47366389632225037 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.4463120698928833 + }, + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.41243356466293335 + }, + { + "id": "https://openalex.org/C77088390", + "wikidata": "https://www.wikidata.org/wiki/Q8513", + "display_name": "Database", + "level": 1, + "score": 0.07796728610992432 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/sp.2017.41", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.41", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:scholarbank.nus.edu.sg:10635/172937", + "is_oa": false, + "landing_page_url": "https://scholarbank.nus.edu.sg/handle/10635/172937", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407052290", + "display_name": "National University of Singapore", + "issn_l": null, + "issn": [], + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Elements", + "raw_type": "Conference Paper" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.5699999928474426, + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 54, + "referenced_works": [ + "https://openalex.org/W1473189865", + "https://openalex.org/W1510952750", + "https://openalex.org/W1528076390", + "https://openalex.org/W1535019556", + "https://openalex.org/W1554944419", + "https://openalex.org/W1760458529", + "https://openalex.org/W1811750039", + "https://openalex.org/W1821462560", + "https://openalex.org/W1826232489", + "https://openalex.org/W1873763122", + "https://openalex.org/W1992926795", + "https://openalex.org/W2009733253", + "https://openalex.org/W2024594469", + "https://openalex.org/W2040228409", + "https://openalex.org/W2051267297", + "https://openalex.org/W2053637704", + "https://openalex.org/W2077905990", + "https://openalex.org/W2095272373", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096633407", + "https://openalex.org/W2106313770", + "https://openalex.org/W2106463421", + "https://openalex.org/W2112380340", + "https://openalex.org/W2114229504", + "https://openalex.org/W2119874464", + "https://openalex.org/W2123147099", + "https://openalex.org/W2130051287", + "https://openalex.org/W2151320232", + "https://openalex.org/W2162379889", + "https://openalex.org/W2186645727", + "https://openalex.org/W2198253679", + "https://openalex.org/W2329660289", + "https://openalex.org/W2461943168", + "https://openalex.org/W2473418344", + "https://openalex.org/W2532520288", + "https://openalex.org/W2950943617", + "https://openalex.org/W2951114885", + "https://openalex.org/W2962835266", + "https://openalex.org/W2963794891", + "https://openalex.org/W2964318098", + "https://openalex.org/W3118608800", + "https://openalex.org/W3215186461", + "https://openalex.org/W4248649186", + "https://openalex.org/W6628547770", + "https://openalex.org/W6631628602", + "https://openalex.org/W6632160336", + "https://openalex.org/W6638214083", + "https://openalex.org/W6639246211", + "https://openalex.org/W6661425395", + "https://openalex.org/W6674330103", + "https://openalex.org/W6676639149", + "https://openalex.org/W6677855611", + "https://openalex.org/W6686761782", + "https://openalex.org/W6731627051" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2502115930", + "https://openalex.org/W2482350142", + "https://openalex.org/W4246396837", + "https://openalex.org/W3126451824", + "https://openalex.org/W1561927205", + "https://openalex.org/W3191453585", + "https://openalex.org/W4297672492", + "https://openalex.org/W4310988119", + "https://openalex.org/W4285226279" + ], + "abstract_inverted_index": { + "We": [ + 0, + 19, + 92, + 146 + ], + "quantitatively": [ + 1 + ], + "investigate": [ + 2, + 148 + ], + "how": [ + 3 + ], + "machine": [ + 4, + 60 + ], + "learning": [ + 5, + 61, + 105 + ], + "models": [ + 6, + 100, + 138 + ], + "leak": [ + 7 + ], + "information": [ + 8 + ], + "about": [ + 9 + ], + "the": [ + 10, + 22, + 39, + 43, + 72, + 77, + 84, + 131, + 149 + ], + "individual": [ + 11 + ], + "data": [ + 12, + 29 + ], + "records": [ + 13 + ], + "on": [ + 14, + 21, + 76, + 82, + 98 + ], + "which": [ + 15 + ], + "they": [ + 16 + ], + "were": [ + 17 + ], + "trained.": [ + 18 + ], + "focus": [ + 20 + ], + "basic": [ + 23 + ], + "membership": [ + 24, + 49, + 127, + 143 + ], + "inference": [ + 25, + 50, + 66, + 96, + 144 + ], + "attack:": [ + 26 + ], + "given": [ + 27 + ], + "a": [ + 28, + 35, + 52, + 107, + 122 + ], + "record": [ + 30, + 40 + ], + "and": [ + 31, + 62, + 113, + 118, + 155 + ], + "black-box": [ + 32 + ], + "access": [ + 33 + ], + "to": [ + 34, + 68, + 142 + ], + "model,": [ + 36, + 54 + ], + "determine": [ + 37 + ], + "if": [ + 38 + ], + "was": [ + 41 + ], + "in": [ + 42, + 71 + ], + "model's": [ + 44, + 74 + ], + "training": [ + 45 + ], + "dataset.": [ + 46 + ], + "To": [ + 47 + ], + "perform": [ + 48 + ], + "against": [ + 51 + ], + "target": [ + 53, + 73 + ], + "we": [ + 55, + 134 + ], + "make": [ + 56 + ], + "adversarial": [ + 57 + ], + "use": [ + 58 + ], + "of": [ + 59 + ], + "train": [ + 63, + 90 + ], + "our": [ + 64, + 95 + ], + "own": [ + 65 + ], + "model": [ + 67 + ], + "recognize": [ + 69 + ], + "differences": [ + 70 + ], + "predictions": [ + 75 + ], + "inputs": [ + 78, + 85 + ], + "that": [ + 79, + 86, + 136, + 151 + ], + "it": [ + 80, + 87 + ], + "trained": [ + 81, + 101 + ], + "versus": [ + 83 + ], + "did": [ + 88 + ], + "not": [ + 89 + ], + "on.": [ + 91 + ], + "empirically": [ + 93 + ], + "evaluate": [ + 94, + 156 + ], + "techniques": [ + 97 + ], + "classification": [ + 99, + 119 + ], + "by": [ + 102 + ], + "commercial": [ + 103 + ], + "\"machine": [ + 104 + ], + "as": [ + 106, + 111 + ], + "service\"": [ + 108 + ], + "providers": [ + 109 + ], + "such": [ + 110 + ], + "Google": [ + 112 + ], + "Amazon.": [ + 114 + ], + "Using": [ + 115 + ], + "realistic": [ + 116 + ], + "datasets": [ + 117 + ], + "tasks,": [ + 120 + ], + "including": [ + 121 + ], + "hospital": [ + 123 + ], + "discharge": [ + 124 + ], + "dataset": [ + 125 + ], + "whose": [ + 126 + ], + "is": [ + 128 + ], + "sensitive": [ + 129 + ], + "from": [ + 130 + ], + "privacy": [ + 132 + ], + "perspective,": [ + 133 + ], + "show": [ + 135 + ], + "these": [ + 137 + ], + "can": [ + 139 + ], + "be": [ + 140 + ], + "vulnerable": [ + 141 + ], + "attacks.": [ + 145 + ], + "then": [ + 147 + ], + "factors": [ + 150 + ], + "influence": [ + 152 + ], + "this": [ + 153 + ], + "leakage": [ + 154 + ], + "mitigation": [ + 157 + ], + "strategies.": [ + 158 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 198 + }, + { + "year": 2025, + "cited_by_count": 744 + }, + { + "year": 2024, + "cited_by_count": 706 + }, + { + "year": 2023, + "cited_by_count": 627 + }, + { + "year": 2022, + "cited_by_count": 513 + }, + { + "year": 2021, + "cited_by_count": 585 + }, + { + "year": 2020, + "cited_by_count": 445 + }, + { + "year": 2019, + "cited_by_count": 232 + }, + { + "year": 2018, + "cited_by_count": 101 + }, + { + "year": 2017, + "cited_by_count": 24 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2885770726", + "doi": "https://doi.org/10.3390/s18082674", + "title": "Machine Learning in Agriculture: A Review", + "display_name": "Machine Learning in Agriculture: A Review", + "relevance_score": 4124.347, + "publication_year": 2018, + "publication_date": "2018-08-14", + "ids": { + "openalex": "https://openalex.org/W2885770726", + "doi": "https://doi.org/10.3390/s18082674", + "mag": "2885770726", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30110960" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5085282864", + "display_name": "Κωνσταντίνος Λιάκος", + "orcid": "https://orcid.org/0000-0002-6866-0932" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantinos Liakos", + "raw_affiliation_strings": [ + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5059581084", + "display_name": "Patrizia Busato", + "orcid": "https://orcid.org/0000-0001-9546-530X" + }, + "institutions": [ + { + "id": "https://openalex.org/I55143463", + "display_name": "University of Turin", + "ror": "https://ror.org/048tbm396", + "country_code": "IT", + "type": "education", + "lineage": [ + "https://openalex.org/I55143463" + ] + } + ], + "countries": [ + "IT" + ], + "is_corresponding": false, + "raw_author_name": "Patrizia Busato", + "raw_affiliation_strings": [ + "Department of Agriculture, Forestry and Food Sciences (DISAFA), Faculty of Agriculture, University of Turin, Largo Braccini 2, 10095 Grugliasco, Italy" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Agriculture, Forestry and Food Sciences (DISAFA), Faculty of Agriculture, University of Turin, Largo Braccini 2, 10095 Grugliasco, Italy", + "institution_ids": [ + "https://openalex.org/I55143463" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047144831", + "display_name": "Dimitrios Moshou", + "orcid": "https://orcid.org/0000-0001-7270-5307" + }, + "institutions": [ + { + "id": "https://openalex.org/I21370196", + "display_name": "Aristotle University of Thessaloniki", + "ror": "https://ror.org/02j61yw88", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I21370196" + ] + }, + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Dimitrios Moshou", + "raw_affiliation_strings": [ + "Agricultural Engineering Laboratory, Faculty of Agriculture, Aristotle University of Thessaloniki, 54124 Thessaloniki, Greece", + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Agricultural Engineering Laboratory, Faculty of Agriculture, Aristotle University of Thessaloniki, 54124 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I21370196" + ] + }, + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018447003", + "display_name": "Simon Pearson", + "orcid": "https://orcid.org/0000-0002-4297-4837" + }, + "institutions": [ + { + "id": "https://openalex.org/I51532219", + "display_name": "University of Lincoln", + "ror": "https://ror.org/03yeq9x20", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I51532219" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Simon Pearson", + "raw_affiliation_strings": [ + "Lincoln Institute for Agri-food Technology (LIAT), University of Lincoln, Brayford Way, Brayford Pool, Lincoln LN6 7TS, UK" + ], + "raw_orcid": "https://orcid.org/0000-0002-4297-4837", + "affiliations": [ + { + "raw_affiliation_string": "Lincoln Institute for Agri-food Technology (LIAT), University of Lincoln, Brayford Way, Brayford Pool, Lincoln LN6 7TS, UK", + "institution_ids": [ + "https://openalex.org/I51532219" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5073592501", + "display_name": "Dionysis Bochtis", + "orcid": "https://orcid.org/0000-0002-7058-5986" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210134249", + "display_name": "Centre for Research and Technology Hellas", + "ror": "https://ror.org/03bndpq63", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210134249" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Dionysis Bochtis", + "raw_affiliation_strings": [ + "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0002-7058-5986", + "affiliations": [ + { + "raw_affiliation_string": "Institute for Bio-Economy and Agri-Technology (IBO), Centre of Research and Technology—Hellas (CERTH), 6th km Charilaou-Thermi Rd, GR 57001 Thessaloniki, Greece", + "institution_ids": [ + "https://openalex.org/I4210134249" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5073592501" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210134249" + ], + "apc_list": { + "value": 2400, + "currency": "CHF", + "value_usd": 2598 + }, + "apc_paid": { + "value": 2400, + "currency": "CHF", + "value_usd": 2598 + }, + "fwci": 234.4049, + "has_fulltext": true, + "cited_by_count": 2977, + "citation_normalized_percentile": { + "value": 0.99998177, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "18", + "issue": "8", + "first_page": "2674", + "last_page": "2674" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10616", + "display_name": "Smart Agriculture and AI", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1110", + "display_name": "Plant Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10616", + "display_name": "Smart Agriculture and AI", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1110", + "display_name": "Plant Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10640", + "display_name": "Spectroscopy and Chemometric Analyses", + "score": 0.9825999736785889, + "subfield": { + "id": "https://openalex.org/subfields/1602", + "display_name": "Analytical Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/16", + "display_name": "Chemistry" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10111", + "display_name": "Remote Sensing in Agriculture", + "score": 0.958299994468689, + "subfield": { + "id": "https://openalex.org/subfields/2303", + "display_name": "Ecology" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/agriculture", + "display_name": "Agriculture", + "score": 0.5998008251190186 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5735517740249634 + }, + { + "id": "https://openalex.org/keywords/precision-agriculture", + "display_name": "Precision agriculture", + "score": 0.5354065895080566 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5236620306968689 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5148038268089294 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.4952518045902252 + }, + { + "id": "https://openalex.org/keywords/livestock", + "display_name": "Livestock", + "score": 0.43506547808647156 + }, + { + "id": "https://openalex.org/keywords/decision-support-system", + "display_name": "Decision support system", + "score": 0.41696614027023315 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3964245617389679 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.13465631008148193 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C118518473", + "wikidata": "https://www.wikidata.org/wiki/Q11451", + "display_name": "Agriculture", + "level": 2, + "score": 0.5998008251190186 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5735517740249634 + }, + { + "id": "https://openalex.org/C120217122", + "wikidata": "https://www.wikidata.org/wiki/Q740083", + "display_name": "Precision agriculture", + "level": 3, + "score": 0.5354065895080566 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5236620306968689 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5148038268089294 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.4952518045902252 + }, + { + "id": "https://openalex.org/C112964050", + "wikidata": "https://www.wikidata.org/wiki/Q103459", + "display_name": "Livestock", + "level": 2, + "score": 0.43506547808647156 + }, + { + "id": "https://openalex.org/C107327155", + "wikidata": "https://www.wikidata.org/wiki/Q330268", + "display_name": "Decision support system", + "level": 2, + "score": 0.41696614027023315 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3964245617389679 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.13465631008148193 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C18903297", + "wikidata": "https://www.wikidata.org/wiki/Q7150", + "display_name": "Ecology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 9, + "locations": [ + { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + { + "id": "pmid:30110960", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30110960", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors (Basel, Switzerland)", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:c6cd93144ea3478f860eb1f3766e5a43", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/c6cd93144ea3478f860eb1f3766e5a43", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors, Vol 18, Iss 8, p 2674 (2018)", + "raw_type": "article" + }, + { + "id": "pmh:oai:eprints.lincoln.ac.uk:33015", + "is_oa": true, + "landing_page_url": "http://eprints.lincoln.ac.uk/id/eprint/33015/1/htm", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196275", + "display_name": "Lincoln Repository (University of Lincoln)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I51532219", + "host_organization_name": "University of Lincoln", + "host_organization_lineage": [ + "https://openalex.org/I51532219" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + }, + { + "id": "pmh:oai:europepmc.org:5064788", + "is_oa": true, + "landing_page_url": "http://europepmc.org/pmc/articles/PMC6111295", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:figshare.com:article/24372634", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Machine_Learning_in_Agriculture_A_Review/24372634", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:iris.unito.it:2318/1679884", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/2318/1679884", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400637", + "display_name": "Institutional Research Information System University of Turin (University of Turin)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I55143463", + "host_organization_name": "University of Turin", + "host_organization_lineage": [ + "https://openalex.org/I55143463" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "info:eu-repo/semantics/article" + }, + { + "id": "pmh:oai:mdpi.com:/1424-8220/18/8/2674/", + "is_oa": true, + "landing_page_url": "http://dx.doi.org/10.3390/s18082674", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6111295", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6111295", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Sensors (Basel)", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/s18082674", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/s18082674", + "pdf_url": "https://www.mdpi.com/1424-8220/18/8/2674/pdf?version=1534247979", + "source": { + "id": "https://openalex.org/S101949793", + "display_name": "Sensors", + "issn_l": "1424-8220", + "issn": [ + "1424-8220" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Sensors", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "score": 0.800000011920929, + "id": "https://metadata.un.org/sdg/2", + "display_name": "Zero hunger" + } + ], + "awards": [ + { + "id": "https://openalex.org/G3584239725", + "display_name": null, + "funder_award_id": "EP/R045127/1", + "funder_id": "https://openalex.org/F4320334627", + "funder_display_name": "Engineering and Physical Sciences Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320321917", + "display_name": "General Secretariat for Research and Technology", + "ror": "https://ror.org/04yeh8h63" + }, + { + "id": "https://openalex.org/F4320334627", + "display_name": "Engineering and Physical Sciences Research Council", + "ror": "https://ror.org/0439y7842" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2885770726.pdf", + "grobid_xml": "https://content.openalex.org/works/W2885770726.grobid-xml" + }, + "referenced_works_count": 112, + "referenced_works": [ + "https://openalex.org/W94523489", + "https://openalex.org/W189596042", + "https://openalex.org/W1179140510", + "https://openalex.org/W1496317909", + "https://openalex.org/W1596717185", + "https://openalex.org/W1689445748", + "https://openalex.org/W1916445479", + "https://openalex.org/W1963579367", + "https://openalex.org/W1963790103", + "https://openalex.org/W1966124853", + "https://openalex.org/W1967320885", + "https://openalex.org/W1968452917", + "https://openalex.org/W1984530193", + "https://openalex.org/W1990517717", + "https://openalex.org/W1995341919", + "https://openalex.org/W1998871699", + "https://openalex.org/W2000972253", + "https://openalex.org/W2001619934", + "https://openalex.org/W2009986810", + "https://openalex.org/W2015263929", + "https://openalex.org/W2018435387", + "https://openalex.org/W2019207321", + "https://openalex.org/W2024081693", + "https://openalex.org/W2025279987", + "https://openalex.org/W2028606616", + "https://openalex.org/W2040104179", + "https://openalex.org/W2040870580", + "https://openalex.org/W2049633694", + "https://openalex.org/W2063304499", + "https://openalex.org/W2065165083", + "https://openalex.org/W2072680624", + "https://openalex.org/W2075320162", + "https://openalex.org/W2076857888", + "https://openalex.org/W2081544115", + "https://openalex.org/W2087877962", + "https://openalex.org/W2095727900", + "https://openalex.org/W2102201073", + "https://openalex.org/W2106855632", + "https://openalex.org/W2108703480", + "https://openalex.org/W2110642273", + "https://openalex.org/W2111072639", + "https://openalex.org/W2119821739", + "https://openalex.org/W2128084896", + "https://openalex.org/W2138178898", + "https://openalex.org/W2143908786", + "https://openalex.org/W2149723649", + "https://openalex.org/W2150593711", + "https://openalex.org/W2153476503", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154350719", + "https://openalex.org/W2161673710", + "https://openalex.org/W2174918471", + "https://openalex.org/W2200121095", + "https://openalex.org/W2209382794", + "https://openalex.org/W2216013554", + "https://openalex.org/W2231576311", + "https://openalex.org/W2270460811", + "https://openalex.org/W2270641383", + "https://openalex.org/W2273322351", + "https://openalex.org/W2286091602", + "https://openalex.org/W2294798173", + "https://openalex.org/W2298521547", + "https://openalex.org/W2337945771", + "https://openalex.org/W2339447311", + "https://openalex.org/W2399675776", + "https://openalex.org/W2417395753", + "https://openalex.org/W2419137750", + "https://openalex.org/W2470803522", + "https://openalex.org/W2497210317", + "https://openalex.org/W2502044482", + "https://openalex.org/W2552660223", + "https://openalex.org/W2560811704", + "https://openalex.org/W2577148968", + "https://openalex.org/W2580808806", + "https://openalex.org/W2586821267", + "https://openalex.org/W2591104514", + "https://openalex.org/W2598645336", + "https://openalex.org/W2603364874", + "https://openalex.org/W2603417106", + "https://openalex.org/W2604196786", + "https://openalex.org/W2606244344", + "https://openalex.org/W2606916050", + "https://openalex.org/W2612828053", + "https://openalex.org/W2619390517", + "https://openalex.org/W2620473470", + "https://openalex.org/W2620542418", + "https://openalex.org/W2621525431", + "https://openalex.org/W2622758479", + "https://openalex.org/W2622999711", + "https://openalex.org/W2738911869", + "https://openalex.org/W2775111183", + "https://openalex.org/W2789255992", + "https://openalex.org/W2790639095", + "https://openalex.org/W2791690647", + "https://openalex.org/W2794415089", + "https://openalex.org/W2796501058", + "https://openalex.org/W2806779833", + "https://openalex.org/W2903950532", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W3125807057", + "https://openalex.org/W4210451417", + "https://openalex.org/W4212883601", + "https://openalex.org/W4232670376", + "https://openalex.org/W4239510810", + "https://openalex.org/W4250143236", + "https://openalex.org/W4400360174", + "https://openalex.org/W6607775107", + "https://openalex.org/W6632223008", + "https://openalex.org/W6675321329", + "https://openalex.org/W6675436802", + "https://openalex.org/W6676769703" + ], + "related_works": [ + "https://openalex.org/W1573929026", + "https://openalex.org/W4390608645", + "https://openalex.org/W4394895745", + "https://openalex.org/W4247566972", + "https://openalex.org/W3201212491", + "https://openalex.org/W4380767732", + "https://openalex.org/W4247744717", + "https://openalex.org/W3161605631", + "https://openalex.org/W2361557821", + "https://openalex.org/W2905677023" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 39, + 100, + 105 + ], + "has": [ + 2 + ], + "emerged": [ + 3 + ], + "with": [ + 4 + ], + "big": [ + 5 + ], + "data": [ + 6, + 16 + ], + "technologies": [ + 7 + ], + "and": [ + 8, + 64, + 75, + 81, + 87, + 125, + 131 + ], + "high-performance": [ + 9 + ], + "computing": [ + 10 + ], + "to": [ + 11, + 35, + 106 + ], + "create": [ + 12 + ], + "new": [ + 13 + ], + "opportunities": [ + 14 + ], + "for": [ + 15, + 127 + ], + "intensive": [ + 17 + ], + "science": [ + 18 + ], + "in": [ + 19, + 40, + 49 + ], + "the": [ + 20, + 90 + ], + "multi-disciplinary": [ + 21 + ], + "agri-technologies": [ + 22 + ], + "domain.": [ + 23 + ], + "In": [ + 24 + ], + "this": [ + 25 + ], + "paper,": [ + 26 + ], + "we": [ + 27 + ], + "present": [ + 28 + ], + "a": [ + 29 + ], + "comprehensive": [ + 30 + ], + "review": [ + 31 + ], + "of": [ + 32, + 37, + 89 + ], + "research": [ + 33 + ], + "dedicated": [ + 34 + ], + "applications": [ + 36, + 54, + 71 + ], + "machine": [ + 38, + 99, + 104 + ], + "agricultural": [ + 41 + ], + "production": [ + 42 + ], + "systems.": [ + 43 + ], + "The": [ + 44, + 85 + ], + "works": [ + 45 + ], + "analyzed": [ + 46 + ], + "were": [ + 47 + ], + "categorized": [ + 48 + ], + "(a)": [ + 50 + ], + "crop": [ + 51, + 62 + ], + "management,": [ + 52, + 69 + ], + "including": [ + 53, + 70 + ], + "on": [ + 55, + 72 + ], + "yield": [ + 56 + ], + "prediction,": [ + 57 + ], + "disease": [ + 58 + ], + "detection,": [ + 59 + ], + "weed": [ + 60 + ], + "detection": [ + 61 + ], + "quality,": [ + 63 + ], + "species": [ + 65 + ], + "recognition;": [ + 66 + ], + "(b)": [ + 67 + ], + "livestock": [ + 68, + 76 + ], + "animal": [ + 73 + ], + "welfare": [ + 74 + ], + "production;": [ + 77 + ], + "(c)": [ + 78 + ], + "water": [ + 79 + ], + "management;": [ + 80 + ], + "(d)": [ + 82 + ], + "soil": [ + 83 + ], + "management.": [ + 84 + ], + "filtering": [ + 86 + ], + "classification": [ + 88 + ], + "presented": [ + 91 + ], + "articles": [ + 92 + ], + "demonstrate": [ + 93 + ], + "how": [ + 94 + ], + "agriculture": [ + 95 + ], + "will": [ + 96 + ], + "benefit": [ + 97 + ], + "from": [ + 98 + ], + "technologies.": [ + 101 + ], + "By": [ + 102 + ], + "applying": [ + 103 + ], + "sensor": [ + 107 + ], + "data,": [ + 108 + ], + "farm": [ + 109 + ], + "management": [ + 110 + ], + "systems": [ + 111 + ], + "are": [ + 112 + ], + "evolving": [ + 113 + ], + "into": [ + 114 + ], + "real": [ + 115 + ], + "time": [ + 116 + ], + "artificial": [ + 117 + ], + "intelligence": [ + 118 + ], + "enabled": [ + 119 + ], + "programs": [ + 120 + ], + "that": [ + 121 + ], + "provide": [ + 122 + ], + "rich": [ + 123 + ], + "recommendations": [ + 124 + ], + "insights": [ + 126 + ], + "farmer": [ + 128 + ], + "decision": [ + 129 + ], + "support": [ + 130 + ], + "action.": [ + 132 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 274 + }, + { + "year": 2025, + "cited_by_count": 585 + }, + { + "year": 2024, + "cited_by_count": 449 + }, + { + "year": 2023, + "cited_by_count": 526 + }, + { + "year": 2022, + "cited_by_count": 448 + }, + { + "year": 2021, + "cited_by_count": 383 + }, + { + "year": 2020, + "cited_by_count": 235 + }, + { + "year": 2019, + "cited_by_count": 74 + }, + { + "year": 2018, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2588003345", + "doi": "https://doi.org/10.1371/journal.pone.0169748", + "title": "SoilGrids250m: Global gridded soil information based on machine learning", + "display_name": "SoilGrids250m: Global gridded soil information based on machine learning", + "relevance_score": 3983.277, + "publication_year": 2017, + "publication_date": "2017-02-16", + "ids": { + "openalex": "https://openalex.org/W2588003345", + "doi": "https://doi.org/10.1371/journal.pone.0169748", + "mag": "2588003345", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28207752" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5008884945", + "display_name": "Tomislav Hengl", + "orcid": "https://orcid.org/0000-0002-9921-5129" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": true, + "raw_author_name": "Tomislav Hengl", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": "https://orcid.org/0000-0002-9921-5129", + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5066931705", + "display_name": "Jorge Mendes de Jesus", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Jorge Mendes de Jesus", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5011620756", + "display_name": "G.B.M. Heuvelink", + "orcid": "https://orcid.org/0000-0003-0959-9358" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Gerard B. M. Heuvelink", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048983679", + "display_name": "M. Ruiperez González", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Maria Ruiperez Gonzalez", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5019218652", + "display_name": "Milan Kilibarda", + "orcid": "https://orcid.org/0000-0002-2930-3596" + }, + "institutions": [ + { + "id": "https://openalex.org/I4068193", + "display_name": "University of Belgrade", + "ror": "https://ror.org/02qsmb048", + "country_code": "RS", + "type": "education", + "lineage": [ + "https://openalex.org/I4068193" + ] + } + ], + "countries": [ + "RS" + ], + "is_corresponding": false, + "raw_author_name": "Milan Kilibarda", + "raw_affiliation_strings": [ + "Faculty of Civil Engineering, University of Belgrade, Belgrade, Serbia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Civil Engineering, University of Belgrade, Belgrade, Serbia", + "institution_ids": [ + "https://openalex.org/I4068193" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5079601401", + "display_name": "Aleksandar Blagotić", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Aleksandar Blagotić", + "raw_affiliation_strings": [ + "GILab Ltd, Belgrade, Serbia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "GILab Ltd, Belgrade, Serbia", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050326105", + "display_name": "Wei Shangguan", + "orcid": "https://orcid.org/0000-0001-7622-8210" + }, + "institutions": [ + { + "id": "https://openalex.org/I157773358", + "display_name": "Sun Yat-sen University", + "ror": "https://ror.org/0064kty71", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I157773358" + ] + } + ], + "countries": [ + "CN" + ], + "is_corresponding": false, + "raw_author_name": "Wei Shangguan", + "raw_affiliation_strings": [ + "School of Atmospheric Sciences, Sun Yat-sen University, Guangzhou, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Atmospheric Sciences, Sun Yat-sen University, Guangzhou, China", + "institution_ids": [ + "https://openalex.org/I157773358" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5087084229", + "display_name": "Marvin N. Wright", + "orcid": "https://orcid.org/0000-0002-8542-6291" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210086407", + "display_name": "Institut für Medizinische Informatik, Biometrie und Epidemiologie", + "ror": "https://ror.org/00wqjrk21", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210086407" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Marvin N. Wright", + "raw_affiliation_strings": [ + "Institut für Medizinische Biometrie und Statistik, Lübeck, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut für Medizinische Biometrie und Statistik, Lübeck, Germany", + "institution_ids": [ + "https://openalex.org/I4210086407" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017091285", + "display_name": "Xiaoyuan Geng", + "orcid": "https://orcid.org/0000-0002-5391-6915" + }, + "institutions": [ + { + "id": "https://openalex.org/I1331897569", + "display_name": "Agriculture and Agri-Food Canada", + "ror": "https://ror.org/051dzs374", + "country_code": "CA", + "type": "government", + "lineage": [ + "https://openalex.org/I1331897569", + "https://openalex.org/I2802286613" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Xiaoyuan Geng", + "raw_affiliation_strings": [ + "Agriculture and Agri-Food Canada, Ottawa (Ontario), Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Agriculture and Agri-Food Canada, Ottawa (Ontario), Canada", + "institution_ids": [ + "https://openalex.org/I1331897569" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5033747033", + "display_name": "Bernhard Bauer-Marschallinger", + "orcid": "https://orcid.org/0000-0001-7356-7516" + }, + "institutions": [ + { + "id": "https://openalex.org/I145847075", + "display_name": "TU Wien", + "ror": "https://ror.org/04d836q62", + "country_code": "AT", + "type": "education", + "lineage": [ + "https://openalex.org/I145847075" + ] + } + ], + "countries": [ + "AT" + ], + "is_corresponding": false, + "raw_author_name": "Bernhard Bauer-Marschallinger", + "raw_affiliation_strings": [ + "Department of Geodesy and Geoinformation, Vienna University of Technology, Vienna, Austria" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Geodesy and Geoinformation, Vienna University of Technology, Vienna, Austria", + "institution_ids": [ + "https://openalex.org/I145847075" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5047925002", + "display_name": "Mário Guevara", + "orcid": "https://orcid.org/0000-0002-9788-9947" + }, + "institutions": [ + { + "id": "https://openalex.org/I86501945", + "display_name": "University of Delaware", + "ror": "https://ror.org/01sbq1a82", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86501945" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mario Antonio Guevara", + "raw_affiliation_strings": [ + "University of Delaware, Newark (DE), United States of America" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Delaware, Newark (DE), United States of America", + "institution_ids": [ + "https://openalex.org/I86501945" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5051794236", + "display_name": "Rodrigo Vargas", + "orcid": "https://orcid.org/0000-0001-6829-5333" + }, + "institutions": [ + { + "id": "https://openalex.org/I86501945", + "display_name": "University of Delaware", + "ror": "https://ror.org/01sbq1a82", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86501945" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rodrigo Vargas", + "raw_affiliation_strings": [ + "University of Delaware, Newark (DE), United States of America" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Delaware, Newark (DE), United States of America", + "institution_ids": [ + "https://openalex.org/I86501945" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073655843", + "display_name": "R.A. MacMillan", + "orcid": "https://orcid.org/0000-0001-9063-3634" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Robert A. MacMillan", + "raw_affiliation_strings": [ + "LandMapper Environmental Solutions Inc., Edmonton (Alberta), Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "LandMapper Environmental Solutions Inc., Edmonton (Alberta), Canada", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078952063", + "display_name": "N.H. Batjes", + "orcid": "https://orcid.org/0000-0003-2367-3067" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Niels H. Batjes", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5071302765", + "display_name": "J.G.B. Leenaars", + "orcid": "https://orcid.org/0000-0003-1091-7114" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Johan G. B. Leenaars", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5084085293", + "display_name": "Eloi Ribeiro", + "orcid": "https://orcid.org/0000-0002-2324-3000" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Eloi Ribeiro", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5037321926", + "display_name": "Ichsani Wheeler", + "orcid": "https://orcid.org/0000-0002-9425-9157" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ichsani Wheeler", + "raw_affiliation_strings": [ + "Envirometrix Inc., Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Envirometrix Inc., Wageningen, the Netherlands", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5091009469", + "display_name": "S. Mantel", + "orcid": "https://orcid.org/0000-0002-9623-0227" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Stephan Mantel", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5031737926", + "display_name": "Bas Kempen", + "orcid": "https://orcid.org/0000-0002-2841-0058" + }, + "institutions": [ + { + "id": "https://openalex.org/I31761138", + "display_name": "ISRIC - World Soil Information", + "ror": "https://ror.org/01z8yfp14", + "country_code": "NL", + "type": "other", + "lineage": [ + "https://openalex.org/I31761138" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Bas Kempen", + "raw_affiliation_strings": [ + "ISRIC - World Soil Information, Wageningen, the Netherlands", + "ISRIC — World Soil Information, Wageningen, the Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "ISRIC - World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + }, + { + "raw_affiliation_string": "ISRIC — World Soil Information, Wageningen, the Netherlands", + "institution_ids": [ + "https://openalex.org/I31761138" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 7, + "institutions_distinct_count": 19, + "corresponding_author_ids": [ + "https://openalex.org/A5008884945" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I31761138" + ], + "apc_list": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "apc_paid": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "fwci": 145.6589, + "has_fulltext": true, + "cited_by_count": 4623, + "citation_normalized_percentile": { + "value": 0.99992747, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "12", + "issue": "2", + "first_page": "e0169748", + "last_page": "e0169748" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10770", + "display_name": "Soil Geostatistics and Mapping", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/2305", + "display_name": "Environmental Engineering" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14339", + "display_name": "Image Processing and 3D Reconstruction", + "score": 0.9588000178337097, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10004", + "display_name": "Soil Carbon and Nitrogen Dynamics", + "score": 0.9283999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1111", + "display_name": "Soil Science" + }, + "field": { + "id": "https://openalex.org/fields/11", + "display_name": "Agricultural and Biological Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.6831311583518982 + }, + { + "id": "https://openalex.org/keywords/landform", + "display_name": "Landform", + "score": 0.5974330902099609 + }, + { + "id": "https://openalex.org/keywords/soil-texture", + "display_name": "Soil texture", + "score": 0.5643965005874634 + }, + { + "id": "https://openalex.org/keywords/gradient-boosting", + "display_name": "Gradient boosting", + "score": 0.5401628613471985 + }, + { + "id": "https://openalex.org/keywords/soil-science", + "display_name": "Soil science", + "score": 0.48470354080200195 + }, + { + "id": "https://openalex.org/keywords/environmental-science", + "display_name": "Environmental science", + "score": 0.47415441274642944 + }, + { + "id": "https://openalex.org/keywords/soil-map", + "display_name": "Soil map", + "score": 0.4570498764514923 + }, + { + "id": "https://openalex.org/keywords/shuttle-radar-topography-mission", + "display_name": "Shuttle Radar Topography Mission", + "score": 0.45663928985595703 + }, + { + "id": "https://openalex.org/keywords/ensemble-learning", + "display_name": "Ensemble learning", + "score": 0.44700905680656433 + }, + { + "id": "https://openalex.org/keywords/spatial-variability", + "display_name": "Spatial variability", + "score": 0.4328833520412445 + }, + { + "id": "https://openalex.org/keywords/standard-deviation", + "display_name": "Standard deviation", + "score": 0.4192587435245514 + }, + { + "id": "https://openalex.org/keywords/land-cover", + "display_name": "Land cover", + "score": 0.4154254198074341 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3507459759712219 + }, + { + "id": "https://openalex.org/keywords/remote-sensing", + "display_name": "Remote sensing", + "score": 0.3381074368953705 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.279972106218338 + }, + { + "id": "https://openalex.org/keywords/cartography", + "display_name": "Cartography", + "score": 0.2646501958370209 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2522737383842468 + }, + { + "id": "https://openalex.org/keywords/land-use", + "display_name": "Land use", + "score": 0.24553540349006653 + }, + { + "id": "https://openalex.org/keywords/digital-elevation-model", + "display_name": "Digital elevation model", + "score": 0.23033851385116577 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.22281324863433838 + }, + { + "id": "https://openalex.org/keywords/geology", + "display_name": "Geology", + "score": 0.2194647192955017 + }, + { + "id": "https://openalex.org/keywords/soil-water", + "display_name": "Soil water", + "score": 0.2089666724205017 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.6831311583518982 + }, + { + "id": "https://openalex.org/C108497213", + "wikidata": "https://www.wikidata.org/wiki/Q271669", + "display_name": "Landform", + "level": 2, + "score": 0.5974330902099609 + }, + { + "id": "https://openalex.org/C175963888", + "wikidata": "https://www.wikidata.org/wiki/Q5026010", + "display_name": "Soil texture", + "level": 3, + "score": 0.5643965005874634 + }, + { + "id": "https://openalex.org/C70153297", + "wikidata": "https://www.wikidata.org/wiki/Q5591907", + "display_name": "Gradient boosting", + "level": 3, + "score": 0.5401628613471985 + }, + { + "id": "https://openalex.org/C159390177", + "wikidata": "https://www.wikidata.org/wiki/Q9161265", + "display_name": "Soil science", + "level": 1, + "score": 0.48470354080200195 + }, + { + "id": "https://openalex.org/C39432304", + "wikidata": "https://www.wikidata.org/wiki/Q188847", + "display_name": "Environmental science", + "level": 0, + "score": 0.47415441274642944 + }, + { + "id": "https://openalex.org/C71864017", + "wikidata": "https://www.wikidata.org/wiki/Q889561", + "display_name": "Soil map", + "level": 3, + "score": 0.4570498764514923 + }, + { + "id": "https://openalex.org/C184149073", + "wikidata": "https://www.wikidata.org/wiki/Q965136", + "display_name": "Shuttle Radar Topography Mission", + "level": 3, + "score": 0.45663928985595703 + }, + { + "id": "https://openalex.org/C45942800", + "wikidata": "https://www.wikidata.org/wiki/Q245652", + "display_name": "Ensemble learning", + "level": 2, + "score": 0.44700905680656433 + }, + { + "id": "https://openalex.org/C94747663", + "wikidata": "https://www.wikidata.org/wiki/Q7574086", + "display_name": "Spatial variability", + "level": 2, + "score": 0.4328833520412445 + }, + { + "id": "https://openalex.org/C22679943", + "wikidata": "https://www.wikidata.org/wiki/Q159375", + "display_name": "Standard deviation", + "level": 2, + "score": 0.4192587435245514 + }, + { + "id": "https://openalex.org/C2780648208", + "wikidata": "https://www.wikidata.org/wiki/Q3001793", + "display_name": "Land cover", + "level": 3, + "score": 0.4154254198074341 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3507459759712219 + }, + { + "id": "https://openalex.org/C62649853", + "wikidata": "https://www.wikidata.org/wiki/Q199687", + "display_name": "Remote sensing", + "level": 1, + "score": 0.3381074368953705 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.279972106218338 + }, + { + "id": "https://openalex.org/C58640448", + "wikidata": "https://www.wikidata.org/wiki/Q42515", + "display_name": "Cartography", + "level": 1, + "score": 0.2646501958370209 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2522737383842468 + }, + { + "id": "https://openalex.org/C4792198", + "wikidata": "https://www.wikidata.org/wiki/Q1165944", + "display_name": "Land use", + "level": 2, + "score": 0.24553540349006653 + }, + { + "id": "https://openalex.org/C181843262", + "wikidata": "https://www.wikidata.org/wiki/Q640492", + "display_name": "Digital elevation model", + "level": 2, + "score": 0.23033851385116577 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.22281324863433838 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.2194647192955017 + }, + { + "id": "https://openalex.org/C159750122", + "wikidata": "https://www.wikidata.org/wiki/Q96621023", + "display_name": "Soil water", + "level": 2, + "score": 0.2089666724205017 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C147176958", + "wikidata": "https://www.wikidata.org/wiki/Q77590", + "display_name": "Civil engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003247", + "descriptor_name": "Conservation of Natural Resources", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D004784", + "descriptor_name": "Environmental Monitoring", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D008962", + "descriptor_name": "Models, Theoretical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D012987", + "descriptor_name": "Soil", + "qualifier_ui": "Q000737", + "qualifier_name": "chemistry", + "is_major_topic": false + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D040362", + "descriptor_name": "Geographic Information Systems", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + { + "id": "pmid:28207752", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28207752", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PloS one", + "raw_type": null + }, + { + "id": "pmh:oai:library.wur.nl:wurpubs/526278", + "is_oa": true, + "landing_page_url": "https://research.wur.nl/en/publications/soilgrids250m-global-gridded-soil-information-based-on-machine-le", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210201231", + "display_name": "Socio-Environmental Systems Modeling", + "issn_l": "2663-3027", + "issn": [ + "2663-3027" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "acceptedVersion", + "is_accepted": true, + "is_published": false, + "raw_source_name": "ISSN: 1932-6203", + "raw_type": "Article/Letter to editor" + }, + { + "id": "pmh:oai:RePEc:plo:pone00:0169748", + "is_oa": false, + "landing_page_url": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0169748", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:doaj.org/article:ad46a8c2c401417e8b291d79603dfb3a", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/ad46a8c2c401417e8b291d79603dfb3a", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS ONE, Vol 12, Iss 2, p e0169748 (2017)", + "raw_type": "article" + }, + { + "id": "pmh:oai:grafar.grf.bg.ac.rs:123456789/885", + "is_oa": true, + "landing_page_url": "http://grafar.grf.bg.ac.rs/handle/123456789/885", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402541", + "display_name": "GraFar (University of Belgrade, Faculty of Civil Engineering)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210101313", + "host_organization_name": "University Hospital Center Dr Dragiša Mišović", + "host_organization_lineage": [ + "https://openalex.org/I4210101313" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLOS One", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5313206", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5313206", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS One", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1371/journal.pone.0169748", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0169748", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0169748&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "score": 0.6600000262260437, + "id": "https://metadata.un.org/sdg/15", + "display_name": "Life in Land" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2588003345.pdf", + "grobid_xml": "https://content.openalex.org/works/W2588003345.grobid-xml" + }, + "referenced_works_count": 96, + "referenced_works": [ + "https://openalex.org/W30646539", + "https://openalex.org/W92141931", + "https://openalex.org/W191102129", + "https://openalex.org/W429766147", + "https://openalex.org/W595863337", + "https://openalex.org/W1482533224", + "https://openalex.org/W1513618424", + "https://openalex.org/W1573647811", + "https://openalex.org/W1606754933", + "https://openalex.org/W1689749838", + "https://openalex.org/W1727844347", + "https://openalex.org/W1786856418", + "https://openalex.org/W1831050183", + "https://openalex.org/W1895518694", + "https://openalex.org/W1969543759", + "https://openalex.org/W1980225565", + "https://openalex.org/W1983650914", + "https://openalex.org/W1984828485", + "https://openalex.org/W1985839444", + "https://openalex.org/W1990590197", + "https://openalex.org/W1993415357", + "https://openalex.org/W2005164184", + "https://openalex.org/W2006929658", + "https://openalex.org/W2018337952", + "https://openalex.org/W2023312901", + "https://openalex.org/W2023942604", + "https://openalex.org/W2027120296", + "https://openalex.org/W2032518966", + "https://openalex.org/W2033585087", + "https://openalex.org/W2036376676", + "https://openalex.org/W2037789405", + "https://openalex.org/W2050179592", + "https://openalex.org/W2057779644", + "https://openalex.org/W2066626803", + "https://openalex.org/W2078720475", + "https://openalex.org/W2088449361", + "https://openalex.org/W2102467070", + "https://openalex.org/W2112776483", + "https://openalex.org/W2114727579", + "https://openalex.org/W2123845623", + "https://openalex.org/W2126822776", + "https://openalex.org/W2130089270", + "https://openalex.org/W2130560194", + "https://openalex.org/W2131347105", + "https://openalex.org/W2131822674", + "https://openalex.org/W2133505387", + "https://openalex.org/W2135479785", + "https://openalex.org/W2140389576", + "https://openalex.org/W2142800341", + "https://openalex.org/W2145126338", + "https://openalex.org/W2151135366", + "https://openalex.org/W2151666808", + "https://openalex.org/W2155544089", + "https://openalex.org/W2156713494", + "https://openalex.org/W2157395790", + "https://openalex.org/W2158441306", + "https://openalex.org/W2160615957", + "https://openalex.org/W2179669825", + "https://openalex.org/W2191676425", + "https://openalex.org/W2199578048", + "https://openalex.org/W2205945645", + "https://openalex.org/W2287354130", + "https://openalex.org/W2295598076", + "https://openalex.org/W2310573451", + "https://openalex.org/W2346841190", + "https://openalex.org/W2417209869", + "https://openalex.org/W2463898247", + "https://openalex.org/W2479339604", + "https://openalex.org/W2514977123", + "https://openalex.org/W2522985694", + "https://openalex.org/W2554693566", + "https://openalex.org/W2557963070", + "https://openalex.org/W2564901692", + "https://openalex.org/W2580821229", + "https://openalex.org/W2582718246", + "https://openalex.org/W2727623211", + "https://openalex.org/W2730460668", + "https://openalex.org/W2736166619", + "https://openalex.org/W2890624634", + "https://openalex.org/W2890805913", + "https://openalex.org/W2917425395", + "https://openalex.org/W2917661374", + "https://openalex.org/W3022713798", + "https://openalex.org/W3102027041", + "https://openalex.org/W3102476541", + "https://openalex.org/W3163617311", + "https://openalex.org/W4211056572", + "https://openalex.org/W4250720198", + "https://openalex.org/W4252713891", + "https://openalex.org/W4285719527", + "https://openalex.org/W4399271987", + "https://openalex.org/W4399569501", + "https://openalex.org/W6634147026", + "https://openalex.org/W6727196412", + "https://openalex.org/W6870084398", + "https://openalex.org/W6891733106" + ], + "related_works": [ + "https://openalex.org/W3208169454", + "https://openalex.org/W4322004982", + "https://openalex.org/W2981500096", + "https://openalex.org/W2362208029", + "https://openalex.org/W3161502711", + "https://openalex.org/W2096944896", + "https://openalex.org/W2620784765", + "https://openalex.org/W2896029770", + "https://openalex.org/W2383154062", + "https://openalex.org/W4220718694" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "paper": [ + 1 + ], + "describes": [ + 2 + ], + "the": [ + 3, + 10, + 17, + 78, + 151, + 166, + 187, + 191, + 199, + 220, + 293, + 335 + ], + "technical": [ + 4 + ], + "development": [ + 5, + 248, + 294 + ], + "and": [ + 6, + 13, + 47, + 60, + 71, + 83, + 104, + 124, + 127, + 142, + 157, + 174, + 239, + 260, + 268, + 323 + ], + "accuracy": [ + 7, + 189 + ], + "assessment": [ + 8 + ], + "of": [ + 9, + 16, + 67, + 73, + 107, + 137, + 161, + 177, + 183, + 193, + 202, + 222, + 226, + 243, + 249, + 254, + 262, + 271, + 284, + 289, + 295, + 300 + ], + "most": [ + 11 + ], + "recent": [ + 12 + ], + "improved": [ + 14 + ], + "version": [ + 15, + 201 + ], + "SoilGrids": [ + 18, + 26, + 203, + 250, + 301, + 331 + ], + "system": [ + 19 + ], + "at": [ + 20, + 50, + 204 + ], + "250m": [ + 21 + ], + "resolution": [ + 22, + 236 + ], + "(June": [ + 23 + ], + "2016": [ + 24 + ], + "update).": [ + 25 + ], + "provides": [ + 27 + ], + "global": [ + 28, + 125, + 325 + ], + "predictions": [ + 29, + 66, + 302 + ], + "for": [ + 30, + 102, + 281, + 297 + ], + "standard": [ + 31, + 52 + ], + "numeric": [ + 32 + ], + "soil": [ + 33, + 44, + 74, + 99, + 111, + 245, + 276, + 285, + 308, + 326 + ], + "properties": [ + 34 + ], + "(organic": [ + 35 + ], + "carbon,": [ + 36 + ], + "bulk": [ + 37 + ], + "density,": [ + 38 + ], + "Cation": [ + 39 + ], + "Exchange": [ + 40 + ], + "Capacity": [ + 41 + ], + "(CEC),": [ + 42 + ], + "pH,": [ + 43 + ], + "texture": [ + 45 + ], + "fractions": [ + 46 + ], + "coarse": [ + 48 + ], + "fragments)": [ + 49, + 173 + ], + "seven": [ + 51 + ], + "depths": [ + 53 + ], + "(0,": [ + 54 + ], + "5,": [ + 55 + ], + "15,": [ + 56 + ], + "30,": [ + 57 + ], + "60,": [ + 58 + ], + "100": [ + 59 + ], + "200": [ + 61 + ], + "cm),": [ + 62 + ], + "in": [ + 63, + 91, + 150, + 186, + 196, + 233 + ], + "addition": [ + 64 + ], + "to": [ + 65, + 69, + 133, + 198, + 212, + 230, + 241, + 256, + 312 + ], + "depth": [ + 68 + ], + "bedrock": [ + 70 + ], + "distribution": [ + 72 + ], + "classes": [ + 75 + ], + "based": [ + 76, + 95 + ], + "on": [ + 77, + 96 + ], + "World": [ + 79 + ], + "Reference": [ + 80 + ], + "Base": [ + 81, + 338 + ], + "(WRB)": [ + 82 + ], + "USDA": [ + 84 + ], + "classification": [ + 85 + ], + "systems": [ + 86 + ], + "(ca.": [ + 87 + ], + "280": [ + 88 + ], + "raster": [ + 89 + ], + "layers": [ + 90, + 238 + ], + "total).": [ + 92 + ], + "Predictions": [ + 93 + ], + "were": [ + 94, + 131 + ], + "ca.": [ + 97 + ], + "150,000": [ + 98 + ], + "profiles": [ + 100 + ], + "used": [ + 101, + 132 + ], + "training": [ + 103 + ], + "a": [ + 105 + ], + "stack": [ + 106 + ], + "158": [ + 108 + ], + "remote": [ + 109 + ], + "sensing-based": [ + 110 + ], + "covariates": [ + 112 + ], + "(primarily": [ + 113 + ], + "derived": [ + 114 + ], + "from": [ + 115, + 210 + ], + "MODIS": [ + 116 + ], + "land": [ + 117 + ], + "products,": [ + 118 + ], + "SRTM": [ + 119 + ], + "DEM": [ + 120 + ], + "derivatives,": [ + 121 + ], + "climatic": [ + 122 + ], + "images": [ + 123 + ], + "landform": [ + 126 + ], + "lithology": [ + 128 + ], + "maps),": [ + 129 + ], + "which": [ + 130 + ], + "fit": [ + 134 + ], + "an": [ + 135, + 180 + ], + "ensemble": [ + 136, + 167 + ], + "machine": [ + 138, + 223 + ], + "learning": [ + 139, + 224 + ], + "methods-random": [ + 140 + ], + "forest": [ + 141 + ], + "gradient": [ + 143 + ], + "boosting": [ + 144 + ], + "and/or": [ + 145, + 305 + ], + "multinomial": [ + 146 + ], + "logistic": [ + 147 + ], + "regression-as": [ + 148 + ], + "implemented": [ + 149 + ], + "R": [ + 152 + ], + "packages": [ + 153 + ], + "ranger,": [ + 154 + ], + "xgboost,": [ + 155 + ], + "nnet": [ + 156 + ], + "caret.": [ + 158 + ], + "The": [ + 159 + ], + "results": [ + 160 + ], + "10-fold": [ + 162 + ], + "cross-validation": [ + 163 + ], + "show": [ + 164 + ], + "that": [ + 165, + 275, + 318 + ], + "models": [ + 168 + ], + "explain": [ + 169 + ], + "between": [ + 170 + ], + "56%": [ + 171 + ], + "(coarse": [ + 172 + ], + "83%": [ + 175 + ], + "(pH)": [ + 176 + ], + "variation": [ + 178, + 194 + ], + "with": [ + 179, + 303 + ], + "overall": [ + 181 + ], + "average": [ + 182 + ], + "61%.": [ + 184 + ], + "Improvements": [ + 185, + 214 + ], + "relative": [ + 188 + ], + "considering": [ + 190 + ], + "amount": [ + 192 + ], + "explained,": [ + 195 + ], + "comparison": [ + 197 + ], + "previous": [ + 200 + ], + "1": [ + 205 + ], + "km": [ + 206 + ], + "spatial": [ + 207, + 272, + 315 + ], + "resolution,": [ + 208 + ], + "range": [ + 209 + ], + "60": [ + 211 + ], + "230%.": [ + 213 + ], + "can": [ + 215, + 278, + 328 + ], + "be": [ + 216, + 279, + 329 + ], + "attributed": [ + 217 + ], + "to:": [ + 218 + ], + "(1)": [ + 219 + ], + "use": [ + 221 + ], + "instead": [ + 225 + ], + "linear": [ + 227 + ], + "regression,": [ + 228 + ], + "(2)": [ + 229 + ], + "considerable": [ + 231 + ], + "investments": [ + 232 + ], + "preparing": [ + 234 + ], + "finer": [ + 235 + ], + "covariate": [ + 237 + ], + "(3)": [ + 240 + ], + "insertion": [ + 242 + ], + "additional": [ + 244 + ], + "profiles.": [ + 246 + ], + "Further": [ + 247 + ], + "could": [ + 251 + ], + "include": [ + 252 + ], + "refinement": [ + 253 + ], + "methods": [ + 255, + 296 + ], + "incorporate": [ + 257 + ], + "input": [ + 258 + ], + "uncertainties": [ + 259 + ], + "derivation": [ + 261 + ], + "posterior": [ + 263 + ], + "probability": [ + 264 + ], + "distributions": [ + 265 + ], + "(per": [ + 266 + ], + "pixel),": [ + 267 + ], + "further": [ + 269 + ], + "automation": [ + 270 + ], + "modeling": [ + 273 + ], + "so": [ + 274, + 317 + ], + "maps": [ + 277 + ], + "generated": [ + 280 + ], + "potentially": [ + 282 + ], + "hundreds": [ + 283 + ], + "variables.": [ + 286 + ], + "Another": [ + 287 + ], + "area": [ + 288 + ], + "future": [ + 290 + ], + "research": [ + 291 + ], + "is": [ + 292 + ], + "multiscale": [ + 298 + ], + "merging": [ + 299 + ], + "local": [ + 304 + ], + "national": [ + 306 + ], + "gridded": [ + 307 + ], + "products": [ + 309 + ], + "(e.g.": [ + 310 + ], + "up": [ + 311 + ], + "50": [ + 313 + ], + "m": [ + 314 + ], + "resolution)": [ + 316 + ], + "increasingly": [ + 319 + ], + "more": [ + 320 + ], + "accurate,": [ + 321 + ], + "complete": [ + 322 + ], + "consistent": [ + 324 + ], + "information": [ + 327 + ], + "produced.": [ + 330 + ], + "are": [ + 332 + ], + "available": [ + 333 + ], + "under": [ + 334 + ], + "Open": [ + 336 + ], + "Data": [ + 337 + ], + "License.": [ + 339 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 265 + }, + { + "year": 2025, + "cited_by_count": 669 + }, + { + "year": 2024, + "cited_by_count": 634 + }, + { + "year": 2023, + "cited_by_count": 702 + }, + { + "year": 2022, + "cited_by_count": 702 + }, + { + "year": 2021, + "cited_by_count": 699 + }, + { + "year": 2020, + "cited_by_count": 422 + }, + { + "year": 2019, + "cited_by_count": 281 + }, + { + "year": 2018, + "cited_by_count": 185 + }, + { + "year": 2017, + "cited_by_count": 57 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3153990350", + "doi": "https://doi.org/10.1007/s12525-021-00475-2", + "title": "Machine learning and deep learning", + "display_name": "Machine learning and deep learning", + "relevance_score": 3910.7214, + "publication_year": 2021, + "publication_date": "2021-04-08", + "ids": { + "openalex": "https://openalex.org/W3153990350", + "doi": "https://doi.org/10.1007/s12525-021-00475-2", + "mag": "3153990350" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "hybrid", + "oa_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Christian Janiesch", + "orcid": "https://orcid.org/0000-0002-8050-123X" + }, + "institutions": [ + { + "id": "https://openalex.org/I25974101", + "display_name": "University of Würzburg", + "ror": "https://ror.org/00fbnyb24", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I25974101" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Christian Janiesch", + "raw_affiliation_strings": [ + "Faculty of Business Management & Economics, University of Würzburg, Sanderring 2, 97070, Würzburg, Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-8050-123X", + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Business Management & Economics, University of Würzburg, Sanderring 2, 97070, Würzburg, Germany", + "institution_ids": [ + "https://openalex.org/I25974101" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Patrick Zschech", + "orcid": "https://orcid.org/0000-0002-1105-8086" + }, + "institutions": [ + { + "id": "https://openalex.org/I181369854", + "display_name": "Friedrich-Alexander-Universität Erlangen-Nürnberg", + "ror": "https://ror.org/00f7hpc57", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I181369854" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Patrick Zschech", + "raw_affiliation_strings": [ + "Institute of Information Systems, Friedrich-Alexander University Erlangen-Nürnberg, Lange Gasse 20, 90403, Nürnberg, Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-1105-8086", + "affiliations": [ + { + "raw_affiliation_string": "Institute of Information Systems, Friedrich-Alexander University Erlangen-Nürnberg, Lange Gasse 20, 90403, Nürnberg, Germany", + "institution_ids": [ + "https://openalex.org/I181369854" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Kai Heinrich", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95793202", + "display_name": "Otto-von-Guericke-Universität Magdeburg", + "ror": "https://ror.org/00ggpsq73", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I95793202" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Kai Heinrich", + "raw_affiliation_strings": [ + "Faculty of Economics and Management, Otto-von-Guericke-Universität Magdeburg, Universitätsplatz 2, 39106, Magdeburg, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Economics and Management, Otto-von-Guericke-Universität Magdeburg, Universitätsplatz 2, 39106, Magdeburg, Germany", + "institution_ids": [ + "https://openalex.org/I95793202" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I25974101" + ], + "apc_list": { + "value": 2590, + "currency": "EUR", + "value_usd": 3190 + }, + "apc_paid": { + "value": 2590, + "currency": "EUR", + "value_usd": 3190 + }, + "fwci": 395.9188, + "has_fulltext": true, + "cited_by_count": 2443, + "citation_normalized_percentile": { + "value": 0.9999934, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "31", + "issue": "3", + "first_page": "685", + "last_page": "695" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T14347", + "display_name": "Big Data and Digital Economy", + "score": 0.0794999971985817, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T14347", + "display_name": "Big Data and Digital Economy", + "score": 0.0794999971985817, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14222", + "display_name": "Knowledge Management and Technology", + "score": 0.03700000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T11891", + "display_name": "Big Data and Business Intelligence", + "score": 0.03220000118017197, + "subfield": { + "id": "https://openalex.org/subfields/1404", + "display_name": "Management Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/14", + "display_name": "Business, Management and Accounting" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.7547000050544739 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5849999785423279 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.5758000016212463 + }, + { + "id": "https://openalex.org/keywords/underpinning", + "display_name": "Underpinning", + "score": 0.5667999982833862 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5267999768257141 + }, + { + "id": "https://openalex.org/keywords/instance-based-learning", + "display_name": "Instance-based learning", + "score": 0.34700000286102295 + }, + { + "id": "https://openalex.org/keywords/hyper-heuristic", + "display_name": "Hyper-heuristic", + "score": 0.34619998931884766 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.3402000069618225 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.8934999704360962 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.8062000274658203 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.7547000050544739 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6575000286102295 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5849999785423279 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.5758000016212463 + }, + { + "id": "https://openalex.org/C2780871342", + "wikidata": "https://www.wikidata.org/wiki/Q7883752", + "display_name": "Underpinning", + "level": 2, + "score": 0.5667999982833862 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5267999768257141 + }, + { + "id": "https://openalex.org/C24138899", + "wikidata": "https://www.wikidata.org/wiki/Q17141258", + "display_name": "Instance-based learning", + "level": 3, + "score": 0.34700000286102295 + }, + { + "id": "https://openalex.org/C117270229", + "wikidata": "https://www.wikidata.org/wiki/Q5957539", + "display_name": "Hyper-heuristic", + "level": 5, + "score": 0.34619998931884766 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.3402000069618225 + }, + { + "id": "https://openalex.org/C188888258", + "wikidata": "https://www.wikidata.org/wiki/Q7353390", + "display_name": "Robot learning", + "level": 4, + "score": 0.32989999651908875 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.32100000977516174 + }, + { + "id": "https://openalex.org/C56397880", + "wikidata": "https://www.wikidata.org/wiki/Q6044094", + "display_name": "Intelligent decision support system", + "level": 2, + "score": 0.3176000118255615 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.30889999866485596 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.2793000042438507 + }, + { + "id": "https://openalex.org/C189474733", + "wikidata": "https://www.wikidata.org/wiki/Q917912", + "display_name": "Model building", + "level": 2, + "score": 0.2775000035762787 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.274399995803833 + }, + { + "id": "https://openalex.org/C97385483", + "wikidata": "https://www.wikidata.org/wiki/Q16954980", + "display_name": "Deep belief network", + "level": 3, + "score": 0.2669999897480011 + }, + { + "id": "https://openalex.org/C8038995", + "wikidata": "https://www.wikidata.org/wiki/Q1152135", + "display_name": "Unsupervised learning", + "level": 2, + "score": 0.2630999982357025 + }, + { + "id": "https://openalex.org/C67186912", + "wikidata": "https://www.wikidata.org/wiki/Q367664", + "display_name": "Data modeling", + "level": 2, + "score": 0.2572000026702881 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.2549999952316284 + }, + { + "id": "https://openalex.org/C157170001", + "wikidata": "https://www.wikidata.org/wiki/Q4781507", + "display_name": "Applications of artificial intelligence", + "level": 2, + "score": 0.2500999867916107 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:2104.05314", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/2104.05314", + "pdf_url": "https://arxiv.org/pdf/2104.05314", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:RePEc:spr:elmark:v:31:y:2021:i:3:d:10.1007_s12525-021-00475-2", + "is_oa": false, + "landing_page_url": "http://link.springer.com/10.1007/s12525-021-00475-2", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:econstor.eu:10419/287156", + "is_oa": true, + "landing_page_url": "https://hdl.handle.net/10419/287156", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401696", + "display_name": "Econstor (Econstor)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "doc-type:article" + }, + { + "id": "pmh:oai:opus.bibliothek.uni-wuerzburg.de:27015", + "is_oa": true, + "landing_page_url": "https://opus.bibliothek.uni-wuerzburg.de/frontdoor/index/index/docId/27015", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401635", + "display_name": "Online Publication Service of Würzburg University (Würzburg University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I25974101", + "host_organization_name": "University of Würzburg", + "host_organization_lineage": [ + "https://openalex.org/I25974101" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "article" + }, + { + "id": "pmh:oai:ub.uni-erlangen.de-opus:22263", + "is_oa": true, + "landing_page_url": "https://opus4.kobv.de/opus4-fau/frontdoor/index/index/docId/22263", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401636", + "display_name": "OPUS Repository (Kooperativer Bibliotheksverbund Berlin-Brandenburg)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1007/s12525-021-00475-2", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/s12525-021-00475-2", + "pdf_url": "https://link.springer.com/content/pdf/10.1007/s12525-021-00475-2.pdf", + "source": { + "id": "https://openalex.org/S137519996", + "display_name": "Electronic Markets", + "issn_l": "1019-6781", + "issn": [ + "1019-6781", + "1422-8890" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319900", + "host_organization_name": "Springer Science+Business Media", + "host_organization_lineage": [ + "https://openalex.org/P4310319900", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer Science+Business Media", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronic Markets", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G2151094965", + "display_name": null, + "funder_award_id": "DIK0143/02", + "funder_id": "https://openalex.org/F4320331012", + "funder_display_name": "Bayerische Staatsministerium für Wirtschaft, Landesentwicklung und Energie" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320331012", + "display_name": "Bayerische Staatsministerium für Wirtschaft, Landesentwicklung und Energie", + "ror": null + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3153990350.pdf", + "grobid_xml": "https://content.openalex.org/works/W3153990350.grobid-xml" + }, + "referenced_works_count": 53, + "referenced_works": [ + "https://openalex.org/W822801274", + "https://openalex.org/W1506806321", + "https://openalex.org/W1565746575", + "https://openalex.org/W1901616594", + "https://openalex.org/W1978394996", + "https://openalex.org/W2034059032", + "https://openalex.org/W2059111627", + "https://openalex.org/W2076063813", + "https://openalex.org/W2096352448", + "https://openalex.org/W2099419573", + "https://openalex.org/W2106577732", + "https://openalex.org/W2151103935", + "https://openalex.org/W2161969291", + "https://openalex.org/W2164598857", + "https://openalex.org/W2251410821", + "https://openalex.org/W2269742369", + "https://openalex.org/W2585169518", + "https://openalex.org/W2751039952", + "https://openalex.org/W2798302089", + "https://openalex.org/W2800722845", + "https://openalex.org/W2802955324", + "https://openalex.org/W2884001105", + "https://openalex.org/W2888794009", + "https://openalex.org/W2891503716", + "https://openalex.org/W2892341857", + "https://openalex.org/W2895991254", + "https://openalex.org/W2900453322", + "https://openalex.org/W2902907165", + "https://openalex.org/W2915015079", + "https://openalex.org/W2919115771", + "https://openalex.org/W2921353139", + "https://openalex.org/W2945976633", + "https://openalex.org/W2953189907", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963428668", + "https://openalex.org/W2964716450", + "https://openalex.org/W2981207549", + "https://openalex.org/W2989851933", + "https://openalex.org/W2995871253", + "https://openalex.org/W2999321020", + "https://openalex.org/W3000062802", + "https://openalex.org/W3005351117", + "https://openalex.org/W3025420269", + "https://openalex.org/W3094605956", + "https://openalex.org/W3095865939", + "https://openalex.org/W3118496513", + "https://openalex.org/W3120261410", + "https://openalex.org/W3150796314", + "https://openalex.org/W4212902066", + "https://openalex.org/W4236093597", + "https://openalex.org/W4255466416", + "https://openalex.org/W6730267373", + "https://openalex.org/W6750380350" + ], + "related_works": [], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "Today,": [ + 1 + ], + "intelligent": [ + 2, + 91, + 128 + ], + "systems": [ + 3, + 20, + 129 + ], + "that": [ + 4, + 123 + ], + "offer": [ + 5 + ], + "artificial": [ + 6, + 48, + 152 + ], + "intelligence": [ + 7, + 153 + ], + "capabilities": [ + 8 + ], + "often": [ + 9 + ], + "rely": [ + 10 + ], + "on": [ + 11, + 47 + ], + "machine": [ + 12, + 43, + 59, + 75, + 114 + ], + "learning.": [ + 13 + ], + "Machine": [ + 14 + ], + "learning": [ + 15, + 40, + 44, + 55, + 60, + 76, + 79, + 115 + ], + "describes": [ + 16 + ], + "the": [ + 17, + 29, + 72, + 86, + 106, + 121, + 131 + ], + "capacity": [ + 18 + ], + "of": [ + 19, + 31, + 74, + 85, + 89, + 108, + 133 + ], + "to": [ + 21, + 27, + 80 + ], + "learn": [ + 22 + ], + "from": [ + 23 + ], + "problem-specific": [ + 24 + ], + "training": [ + 25 + ], + "data": [ + 26, + 64 + ], + "automate": [ + 28 + ], + "process": [ + 30, + 107 + ], + "analytical": [ + 32, + 110 + ], + "model": [ + 33, + 111 + ], + "building": [ + 34, + 112 + ], + "and": [ + 35, + 62, + 77, + 103, + 116, + 119, + 136, + 145, + 151 + ], + "solve": [ + 36 + ], + "associated": [ + 37 + ], + "tasks.": [ + 38 + ], + "Deep": [ + 39 + ], + "is": [ + 41 + ], + "a": [ + 42, + 82, + 97 + ], + "concept": [ + 45 + ], + "based": [ + 46 + ], + "neural": [ + 49 + ], + "networks.": [ + 50 + ], + "For": [ + 51 + ], + "many": [ + 52 + ], + "applications,": [ + 53 + ], + "deep": [ + 54, + 78, + 117 + ], + "models": [ + 56, + 61 + ], + "outperform": [ + 57 + ], + "shallow": [ + 58 + ], + "traditional": [ + 63 + ], + "analysis": [ + 65 + ], + "approaches.": [ + 66 + ], + "In": [ + 67, + 93 + ], + "this": [ + 68 + ], + "article,": [ + 69 + ], + "we": [ + 70, + 95 + ], + "summarize": [ + 71 + ], + "fundamentals": [ + 73 + ], + "generate": [ + 81 + ], + "broader": [ + 83 + ], + "understanding": [ + 84 + ], + "methodical": [ + 87 + ], + "underpinning": [ + 88 + ], + "current": [ + 90 + ], + "systems.": [ + 92 + ], + "particular,": [ + 94 + ], + "provide": [ + 96 + ], + "conceptual": [ + 98 + ], + "distinction": [ + 99 + ], + "between": [ + 100 + ], + "relevant": [ + 101 + ], + "terms": [ + 102 + ], + "concepts,": [ + 104 + ], + "explain": [ + 105 + ], + "automated": [ + 109 + ], + "through": [ + 113 + ], + "learning,": [ + 118 + ], + "discuss": [ + 120 + ], + "challenges": [ + 122 + ], + "arise": [ + 124 + ], + "when": [ + 125 + ], + "implementing": [ + 126 + ], + "such": [ + 127 + ], + "in": [ + 130, + 148 + ], + "field": [ + 132 + ], + "electronic": [ + 134 + ], + "markets": [ + 135 + ], + "networked": [ + 137 + ], + "business.": [ + 138 + ], + "These": [ + 139 + ], + "naturally": [ + 140 + ], + "go": [ + 141 + ], + "beyond": [ + 142 + ], + "technological": [ + 143 + ], + "aspects": [ + 144 + ], + "highlight": [ + 146 + ], + "issues": [ + 147 + ], + "human-machine": [ + 149 + ], + "interaction": [ + 150 + ], + "servitization.": [ + 154 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 228 + }, + { + "year": 2025, + "cited_by_count": 823 + }, + { + "year": 2024, + "cited_by_count": 709 + }, + { + "year": 2023, + "cited_by_count": 463 + }, + { + "year": 2022, + "cited_by_count": 204 + }, + { + "year": 2021, + "cited_by_count": 16 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2021-04-26T00:00:00" + }, + { + "id": "https://openalex.org/W1495061682", + "doi": null, + "title": "Correlation-based Feature Selection for Machine Learning", + "display_name": "Correlation-based Feature Selection for Machine Learning", + "relevance_score": 3887.3452, + "publication_year": 1998, + "publication_date": "1998-01-01", + "ids": { + "openalex": "https://openalex.org/W1495061682", + "mag": "1495061682" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.149.3848", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.149.3848", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~ml/publications/1999/99MH-Thesis.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5056507889", + "display_name": "Mark Hall", + "orcid": "https://orcid.org/0000-0003-0081-4277" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Mark Hall", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0003-0081-4277", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5056507889" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 6.5111, + "has_fulltext": false, + "cited_by_count": 3502, + "citation_normalized_percentile": { + "value": 0.969452, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.992900013923645, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7863954305648804 + }, + { + "id": "https://openalex.org/keywords/feature-selection", + "display_name": "Feature selection", + "score": 0.7660661935806274 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6697717905044556 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.6554372310638428 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6124832630157471 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.5173172950744629 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.5164375901222229 + }, + { + "id": "https://openalex.org/keywords/naive-bayes-classifier", + "display_name": "Naive Bayes classifier", + "score": 0.5061132311820984 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.4775296449661255 + }, + { + "id": "https://openalex.org/keywords/correlation", + "display_name": "Correlation", + "score": 0.45613178610801697 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.44838523864746094 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.4388089179992676 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.329307496547699 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.2919524312019348 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.22016915678977966 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7863954305648804 + }, + { + "id": "https://openalex.org/C148483581", + "wikidata": "https://www.wikidata.org/wiki/Q446488", + "display_name": "Feature selection", + "level": 2, + "score": 0.7660661935806274 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6697717905044556 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.6554372310638428 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6124832630157471 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.5173172950744629 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.5164375901222229 + }, + { + "id": "https://openalex.org/C52001869", + "wikidata": "https://www.wikidata.org/wiki/Q812530", + "display_name": "Naive Bayes classifier", + "level": 3, + "score": 0.5061132311820984 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.4775296449661255 + }, + { + "id": "https://openalex.org/C117220453", + "wikidata": "https://www.wikidata.org/wiki/Q5172842", + "display_name": "Correlation", + "level": 2, + "score": 0.45613178610801697 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.44838523864746094 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.4388089179992676 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.329307496547699 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.2919524312019348 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.22016915678977966 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.149.3848", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.149.3848", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~ml/publications/1999/99MH-Thesis.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.37.4643", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.37.4643", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~mhall/thesis.ps.gz", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.455.4521", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.455.4521", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "https://www.lri.fr/~pierres/donn%E9es/save/these/articles/lpr-queue/hall99correlationbased.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.62.9584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.62.9584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.waikato.ac.nz/~mhall/thesis.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:researchcommons.waikato.ac.nz:10289/15043", + "is_oa": false, + "landing_page_url": "https://hdl.handle.net/10289/15043", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400944", + "display_name": "Research Commons (University of Waikato)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I52179390", + "host_organization_name": "University of Waikato", + "host_organization_lineage": [ + "https://openalex.org/I52179390" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Thesis" + }, + { + "id": "mag:1495061682", + "is_oa": false, + "landing_page_url": "https://www.cs.waikato.ac.nz/~mhall/thesis.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.4300000071525574, + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 88, + "referenced_works": [ + "https://openalex.org/W14420165", + "https://openalex.org/W23418094", + "https://openalex.org/W31783794", + "https://openalex.org/W32535764", + "https://openalex.org/W43179442", + "https://openalex.org/W124232507", + "https://openalex.org/W138217685", + "https://openalex.org/W149472151", + "https://openalex.org/W168332103", + "https://openalex.org/W184639320", + "https://openalex.org/W187357405", + "https://openalex.org/W1481111462", + "https://openalex.org/W1487306946", + "https://openalex.org/W1489725718", + "https://openalex.org/W1497256448", + "https://openalex.org/W1504694836", + "https://openalex.org/W1507029541", + "https://openalex.org/W1520687314", + "https://openalex.org/W1523989055", + "https://openalex.org/W1528176576", + "https://openalex.org/W1528489993", + "https://openalex.org/W1533544838", + "https://openalex.org/W1535723299", + "https://openalex.org/W1540113330", + "https://openalex.org/W1553244859", + "https://openalex.org/W1553313034", + "https://openalex.org/W1557564713", + "https://openalex.org/W1557923305", + "https://openalex.org/W1562345870", + "https://openalex.org/W1566376227", + "https://openalex.org/W1571061365", + "https://openalex.org/W1575869149", + "https://openalex.org/W1583700199", + "https://openalex.org/W1587362683", + "https://openalex.org/W1597910678", + "https://openalex.org/W1601529450", + "https://openalex.org/W1605844890", + "https://openalex.org/W1608549042", + "https://openalex.org/W1619226191", + "https://openalex.org/W1630964756", + "https://openalex.org/W1678889691", + "https://openalex.org/W1679846099", + "https://openalex.org/W1808644423", + "https://openalex.org/W1906182963", + "https://openalex.org/W1923673105", + "https://openalex.org/W1970406594", + "https://openalex.org/W1981251392", + "https://openalex.org/W1983661866", + "https://openalex.org/W1998523455", + "https://openalex.org/W2000613518", + "https://openalex.org/W2002150630", + "https://openalex.org/W2003048487", + "https://openalex.org/W2017337590", + "https://openalex.org/W2042385018", + "https://openalex.org/W2050297026", + "https://openalex.org/W2054658115", + "https://openalex.org/W2067098334", + "https://openalex.org/W2071817951", + "https://openalex.org/W2075038844", + "https://openalex.org/W2088658068", + "https://openalex.org/W2096581064", + "https://openalex.org/W2104626092", + "https://openalex.org/W2109293916", + "https://openalex.org/W2112076978", + "https://openalex.org/W2120216197", + "https://openalex.org/W2123865363", + "https://openalex.org/W2125055259", + "https://openalex.org/W2125412267", + "https://openalex.org/W2128420091", + "https://openalex.org/W2132166479", + "https://openalex.org/W2136000097", + "https://openalex.org/W2140785063", + "https://openalex.org/W2146257637", + "https://openalex.org/W2147169507", + "https://openalex.org/W2147409005", + "https://openalex.org/W2149706766", + "https://openalex.org/W2158000296", + "https://openalex.org/W2159080219", + "https://openalex.org/W2168165449", + "https://openalex.org/W2170120409", + "https://openalex.org/W2193378034", + "https://openalex.org/W2743477090", + "https://openalex.org/W2797502950", + "https://openalex.org/W2798455746", + "https://openalex.org/W2913283985", + "https://openalex.org/W2982720039", + "https://openalex.org/W2988864014", + "https://openalex.org/W3085162807" + ], + "related_works": [ + "https://openalex.org/W2912934387", + "https://openalex.org/W2911964244", + "https://openalex.org/W2169038408", + "https://openalex.org/W2156571267", + "https://openalex.org/W2154053567", + "https://openalex.org/W2153635508", + "https://openalex.org/W2149706766", + "https://openalex.org/W2143426320", + "https://openalex.org/W2140190241", + "https://openalex.org/W2133990480", + "https://openalex.org/W2125055259", + "https://openalex.org/W2119821739", + "https://openalex.org/W2119479037", + "https://openalex.org/W2119387367", + "https://openalex.org/W2017337590", + "https://openalex.org/W1808644423", + "https://openalex.org/W1661871015", + "https://openalex.org/W1619226191", + "https://openalex.org/W1583700199", + "https://openalex.org/W1570448133" + ], + "abstract_inverted_index": { + "A": [ + 0, + 62 + ], + "central": [ + 1, + 41 + ], + "problem": [ + 2, + 28 + ], + "in": [ + 3, + 200, + 255 + ], + "machine": [ + 4, + 33, + 113, + 197 + ], + "learning": [ + 5, + 34, + 114, + 198, + 238 + ], + "is": [ + 6, + 43, + 84 + ], + "identifying": [ + 7 + ], + "a": [ + 8, + 17, + 21, + 36, + 98, + 224, + 227 + ], + "representative": [ + 9 + ], + "set": [ + 10, + 184 + ], + "of": [ + 11, + 29, + 76, + 211, + 215, + 280, + 296 + ], + "features": [ + 12, + 49, + 151, + 204, + 297 + ], + "from": [ + 13, + 69 + ], + "which": [ + 14, + 207, + 271 + ], + "to": [ + 15, + 231, + 240, + 251, + 274, + 276, + 283, + 319 + ], + "construct": [ + 16 + ], + "classification": [ + 18, + 178 + ], + "model": [ + 19 + ], + "for": [ + 20, + 32 + ], + "particular": [ + 22 + ], + "task.": [ + 23 + ], + "This": [ + 24 + ], + "thesis": [ + 25 + ], + "addresses": [ + 26 + ], + "the": [ + 27, + 55, + 173, + 181, + 190, + 216, + 236, + 252, + 258, + 269, + 299, + 306, + 326 + ], + "feature": [ + 30, + 46, + 63, + 183, + 192, + 232, + 242, + 285, + 302 + ], + "selection": [ + 31, + 195, + 233 + ], + "through": [ + 35 + ], + "correlation": [ + 37, + 95 + ], + "based": [ + 38, + 66, + 81, + 127 + ], + "approach.": [ + 39 + ], + "The": [ + 40, + 292 + ], + "hypothesis": [ + 42 + ], + "that": [ + 44, + 50, + 87, + 137, + 234, + 314 + ], + "good": [ + 45 + ], + "sets": [ + 47 + ], + "contain": [ + 48 + ], + "are": [ + 51, + 287 + ], + "highly": [ + 52, + 209 + ], + "correlated": [ + 53 + ], + "with": [ + 54, + 59, + 92, + 223 + ], + "class,": [ + 56 + ], + "yet": [ + 57 + ], + "uncorrelated": [ + 58 + ], + "each": [ + 60 + ], + "other.": [ + 61 + ], + "evaluation": [ + 64, + 90 + ], + "formula,": [ + 65 + ], + "on": [ + 67, + 107, + 133, + 161, + 260, + 310 + ], + "ideas": [ + 68 + ], + "test": [ + 70 + ], + "theory,": [ + 71 + ], + "provides": [ + 72 + ], + "an": [ + 73, + 85, + 93 + ], + "operational": [ + 74 + ], + "definition": [ + 75 + ], + "this": [ + 77, + 89 + ], + "hypothesis.": [ + 78 + ], + "CFS": [ + 79, + 138, + 167, + 222, + 247, + 263, + 282 + ], + "(Correlation": [ + 80 + ], + "Feature": [ + 82, + 194 + ], + "Selection)": [ + 83 + ], + "algorithm": [ + 86, + 239 + ], + "couples": [ + 88 + ], + "formula": [ + 91 + ], + "appropriate": [ + 94 + ], + "measure": [ + 96 + ], + "and": [ + 97, + 109, + 129, + 141, + 145, + 148, + 254, + 289, + 298 + ], + "heuristic": [ + 99 + ], + "search": [ + 100 + ], + "strategy.": [ + 101 + ], + " \\n \\nCFS": [ + 102 + ], + "was": [ + 103 + ], + "evaluated": [ + 104 + ], + "by": [ + 105, + 305, + 337 + ], + "experiments": [ + 106, + 220 + ], + "artificial": [ + 108, + 134, + 311 + ], + "natural": [ + 110, + 165, + 324 + ], + "datasets.": [ + 111, + 262 + ], + "Three": [ + 112 + ], + "algorithms": [ + 115 + ], + "were": [ + 116, + 205, + 208, + 317 + ], + "used:": [ + 117 + ], + "C4.5": [ + 118 + ], + "(a": [ + 119 + ], + "decision": [ + 120 + ], + "tree": [ + 121 + ], + "learner),": [ + 122, + 128 + ], + "IB": [ + 123 + ], + "1": [ + 124 + ], + "(an": [ + 125 + ], + "instance": [ + 126, + 217 + ], + "naive": [ + 130 + ], + "Bayes.": [ + 131 + ], + "Experiments": [ + 132, + 309 + ], + "datasets": [ + 135 + ], + "showed": [ + 136, + 313 + ], + "quickly": [ + 139 + ], + "identifies": [ + 140, + 149 + ], + "screens": [ + 142 + ], + "irrelevant,": [ + 143 + ], + "redundant,": [ + 144 + ], + "noisy": [ + 146 + ], + "features,": [ + 147 + ], + "relevant": [ + 150 + ], + "as": [ + 152, + 154 + ], + "long": [ + 153 + ], + "their": [ + 155 + ], + "relevance": [ + 156 + ], + "does": [ + 157 + ], + "not": [ + 158 + ], + "strongly": [ + 159 + ], + "depend": [ + 160 + ], + "other": [ + 162 + ], + "features.": [ + 163, + 174, + 322 + ], + "On": [ + 164, + 323 + ], + "domains,": [ + 166, + 325 + ], + "typically": [ + 168 + ], + "eliminated": [ + 169, + 206 + ], + "well": [ + 170, + 228 + ], + "over": [ + 171 + ], + "half": [ + 172 + ], + "In": [ + 175, + 244 + ], + "most": [ + 176 + ], + "cases,": [ + 177 + ], + "accuracy": [ + 179, + 188 + ], + "using": [ + 180, + 189, + 334 + ], + "reduced": [ + 182 + ], + "equaled": [ + 185 + ], + "or": [ + 186 + ], + "bettered": [ + 187 + ], + "complete": [ + 191 + ], + "set.": [ + 193 + ], + "degraded": [ + 196 + ], + "performance": [ + 199 + ], + "cases": [ + 201, + 246 + ], + "where": [ + 202 + ], + "some": [ + 203 + ], + "predictive": [ + 210 + ], + "very": [ + 212 + ], + "small": [ + 213, + 261 + ], + "areas": [ + 214 + ], + "space.": [ + 218 + ], + " \\n \\nFurther": [ + 219 + ], + "compared": [ + 221 + ], + "wrapper": [ + 225, + 259 + ], + "-": [ + 226 + ], + "known": [ + 229 + ], + "approach": [ + 230 + ], + "employs": [ + 235 + ], + "target": [ + 237 + ], + "evaluate": [ + 241 + ], + "sets.": [ + 243 + ], + "many": [ + 245, + 265 + ], + "gave": [ + 248, + 329 + ], + "comparable": [ + 249 + ], + "results": [ + 250, + 332 + ], + "wrapper,": [ + 253, + 270 + ], + "general,": [ + 256 + ], + "outperformed": [ + 257 + ], + "executes": [ + 264 + ], + "times": [ + 266 + ], + "faster": [ + 267 + ], + "than": [ + 268, + 333 + ], + "allows": [ + 272 + ], + "it": [ + 273 + ], + "scale": [ + 275 + ], + "larger": [ + 277 + ], + "datasets. \\n \\nTwo": [ + 278 + ], + "methods": [ + 279, + 316 + ], + "extending": [ + 281 + ], + "handle": [ + 284 + ], + "interaction": [ + 286 + ], + "presented": [ + 288 + ], + "experimentally": [ + 290 + ], + "evaluated.": [ + 291 + ], + "first": [ + 293 + ], + "considers": [ + 294 + ], + "pairs": [ + 295 + ], + "second": [ + 300 + ], + "incorporates": [ + 301 + ], + "weights": [ + 303, + 335 + ], + "calculated": [ + 304 + ], + "RELIEF": [ + 307 + ], + "algorithm.": [ + 308 + ], + "domains": [ + 312 + ], + "both": [ + 315 + ], + "able": [ + 318 + ], + "identify": [ + 320 + ], + "interacting": [ + 321 + ], + "pairwise": [ + 327 + ], + "method": [ + 328 + ], + "more": [ + 330 + ], + "reliable": [ + 331 + ], + "provided": [ + 336 + ], + "RELIEF.": [ + 338 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 38 + }, + { + "year": 2024, + "cited_by_count": 89 + }, + { + "year": 2023, + "cited_by_count": 147 + }, + { + "year": 2022, + "cited_by_count": 181 + }, + { + "year": 2021, + "cited_by_count": 299 + }, + { + "year": 2020, + "cited_by_count": 287 + }, + { + "year": 2019, + "cited_by_count": 295 + }, + { + "year": 2018, + "cited_by_count": 296 + }, + { + "year": 2017, + "cited_by_count": 277 + }, + { + "year": 2016, + "cited_by_count": 271 + }, + { + "year": 2015, + "cited_by_count": 264 + }, + { + "year": 2014, + "cited_by_count": 238 + }, + { + "year": 2013, + "cited_by_count": 181 + }, + { + "year": 2012, + "cited_by_count": 163 + } + ], + "updated_date": "2025-11-06T04:12:42.849631", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2594183968", + "doi": "https://doi.org/10.1039/c7sc02664a", + "title": "MoleculeNet: a benchmark for molecular machine learning", + "display_name": "MoleculeNet: a benchmark for molecular machine learning", + "relevance_score": 3869.809, + "publication_year": 2017, + "publication_date": "2017-10-31", + "ids": { + "openalex": "https://openalex.org/W2594183968", + "doi": "https://doi.org/10.1039/c7sc02664a", + "mag": "2594183968", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29629118" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "diamond", + "oa_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5054988040", + "display_name": "Zhenqin Wu", + "orcid": "https://orcid.org/0000-0002-0148-7055" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zhenqin Wu", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0148-7055", + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5039641760", + "display_name": "Bharath Ramsundar", + "orcid": "https://orcid.org/0000-0001-8450-4262" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Bharath Ramsundar", + "raw_affiliation_strings": [ + "Department of Computer Science", + "Stanford", + "Stanford University", + "USA", + "Department of Computer Science, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Computer Science, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5011983540", + "display_name": "Evan N. Feinberg", + "orcid": "https://orcid.org/0000-0002-7989-8751" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evan N. Feinberg", + "raw_affiliation_strings": [ + "Program in Biophysics", + "Stanford", + "Stanford School of Medicine", + "USA", + "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Program in Biophysics", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford School of Medicine", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5044158176", + "display_name": "Joseph Gomes", + "orcid": "https://orcid.org/0000-0002-0755-0641" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Joseph Gomes", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0755-0641", + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069546508", + "display_name": "Caleb Geniesse", + "orcid": "https://orcid.org/0000-0002-7897-8338" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Caleb Geniesse", + "raw_affiliation_strings": [ + "Program in Biophysics", + "Stanford", + "Stanford School of Medicine", + "USA", + "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Program in Biophysics", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford School of Medicine", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Program in Biophysics, Stanford School of Medicine, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015493289", + "display_name": "Aneesh Pappu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Aneesh S. Pappu", + "raw_affiliation_strings": [ + "Department of Computer Science", + "Stanford", + "Stanford University", + "USA", + "Department of Computer Science, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Computer Science, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004322104", + "display_name": "Karl Leswing", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I203455613", + "display_name": "Schrodinger (United States)", + "ror": "https://ror.org/05a3z6914", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I203455613" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karl Leswing", + "raw_affiliation_strings": [ + "Schrodinger Inc", + "USA", + "Schrodinger Inc., USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Schrodinger Inc", + "institution_ids": [ + "https://openalex.org/I203455613" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Schrodinger Inc., USA", + "institution_ids": [ + "https://openalex.org/I203455613" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5032418986", + "display_name": "Vijay S. Pande", + "orcid": "https://orcid.org/0000-0003-2774-1178" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210137306", + "display_name": "Stanford Medicine", + "ror": "https://ror.org/03mtd9a03", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ] + }, + { + "id": "https://openalex.org/I97018004", + "display_name": "Stanford University", + "ror": "https://ror.org/00f54p054", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I97018004" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Vijay Pande", + "raw_affiliation_strings": [ + "Department of Chemistry", + "Stanford", + "Stanford University", + "USA", + "Department of Chemistry, Stanford University, Stanford, CA 94305, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Chemistry", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Stanford", + "institution_ids": [ + "https://openalex.org/I4210137306" + ] + }, + { + "raw_affiliation_string": "Stanford University", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + }, + { + "raw_affiliation_string": "USA", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Department of Chemistry, Stanford University, Stanford, CA 94305, USA", + "institution_ids": [ + "https://openalex.org/I97018004" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 8, + "corresponding_author_ids": [ + "https://openalex.org/A5032418986" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210137306", + "https://openalex.org/I97018004" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 128.6995, + "has_fulltext": true, + "cited_by_count": 2910, + "citation_normalized_percentile": { + "value": 0.9998827, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "9", + "issue": "2", + "first_page": "513", + "last_page": "530" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10044", + "display_name": "Protein Structure and Dynamics", + "score": 0.9779999852180481, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/benchmark", + "display_name": "Benchmark (surveying)", + "score": 0.9469650983810425 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6600202322006226 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6345625519752502 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6119014024734497 + }, + { + "id": "https://openalex.org/keywords/scale", + "display_name": "Scale (ratio)", + "score": 0.5160343647003174 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.04847747087478638 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.04328623414039612 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C185798385", + "wikidata": "https://www.wikidata.org/wiki/Q1161707", + "display_name": "Benchmark (surveying)", + "level": 2, + "score": 0.9469650983810425 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6600202322006226 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6345625519752502 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6119014024734497 + }, + { + "id": "https://openalex.org/C2778755073", + "wikidata": "https://www.wikidata.org/wiki/Q10858537", + "display_name": "Scale (ratio)", + "level": 2, + "score": 0.5160343647003174 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.04847747087478638 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.04328623414039612 + }, + { + "id": "https://openalex.org/C13280743", + "wikidata": "https://www.wikidata.org/wiki/Q131089", + "display_name": "Geodesy", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:29629118", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29629118", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical science", + "raw_type": null + }, + { + "id": "pmh:oai:europepmc.org:4794812", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5868307", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + }, + { + "id": "pmh:oai:hub.hku.hk:10722/354386", + "is_oa": false, + "landing_page_url": "https://hub.hku.hk/handle/10722/354386", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196271", + "display_name": "The HKU Scholars Hub (University of Hong Kong)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I889458895", + "host_organization_name": "University of Hong Kong", + "host_organization_lineage": [ + "https://openalex.org/I889458895" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Article" + } + ], + "best_oa_location": { + "id": "doi:10.1039/c7sc02664a", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1039/c7sc02664a", + "pdf_url": "https://pubs.rsc.org/en/content/articlepdf/2018/sc/c7sc02664a", + "source": { + "id": "https://openalex.org/S184645833", + "display_name": "Chemical Science", + "issn_l": "2041-6520", + "issn": [ + "2041-6520", + "2041-6539" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320556", + "host_organization_name": "Royal Society of Chemistry", + "host_organization_lineage": [ + "https://openalex.org/P4310320556" + ], + "host_organization_lineage_names": [ + "Royal Society of Chemistry" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Chemical Science", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G4484533445", + "display_name": null, + "funder_award_id": "GM062868", + "funder_id": "https://openalex.org/F4320332161", + "funder_display_name": "National Institutes of Health" + }, + { + "id": "https://openalex.org/G7442115961", + "display_name": null, + "funder_award_id": "U19 AI109662", + "funder_id": "https://openalex.org/F4320332161", + "funder_display_name": "National Institutes of Health" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320308782", + "display_name": "Hertz Foundation", + "ror": "https://ror.org/01ycgxf29" + }, + { + "id": "https://openalex.org/F4320332161", + "display_name": "National Institutes of Health", + "ror": "https://ror.org/01cwqze88" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2594183968.pdf", + "grobid_xml": "https://content.openalex.org/works/W2594183968.grobid-xml" + }, + "referenced_works_count": 64, + "referenced_works": [ + "https://openalex.org/W655356045", + "https://openalex.org/W1579198272", + "https://openalex.org/W1601495365", + "https://openalex.org/W1678356000", + "https://openalex.org/W1738019091", + "https://openalex.org/W1780364926", + "https://openalex.org/W1964513093", + "https://openalex.org/W1975147762", + "https://openalex.org/W1985748743", + "https://openalex.org/W1988037271", + "https://openalex.org/W1993046136", + "https://openalex.org/W1993285168", + "https://openalex.org/W1995808589", + "https://openalex.org/W1996327711", + "https://openalex.org/W1998056319", + "https://openalex.org/W1999798000", + "https://openalex.org/W2001816314", + "https://openalex.org/W2008505552", + "https://openalex.org/W2010700988", + "https://openalex.org/W2019678805", + "https://openalex.org/W2024046085", + "https://openalex.org/W2025444507", + "https://openalex.org/W2033206800", + "https://openalex.org/W2046589863", + "https://openalex.org/W2060531713", + "https://openalex.org/W2060565460", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076498053", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081454243", + "https://openalex.org/W2081580037", + "https://openalex.org/W2085126686", + "https://openalex.org/W2085312881", + "https://openalex.org/W2092285329", + "https://openalex.org/W2096560421", + "https://openalex.org/W2101234009", + "https://openalex.org/W2104489082", + "https://openalex.org/W2114162221", + "https://openalex.org/W2114704115", + "https://openalex.org/W2117539524", + "https://openalex.org/W2119821739", + "https://openalex.org/W2127330184", + "https://openalex.org/W2127644822", + "https://openalex.org/W2139271038", + "https://openalex.org/W2145578524", + "https://openalex.org/W2153693853", + "https://openalex.org/W2170214641", + "https://openalex.org/W2171830166", + "https://openalex.org/W2290847742", + "https://openalex.org/W2319902168", + "https://openalex.org/W2406943157", + "https://openalex.org/W2461470610", + "https://openalex.org/W2461620095", + "https://openalex.org/W2473190403", + "https://openalex.org/W2606780347", + "https://openalex.org/W2734982589", + "https://openalex.org/W2753558426", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2914584698", + "https://openalex.org/W2919115771", + "https://openalex.org/W3100157108", + "https://openalex.org/W3102449990", + "https://openalex.org/W3102797483" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4387369504", + "https://openalex.org/W3046775127", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3107602296", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474" + ], + "abstract_inverted_index": { + "Molecular": [ + 0 + ], + "machine": [ + 1, + 22, + 82, + 128 + ], + "learning": [ + 2, + 23, + 106, + 129, + 177 + ], + "has": [ + 3, + 36 + ], + "been": [ + 4, + 37 + ], + "maturing": [ + 5 + ], + "rapidly": [ + 6 + ], + "over": [ + 7 + ], + "the": [ + 8, + 15, + 41, + 49, + 67, + 112, + 133, + 164 + ], + "last": [ + 9 + ], + "few": [ + 10 + ], + "years.": [ + 11 + ], + "Improved": [ + 12 + ], + "methods": [ + 13 + ], + "and": [ + 14, + 93, + 105, + 130, + 154, + 161 + ], + "presence": [ + 16 + ], + "of": [ + 17, + 43, + 51, + 69, + 99, + 111, + 166, + 175 + ], + "larger": [ + 18 + ], + "datasets": [ + 19, + 61 + ], + "have": [ + 20 + ], + "enabled": [ + 21 + ], + "algorithms": [ + 24, + 56, + 107 + ], + "to": [ + 25, + 40, + 47, + 65, + 146 + ], + "make": [ + 26 + ], + "increasingly": [ + 27 + ], + "accurate": [ + 28 + ], + "predictions": [ + 29 + ], + "about": [ + 30 + ], + "molecular": [ + 31, + 81, + 103, + 127 + ], + "properties.": [ + 32 + ], + "However,": [ + 33, + 136 + ], + "algorithmic": [ + 34 + ], + "progress": [ + 35 + ], + "limited": [ + 38 + ], + "due": [ + 39 + ], + "lack": [ + 42 + ], + "a": [ + 44, + 76 + ], + "standard": [ + 45 + ], + "benchmark": [ + 46, + 79 + ], + "compare": [ + 48 + ], + "efficacy": [ + 50 + ], + "proposed": [ + 52, + 70, + 102 + ], + "methods;": [ + 53 + ], + "most": [ + 54 + ], + "new": [ + 55 + ], + "are": [ + 57, + 123 + ], + "benchmarked": [ + 58 + ], + "on": [ + 59 + ], + "different": [ + 60 + ], + "making": [ + 62 + ], + "it": [ + 63 + ], + "challenging": [ + 64 + ], + "gauge": [ + 66 + ], + "quality": [ + 68, + 96 + ], + "methods.": [ + 71 + ], + "This": [ + 72 + ], + "work": [ + 73 + ], + "introduces": [ + 74 + ], + "MoleculeNet,": [ + 75 + ], + "large": [ + 77 + ], + "scale": [ + 78 + ], + "for": [ + 80, + 91, + 126 + ], + "learning.": [ + 83 + ], + "MoleculeNet": [ + 84, + 117 + ], + "curates": [ + 85 + ], + "multiple": [ + 86, + 100 + ], + "public": [ + 87 + ], + "datasets,": [ + 88, + 163 + ], + "establishes": [ + 89 + ], + "metrics": [ + 90 + ], + "evaluation,": [ + 92 + ], + "offers": [ + 94 + ], + "high": [ + 95 + ], + "open-source": [ + 97 + ], + "implementations": [ + 98 + ], + "previously": [ + 101 + ], + "featurization": [ + 104 + ], + "(released": [ + 108 + ], + "as": [ + 109 + ], + "part": [ + 110 + ], + "DeepChem": [ + 113 + ], + "open": [ + 114 + ], + "source": [ + 115 + ], + "library).": [ + 116 + ], + "benchmarks": [ + 118 + ], + "demonstrate": [ + 119 + ], + "that": [ + 120 + ], + "learnable": [ + 121 + ], + "representations": [ + 122, + 143 + ], + "powerful": [ + 124 + ], + "tools": [ + 125 + ], + "broadly": [ + 131 + ], + "offer": [ + 132 + ], + "best": [ + 134 + ], + "performance.": [ + 135 + ], + "this": [ + 137 + ], + "result": [ + 138 + ], + "comes": [ + 139 + ], + "with": [ + 140, + 148 + ], + "caveats.": [ + 141 + ], + "Learnable": [ + 142 + ], + "still": [ + 144 + ], + "struggle": [ + 145 + ], + "deal": [ + 147 + ], + "complex": [ + 149 + ], + "tasks": [ + 150 + ], + "under": [ + 151 + ], + "data": [ + 152 + ], + "scarcity": [ + 153 + ], + "highly": [ + 155 + ], + "imbalanced": [ + 156 + ], + "classification.": [ + 157 + ], + "For": [ + 158 + ], + "quantum": [ + 159 + ], + "mechanical": [ + 160 + ], + "biophysical": [ + 162 + ], + "use": [ + 165 + ], + "physics-aware": [ + 167 + ], + "featurizations": [ + 168 + ], + "can": [ + 169 + ], + "be": [ + 170 + ], + "more": [ + 171 + ], + "important": [ + 172 + ], + "than": [ + 173 + ], + "choice": [ + 174 + ], + "particular": [ + 176 + ], + "algorithm.": [ + 178 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 185 + }, + { + "year": 2025, + "cited_by_count": 534 + }, + { + "year": 2024, + "cited_by_count": 510 + }, + { + "year": 2023, + "cited_by_count": 422 + }, + { + "year": 2022, + "cited_by_count": 374 + }, + { + "year": 2021, + "cited_by_count": 351 + }, + { + "year": 2020, + "cited_by_count": 292 + }, + { + "year": 2019, + "cited_by_count": 157 + }, + { + "year": 2018, + "cited_by_count": 75 + }, + { + "year": 2017, + "cited_by_count": 6 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2594475271", + "doi": "https://doi.org/10.48550/arxiv.1702.08608", + "title": "Towards A Rigorous Science of Interpretable Machine Learning", + "display_name": "Towards A Rigorous Science of Interpretable Machine Learning", + "relevance_score": 3832.6755, + "publication_year": 2017, + "publication_date": "2017-02-28", + "ids": { + "openalex": "https://openalex.org/W2594475271", + "doi": "https://doi.org/10.48550/arxiv.1702.08608", + "mag": "2594475271" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1702.08608", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5038771285", + "display_name": "Finale Doshi‐Velez", + "orcid": "https://orcid.org/0000-0003-2886-3898" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Doshi-Velez, Finale", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5041405652", + "display_name": "Been Kim", + "orcid": "https://orcid.org/0000-0001-9938-2915" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Kim, Been", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5038771285" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 3136, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9822999835014343, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.989424467086792 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7579805850982666 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.723967432975769 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6432822346687317 + }, + { + "id": "https://openalex.org/keywords/taxonomy", + "display_name": "Taxonomy (biology)", + "score": 0.535308837890625 + }, + { + "id": "https://openalex.org/keywords/position-paper", + "display_name": "Position paper", + "score": 0.4703657329082489 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.989424467086792 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7579805850982666 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.723967432975769 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6432822346687317 + }, + { + "id": "https://openalex.org/C58642233", + "wikidata": "https://www.wikidata.org/wiki/Q8269924", + "display_name": "Taxonomy (biology)", + "level": 2, + "score": 0.535308837890625 + }, + { + "id": "https://openalex.org/C78780964", + "wikidata": "https://www.wikidata.org/wiki/Q7233193", + "display_name": "Position paper", + "level": 2, + "score": 0.4703657329082489 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1702.08608", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1702.08608", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1702.08608", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1702.08608", + "pdf_url": "https://arxiv.org/pdf/1702.08608", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "score": 0.4399999976158142, + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions" + }, + { + "score": 0.4300000071525574, + "id": "https://metadata.un.org/sdg/10", + "display_name": "Reduced inequalities" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W65833265", + "https://openalex.org/W190506616", + "https://openalex.org/W214705575", + "https://openalex.org/W1570088706", + "https://openalex.org/W1757796397", + "https://openalex.org/W1983870751", + "https://openalex.org/W1994757764", + "https://openalex.org/W2008174170", + "https://openalex.org/W2100960835", + "https://openalex.org/W2119858020", + "https://openalex.org/W2132862423", + "https://openalex.org/W2159426623", + "https://openalex.org/W2160336621", + "https://openalex.org/W2187558068", + "https://openalex.org/W2189162242", + "https://openalex.org/W2257979135", + "https://openalex.org/W2336395599", + "https://openalex.org/W2367397349", + "https://openalex.org/W2440159969", + "https://openalex.org/W2462906003", + "https://openalex.org/W2493343568", + "https://openalex.org/W2528479067", + "https://openalex.org/W2560479124", + "https://openalex.org/W2567527106", + "https://openalex.org/W2951501516", + "https://openalex.org/W2964134873" + ], + "related_works": [ + "https://openalex.org/W1986582023", + "https://openalex.org/W2961085424", + "https://openalex.org/W2966829450", + "https://openalex.org/W4315864862", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694" + ], + "abstract_inverted_index": { + "As": [ + 0 + ], + "machine": [ + 1, + 15, + 53, + 100 + ], + "learning": [ + 2, + 54 + ], + "systems": [ + 3, + 17 + ], + "become": [ + 4 + ], + "ubiquitous,": [ + 5 + ], + "there": [ + 6, + 45 + ], + "has": [ + 7 + ], + "been": [ + 8 + ], + "a": [ + 9, + 84, + 94 + ], + "surge": [ + 10 + ], + "of": [ + 11, + 98 + ], + "interest": [ + 12, + 42 + ], + "in": [ + 13, + 43 + ], + "interpretable": [ + 14, + 52, + 99 + ], + "learning:": [ + 16 + ], + "that": [ + 18 + ], + "provide": [ + 19 + ], + "explanation": [ + 20 + ], + "for": [ + 21, + 86 + ], + "their": [ + 22 + ], + "outputs.": [ + 23 + ], + "These": [ + 24 + ], + "explanations": [ + 25 + ], + "are": [ + 26 + ], + "often": [ + 27 + ], + "used": [ + 28 + ], + "to": [ + 29 + ], + "qualitatively": [ + 30 + ], + "assess": [ + 31 + ], + "other": [ + 32 + ], + "criteria": [ + 33 + ], + "such": [ + 34 + ], + "as": [ + 35 + ], + "safety": [ + 36 + ], + "or": [ + 37 + ], + "non-discrimination.": [ + 38 + ], + "However,": [ + 39 + ], + "despite": [ + 40 + ], + "the": [ + 41 + ], + "interpretability,": [ + 44 + ], + "is": [ + 46, + 55, + 74, + 79 + ], + "very": [ + 47 + ], + "little": [ + 48 + ], + "consensus": [ + 49 + ], + "on": [ + 50 + ], + "what": [ + 51 + ], + "and": [ + 56, + 70, + 89 + ], + "how": [ + 57 + ], + "it": [ + 58, + 78 + ], + "should": [ + 59 + ], + "be": [ + 60 + ], + "measured.": [ + 61 + ], + "In": [ + 62 + ], + "this": [ + 63 + ], + "position": [ + 64 + ], + "paper,": [ + 65 + ], + "we": [ + 66, + 82 + ], + "first": [ + 67 + ], + "define": [ + 68 + ], + "interpretability": [ + 69, + 73 + ], + "describe": [ + 71 + ], + "when": [ + 72, + 77 + ], + "needed": [ + 75 + ], + "(and": [ + 76 + ], + "not).": [ + 80 + ], + "Next,": [ + 81 + ], + "suggest": [ + 83 + ], + "taxonomy": [ + 85 + ], + "rigorous": [ + 87, + 96 + ], + "evaluation": [ + 88 + ], + "expose": [ + 90 + ], + "open": [ + 91 + ], + "questions": [ + 92 + ], + "towards": [ + 93 + ], + "more": [ + 95 + ], + "science": [ + 97 + ], + "learning.": [ + 101 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 46 + }, + { + "year": 2025, + "cited_by_count": 334 + }, + { + "year": 2024, + "cited_by_count": 390 + }, + { + "year": 2023, + "cited_by_count": 427 + }, + { + "year": 2022, + "cited_by_count": 338 + }, + { + "year": 2021, + "cited_by_count": 597 + }, + { + "year": 2020, + "cited_by_count": 488 + }, + { + "year": 2019, + "cited_by_count": 319 + }, + { + "year": 2018, + "cited_by_count": 164 + }, + { + "year": 2017, + "cited_by_count": 32 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2007339694", + "doi": "https://doi.org/10.1109/msp.2012.2211477", + "title": "The MNIST Database of Handwritten Digit Images for Machine Learning Research [Best of the Web]", + "display_name": "The MNIST Database of Handwritten Digit Images for Machine Learning Research [Best of the Web]", + "relevance_score": 3801.1765, + "publication_year": 2012, + "publication_date": "2012-10-19", + "ids": { + "openalex": "https://openalex.org/W2007339694", + "doi": "https://doi.org/10.1109/msp.2012.2211477", + "mag": "2007339694" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/msp.2012.2211477", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/msp.2012.2211477", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S120977877", + "display_name": "IEEE Signal Processing Magazine", + "issn_l": "1053-5888", + "issn": [ + "1053-5888", + "1558-0792" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Signal Processing Magazine", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5100671326", + "display_name": "Li Deng", + "orcid": "https://orcid.org/0000-0002-7140-0701" + }, + "institutions": [ + { + "id": "https://openalex.org/I1290206253", + "display_name": "Microsoft (United States)", + "ror": "https://ror.org/00d0nc645", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Li Deng", + "raw_affiliation_strings": [ + "Microsoft Research, Redmond, WA, USA", + "[Microsoft Research,Redmond,WA,USA]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Microsoft Research, Redmond, WA, USA", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + }, + { + "raw_affiliation_string": "[Microsoft Research,Redmond,WA,USA]", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5100671326" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1290206253" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 4.4394, + "has_fulltext": false, + "cited_by_count": 4581, + "citation_normalized_percentile": { + "value": 0.95131101, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "29", + "issue": "6", + "first_page": "141", + "last_page": "142" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10601", + "display_name": "Handwritten Text Recognition Techniques", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10601", + "display_name": "Handwritten Text Recognition Techniques", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9983999729156494, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10627", + "display_name": "Advanced Image and Video Retrieval Techniques", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.9717313051223755 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8078590035438538 + }, + { + "id": "https://openalex.org/keywords/optical-character-recognition", + "display_name": "Optical character recognition", + "score": 0.6577181220054626 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6341533660888672 + }, + { + "id": "https://openalex.org/keywords/handwriting-recognition", + "display_name": "Handwriting recognition", + "score": 0.5454277992248535 + }, + { + "id": "https://openalex.org/keywords/numerical-digit", + "display_name": "Numerical digit", + "score": 0.544492244720459 + }, + { + "id": "https://openalex.org/keywords/digit-recognition", + "display_name": "Digit recognition", + "score": 0.5283616185188293 + }, + { + "id": "https://openalex.org/keywords/character", + "display_name": "Character (mathematics)", + "score": 0.5253086686134338 + }, + { + "id": "https://openalex.org/keywords/intelligent-word-recognition", + "display_name": "Intelligent word recognition", + "score": 0.47909122705459595 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.43089044094085693 + }, + { + "id": "https://openalex.org/keywords/character-recognition", + "display_name": "Character recognition", + "score": 0.4222016930580139 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.4071904420852661 + }, + { + "id": "https://openalex.org/keywords/speech-recognition", + "display_name": "Speech recognition", + "score": 0.39158111810684204 + }, + { + "id": "https://openalex.org/keywords/intelligent-character-recognition", + "display_name": "Intelligent character recognition", + "score": 0.3735637962818146 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.3423413634300232 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.27770859003067017 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.24367356300354004 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1194082498550415 + }, + { + "id": "https://openalex.org/keywords/arithmetic", + "display_name": "Arithmetic", + "score": 0.07683056592941284 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.07060250639915466 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.9717313051223755 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8078590035438538 + }, + { + "id": "https://openalex.org/C546480517", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Optical character recognition", + "level": 3, + "score": 0.6577181220054626 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6341533660888672 + }, + { + "id": "https://openalex.org/C112640561", + "wikidata": "https://www.wikidata.org/wiki/Q2440634", + "display_name": "Handwriting recognition", + "level": 3, + "score": 0.5454277992248535 + }, + { + "id": "https://openalex.org/C94957134", + "wikidata": "https://www.wikidata.org/wiki/Q82990", + "display_name": "Numerical digit", + "level": 2, + "score": 0.544492244720459 + }, + { + "id": "https://openalex.org/C2984784707", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Digit recognition", + "level": 3, + "score": 0.5283616185188293 + }, + { + "id": "https://openalex.org/C2780861071", + "wikidata": "https://www.wikidata.org/wiki/Q1062934", + "display_name": "Character (mathematics)", + "level": 2, + "score": 0.5253086686134338 + }, + { + "id": "https://openalex.org/C17649283", + "wikidata": "https://www.wikidata.org/wiki/Q6044162", + "display_name": "Intelligent word recognition", + "level": 5, + "score": 0.47909122705459595 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.43089044094085693 + }, + { + "id": "https://openalex.org/C2987247673", + "wikidata": "https://www.wikidata.org/wiki/Q167555", + "display_name": "Character recognition", + "level": 3, + "score": 0.4222016930580139 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.4071904420852661 + }, + { + "id": "https://openalex.org/C28490314", + "wikidata": "https://www.wikidata.org/wiki/Q189436", + "display_name": "Speech recognition", + "level": 1, + "score": 0.39158111810684204 + }, + { + "id": "https://openalex.org/C44868376", + "wikidata": "https://www.wikidata.org/wiki/Q3099089", + "display_name": "Intelligent character recognition", + "level": 4, + "score": 0.3735637962818146 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.3423413634300232 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.27770859003067017 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.24367356300354004 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1194082498550415 + }, + { + "id": "https://openalex.org/C94375191", + "wikidata": "https://www.wikidata.org/wiki/Q11205", + "display_name": "Arithmetic", + "level": 1, + "score": 0.07683056592941284 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.07060250639915466 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/msp.2012.2211477", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/msp.2012.2211477", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S120977877", + "display_name": "IEEE Signal Processing Magazine", + "issn_l": "1053-5888", + "issn": [ + "1053-5888", + "1558-0792" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Signal Processing Magazine", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 8, + "referenced_works": [ + "https://openalex.org/W2033154814", + "https://openalex.org/W2112796928", + "https://openalex.org/W2139622435", + "https://openalex.org/W2148461049", + "https://openalex.org/W2149600041", + "https://openalex.org/W2156163116", + "https://openalex.org/W2546302380", + "https://openalex.org/W6681813608" + ], + "related_works": [ + "https://openalex.org/W2218402054", + "https://openalex.org/W4384296853", + "https://openalex.org/W954954433", + "https://openalex.org/W4309724674", + "https://openalex.org/W2557740161", + "https://openalex.org/W2135329887", + "https://openalex.org/W2011042697", + "https://openalex.org/W3200113662", + "https://openalex.org/W2153054283", + "https://openalex.org/W3112133370" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "this": [ + 1 + ], + "issue,": [ + 2 + ], + "“Best": [ + 3 + ], + "of": [ + 4, + 12, + 19, + 22 + ], + "the": [ + 5, + 8 + ], + "Web”": [ + 6 + ], + "presents": [ + 7 + ], + "modified": [ + 9 + ], + "National": [ + 10 + ], + "Institute": [ + 11 + ], + "Standards": [ + 13 + ], + "and": [ + 14, + 32 + ], + "Technology": [ + 15 + ], + "(MNIST)": [ + 16 + ], + "resources,": [ + 17 + ], + "consisting": [ + 18 + ], + "a": [ + 20 + ], + "collection": [ + 21 + ], + "handwritten": [ + 23 + ], + "digit": [ + 24 + ], + "images": [ + 25 + ], + "used": [ + 26 + ], + "extensively": [ + 27 + ], + "in": [ + 28 + ], + "optical": [ + 29 + ], + "character": [ + 30 + ], + "recognition": [ + 31 + ], + "machine": [ + 33 + ], + "learning": [ + 34 + ], + "research.": [ + 35 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 234 + }, + { + "year": 2025, + "cited_by_count": 1000 + }, + { + "year": 2024, + "cited_by_count": 1002 + }, + { + "year": 2023, + "cited_by_count": 905 + }, + { + "year": 2022, + "cited_by_count": 527 + }, + { + "year": 2021, + "cited_by_count": 366 + }, + { + "year": 2020, + "cited_by_count": 258 + }, + { + "year": 2019, + "cited_by_count": 167 + }, + { + "year": 2018, + "cited_by_count": 50 + }, + { + "year": 2017, + "cited_by_count": 37 + }, + { + "year": 2016, + "cited_by_count": 19 + }, + { + "year": 2015, + "cited_by_count": 9 + }, + { + "year": 2014, + "cited_by_count": 5 + }, + { + "year": 2013, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W607505555", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "title": "Understanding Machine Learning: From Theory To Algorithms", + "display_name": "Understanding Machine Learning: From Theory To Algorithms", + "relevance_score": 3784.7166, + "publication_year": 2015, + "publication_date": "2015-01-01", + "ids": { + "openalex": "https://openalex.org/W607505555", + "doi": "https://doi.org/10.1017/cbo9781107298019", + "mag": "607505555" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027241732", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027241732&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5078263052", + "display_name": "Shai Shalev‐Shwartz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I197251160", + "display_name": "Hebrew University of Jerusalem", + "ror": "https://ror.org/03qxff017", + "country_code": "IL", + "type": "education", + "lineage": [ + "https://openalex.org/I197251160" + ] + } + ], + "countries": [ + "IL" + ], + "is_corresponding": true, + "raw_author_name": "Shai Shalev‐Shwartz", + "raw_affiliation_strings": [ + "Hebrew University of Jerusalem ," + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Hebrew University of Jerusalem ,", + "institution_ids": [ + "https://openalex.org/I197251160" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5112193907", + "display_name": "Shai Ben-David", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I151746483", + "display_name": "University of Waterloo", + "ror": "https://ror.org/01aff2v68", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I151746483" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Shai Ben-David", + "raw_affiliation_strings": [ + "University of Waterloo, Ontario#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Waterloo, Ontario#TAB#", + "institution_ids": [ + "https://openalex.org/I151746483" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5078263052" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I197251160" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 99.395, + "has_fulltext": false, + "cited_by_count": 3088, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9983000159263611, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12002", + "display_name": "Computability, Logic, AI Algorithms", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6889339685440063 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6654757261276245 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.6018842458724976 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5886845588684082 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.573776364326477 + }, + { + "id": "https://openalex.org/keywords/stability", + "display_name": "Stability (learning theory)", + "score": 0.5710829496383667 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.5549349784851074 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.5015144348144531 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4825989007949829 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.4673505127429962 + }, + { + "id": "https://openalex.org/keywords/convexity", + "display_name": "Convexity", + "score": 0.4466382563114166 + }, + { + "id": "https://openalex.org/keywords/online-machine-learning", + "display_name": "Online machine learning", + "score": 0.4228948950767517 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.3927263915538788 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2105390727519989 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6889339685440063 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6654757261276245 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.6018842458724976 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5886845588684082 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.573776364326477 + }, + { + "id": "https://openalex.org/C112972136", + "wikidata": "https://www.wikidata.org/wiki/Q7595718", + "display_name": "Stability (learning theory)", + "level": 2, + "score": 0.5710829496383667 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.5549349784851074 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.5015144348144531 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4825989007949829 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.4673505127429962 + }, + { + "id": "https://openalex.org/C72134830", + "wikidata": "https://www.wikidata.org/wiki/Q5166524", + "display_name": "Convexity", + "level": 2, + "score": 0.4466382563114166 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.4228948950767517 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.3927263915538788 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2105390727519989 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106159729", + "wikidata": "https://www.wikidata.org/wiki/Q2294553", + "display_name": "Financial economics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027241732", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027241732&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Lehrbuch" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028014298", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/CBO9781107298019", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:607505555", + "is_oa": false, + "landing_page_url": "https://www.cs.huji.ac.il/~shais/UnderstandingMachineLearning/understanding-machine-learning-theory-algorithms.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.699999988079071, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 192, + "referenced_works": [ + "https://openalex.org/W740415", + "https://openalex.org/W2169610", + "https://openalex.org/W27434444", + "https://openalex.org/W27926580", + "https://openalex.org/W60189517", + "https://openalex.org/W65382156", + "https://openalex.org/W88685657", + "https://openalex.org/W108503560", + "https://openalex.org/W182746352", + "https://openalex.org/W182881619", + "https://openalex.org/W1153891179", + "https://openalex.org/W1480376833", + "https://openalex.org/W1491105865", + "https://openalex.org/W1499397922", + "https://openalex.org/W1503398984", + "https://openalex.org/W1505356468", + "https://openalex.org/W1505731132", + "https://openalex.org/W1511986666", + "https://openalex.org/W1516903196", + "https://openalex.org/W1520252399", + "https://openalex.org/W1526146785", + "https://openalex.org/W1530699444", + "https://openalex.org/W1538131130", + "https://openalex.org/W1540155273", + "https://openalex.org/W1540586255", + "https://openalex.org/W1541527977", + "https://openalex.org/W1542886316", + "https://openalex.org/W1553702074", + "https://openalex.org/W1560724230", + "https://openalex.org/W1564947197", + "https://openalex.org/W1570963478", + "https://openalex.org/W1587157779", + "https://openalex.org/W1590183771", + "https://openalex.org/W1601740268", + "https://openalex.org/W1607832978", + "https://openalex.org/W1614597761", + "https://openalex.org/W1663973292", + "https://openalex.org/W1676820704", + "https://openalex.org/W1686946872", + "https://openalex.org/W1698155719", + "https://openalex.org/W1790582767", + "https://openalex.org/W1926592634", + "https://openalex.org/W1931645998", + "https://openalex.org/W1968934255", + "https://openalex.org/W1970074386", + "https://openalex.org/W1971361630", + "https://openalex.org/W1976697079", + "https://openalex.org/W1979711143", + "https://openalex.org/W1981207991", + "https://openalex.org/W1981340104", + "https://openalex.org/W1982381767", + "https://openalex.org/W1984876737", + "https://openalex.org/W1988355994", + "https://openalex.org/W1988790447", + "https://openalex.org/W1992208280", + "https://openalex.org/W1994520254", + "https://openalex.org/W1994584977", + "https://openalex.org/W1994616650", + "https://openalex.org/W2005140191", + "https://openalex.org/W2005306124", + "https://openalex.org/W2008652694", + "https://openalex.org/W2012400640", + "https://openalex.org/W2014384147", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015418199", + "https://openalex.org/W2016133707", + "https://openalex.org/W2017753243", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020913456", + "https://openalex.org/W2021302824", + "https://openalex.org/W2025263811", + "https://openalex.org/W2028781966", + "https://openalex.org/W2029029543", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030449718", + "https://openalex.org/W2030811966", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041613709", + "https://openalex.org/W2048448061", + "https://openalex.org/W2054658115", + "https://openalex.org/W2055186664", + "https://openalex.org/W2059507684", + "https://openalex.org/W2059811159", + "https://openalex.org/W2069936846", + "https://openalex.org/W2070771761", + "https://openalex.org/W2070902649", + "https://openalex.org/W2071846104", + "https://openalex.org/W2072128103", + "https://openalex.org/W2075567596", + "https://openalex.org/W2076451537", + "https://openalex.org/W2077008409", + "https://openalex.org/W2077424406", + "https://openalex.org/W2077723394", + "https://openalex.org/W2084544490", + "https://openalex.org/W2084840427", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087347434", + "https://openalex.org/W2091825929", + "https://openalex.org/W2093717447", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096879261", + "https://openalex.org/W2097931325", + "https://openalex.org/W2101276256", + "https://openalex.org/W2102486516", + "https://openalex.org/W2103194807", + "https://openalex.org/W2105594594", + "https://openalex.org/W2105644991", + "https://openalex.org/W2106596127", + "https://openalex.org/W2106948187", + "https://openalex.org/W2109943925", + "https://openalex.org/W2111004121", + "https://openalex.org/W2112269233", + "https://openalex.org/W2113651538", + "https://openalex.org/W2116314036", + "https://openalex.org/W2117049614", + "https://openalex.org/W2117130368", + "https://openalex.org/W2118075434", + "https://openalex.org/W2119479037", + "https://openalex.org/W2119821739", + "https://openalex.org/W2121127625", + "https://openalex.org/W2121367301", + "https://openalex.org/W2122111042", + "https://openalex.org/W2123921160", + "https://openalex.org/W2125055259", + "https://openalex.org/W2129113961", + "https://openalex.org/W2129131372", + "https://openalex.org/W2129160848", + "https://openalex.org/W2130325614", + "https://openalex.org/W2132914434", + "https://openalex.org/W2135046866", + "https://openalex.org/W2136885855", + "https://openalex.org/W2136922672", + "https://openalex.org/W2138263042", + "https://openalex.org/W2139338362", + "https://openalex.org/W2139427956", + "https://openalex.org/W2140095548", + "https://openalex.org/W2142623206", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148603752", + "https://openalex.org/W2148825261", + "https://openalex.org/W2149706766", + "https://openalex.org/W2150434953", + "https://openalex.org/W2150940164", + "https://openalex.org/W2151554678", + "https://openalex.org/W2151693816", + "https://openalex.org/W2154642048", + "https://openalex.org/W2154952480", + "https://openalex.org/W2155195660", + "https://openalex.org/W2155534369", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2160354932", + "https://openalex.org/W2162341153", + "https://openalex.org/W2164595191", + "https://openalex.org/W2168022998", + "https://openalex.org/W2170207925", + "https://openalex.org/W2222512263", + "https://openalex.org/W2253807446", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2296616510", + "https://openalex.org/W2329579984", + "https://openalex.org/W2395092015", + "https://openalex.org/W2399803916", + "https://openalex.org/W2401610261", + "https://openalex.org/W2402090481", + "https://openalex.org/W2416173357", + "https://openalex.org/W2429914308", + "https://openalex.org/W2493312408", + "https://openalex.org/W2547651473", + "https://openalex.org/W2579923771", + "https://openalex.org/W2592570088", + "https://openalex.org/W2611627047", + "https://openalex.org/W2613634265", + "https://openalex.org/W2798766386", + "https://openalex.org/W2799119698", + "https://openalex.org/W2911964244", + "https://openalex.org/W2952817049", + "https://openalex.org/W2964020133", + "https://openalex.org/W2964270981", + "https://openalex.org/W2971788173", + "https://openalex.org/W3021452258", + "https://openalex.org/W3034905139", + "https://openalex.org/W3038084247", + "https://openalex.org/W3083047178", + "https://openalex.org/W3085162807", + "https://openalex.org/W3100743579", + "https://openalex.org/W3124678630", + "https://openalex.org/W3140968660", + "https://openalex.org/W3141595720", + "https://openalex.org/W3149604617", + "https://openalex.org/W3214968550" + ], + "related_works": [ + "https://openalex.org/W3137695714", + "https://openalex.org/W3118608800", + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2579923771", + "https://openalex.org/W2296319761", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2156909104", + "https://openalex.org/W2148603752", + "https://openalex.org/W2139338362", + "https://openalex.org/W2112796928", + "https://openalex.org/W2101234009", + "https://openalex.org/W2029538739", + "https://openalex.org/W2019363670", + "https://openalex.org/W1944672", + "https://openalex.org/W1663973292", + "https://openalex.org/W1554944419", + "https://openalex.org/W1542886316" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 48, + 95, + 146 + ], + "is": [ + 2, + 20 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 17, + 42, + 63, + 66, + 75, + 90, + 94, + 99, + 144 + ], + "the": [ + 5, + 26, + 43, + 50, + 64, + 67, + 69, + 91, + 97, + 122, + 137, + 140 + ], + "fastest": [ + 6 + ], + "growing": [ + 7 + ], + "areas": [ + 8 + ], + "computer": [ + 10, + 155 + ], + "science,": [ + 11, + 156 + ], + "with": [ + 12 + ], + "far-reaching": [ + 13 + ], + "applications.": [ + 14 + ], + "The": [ + 15, + 35 + ], + "aim": [ + 16 + ], + "this": [ + 18 + ], + "textbook": [ + 19 + ], + "to": [ + 21, + 148 + ], + "introduce": [ + 22 + ], + "machine": [ + 23, + 47, + 145 + ], + "learning,": [ + 24 + ], + "and": [ + 25, + 49, + 96, + 101, + 112, + 116, + 125, + 142, + 150, + 158 + ], + "algorithmic": [ + 27, + 104 + ], + "paradigms": [ + 28, + 105 + ], + "it": [ + 29 + ], + "offers,": [ + 30 + ], + "in": [ + 31, + 153 + ], + "a": [ + 32, + 61, + 72, + 88 + ], + "principled": [ + 33 + ], + "way.": [ + 34 + ], + "book": [ + 36, + 70 + ], + "provides": [ + 37 + ], + "an": [ + 38, + 130 + ], + "extensive": [ + 39 + ], + "theoretical": [ + 40, + 118 + ], + "account": [ + 41 + ], + "fundamental": [ + 44 + ], + "ideas": [ + 45 + ], + "underlying": [ + 46 + ], + "mathematical": [ + 51 + ], + "derivations": [ + 52 + ], + "that": [ + 53, + 78 + ], + "transform": [ + 54 + ], + "these": [ + 55 + ], + "principles": [ + 56 + ], + "into": [ + 57 + ], + "practical": [ + 58 + ], + "algorithms.": [ + 59 + ], + "Following": [ + 60 + ], + "presentation": [ + 62 + ], + "basics": [ + 65 + ], + "field,": [ + 68 + ], + "covers": [ + 71 + ], + "wide": [ + 73 + ], + "array": [ + 74 + ], + "central": [ + 76 + ], + "topics": [ + 77 + ], + "have": [ + 79 + ], + "not": [ + 80 + ], + "been": [ + 81 + ], + "addressed": [ + 82 + ], + "by": [ + 83 + ], + "previous": [ + 84 + ], + "textbooks.": [ + 85 + ], + "These": [ + 86 + ], + "include": [ + 87 + ], + "discussion": [ + 89 + ], + "computational": [ + 92 + ], + "complexity": [ + 93 + ], + "concepts": [ + 98, + 119 + ], + "convexity": [ + 100 + ], + "stability;": [ + 102 + ], + "important": [ + 103 + ], + "including": [ + 106 + ], + "stochastic": [ + 107 + ], + "gradient": [ + 108 + ], + "descent,": [ + 109 + ], + "neural": [ + 110 + ], + "networks,": [ + 111 + ], + "structured": [ + 113 + ], + "output": [ + 114 + ], + "learning;": [ + 115 + ], + "emerging": [ + 117 + ], + "such": [ + 120 + ], + "as": [ + 121 + ], + "PAC-Bayes": [ + 123 + ], + "approach": [ + 124 + ], + "compression-based": [ + 126 + ], + "bounds.": [ + 127 + ], + "Designed": [ + 128 + ], + "for": [ + 129 + ], + "advanced": [ + 131 + ], + "undergraduate": [ + 132 + ], + "or": [ + 133 + ], + "beginning": [ + 134 + ], + "graduate": [ + 135 + ], + "course,": [ + 136 + ], + "text": [ + 138 + ], + "makes": [ + 139 + ], + "fundamentals": [ + 141 + ], + "algorithms": [ + 143 + ], + "accessible": [ + 147 + ], + "students": [ + 149 + ], + "non-expert": [ + 151 + ], + "readers": [ + 152 + ], + "statistics,": [ + 154 + ], + "mathematics,": [ + 157 + ], + "engineering.": [ + 159 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 80 + }, + { + "year": 2024, + "cited_by_count": 167 + }, + { + "year": 2023, + "cited_by_count": 278 + }, + { + "year": 2022, + "cited_by_count": 265 + }, + { + "year": 2021, + "cited_by_count": 621 + }, + { + "year": 2020, + "cited_by_count": 630 + }, + { + "year": 2019, + "cited_by_count": 453 + }, + { + "year": 2018, + "cited_by_count": 267 + }, + { + "year": 2017, + "cited_by_count": 152 + }, + { + "year": 2016, + "cited_by_count": 110 + }, + { + "year": 2015, + "cited_by_count": 46 + }, + { + "year": 2014, + "cited_by_count": 13 + }, + { + "year": 2013, + "cited_by_count": 3 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2115252128", + "doi": "https://doi.org/10.5555/1577069.1755843", + "title": "Dlib-ml: A Machine Learning Toolkit", + "display_name": "Dlib-ml: A Machine Learning Toolkit", + "relevance_score": 3735.6973, + "publication_year": 2009, + "publication_date": "2009-12-01", + "ids": { + "openalex": "https://openalex.org/W2115252128", + "doi": "https://doi.org/10.5555/1577069.1755843", + "mag": "2115252128" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.156.3584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.156.3584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.jmlr.org/papers/volume10/king09a/king09a.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5055606271", + "display_name": "Davis E. King", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Davis E. King", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5055606271" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 4.9979, + "has_fulltext": false, + "cited_by_count": 2921, + "citation_normalized_percentile": { + "value": 0.95441293, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "10", + "issue": "60", + "first_page": "1755", + "last_page": "1758" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.9950000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.9950000047683716, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11447", + "display_name": "Blind Source Separation Techniques", + "score": 0.9936000108718872, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9926000237464905, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8153140544891357 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.7605270147323608 + }, + { + "id": "https://openalex.org/keywords/debugging", + "display_name": "Debugging", + "score": 0.6248811483383179 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6037954092025757 + }, + { + "id": "https://openalex.org/keywords/cluster-analysis", + "display_name": "Cluster analysis", + "score": 0.553378701210022 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.4825972318649292 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.4804627299308777 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4792616367340088 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.46823209524154663 + }, + { + "id": "https://openalex.org/keywords/documentation", + "display_name": "Documentation", + "score": 0.4525264799594879 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.4523027539253235 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3667660355567932 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8153140544891357 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.7605270147323608 + }, + { + "id": "https://openalex.org/C168065819", + "wikidata": "https://www.wikidata.org/wiki/Q845566", + "display_name": "Debugging", + "level": 2, + "score": 0.6248811483383179 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6037954092025757 + }, + { + "id": "https://openalex.org/C73555534", + "wikidata": "https://www.wikidata.org/wiki/Q622825", + "display_name": "Cluster analysis", + "level": 2, + "score": 0.553378701210022 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.4825972318649292 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.4804627299308777 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4792616367340088 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.46823209524154663 + }, + { + "id": "https://openalex.org/C56666940", + "wikidata": "https://www.wikidata.org/wiki/Q788790", + "display_name": "Documentation", + "level": 2, + "score": 0.4525264799594879 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.4523027539253235 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3667660355567932 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.156.3584", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.156.3584", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.jmlr.org/papers/volume10/king09a/king09a.pdf", + "raw_type": "text" + }, + { + "id": "mag:2115252128", + "is_oa": false, + "landing_page_url": "https://jmlr.csail.mit.edu/papers/volume10/king09a/king09a.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S118988714", + "display_name": "Journal of Machine Learning Research", + "issn_l": "1532-4435", + "issn": [ + "1532-4435", + "1533-7928" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Journal of Machine Learning Research", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.5400000214576721, + "id": "https://metadata.un.org/sdg/9", + "display_name": "Industry, innovation and infrastructure" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 9, + "referenced_works": [ + "https://openalex.org/W1486089539", + "https://openalex.org/W1494068061", + "https://openalex.org/W1618905105", + "https://openalex.org/W1633751774", + "https://openalex.org/W2125993116", + "https://openalex.org/W2142623206", + "https://openalex.org/W2153290280", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154462399" + ], + "related_works": [ + "https://openalex.org/W3101998545", + "https://openalex.org/W3099206234", + "https://openalex.org/W3097096317", + "https://openalex.org/W2964121744", + "https://openalex.org/W2963073614", + "https://openalex.org/W2325939864", + "https://openalex.org/W2301937176", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2161969291", + "https://openalex.org/W2145287260", + "https://openalex.org/W2108598243", + "https://openalex.org/W2103943262", + "https://openalex.org/W2099471712", + "https://openalex.org/W2097117768", + "https://openalex.org/W2087681821", + "https://openalex.org/W1901129140", + "https://openalex.org/W1834627138", + "https://openalex.org/W1782590233", + "https://openalex.org/W1686810756" + ], + "abstract_inverted_index": { + "There": [ + 0 + ], + "are": [ + 1 + ], + "many": [ + 2 + ], + "excellent": [ + 3 + ], + "toolkits": [ + 4 + ], + "which": [ + 5, + 33, + 105 + ], + "provide": [ + 6, + 36 + ], + "support": [ + 7 + ], + "for": [ + 8, + 41, + 71, + 80 + ], + "developing": [ + 9, + 42 + ], + "machine": [ + 10, + 43 + ], + "learning": [ + 11, + 44 + ], + "software": [ + 12, + 45 + ], + "in": [ + 13, + 46, + 62, + 74 + ], + "Python,": [ + 14 + ], + "R,": [ + 15 + ], + "Matlab,": [ + 16 + ], + "and": [ + 17, + 30, + 77, + 86, + 108 + ], + "similar": [ + 18 + ], + "environments.": [ + 19 + ], + "Dlib-ml": [ + 20 + ], + "is": [ + 21 + ], + "an": [ + 22, + 55 + ], + "open": [ + 23 + ], + "source": [ + 24 + ], + "library,": [ + 25 + ], + "targeted": [ + 26 + ], + "at": [ + 27 + ], + "both": [ + 28 + ], + "engineers": [ + 29 + ], + "research": [ + 31 + ], + "scientists,": [ + 32 + ], + "aims": [ + 34 + ], + "to": [ + 35 + ], + "a": [ + 37 + ], + "similarly": [ + 38 + ], + "rich": [ + 39 + ], + "environment": [ + 40 + ], + "the": [ + 47, + 96 + ], + "C++": [ + 48 + ], + "language.": [ + 49 + ], + "Towards": [ + 50 + ], + "this": [ + 51 + ], + "end,": [ + 52 + ], + "dlib-ml": [ + 53 + ], + "contains": [ + 54 + ], + "extensible": [ + 56 + ], + "linear": [ + 57 + ], + "algebra": [ + 58 + ], + "toolkit": [ + 59 + ], + "with": [ + 60, + 102 + ], + "built": [ + 61 + ], + "BLAS": [ + 63 + ], + "support.": [ + 64 + ], + "It": [ + 65 + ], + "also": [ + 66 + ], + "houses": [ + 67 + ], + "implementations": [ + 68 + ], + "of": [ + 69, + 93 + ], + "algorithms": [ + 70 + ], + "performing": [ + 72 + ], + "inference": [ + 73 + ], + "Bayesian": [ + 75, + 124 + ], + "networks": [ + 76, + 125 + ], + "kernel-based": [ + 78 + ], + "methods": [ + 79 + ], + "classification,": [ + 81 + ], + "regression,": [ + 82 + ], + "clustering,": [ + 83, + 122 + ], + "anomaly": [ + 84 + ], + "detection,": [ + 85 + ], + "feature": [ + 87 + ], + "ranking.": [ + 88 + ], + "To": [ + 89 + ], + "enable": [ + 90 + ], + "easy": [ + 91 + ], + "use": [ + 92 + ], + "these": [ + 94 + ], + "tools,": [ + 95 + ], + "entire": [ + 97 + ], + "library": [ + 98 + ], + "has": [ + 99 + ], + "been": [ + 100 + ], + "developed": [ + 101 + ], + "contract": [ + 103 + ], + "programming,": [ + 104 + ], + "provides": [ + 106 + ], + "complete": [ + 107 + ], + "precise": [ + 109 + ], + "documentation": [ + 110 + ], + "as": [ + 111, + 113 + ], + "well": [ + 112 + ], + "powerful": [ + 114 + ], + "debugging": [ + 115 + ], + "tools.": [ + 116 + ], + "Keywords:": [ + 117 + ], + "kernel-methods,": [ + 118 + ], + "svm,": [ + 119 + ], + "rvm,": [ + 120 + ], + "kernel": [ + 121 + ], + "C++,": [ + 123 + ], + "1.": [ + 126 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 74 + }, + { + "year": 2024, + "cited_by_count": 194 + }, + { + "year": 2023, + "cited_by_count": 292 + }, + { + "year": 2022, + "cited_by_count": 336 + }, + { + "year": 2021, + "cited_by_count": 479 + }, + { + "year": 2020, + "cited_by_count": 446 + }, + { + "year": 2019, + "cited_by_count": 400 + }, + { + "year": 2018, + "cited_by_count": 319 + }, + { + "year": 2017, + "cited_by_count": 190 + }, + { + "year": 2016, + "cited_by_count": 113 + }, + { + "year": 2015, + "cited_by_count": 44 + }, + { + "year": 2014, + "cited_by_count": 14 + }, + { + "year": 2013, + "cited_by_count": 5 + }, + { + "year": 2012, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-08T15:41:06.802602", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4400134761", + "doi": "https://doi.org/10.21275/art20203995", + "title": "Machine Learning Algorithms - A Review", + "display_name": "Machine Learning Algorithms - A Review", + "relevance_score": 3665.777, + "publication_year": 2020, + "publication_date": "2020-01-05", + "ids": { + "openalex": "https://openalex.org/W4400134761", + "doi": "https://doi.org/10.21275/art20203995" + }, + "language": "en", + "primary_location": { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "diamond", + "oa_url": "https://doi.org/10.21275/art20203995", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5113270062", + "display_name": "Batta Mahesh", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Batta Mahesh", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5113270062" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 300.9528, + "has_fulltext": false, + "cited_by_count": 2453, + "citation_normalized_percentile": { + "value": 0.99993518, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "9", + "issue": "1", + "first_page": "381", + "last_page": "386" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.19280000030994415, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.19280000030994415, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5793123245239258 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.46341603994369507 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.44169795513153076 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.4307257831096649 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5793123245239258 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.46341603994369507 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.44169795513153076 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.4307257831096649 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.21275/art20203995", + "is_oa": true, + "landing_page_url": "https://doi.org/10.21275/art20203995", + "pdf_url": "https://doi.org/10.21275/art20203995", + "source": { + "id": "https://openalex.org/S4210240710", + "display_name": "International Journal of Science and Research (IJSR)", + "issn_l": "2319-7064", + "issn": [ + "2319-7064" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Science and Research (IJSR)", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W4400134761.pdf" + }, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W328766226", + "https://openalex.org/W1549998098", + "https://openalex.org/W2040895929", + "https://openalex.org/W2091005538", + "https://openalex.org/W2223344998", + "https://openalex.org/W4236558809" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 61, + 93, + 125 + ], + "(ML)": [ + 2 + ], + "is": [ + 3, + 44, + 58, + 94 + ], + "the": [ + 4, + 48, + 52, + 120 + ], + "scientific": [ + 5 + ], + "study": [ + 6 + ], + "of": [ + 7, + 34, + 51, + 90, + 119, + 123 + ], + "algorithms": [ + 8, + 26, + 70, + 126 + ], + "and": [ + 9, + 116 + ], + "statistical": [ + 10 + ], + "models": [ + 11 + ], + "that": [ + 12, + 54 + ], + "computer": [ + 13 + ], + "systems": [ + 14 + ], + "use": [ + 15, + 33 + ], + "to": [ + 16, + 46, + 66, + 84, + 101 + ], + "perform": [ + 17 + ], + "a": [ + 18, + 38, + 60, + 86, + 113 + ], + "specific": [ + 19 + ], + "task": [ + 20 + ], + "without": [ + 21 + ], + "being": [ + 22 + ], + "explicitly": [ + 23 + ], + "programmed.": [ + 24 + ], + "Learning": [ + 25 + ], + "in": [ + 27 + ], + "many": [ + 28 + ], + "applications": [ + 29, + 122 + ], + "that's": [ + 30 + ], + "we": [ + 31 + ], + "make": [ + 32 + ], + "daily.": [ + 35 + ], + "Every": [ + 36 + ], + "time": [ + 37 + ], + "web": [ + 39, + 68 + ], + "search": [ + 40, + 47 + ], + "engine": [ + 41 + ], + "like": [ + 42, + 76 + ], + "Google": [ + 43 + ], + "used": [ + 45, + 72 + ], + "internet,": [ + 49 + ], + "one": [ + 50 + ], + "reasons": [ + 53 + ], + "work": [ + 55, + 109 + ], + "so": [ + 56 + ], + "well": [ + 57 + ], + "because": [ + 59 + ], + "algorithm": [ + 62, + 98 + ], + "thathas": [ + 63 + ], + "learned": [ + 64 + ], + "how": [ + 65 + ], + "rank": [ + 67 + ], + "pages.These": [ + 69 + ], + "are": [ + 71 + ], + "for": [ + 73 + ], + "various": [ + 74 + ], + "purposes": [ + 75 + ], + "data": [ + 77 + ], + "mining,": [ + 78 + ], + "image": [ + 79 + ], + "processing,": [ + 80 + ], + "predictive": [ + 81 + ], + "analytics,": [ + 82 + ], + "etc.": [ + 83 + ], + "name": [ + 85 + ], + "few.The": [ + 87 + ], + "main": [ + 88 + ], + "advantage": [ + 89 + ], + "using": [ + 91 + ], + "machine": [ + 92, + 124 + ], + "that,": [ + 95 + ], + "once": [ + 96 + ], + "an": [ + 97 + ], + "learns": [ + 99 + ], + "what": [ + 100 + ], + "do": [ + 102, + 107 + ], + "with": [ + 103 + ], + "data,": [ + 104 + ], + "it": [ + 105 + ], + "can": [ + 106 + ], + "its": [ + 108 + ], + "automatically.In": [ + 110 + ], + "this": [ + 111 + ], + "paper,": [ + 112 + ], + "brief": [ + 114 + ], + "review": [ + 115 + ], + "future": [ + 117 + ], + "prospect": [ + 118 + ], + "vast": [ + 121 + ], + "has": [ + 127 + ], + "been": [ + 128 + ], + "made.": [ + 129 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 103 + }, + { + "year": 2025, + "cited_by_count": 646 + }, + { + "year": 2024, + "cited_by_count": 720 + }, + { + "year": 2023, + "cited_by_count": 608 + }, + { + "year": 2022, + "cited_by_count": 271 + }, + { + "year": 2021, + "cited_by_count": 68 + }, + { + "year": 2020, + "cited_by_count": 27 + }, + { + "year": 2019, + "cited_by_count": 7 + }, + { + "year": 2018, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2161336914", + "doi": "https://doi.org/10.1145/2347736.2347755", + "title": "A few useful things to know about machine learning", + "display_name": "A few useful things to know about machine learning", + "relevance_score": 3658.7053, + "publication_year": 2012, + "publication_date": "2012-09-25", + "ids": { + "openalex": "https://openalex.org/W2161336914", + "doi": "https://doi.org/10.1145/2347736.2347755", + "mag": "2161336914" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/2347736.2347755", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2347736.2347755", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5018711331", + "display_name": "Pedro Domingos", + "orcid": "https://orcid.org/0000-0003-4523-5631" + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + }, + { + "id": "https://openalex.org/I58610484", + "display_name": "Seattle University", + "ror": "https://ror.org/02jqc0m91", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I58610484" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Pedro Domingos", + "raw_affiliation_strings": [ + "University of Washington, Seattle" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Washington, Seattle", + "institution_ids": [ + "https://openalex.org/I58610484", + "https://openalex.org/I201448701" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5018711331" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I201448701", + "https://openalex.org/I58610484" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 103.0331, + "has_fulltext": false, + "cited_by_count": 3232, + "citation_normalized_percentile": { + "value": 0.99977527, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "55", + "issue": "10", + "first_page": "78", + "last_page": "87" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9976000189781189, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9976000189781189, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11303", + "display_name": "Bayesian Modeling and Causal Inference", + "score": 0.9958000183105469, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6615294218063354 + }, + { + "id": "https://openalex.org/keywords/need-to-know", + "display_name": "Need to know", + "score": 0.5620318651199341 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.43639615178108215 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.35491612553596497 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.22050878405570984 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6615294218063354 + }, + { + "id": "https://openalex.org/C2778519782", + "wikidata": "https://www.wikidata.org/wiki/Q1974060", + "display_name": "Need to know", + "level": 2, + "score": 0.5620318651199341 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.43639615178108215 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.35491612553596497 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.22050878405570984 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1145/2347736.2347755", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2347736.2347755", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.353.7232", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.353.7232", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://homes.cs.washington.edu/~pedrod/papers/cacm12.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.3497", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.3497", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://pantherfile.uwm.edu/borji/www/lecturesML/Reviews/cacm12.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.85", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.85", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://haralick.org/ML/useful_things_about_machine_learning.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.47999998927116394, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 31, + "referenced_works": [ + "https://openalex.org/W1486658274", + "https://openalex.org/W1494137514", + "https://openalex.org/W1504694836", + "https://openalex.org/W1521062204", + "https://openalex.org/W1570448133", + "https://openalex.org/W1583837637", + "https://openalex.org/W1585009072", + "https://openalex.org/W1761022139", + "https://openalex.org/W1977970897", + "https://openalex.org/W2001141328", + "https://openalex.org/W2039683780", + "https://openalex.org/W2063961549", + "https://openalex.org/W2070902649", + "https://openalex.org/W2072128103", + "https://openalex.org/W2089624555", + "https://openalex.org/W2100483895", + "https://openalex.org/W2110065044", + "https://openalex.org/W2110228583", + "https://openalex.org/W2125055259", + "https://openalex.org/W2140785063", + "https://openalex.org/W2143891888", + "https://openalex.org/W2152761983", + "https://openalex.org/W2156909104", + "https://openalex.org/W2400138769", + "https://openalex.org/W2966207845", + "https://openalex.org/W3133236490", + "https://openalex.org/W3135029803", + "https://openalex.org/W4231109964", + "https://openalex.org/W4232632925", + "https://openalex.org/W4299515571", + "https://openalex.org/W6791387550" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4224009465", + "https://openalex.org/W4286629047", + "https://openalex.org/W4306321456", + "https://openalex.org/W4285260836", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4205958290", + "https://openalex.org/W3209574120" + ], + "abstract_inverted_index": { + "Tapping": [ + 0 + ], + "into": [ + 1 + ], + "the": [ + 2 + ], + "\"folk": [ + 3 + ], + "knowledge\"": [ + 4 + ], + "needed": [ + 5 + ], + "to": [ + 6 + ], + "advance": [ + 7 + ], + "machine": [ + 8 + ], + "learning": [ + 9 + ], + "applications.": [ + 10 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 111 + }, + { + "year": 2025, + "cited_by_count": 349 + }, + { + "year": 2024, + "cited_by_count": 298 + }, + { + "year": 2023, + "cited_by_count": 268 + }, + { + "year": 2022, + "cited_by_count": 283 + }, + { + "year": 2021, + "cited_by_count": 310 + }, + { + "year": 2020, + "cited_by_count": 391 + }, + { + "year": 2019, + "cited_by_count": 326 + }, + { + "year": 2018, + "cited_by_count": 261 + }, + { + "year": 2017, + "cited_by_count": 248 + }, + { + "year": 2016, + "cited_by_count": 153 + }, + { + "year": 2015, + "cited_by_count": 106 + }, + { + "year": 2014, + "cited_by_count": 80 + }, + { + "year": 2013, + "cited_by_count": 45 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2151591509", + "doi": "https://doi.org/10.3389/fninf.2014.00014", + "title": "Machine learning for neuroimaging with scikit-learn", + "display_name": "Machine learning for neuroimaging with scikit-learn", + "relevance_score": 3625.0486, + "publication_year": 2014, + "publication_date": "2014-01-01", + "ids": { + "openalex": "https://openalex.org/W2151591509", + "doi": "https://doi.org/10.3389/fninf.2014.00014", + "mag": "2151591509", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/24600388" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5033483167", + "display_name": "Alexandre Abraham", + "orcid": "https://orcid.org/0000-0003-3693-0560" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": true, + "raw_author_name": "Alexandre Abraham", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108143968", + "display_name": "Fabian Pedregosa", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Fabian Pedregosa", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5065146930", + "display_name": "Michael Eickenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Michael Eickenberg", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5001112573", + "display_name": "Philippe Gervais", + "orcid": "https://orcid.org/0000-0003-2172-879X" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Philippe Gervais", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088500114", + "display_name": "Andreas Mueller", + "orcid": "https://orcid.org/0000-0002-2349-9428" + }, + "institutions": [ + { + "id": "https://openalex.org/I135140700", + "display_name": "University of Bonn", + "ror": "https://ror.org/041nas322", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I135140700" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Andreas Mueller", + "raw_affiliation_strings": [ + "Institute of Computer Science VI, University of Bonn Bonn, Germany", + "Institute of Computer Science VI, University of Bonn, Bonn, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute of Computer Science VI, University of Bonn Bonn, Germany", + "institution_ids": [ + "https://openalex.org/I135140700" + ] + }, + { + "raw_affiliation_string": "Institute of Computer Science VI, University of Bonn, Bonn, Germany", + "institution_ids": [ + "https://openalex.org/I135140700" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006048318", + "display_name": "Jean Kossaifi", + "orcid": "https://orcid.org/0000-0002-4445-3429" + }, + "institutions": [ + { + "id": "https://openalex.org/I47508984", + "display_name": "Imperial College London", + "ror": "https://ror.org/041kmwe10", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I47508984" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Jean Kossaifi", + "raw_affiliation_strings": [ + "Department of Computing, Imperial College London London, UK", + "Department of Computing, Imperial College London, London, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computing, Imperial College London London, UK", + "institution_ids": [ + "https://openalex.org/I47508984" + ] + }, + { + "raw_affiliation_string": "Department of Computing, Imperial College London, London, UK", + "institution_ids": [ + "https://openalex.org/I47508984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5018256474", + "display_name": "Alexandre Gramfort", + "orcid": "https://orcid.org/0000-0001-9791-4404" + }, + "institutions": [ + { + "id": "https://openalex.org/I12356871", + "display_name": "Télécom Paris", + "ror": "https://ror.org/01naq7912", + "country_code": "FR", + "type": "education", + "lineage": [ + "https://openalex.org/I12356871", + "https://openalex.org/I205703379", + "https://openalex.org/I4210145102" + ] + }, + { + "id": "https://openalex.org/I1294671590", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1294671590" + ] + }, + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I205703379", + "display_name": "Institut Mines-Télécom", + "ror": "https://ror.org/025vp2923", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I205703379" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + }, + { + "id": "https://openalex.org/I4210165912", + "display_name": "Laboratoire Traitement et Communication de l’Information", + "ror": "https://ror.org/057er4c39", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I12356871", + "https://openalex.org/I205703379", + "https://openalex.org/I4210145102", + "https://openalex.org/I4210165912" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Alexandre Gramfort", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France ; Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI Paris, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI, Paris, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France ; Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI Paris, France", + "institution_ids": [ + "https://openalex.org/I1294671590", + "https://openalex.org/I205703379", + "https://openalex.org/I4210128565", + "https://openalex.org/I4210165912", + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Institut Mines-Telecom, Telecom ParisTech, CNRS LTCI, Paris, France", + "institution_ids": [ + "https://openalex.org/I205703379", + "https://openalex.org/I12356871", + "https://openalex.org/I4210165912", + "https://openalex.org/I1294671590" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026762833", + "display_name": "Bertrand Thirion", + "orcid": "https://orcid.org/0000-0001-5018-7895" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Bertrand Thirion", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5074733625", + "display_name": "Gaël Varoquaux", + "orcid": "https://orcid.org/0000-0003-1076-5122" + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en sciences et technologies du numérique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1326498283" + ] + }, + { + "id": "https://openalex.org/I2738703131", + "display_name": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "ror": "https://ror.org/00jjx8s55", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131" + ] + }, + { + "id": "https://openalex.org/I4210126360", + "display_name": "Centre Inria de Saclay", + "ror": "https://ror.org/0315e5x55", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I4210126360" + ] + }, + { + "id": "https://openalex.org/I4210128565", + "display_name": "CEA Paris-Saclay", + "ror": "https://ror.org/03n15ch10", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I2738703131", + "https://openalex.org/I277688954", + "https://openalex.org/I4210128565" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Gaël Varoquaux", + "raw_affiliation_strings": [ + "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France Saclay, France ; Neurospin, I2 BM, DSV, CEA Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210128565" + ] + }, + { + "raw_affiliation_string": "Neurospin, I2 BM, DSV, CEA, Gif-Sur-Yvette, France", + "institution_ids": [ + "https://openalex.org/I2738703131" + ] + }, + { + "raw_affiliation_string": "Parietal Team, INRIA Saclay-Île-de-France, Saclay, France", + "institution_ids": [ + "https://openalex.org/I4210126360", + "https://openalex.org/I1326498283" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 9, + "corresponding_author_ids": [ + "https://openalex.org/A5033483167" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1326498283", + "https://openalex.org/I2738703131", + "https://openalex.org/I4210126360", + "https://openalex.org/I4210128565" + ], + "apc_list": { + "value": 2950, + "currency": "USD", + "value_usd": 2950 + }, + "apc_paid": { + "value": 2950, + "currency": "USD", + "value_usd": 2950 + }, + "fwci": 22.8931, + "has_fulltext": true, + "cited_by_count": 2628, + "citation_normalized_percentile": { + "value": 0.99795549, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "8", + "issue": null, + "first_page": "14", + "last_page": "14" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10581", + "display_name": "Neural dynamics and brain function", + "score": 0.9987999796867371, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T10378", + "display_name": "Advanced MRI Techniques and Applications", + "score": 0.9851999878883362, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/neuroimaging", + "display_name": "Neuroimaging", + "score": 0.8332920074462891 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6829519271850586 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6763078570365906 + }, + { + "id": "https://openalex.org/keywords/unsupervised-learning", + "display_name": "Unsupervised learning", + "score": 0.633687436580658 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6015421152114868 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.5471705794334412 + }, + { + "id": "https://openalex.org/keywords/functional-neuroimaging", + "display_name": "Functional neuroimaging", + "score": 0.5229871273040771 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.40410205721855164 + }, + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.1943330466747284 + }, + { + "id": "https://openalex.org/keywords/neuroscience", + "display_name": "Neuroscience", + "score": 0.13872376084327698 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C58693492", + "wikidata": "https://www.wikidata.org/wiki/Q551875", + "display_name": "Neuroimaging", + "level": 2, + "score": 0.8332920074462891 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6829519271850586 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6763078570365906 + }, + { + "id": "https://openalex.org/C8038995", + "wikidata": "https://www.wikidata.org/wiki/Q1152135", + "display_name": "Unsupervised learning", + "level": 2, + "score": 0.633687436580658 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6015421152114868 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.5471705794334412 + }, + { + "id": "https://openalex.org/C52338299", + "wikidata": "https://www.wikidata.org/wiki/Q1004354", + "display_name": "Functional neuroimaging", + "level": 3, + "score": 0.5229871273040771 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.40410205721855164 + }, + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.1943330466747284 + }, + { + "id": "https://openalex.org/C169760540", + "wikidata": "https://www.wikidata.org/wiki/Q207011", + "display_name": "Neuroscience", + "level": 1, + "score": 0.13872376084327698 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + { + "id": "pmid:24600388", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/24600388", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in neuroinformatics", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:2202.11333", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/2202.11333", + "pdf_url": "https://arxiv.org/pdf/2202.11333", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-01093971v1", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-01093971", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Frontiers in Neuroscience, 2013, pp.15. ⟨10.3389/fninf.2014.00014⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:HAL:hal-03187887v3", + "is_oa": false, + "landing_page_url": "https://inria.hal.science/hal-03187887", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Neuroinformatics, 2022, ⟨10.3389/fninf.2014.00014⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:doaj.org/article:055de24a9c3540b6b3884081362be90d", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/055de24a9c3540b6b3884081362be90d", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Frontiers in Neuroinformatics, Vol 8 (2014)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:2928056", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/3930868", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3389/fninf.2014.00014", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3389/fninf.2014.00014", + "pdf_url": "https://www.frontiersin.org/articles/10.3389/fninf.2014.00014/pdf", + "source": { + "id": "https://openalex.org/S179816892", + "display_name": "Frontiers in Neuroinformatics", + "issn_l": "1662-5196", + "issn": [ + "1662-5196" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320527", + "host_organization_name": "Frontiers Media", + "host_organization_lineage": [ + "https://openalex.org/P4310320527" + ], + "host_organization_lineage_names": [ + "Frontiers Media" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Frontiers in Neuroinformatics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "score": 0.6600000262260437, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [ + { + "id": "https://openalex.org/G2501487254", + "display_name": null, + "funder_award_id": "R21 DA034954", + "funder_id": "https://openalex.org/F4320337347", + "funder_display_name": "National Institute on Drug Abuse" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320337347", + "display_name": "National Institute on Drug Abuse", + "ror": "https://ror.org/00fq5cm18" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 71, + "referenced_works": [ + "https://openalex.org/W758533152", + "https://openalex.org/W1480376833", + "https://openalex.org/W1528119265", + "https://openalex.org/W1548802052", + "https://openalex.org/W1569370144", + "https://openalex.org/W1571024744", + "https://openalex.org/W1906883763", + "https://openalex.org/W1970956440", + "https://openalex.org/W1974687978", + "https://openalex.org/W1985327120", + "https://openalex.org/W1988045490", + "https://openalex.org/W1996510233", + "https://openalex.org/W2001399171", + "https://openalex.org/W2006096283", + "https://openalex.org/W2007581301", + "https://openalex.org/W2009494091", + "https://openalex.org/W2011301426", + "https://openalex.org/W2011650426", + "https://openalex.org/W2023633168", + "https://openalex.org/W2024933578", + "https://openalex.org/W2040305148", + "https://openalex.org/W2040566369", + "https://openalex.org/W2040974372", + "https://openalex.org/W2048476135", + "https://openalex.org/W2048631316", + "https://openalex.org/W2052451171", + "https://openalex.org/W2056465968", + "https://openalex.org/W2060259639", + "https://openalex.org/W2063951486", + "https://openalex.org/W2063978378", + "https://openalex.org/W2073683361", + "https://openalex.org/W2077745487", + "https://openalex.org/W2079450984", + "https://openalex.org/W2079785597", + "https://openalex.org/W2089632738", + "https://openalex.org/W2096230777", + "https://openalex.org/W2097267381", + "https://openalex.org/W2097850441", + "https://openalex.org/W2101234009", + "https://openalex.org/W2102729564", + "https://openalex.org/W2113619522", + "https://openalex.org/W2116328702", + "https://openalex.org/W2117621792", + "https://openalex.org/W2122457251", + "https://openalex.org/W2123649031", + "https://openalex.org/W2133990480", + "https://openalex.org/W2134585061", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137966626", + "https://openalex.org/W2140255740", + "https://openalex.org/W2140587192", + "https://openalex.org/W2145217719", + "https://openalex.org/W2145487185", + "https://openalex.org/W2146292423", + "https://openalex.org/W2148601705", + "https://openalex.org/W2151130155", + "https://openalex.org/W2151286458", + "https://openalex.org/W2151591509", + "https://openalex.org/W2158485497", + "https://openalex.org/W2164025570", + "https://openalex.org/W2179752489", + "https://openalex.org/W2240767875", + "https://openalex.org/W2540277519", + "https://openalex.org/W2752197104", + "https://openalex.org/W2810031488", + "https://openalex.org/W3132053208", + "https://openalex.org/W4206031975", + "https://openalex.org/W6633893416", + "https://openalex.org/W6675354045", + "https://openalex.org/W6959406008", + "https://openalex.org/W7074038129" + ], + "related_works": [ + "https://openalex.org/W2506266834", + "https://openalex.org/W2499037785", + "https://openalex.org/W2028174874", + "https://openalex.org/W2351278828", + "https://openalex.org/W4308957544", + "https://openalex.org/W2239282469", + "https://openalex.org/W67648935", + "https://openalex.org/W1993895507", + "https://openalex.org/W2122202779", + "https://openalex.org/W1995600417" + ], + "abstract_inverted_index": { + "Statistical": [ + 0 + ], + "machine": [ + 1, + 84 + ], + "learning": [ + 2, + 32, + 52, + 85, + 104 + ], + "methods": [ + 3 + ], + "are": [ + 4 + ], + "increasingly": [ + 5 + ], + "used": [ + 6, + 35, + 89 + ], + "for": [ + 7 + ], + "neuroimaging": [ + 8, + 76, + 114 + ], + "data": [ + 9, + 115 + ], + "analysis.": [ + 10 + ], + "Their": [ + 11 + ], + "main": [ + 12 + ], + "virtue": [ + 13 + ], + "is": [ + 14, + 33 + ], + "their": [ + 15 + ], + "ability": [ + 16 + ], + "to": [ + 17, + 41, + 45, + 90, + 113, + 120 + ], + "model": [ + 18 + ], + "high-dimensional": [ + 19 + ], + "datasets,": [ + 20 + ], + "e.g.,": [ + 21 + ], + "multivariate": [ + 22 + ], + "analysis": [ + 23, + 94 + ], + "of": [ + 24, + 59, + 102 + ], + "activation": [ + 25 + ], + "images": [ + 26, + 44, + 60 + ], + "or": [ + 27, + 38, + 47, + 66 + ], + "resting-state": [ + 28 + ], + "time": [ + 29 + ], + "series.": [ + 30 + ], + "Supervised": [ + 31 + ], + "typically": [ + 34 + ], + "in": [ + 36, + 57, + 69 + ], + "decoding": [ + 37 + ], + "encoding": [ + 39 + ], + "settings": [ + 40 + ], + "relate": [ + 42 + ], + "brain": [ + 43 + ], + "behavioral": [ + 46 + ], + "clinical": [ + 48 + ], + "observations,": [ + 49 + ], + "while": [ + 50 + ], + "unsupervised": [ + 51 + ], + "can": [ + 53, + 87 + ], + "uncover": [ + 54 + ], + "hidden": [ + 55 + ], + "structures": [ + 56 + ], + "sets": [ + 58 + ], + "(e.g.,": [ + 61 + ], + "resting": [ + 62 + ], + "state": [ + 63 + ], + "functional": [ + 64, + 75 + ], + "MRI)": [ + 65 + ], + "find": [ + 67 + ], + "sub-populations": [ + 68 + ], + "large": [ + 70, + 100 + ], + "cohorts.": [ + 71 + ], + "By": [ + 72 + ], + "considering": [ + 73 + ], + "different": [ + 74 + ], + "applications,": [ + 77 + ], + "we": [ + 78 + ], + "illustrate": [ + 79 + ], + "how": [ + 80 + ], + "scikit-learn,": [ + 81 + ], + "a": [ + 82, + 98, + 117 + ], + "Python": [ + 83 + ], + "library,": [ + 86 + ], + "be": [ + 88 + ], + "perform": [ + 91 + ], + "some": [ + 92 + ], + "key": [ + 93 + ], + "steps.": [ + 95 + ], + "Scikit-learn": [ + 96 + ], + "contains": [ + 97 + ], + "very": [ + 99 + ], + "set": [ + 101 + ], + "statistical": [ + 103 + ], + "algorithms,": [ + 105 + ], + "both": [ + 106 + ], + "supervised": [ + 107 + ], + "and": [ + 108, + 110 + ], + "unsupervised,": [ + 109 + ], + "its": [ + 111 + ], + "application": [ + 112 + ], + "provides": [ + 116 + ], + "versatile": [ + 118 + ], + "tool": [ + 119 + ], + "study": [ + 121 + ], + "the": [ + 122 + ], + "brain.": [ + 123 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 129 + }, + { + "year": 2025, + "cited_by_count": 383 + }, + { + "year": 2024, + "cited_by_count": 443 + }, + { + "year": 2023, + "cited_by_count": 381 + }, + { + "year": 2022, + "cited_by_count": 338 + }, + { + "year": 2021, + "cited_by_count": 320 + }, + { + "year": 2020, + "cited_by_count": 244 + }, + { + "year": 2019, + "cited_by_count": 151 + }, + { + "year": 2018, + "cited_by_count": 92 + }, + { + "year": 2017, + "cited_by_count": 61 + }, + { + "year": 2016, + "cited_by_count": 43 + }, + { + "year": 2015, + "cited_by_count": 29 + }, + { + "year": 2014, + "cited_by_count": 12 + }, + { + "year": 2013, + "cited_by_count": 2 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2973119841", + "doi": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "title": "Machine Learning for Fluid Mechanics", + "display_name": "Machine Learning for Fluid Mechanics", + "relevance_score": 3608.3281, + "publication_year": 2019, + "publication_date": "2019-09-12", + "ids": { + "openalex": "https://openalex.org/W2973119841", + "doi": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "mag": "2973119841" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1146/annurev-fluid-010719-060214", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S169493037", + "display_name": "Annual Review of Fluid Mechanics", + "issn_l": "0066-4189", + "issn": [ + "0066-4189", + "1545-4479" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320373", + "host_organization_name": "Annual Reviews", + "host_organization_lineage": [ + "https://openalex.org/P4310320373" + ], + "host_organization_lineage_names": [ + "Annual Reviews" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Annual Review of Fluid Mechanics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1905.11075", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Steven L. Brunton", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I201448701", + "display_name": "University of Washington", + "ror": "https://ror.org/00cvxb145", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I201448701" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Steven L. Brunton", + "raw_affiliation_strings": [ + "Department of Mechanical Engineering, University of Washington, Seattle, Washington 98195, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Mechanical Engineering, University of Washington, Seattle, Washington 98195, USA", + "institution_ids": [ + "https://openalex.org/I201448701" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Bernd R. Noack", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1294671590", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73", + "country_code": "FR", + "type": "government", + "lineage": [ + "https://openalex.org/I1294671590" + ] + }, + { + "id": "https://openalex.org/I277688954", + "display_name": "Université Paris-Saclay", + "ror": "https://ror.org/03xjwb503", + "country_code": "FR", + "type": "education", + "lineage": [ + "https://openalex.org/I277688954" + ] + }, + { + "id": "https://openalex.org/I4210115485", + "display_name": "Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur", + "ror": "https://ror.org/01raq4x89", + "country_code": "FR", + "type": "facility", + "lineage": [ + "https://openalex.org/I102197404", + "https://openalex.org/I1294671590", + "https://openalex.org/I4210115485", + "https://openalex.org/I4210159245" + ] + }, + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + } + ], + "countries": [ + "DE", + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Bernd R. Noack", + "raw_affiliation_strings": [ + "Institut für Strömungsmechanik und Technische Akustik, Technische Universität Berlin, D-10634 Berlin, Germany", + "LIMSI (Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur), CNRS UPR 3251, Université Paris-Saclay, F-91403 Orsay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut für Strömungsmechanik und Technische Akustik, Technische Universität Berlin, D-10634 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "LIMSI (Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur), CNRS UPR 3251, Université Paris-Saclay, F-91403 Orsay, France", + "institution_ids": [ + "https://openalex.org/I277688954", + "https://openalex.org/I4210115485", + "https://openalex.org/I1294671590" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Petros Koumoutsakos", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I35440088", + "display_name": "ETH Zurich", + "ror": "https://ror.org/05a28rw58", + "country_code": "CH", + "type": "education", + "lineage": [ + "https://openalex.org/I2799323385", + "https://openalex.org/I35440088" + ] + } + ], + "countries": [ + "CH" + ], + "is_corresponding": false, + "raw_author_name": "Petros Koumoutsakos", + "raw_affiliation_strings": [ + "Computational Science and Engineering Laboratory, ETH Zurich, CH-8092 Zurich, Switzerland;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Computational Science and Engineering Laboratory, ETH Zurich, CH-8092 Zurich, Switzerland;", + "institution_ids": [ + "https://openalex.org/I35440088" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 4, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I201448701" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 117.0585, + "has_fulltext": true, + "cited_by_count": 2557, + "citation_normalized_percentile": { + "value": 0.99990047, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "52", + "issue": "1", + "first_page": "477", + "last_page": "508" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11206", + "display_name": "Model Reduction and Neural Networks", + "score": 0.9092000126838684, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11206", + "display_name": "Model Reduction and Neural Networks", + "score": 0.9092000126838684, + "subfield": { + "id": "https://openalex.org/subfields/3109", + "display_name": "Statistical and Nonlinear Physics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10775", + "display_name": "Generative Adversarial Networks and Image Synthesis", + "score": 0.01759999990463257, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.012000000104308128, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/fluid-mechanics", + "display_name": "Fluid mechanics", + "score": 0.7289000153541565 + }, + { + "id": "https://openalex.org/keywords/current", + "display_name": "Current (fluid)", + "score": 0.5666999816894531 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5497000217437744 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5285000205039978 + }, + { + "id": "https://openalex.org/keywords/fluid-dynamics", + "display_name": "Fluid dynamics", + "score": 0.5188999772071838 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.4918000102043152 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C43133876", + "wikidata": "https://www.wikidata.org/wiki/Q172145", + "display_name": "Fluid mechanics", + "level": 2, + "score": 0.7289000153541565 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7146999835968018 + }, + { + "id": "https://openalex.org/C148043351", + "wikidata": "https://www.wikidata.org/wiki/Q4456944", + "display_name": "Current (fluid)", + "level": 2, + "score": 0.5666999816894531 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5497000217437744 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5285000205039978 + }, + { + "id": "https://openalex.org/C90278072", + "wikidata": "https://www.wikidata.org/wiki/Q216320", + "display_name": "Fluid dynamics", + "level": 2, + "score": 0.5188999772071838 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5113000273704529 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.4918000102043152 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.43700000643730164 + }, + { + "id": "https://openalex.org/C207685749", + "wikidata": "https://www.wikidata.org/wiki/Q2088941", + "display_name": "Domain knowledge", + "level": 2, + "score": 0.38100001215934753 + }, + { + "id": "https://openalex.org/C38349280", + "wikidata": "https://www.wikidata.org/wiki/Q1434290", + "display_name": "Flow (mathematics)", + "level": 2, + "score": 0.3517000079154968 + }, + { + "id": "https://openalex.org/C99874945", + "wikidata": "https://www.wikidata.org/wiki/Q188715", + "display_name": "Statistical mechanics", + "level": 2, + "score": 0.2985999882221222 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.2874999940395355 + }, + { + "id": "https://openalex.org/C2984161354", + "wikidata": "https://www.wikidata.org/wiki/Q216320", + "display_name": "Fluid motion", + "level": 2, + "score": 0.2538999915122986 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1146/annurev-fluid-010719-060214", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1146/annurev-fluid-010719-060214", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S169493037", + "display_name": "Annual Review of Fluid Mechanics", + "issn_l": "0066-4189", + "issn": [ + "0066-4189", + "1545-4479" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320373", + "host_organization_name": "Annual Reviews", + "host_organization_lineage": [ + "https://openalex.org/P4310320373" + ], + "host_organization_lineage_names": [ + "Annual Reviews" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Annual Review of Fluid Mechanics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1905.11075", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1905.11075", + "pdf_url": "https://arxiv.org/pdf/1905.11075", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-02398670v1", + "is_oa": false, + "landing_page_url": "https://hal.science/hal-02398670", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annual Review of Fluid Mechanics, 2020, 52 (1), pp.477-508. ⟨10.1146/annurev-fluid-010719-060214⟩", + "raw_type": "Journal articles" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1905.11075", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1905.11075", + "pdf_url": "https://arxiv.org/pdf/1905.11075", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G1483361726", + "display_name": null, + "funder_award_id": "W911NF-17-1-0422", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G1523888516", + "display_name": null, + "funder_award_id": "FA9550-", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G3655914848", + "display_name": null, + "funder_award_id": "W911NF-17-1-0306", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G4205652870", + "display_name": null, + "funder_award_id": "W911NF-17-1-0422", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G5809100787", + "display_name": null, + "funder_award_id": "FA9550", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G7042399192", + "display_name": null, + "funder_award_id": "AFOSR FA9550-18-1-0200", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G7452299184", + "display_name": null, + "funder_award_id": "W911NF", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G8202574490", + "display_name": null, + "funder_award_id": "FA9550-18-1-0200", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G8249314747", + "display_name": null, + "funder_award_id": "ARO W911NF-17-1-0306", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320322892", + "display_name": "Centre National de la Recherche Scientifique", + "ror": "https://ror.org/02feahw73" + }, + { + "id": "https://openalex.org/F4320338279", + "display_name": "Air Force Office of Scientific Research", + "ror": "https://ror.org/011e9bt93" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2973119841.pdf", + "grobid_xml": "https://content.openalex.org/works/W2973119841.grobid-xml" + }, + "referenced_works_count": 139, + "referenced_works": [ + "https://openalex.org/W54257720", + "https://openalex.org/W119114865", + "https://openalex.org/W1479971399", + "https://openalex.org/W1498436455", + "https://openalex.org/W1528439235", + "https://openalex.org/W1590183771", + "https://openalex.org/W1606265566", + "https://openalex.org/W1614107838", + "https://openalex.org/W1633869374", + "https://openalex.org/W1650825897", + "https://openalex.org/W1685006559", + "https://openalex.org/W1954793758", + "https://openalex.org/W1967011375", + "https://openalex.org/W1967963082", + "https://openalex.org/W1970454553", + "https://openalex.org/W1972005403", + "https://openalex.org/W1976068300", + "https://openalex.org/W1979769287", + "https://openalex.org/W1992462433", + "https://openalex.org/W1996773027", + "https://openalex.org/W1997126009", + "https://openalex.org/W2008125068", + "https://openalex.org/W2010459912", + "https://openalex.org/W2012725996", + "https://openalex.org/W2014356541", + "https://openalex.org/W2017479642", + "https://openalex.org/W2027964569", + "https://openalex.org/W2030450972", + "https://openalex.org/W2031349338", + "https://openalex.org/W2034541995", + "https://openalex.org/W2040387238", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041754533", + "https://openalex.org/W2050195777", + "https://openalex.org/W2051465149", + "https://openalex.org/W2054881170", + "https://openalex.org/W2055503573", + "https://openalex.org/W2056653303", + "https://openalex.org/W2064675550", + "https://openalex.org/W2067472975", + "https://openalex.org/W2070246049", + "https://openalex.org/W2074447412", + "https://openalex.org/W2076110561", + "https://openalex.org/W2078626246", + "https://openalex.org/W2097074225", + "https://openalex.org/W2102162541", + "https://openalex.org/W2103626435", + "https://openalex.org/W2104578628", + "https://openalex.org/W2108380954", + "https://openalex.org/W2109177042", + "https://openalex.org/W2109883840", + "https://openalex.org/W2110418811", + "https://openalex.org/W2113553269", + "https://openalex.org/W2113640817", + "https://openalex.org/W2117756735", + "https://openalex.org/W2118944048", + "https://openalex.org/W2121058967", + "https://openalex.org/W2122861381", + "https://openalex.org/W2123381477", + "https://openalex.org/W2126999002", + "https://openalex.org/W2127129738", + "https://openalex.org/W2128084896", + "https://openalex.org/W2129812935", + "https://openalex.org/W2130259898", + "https://openalex.org/W2131847304", + "https://openalex.org/W2134692705", + "https://openalex.org/W2137595289", + "https://openalex.org/W2137983211", + "https://openalex.org/W2138537392", + "https://openalex.org/W2139960762", + "https://openalex.org/W2145339207", + "https://openalex.org/W2150559081", + "https://openalex.org/W2158985775", + "https://openalex.org/W2164954534", + "https://openalex.org/W2168479071", + "https://openalex.org/W2179833213", + "https://openalex.org/W2239232218", + "https://openalex.org/W2239916406", + "https://openalex.org/W2257979135", + "https://openalex.org/W2266714625", + "https://openalex.org/W2335276023", + "https://openalex.org/W2339890646", + "https://openalex.org/W2345737627", + "https://openalex.org/W2346717862", + "https://openalex.org/W2395962256", + "https://openalex.org/W2465244584", + "https://openalex.org/W2487365028", + "https://openalex.org/W2490045648", + "https://openalex.org/W2494808947", + "https://openalex.org/W2517135970", + "https://openalex.org/W2525748878", + "https://openalex.org/W2534240011", + "https://openalex.org/W2556930732", + "https://openalex.org/W2573798107", + "https://openalex.org/W2584231952", + "https://openalex.org/W2586197373", + "https://openalex.org/W2594632285", + "https://openalex.org/W2730644873", + "https://openalex.org/W2745110207", + "https://openalex.org/W2748760860", + "https://openalex.org/W2751013712", + "https://openalex.org/W2758626922", + "https://openalex.org/W2765372792", + "https://openalex.org/W2765861397", + "https://openalex.org/W2768911907", + "https://openalex.org/W2770660451", + "https://openalex.org/W2777417212", + "https://openalex.org/W2782714865", + "https://openalex.org/W2787894218", + "https://openalex.org/W2788403524", + "https://openalex.org/W2794371820", + "https://openalex.org/W2795982117", + "https://openalex.org/W2799103053", + "https://openalex.org/W2805869290", + "https://openalex.org/W2887432454", + "https://openalex.org/W2888317899", + "https://openalex.org/W2891423421", + "https://openalex.org/W2899283552", + "https://openalex.org/W2900119356", + "https://openalex.org/W2902480423", + "https://openalex.org/W2902946198", + "https://openalex.org/W2909451642", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W2950974717", + "https://openalex.org/W2962757926", + "https://openalex.org/W2962761333", + "https://openalex.org/W2962899390", + "https://openalex.org/W2963448313", + "https://openalex.org/W2964027982", + "https://openalex.org/W2964059953", + "https://openalex.org/W2964128214", + "https://openalex.org/W2964129632", + "https://openalex.org/W2971781109", + "https://openalex.org/W4210968171", + "https://openalex.org/W4213332169", + "https://openalex.org/W4233518571", + "https://openalex.org/W4238160257", + "https://openalex.org/W4250955649" + ], + "related_works": [ + "https://openalex.org/W2772595360", + "https://openalex.org/W2221523880", + "https://openalex.org/W3046946477", + "https://openalex.org/W2010181683", + "https://openalex.org/W2778641779", + "https://openalex.org/W2967095864", + "https://openalex.org/W2056815676", + "https://openalex.org/W2284359467", + "https://openalex.org/W204992595", + "https://openalex.org/W2049238023" + ], + "abstract_inverted_index": { + "The": [ + 0, + 100 + ], + "field": [ + 1, + 16 + ], + "of": [ + 2, + 12, + 31, + 70, + 78, + 104, + 112, + 122, + 142 + ], + "fluid": [ + 3, + 47, + 81, + 98, + 143 + ], + "mechanics": [ + 4, + 144 + ], + "is": [ + 5 + ], + "rapidly": [ + 6 + ], + "advancing,": [ + 7 + ], + "driven": [ + 8 + ], + "by": [ + 9 + ], + "unprecedented": [ + 10 + ], + "volumes": [ + 11 + ], + "data": [ + 13, + 37, + 117 + ], + "from": [ + 14, + 36, + 109 + ], + "experiments,": [ + 15, + 124 + ], + "measurements,": [ + 17 + ], + "and": [ + 18, + 56, + 63, + 75, + 88, + 96, + 102, + 125, + 136, + 146 + ], + "large-scale": [ + 19 + ], + "simulations": [ + 20 + ], + "at": [ + 21 + ], + "multiple": [ + 22 + ], + "spatiotemporal": [ + 23 + ], + "scales.": [ + 24 + ], + "Machine": [ + 25 + ], + "learning": [ + 26 + ], + "(ML)": [ + 27 + ], + "offers": [ + 28 + ], + "a": [ + 29, + 129 + ], + "wealth": [ + 30 + ], + "techniques": [ + 32 + ], + "to": [ + 33, + 60 + ], + "extract": [ + 34 + ], + "information": [ + 35 + ], + "that": [ + 38, + 115, + 133 + ], + "can": [ + 39, + 52, + 134 + ], + "be": [ + 40 + ], + "translated": [ + 41 + ], + "into": [ + 42 + ], + "knowledge": [ + 43, + 55 + ], + "about": [ + 44 + ], + "the": [ + 45, + 110 + ], + "underlying": [ + 46 + ], + "mechanics.": [ + 48, + 82 + ], + "Moreover,": [ + 49 + ], + "ML": [ + 50, + 79, + 86, + 127 + ], + "algorithms": [ + 51 + ], + "augment": [ + 53 + ], + "domain": [ + 54 + ], + "automate": [ + 57 + ], + "tasks": [ + 58 + ], + "related": [ + 59 + ], + "flow": [ + 61 + ], + "control": [ + 62 + ], + "optimization.": [ + 64 + ], + "This": [ + 65 + ], + "article": [ + 66 + ], + "presents": [ + 67 + ], + "an": [ + 68, + 119 + ], + "overview": [ + 69 + ], + "past": [ + 71 + ], + "history,": [ + 72 + ], + "current": [ + 73, + 140 + ], + "developments,": [ + 74 + ], + "emerging": [ + 76 + ], + "opportunities": [ + 77 + ], + "for": [ + 80, + 92 + ], + "We": [ + 83 + ], + "outline": [ + 84 + ], + "fundamental": [ + 85 + ], + "methodologies": [ + 87 + ], + "discuss": [ + 89 + ], + "their": [ + 90 + ], + "uses": [ + 91 + ], + "understanding,": [ + 93 + ], + "modeling,": [ + 94, + 123 + ], + "optimizing,": [ + 95 + ], + "controlling": [ + 97 + ], + "flows.": [ + 99 + ], + "strengths": [ + 101 + ], + "limitations": [ + 103 + ], + "these": [ + 105 + ], + "methods": [ + 106 + ], + "are": [ + 107 + ], + "addressed": [ + 108 + ], + "perspective": [ + 111 + ], + "scientific": [ + 113 + ], + "inquiry": [ + 114 + ], + "considers": [ + 116 + ], + "as": [ + 118 + ], + "inherent": [ + 120 + ], + "part": [ + 121 + ], + "simulations.": [ + 126 + ], + "provides": [ + 128 + ], + "powerful": [ + 130 + ], + "information-processing": [ + 131 + ], + "framework": [ + 132 + ], + "augment,": [ + 135 + ], + "possibly": [ + 137 + ], + "even": [ + 138 + ], + "transform,": [ + 139 + ], + "lines": [ + 141 + ], + "research": [ + 145 + ], + "industrial": [ + 147 + ], + "applications.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 236 + }, + { + "year": 2025, + "cited_by_count": 548 + }, + { + "year": 2024, + "cited_by_count": 526 + }, + { + "year": 2023, + "cited_by_count": 435 + }, + { + "year": 2022, + "cited_by_count": 396 + }, + { + "year": 2021, + "cited_by_count": 285 + }, + { + "year": 2020, + "cited_by_count": 121 + }, + { + "year": 2019, + "cited_by_count": 10 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2019-09-19T00:00:00" + }, + { + "id": "https://openalex.org/W2525984666", + "doi": "https://doi.org/10.1056/nejmp1606181", + "title": "Predicting the Future — Big Data, Machine Learning, and Clinical Medicine", + "display_name": "Predicting the Future — Big Data, Machine Learning, and Clinical Medicine", + "relevance_score": 3578.4949, + "publication_year": 2016, + "publication_date": "2016-09-28", + "ids": { + "openalex": "https://openalex.org/W2525984666", + "doi": "https://doi.org/10.1056/nejmp1606181", + "mag": "2525984666" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1056/nejmp1606181", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmp1606181", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5017000481", + "display_name": "Ziad Obermeyer", + "orcid": "https://orcid.org/0000-0002-4563-5849" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Ziad Obermeyer", + "raw_affiliation_strings": [ + "Department of Health Care Policy, Harvard Medical School, Boston, and the Department of Medical Ethics and Health Policy, Perelman School of Medicine" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Health Care Policy, Harvard Medical School, Boston, and the Department of Medical Ethics and Health Policy, Perelman School of Medicine", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5012567636", + "display_name": "Ezekiel Emanuel", + "orcid": "https://orcid.org/0000-0002-9796-5735" + }, + "institutions": [ + { + "id": "https://openalex.org/I79576946", + "display_name": "University of Pennsylvania", + "ror": "https://ror.org/00b30xv10", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I79576946" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ezekiel J. Emanuel", + "raw_affiliation_strings": [ + "Department of Health Care Management, Wharton School, University of Pennsylvania, Philadelphia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Health Care Management, Wharton School, University of Pennsylvania, Philadelphia", + "institution_ids": [ + "https://openalex.org/I79576946" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5017000481" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 397.1409, + "has_fulltext": false, + "cited_by_count": 3452, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "375", + "issue": "13", + "first_page": "1216", + "last_page": "1219" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9932000041007996, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9932000041007996, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11636", + "display_name": "Artificial Intelligence in Healthcare and Education", + "score": 0.991599977016449, + "subfield": { + "id": "https://openalex.org/subfields/2718", + "display_name": "Health Informatics" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9872000217437744, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.766974925994873 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6763951182365417 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6183133125305176 + }, + { + "id": "https://openalex.org/keywords/big-data", + "display_name": "Big data", + "score": 0.47957199811935425 + }, + { + "id": "https://openalex.org/keywords/precision-medicine", + "display_name": "Precision medicine", + "score": 0.46924924850463867 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.45585569739341736 + }, + { + "id": "https://openalex.org/keywords/scale-invariant-feature-transform", + "display_name": "Scale-invariant feature transform", + "score": 0.4480826258659363 + }, + { + "id": "https://openalex.org/keywords/medline", + "display_name": "MEDLINE", + "score": 0.42730244994163513 + }, + { + "id": "https://openalex.org/keywords/medical-physics", + "display_name": "Medical physics", + "score": 0.41148635745048523 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.21748274564743042 + }, + { + "id": "https://openalex.org/keywords/pathology", + "display_name": "Pathology", + "score": 0.20210126042366028 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.19222670793533325 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.09807196259498596 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.766974925994873 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6763951182365417 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6183133125305176 + }, + { + "id": "https://openalex.org/C75684735", + "wikidata": "https://www.wikidata.org/wiki/Q858810", + "display_name": "Big data", + "level": 2, + "score": 0.47957199811935425 + }, + { + "id": "https://openalex.org/C163763905", + "wikidata": "https://www.wikidata.org/wiki/Q17075943", + "display_name": "Precision medicine", + "level": 2, + "score": 0.46924924850463867 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.45585569739341736 + }, + { + "id": "https://openalex.org/C61265191", + "wikidata": "https://www.wikidata.org/wiki/Q767770", + "display_name": "Scale-invariant feature transform", + "level": 3, + "score": 0.4480826258659363 + }, + { + "id": "https://openalex.org/C2779473830", + "wikidata": "https://www.wikidata.org/wiki/Q1540899", + "display_name": "MEDLINE", + "level": 2, + "score": 0.42730244994163513 + }, + { + "id": "https://openalex.org/C19527891", + "wikidata": "https://www.wikidata.org/wiki/Q1120908", + "display_name": "Medical physics", + "level": 1, + "score": 0.41148635745048523 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.21748274564743042 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.20210126042366028 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.19222670793533325 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.09807196259498596 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1056/nejmp1606181", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1056/nejmp1606181", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S62468778", + "display_name": "New England Journal of Medicine", + "issn_l": "0028-4793", + "issn": [ + "0028-4793", + "1533-4406" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320239", + "host_organization_name": "Massachusetts Medical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320239" + ], + "host_organization_lineage_names": [ + "Massachusetts Medical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "New England Journal of Medicine", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:5070532", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "N Engl J Med", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "pmh:oai:pubmedcentral.nih.gov:5070532", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5070532", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "N Engl J Med", + "raw_type": "Text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W2020506948", + "https://openalex.org/W2103018059", + "https://openalex.org/W2203167467", + "https://openalex.org/W2341256599", + "https://openalex.org/W2610886376" + ], + "related_works": [ + "https://openalex.org/W3014300295", + "https://openalex.org/W2297410961", + "https://openalex.org/W2548459112", + "https://openalex.org/W2905881943", + "https://openalex.org/W4224276240", + "https://openalex.org/W4312569874", + "https://openalex.org/W2946781799", + "https://openalex.org/W2588050043", + "https://openalex.org/W2531479711", + "https://openalex.org/W2191030086" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "algorithms": [ + 1 + ], + "of": [ + 2, + 11, + 25, + 28 + ], + "machine": [ + 3 + ], + "learning,": [ + 4 + ], + "which": [ + 5 + ], + "can": [ + 6 + ], + "sift": [ + 7 + ], + "through": [ + 8 + ], + "vast": [ + 9 + ], + "numbers": [ + 10 + ], + "variables": [ + 12 + ], + "looking": [ + 13 + ], + "for": [ + 14 + ], + "combinations": [ + 15 + ], + "that": [ + 16 + ], + "reliably": [ + 17 + ], + "predict": [ + 18 + ], + "outcomes,": [ + 19 + ], + "will": [ + 20 + ], + "improve": [ + 21, + 34 + ], + "prognosis,": [ + 22 + ], + "displace": [ + 23 + ], + "much": [ + 24 + ], + "the": [ + 26 + ], + "work": [ + 27 + ], + "radiologists": [ + 29 + ], + "and": [ + 30, + 33 + ], + "anatomical": [ + 31 + ], + "pathologists,": [ + 32 + ], + "diagnostic": [ + 35 + ], + "accuracy.": [ + 36 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 203 + }, + { + "year": 2025, + "cited_by_count": 588 + }, + { + "year": 2024, + "cited_by_count": 517 + }, + { + "year": 2023, + "cited_by_count": 393 + }, + { + "year": 2022, + "cited_by_count": 380 + }, + { + "year": 2021, + "cited_by_count": 405 + }, + { + "year": 2020, + "cited_by_count": 372 + }, + { + "year": 2019, + "cited_by_count": 283 + }, + { + "year": 2018, + "cited_by_count": 205 + }, + { + "year": 2017, + "cited_by_count": 98 + }, + { + "year": 2016, + "cited_by_count": 3 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2111547563", + "doi": "https://doi.org/10.1016/j.csbj.2014.11.005", + "title": "Machine learning applications in cancer prognosis and prediction", + "display_name": "Machine learning applications in cancer prognosis and prediction", + "relevance_score": 3577.737, + "publication_year": 2014, + "publication_date": "2014-11-15", + "ids": { + "openalex": "https://openalex.org/W2111547563", + "doi": "https://doi.org/10.1016/j.csbj.2014.11.005", + "mag": "2111547563", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/25750696" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5067569191", + "display_name": "Κωνσταντίνα Κούρου", + "orcid": "https://orcid.org/0000-0003-4310-2739" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantina Kourou", + "raw_affiliation_strings": [ + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5104150275", + "display_name": "Themis P. Exarchos", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + }, + { + "id": "https://openalex.org/I4210105723", + "display_name": "FORTH Institute of Molecular Biology and Biotechnology", + "ror": "https://ror.org/01gzszr18", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210105723", + "https://openalex.org/I8901234" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Themis P. Exarchos", + "raw_affiliation_strings": [ + "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I4210105723" + ] + }, + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017880834", + "display_name": "Konstantinos Exarchos", + "orcid": "https://orcid.org/0000-0002-4754-7623" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Konstantinos P. Exarchos", + "raw_affiliation_strings": [ + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5084550691", + "display_name": "Michalis V. Karamouzis", + "orcid": "https://orcid.org/0000-0003-1369-8201" + }, + "institutions": [ + { + "id": "https://openalex.org/I200777214", + "display_name": "National and Kapodistrian University of Athens", + "ror": "https://ror.org/04gnjpq42", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I200777214" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Michalis V. Karamouzis", + "raw_affiliation_strings": [ + "Molecular Oncology Unit, Department of Biological Chemistry, Medical School, University of Athens, Athens, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Molecular Oncology Unit, Department of Biological Chemistry, Medical School, University of Athens, Athens, Greece", + "institution_ids": [ + "https://openalex.org/I200777214" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5037813012", + "display_name": "Dimitrios I. Fotiadis", + "orcid": "https://orcid.org/0000-0002-7362-5082" + }, + "institutions": [ + { + "id": "https://openalex.org/I194019607", + "display_name": "University of Ioannina", + "ror": "https://ror.org/01qg3j183", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I194019607" + ] + }, + { + "id": "https://openalex.org/I4210105723", + "display_name": "FORTH Institute of Molecular Biology and Biotechnology", + "ror": "https://ror.org/01gzszr18", + "country_code": "GR", + "type": "facility", + "lineage": [ + "https://openalex.org/I4210105723", + "https://openalex.org/I8901234" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Dimitrios I. Fotiadis", + "raw_affiliation_strings": [ + "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IMBB — FORTH, Dept. of Biomedical Research, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I4210105723" + ] + }, + { + "raw_affiliation_string": "Unit of Medical Technology and Intelligent Information Systems, Dept. of Materials Science and Engineering, University of Ioannina, Ioannina, Greece", + "institution_ids": [ + "https://openalex.org/I194019607" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5037813012" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I194019607", + "https://openalex.org/I4210105723" + ], + "apc_list": { + "value": 2450, + "currency": "EUR", + "value_usd": 2642 + }, + "apc_paid": { + "value": 2450, + "currency": "EUR", + "value_usd": 2642 + }, + "fwci": 61.3227, + "has_fulltext": false, + "cited_by_count": 3275, + "citation_normalized_percentile": { + "value": 0.99922624, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "13", + "issue": null, + "first_page": "8", + "last_page": "17" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9977999925613403, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9977999925613403, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9937999844551086, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9843000173568726, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7670019865036011 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6441092491149902 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6317405104637146 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6097581386566162 + }, + { + "id": "https://openalex.org/keywords/cancer", + "display_name": "Cancer", + "score": 0.567906379699707 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5353600978851318 + }, + { + "id": "https://openalex.org/keywords/bayesian-network", + "display_name": "Bayesian network", + "score": 0.5231181979179382 + }, + { + "id": "https://openalex.org/keywords/clinical-practice", + "display_name": "Clinical Practice", + "score": 0.46658024191856384 + }, + { + "id": "https://openalex.org/keywords/variety", + "display_name": "Variety (cybernetics)", + "score": 0.4417306184768677 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.43627700209617615 + }, + { + "id": "https://openalex.org/keywords/predictive-modelling", + "display_name": "Predictive modelling", + "score": 0.4162035584449768 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2604517340660095 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.08188235759735107 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7670019865036011 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6441092491149902 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6317405104637146 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6097581386566162 + }, + { + "id": "https://openalex.org/C121608353", + "wikidata": "https://www.wikidata.org/wiki/Q12078", + "display_name": "Cancer", + "level": 2, + "score": 0.567906379699707 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5353600978851318 + }, + { + "id": "https://openalex.org/C33724603", + "wikidata": "https://www.wikidata.org/wiki/Q812540", + "display_name": "Bayesian network", + "level": 2, + "score": 0.5231181979179382 + }, + { + "id": "https://openalex.org/C2779974597", + "wikidata": "https://www.wikidata.org/wiki/Q28448986", + "display_name": "Clinical Practice", + "level": 2, + "score": 0.46658024191856384 + }, + { + "id": "https://openalex.org/C136197465", + "wikidata": "https://www.wikidata.org/wiki/Q1729295", + "display_name": "Variety (cybernetics)", + "level": 2, + "score": 0.4417306184768677 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.43627700209617615 + }, + { + "id": "https://openalex.org/C45804977", + "wikidata": "https://www.wikidata.org/wiki/Q7239673", + "display_name": "Predictive modelling", + "level": 2, + "score": 0.4162035584449768 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2604517340660095 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.08188235759735107 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126322002", + "wikidata": "https://www.wikidata.org/wiki/Q11180", + "display_name": "Internal medicine", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C512399662", + "wikidata": "https://www.wikidata.org/wiki/Q3505712", + "display_name": "Family medicine", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + { + "id": "pmid:25750696", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/25750696", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and structural biotechnology journal", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:35b9fc4c35f148889aab32c978d9a58b", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/35b9fc4c35f148889aab32c978d9a58b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Computational and Structural Biotechnology Journal, Vol 13, Iss C, Pp 8-17 (2015)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:3318377", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/4348437", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1016/j.csbj.2014.11.005", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1016/j.csbj.2014.11.005", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764539591", + "display_name": "Computational and Structural Biotechnology Journal", + "issn_l": "2001-0370", + "issn": [ + "2001-0370" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320990", + "host_organization_name": "Elsevier BV", + "host_organization_lineage": [ + "https://openalex.org/P4310320990" + ], + "host_organization_lineage_names": [ + "Elsevier BV" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Computational and Structural Biotechnology Journal", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "score": 0.4099999964237213, + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320338370", + "display_name": "FP7 Information and Communication Technologies", + "ror": null + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 74, + "referenced_works": [ + "https://openalex.org/W1491953704", + "https://openalex.org/W1500572886", + "https://openalex.org/W1517879388", + "https://openalex.org/W1519433744", + "https://openalex.org/W1565377632", + "https://openalex.org/W1570448133", + "https://openalex.org/W1591717158", + "https://openalex.org/W1651586605", + "https://openalex.org/W1663973292", + "https://openalex.org/W1960669649", + "https://openalex.org/W1971005400", + "https://openalex.org/W1978761216", + "https://openalex.org/W1983024255", + "https://openalex.org/W1985663400", + "https://openalex.org/W1987776395", + "https://openalex.org/W1989628460", + "https://openalex.org/W1992297816", + "https://openalex.org/W1993628165", + "https://openalex.org/W1995199599", + "https://openalex.org/W2007265575", + "https://openalex.org/W2011021469", + "https://openalex.org/W2014510428", + "https://openalex.org/W2017337590", + "https://openalex.org/W2020402396", + "https://openalex.org/W2021100122", + "https://openalex.org/W2025060250", + "https://openalex.org/W2025738103", + "https://openalex.org/W2036839465", + "https://openalex.org/W2041652340", + "https://openalex.org/W2048701123", + "https://openalex.org/W2053522428", + "https://openalex.org/W2058089746", + "https://openalex.org/W2062364738", + "https://openalex.org/W2083780116", + "https://openalex.org/W2088338744", + "https://openalex.org/W2089927030", + "https://openalex.org/W2091947792", + "https://openalex.org/W2097554668", + "https://openalex.org/W2105882193", + "https://openalex.org/W2109103446", + "https://openalex.org/W2109896839", + "https://openalex.org/W2111461407", + "https://openalex.org/W2116841457", + "https://openalex.org/W2117692326", + "https://openalex.org/W2118366842", + "https://openalex.org/W2119782683", + "https://openalex.org/W2122227569", + "https://openalex.org/W2123696692", + "https://openalex.org/W2126009609", + "https://openalex.org/W2128767954", + "https://openalex.org/W2130338776", + "https://openalex.org/W2132619562", + "https://openalex.org/W2133601033", + "https://openalex.org/W2140218006", + "https://openalex.org/W2148078825", + "https://openalex.org/W2152121590", + "https://openalex.org/W2154362705", + "https://openalex.org/W2155461561", + "https://openalex.org/W2156483112", + "https://openalex.org/W2157132621", + "https://openalex.org/W2157239837", + "https://openalex.org/W2163042952", + "https://openalex.org/W2167645795", + "https://openalex.org/W2167769381", + "https://openalex.org/W2170379523", + "https://openalex.org/W2324845196", + "https://openalex.org/W2431164060", + "https://openalex.org/W2476253186", + "https://openalex.org/W2977661550", + "https://openalex.org/W4205774955", + "https://openalex.org/W4255865525", + "https://openalex.org/W4296886862", + "https://openalex.org/W6660969321", + "https://openalex.org/W6663876547" + ], + "related_works": [ + "https://openalex.org/W2032233321", + "https://openalex.org/W3121970507", + "https://openalex.org/W2110028391", + "https://openalex.org/W54497855", + "https://openalex.org/W217960748", + "https://openalex.org/W3125814499", + "https://openalex.org/W2090827041", + "https://openalex.org/W2565703248", + "https://openalex.org/W187246281", + "https://openalex.org/W2143548620" + ], + "abstract_inverted_index": { + "Cancer": [ + 0 + ], + "has": [ + 1, + 51 + ], + "been": [ + 2, + 76, + 129 + ], + "characterized": [ + 3 + ], + "as": [ + 4, + 29, + 78, + 216, + 218, + 250 + ], + "a": [ + 5, + 19, + 24, + 191 + ], + "heterogeneous": [ + 6 + ], + "disease": [ + 7 + ], + "consisting": [ + 8 + ], + "of": [ + 9, + 18, + 37, + 41, + 67, + 87, + 94, + 109, + 138, + 156, + 163, + 169, + 193, + 201, + 233 + ], + "many": [ + 10, + 53 + ], + "different": [ + 11, + 220 + ], + "subtypes.": [ + 12 + ], + "The": [ + 13, + 39, + 204 + ], + "early": [ + 14 + ], + "diagnosis": [ + 15 + ], + "and": [ + 16, + 59, + 85, + 124, + 144, + 223 + ], + "prognosis": [ + 17 + ], + "cancer": [ + 20, + 27, + 43, + 133, + 164, + 202, + 237, + 255 + ], + "type": [ + 21 + ], + "have": [ + 22, + 75, + 128 + ], + "become": [ + 23 + ], + "necessity": [ + 25 + ], + "in": [ + 26, + 132, + 142, + 173, + 181, + 198, + 236 + ], + "research,": [ + 28, + 238 + ], + "it": [ + 30, + 150 + ], + "can": [ + 31, + 159 + ], + "facilitate": [ + 32 + ], + "the": [ + 33, + 57, + 60, + 65, + 83, + 92, + 136, + 154, + 182, + 199, + 227, + 231, + 242 + ], + "subsequent": [ + 34 + ], + "clinical": [ + 35, + 184 + ], + "management": [ + 36 + ], + "patients.": [ + 38 + ], + "importance": [ + 40 + ], + "classifying": [ + 42 + ], + "patients": [ + 44 + ], + "into": [ + 45 + ], + "high": [ + 46 + ], + "or": [ + 47, + 257 + ], + "low": [ + 48 + ], + "risk": [ + 49, + 256 + ], + "groups": [ + 50 + ], + "led": [ + 52 + ], + "research": [ + 54, + 134 + ], + "teams,": [ + 55 + ], + "from": [ + 56, + 101 + ], + "biomedical": [ + 58 + ], + "bioinformatics": [ + 61 + ], + "field,": [ + 62 + ], + "to": [ + 63, + 81, + 97, + 178, + 253 + ], + "study": [ + 64 + ], + "application": [ + 66, + 232 + ], + "machine": [ + 68 + ], + "learning": [ + 69 + ], + "(ML)": [ + 70 + ], + "methods.": [ + 71 + ], + "Therefore,": [ + 72 + ], + "these": [ + 73, + 110, + 176, + 248 + ], + "techniques": [ + 74, + 215, + 249 + ], + "utilized": [ + 77 + ], + "an": [ + 79, + 166, + 251 + ], + "aim": [ + 80, + 252 + ], + "model": [ + 82, + 254 + ], + "progression": [ + 84 + ], + "treatment": [ + 86 + ], + "cancerous": [ + 88 + ], + "conditions.": [ + 89 + ], + "In": [ + 90, + 186 + ], + "addition,": [ + 91 + ], + "ability": [ + 93 + ], + "ML": [ + 95, + 157, + 195, + 214, + 234 + ], + "tools": [ + 96 + ], + "detect": [ + 98 + ], + "key": [ + 99 + ], + "features": [ + 100, + 222 + ], + "complex": [ + 102 + ], + "datasets": [ + 103 + ], + "reveals": [ + 104 + ], + "their": [ + 105 + ], + "importance.": [ + 106 + ], + "A": [ + 107 + ], + "variety": [ + 108 + ], + "techniques,": [ + 111 + ], + "including": [ + 112 + ], + "Artificial": [ + 113 + ], + "Neural": [ + 114 + ], + "Networks": [ + 115, + 118 + ], + "(ANNs),": [ + 116 + ], + "Bayesian": [ + 117 + ], + "(BNs),": [ + 119 + ], + "Support": [ + 120 + ], + "Vector": [ + 121 + ], + "Machines": [ + 122 + ], + "(SVMs)": [ + 123 + ], + "Decision": [ + 125 + ], + "Trees": [ + 126 + ], + "(DTs)": [ + 127 + ], + "widely": [ + 130 + ], + "applied": [ + 131 + ], + "for": [ + 135, + 175 + ], + "development": [ + 137 + ], + "predictive": [ + 139, + 205 + ], + "models,": [ + 140 + ], + "resulting": [ + 141 + ], + "effective": [ + 143 + ], + "accurate": [ + 145 + ], + "decision": [ + 146 + ], + "making.": [ + 147 + ], + "Even": [ + 148 + ], + "though": [ + 149 + ], + "is": [ + 151, + 171 + ], + "evident": [ + 152 + ], + "that": [ + 153, + 246 + ], + "use": [ + 155 + ], + "methods": [ + 158, + 177, + 235 + ], + "improve": [ + 160 + ], + "our": [ + 161 + ], + "understanding": [ + 162 + ], + "progression,": [ + 165 + ], + "appropriate": [ + 167 + ], + "level": [ + 168 + ], + "validation": [ + 170 + ], + "needed": [ + 172 + ], + "order": [ + 174 + ], + "be": [ + 179 + ], + "considered": [ + 180 + ], + "everyday": [ + 183 + ], + "practice.": [ + 185 + ], + "this": [ + 187 + ], + "work,": [ + 188 + ], + "we": [ + 189, + 239 + ], + "present": [ + 190, + 240 + ], + "review": [ + 192 + ], + "recent": [ + 194, + 244 + ], + "approaches": [ + 196 + ], + "employed": [ + 197 + ], + "modeling": [ + 200 + ], + "progression.": [ + 203 + ], + "models": [ + 206 + ], + "discussed": [ + 207 + ], + "here": [ + 208, + 241 + ], + "are": [ + 209 + ], + "based": [ + 210 + ], + "on": [ + 211, + 219, + 230 + ], + "various": [ + 212 + ], + "supervised": [ + 213 + ], + "well": [ + 217 + ], + "input": [ + 221 + ], + "data": [ + 224 + ], + "samples.": [ + 225 + ], + "Given": [ + 226 + ], + "growing": [ + 228 + ], + "trend": [ + 229 + ], + "most": [ + 243 + ], + "publications": [ + 245 + ], + "employ": [ + 247 + ], + "patient": [ + 258 + ], + "outcomes.": [ + 259 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 131 + }, + { + "year": 2025, + "cited_by_count": 408 + }, + { + "year": 2024, + "cited_by_count": 427 + }, + { + "year": 2023, + "cited_by_count": 421 + }, + { + "year": 2022, + "cited_by_count": 411 + }, + { + "year": 2021, + "cited_by_count": 446 + }, + { + "year": 2020, + "cited_by_count": 441 + }, + { + "year": 2019, + "cited_by_count": 280 + }, + { + "year": 2018, + "cited_by_count": 165 + }, + { + "year": 2017, + "cited_by_count": 84 + }, + { + "year": 2016, + "cited_by_count": 49 + }, + { + "year": 2015, + "cited_by_count": 11 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2923537029", + "doi": "https://doi.org/10.1103/revmodphys.91.045002", + "title": "Machine learning and the physical sciences", + "display_name": "Machine learning and the physical sciences", + "relevance_score": 3569.3367, + "publication_year": 2019, + "publication_date": "2019-12-06", + "ids": { + "openalex": "https://openalex.org/W2923537029", + "doi": "https://doi.org/10.1103/revmodphys.91.045002", + "mag": "2923537029" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/revmodphys.91.045002", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/revmodphys.91.045002", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S73260565", + "display_name": "Reviews of Modern Physics", + "issn_l": "0034-6861", + "issn": [ + "0034-6861", + "1538-4527", + "1539-0756" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1903.10563", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5007408828", + "display_name": "Giuseppe Carleo", + "orcid": "https://orcid.org/0000-0002-8887-4356" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Giuseppe Carleo", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-8887-4356", + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5083228566", + "display_name": "J. I. Cirac", + "orcid": "https://orcid.org/0000-0003-3359-1743" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ignacio Cirac", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108167175", + "display_name": "K. Cranmer", + "orcid": "https://orcid.org/0000-0002-5769-7094" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kyle Cranmer", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5058259063", + "display_name": "Laurent Daudet", + "orcid": "https://orcid.org/0000-0001-5811-1078" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Laurent Daudet", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5073832417", + "display_name": "Maria Schuld", + "orcid": "https://orcid.org/0000-0001-8626-168X" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004273274", + "display_name": "Naftali Tishby", + "orcid": "https://orcid.org/0000-0002-8086-4436" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Naftali Tishby", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5024209749", + "display_name": "Leslie Vogt-Maranto", + "orcid": "https://orcid.org/0000-0002-7006-4582" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Leslie Vogt-Maranto", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-7006-4582", + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5089268172", + "display_name": "Lenka Zdeborová", + "orcid": "https://orcid.org/0000-0002-8377-3978" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210153546", + "display_name": "Flatiron Health (United States)", + "ror": "https://ror.org/0508h6p74", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210153546" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lenka Zdeborová", + "raw_affiliation_strings": [ + "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Computational Quantum Physics, Flatiron Institute, 162 5th Avenue, New York, New York 10010, USA", + "institution_ids": [ + "https://openalex.org/I4210153546" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 8, + "corresponding_author_ids": [ + "https://openalex.org/A5007408828" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210153546" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 98.7524, + "has_fulltext": false, + "cited_by_count": 2413, + "citation_normalized_percentile": { + "value": 0.99995195, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "91", + "issue": "4", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.9898999929428101, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11804", + "display_name": "Quantum many-body systems", + "score": 0.9840999841690063, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.8221291899681091 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.517598032951355 + }, + { + "id": "https://openalex.org/keywords/column", + "display_name": "Column (typography)", + "score": 0.5173665881156921 + }, + { + "id": "https://openalex.org/keywords/engineering-physics", + "display_name": "Engineering physics", + "score": 0.3996226489543915 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.3428024649620056 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.33104032278060913 + }, + { + "id": "https://openalex.org/keywords/engineering-ethics", + "display_name": "Engineering ethics", + "score": 0.3266659080982208 + }, + { + "id": "https://openalex.org/keywords/mechanical-engineering", + "display_name": "Mechanical engineering", + "score": 0.10730153322219849 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.08470335602760315 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.08188295364379883 + }, + { + "id": "https://openalex.org/keywords/connection", + "display_name": "Connection (principal bundle)", + "score": 0.05932199954986572 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.8221291899681091 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.517598032951355 + }, + { + "id": "https://openalex.org/C2780551164", + "wikidata": "https://www.wikidata.org/wiki/Q2306599", + "display_name": "Column (typography)", + "level": 3, + "score": 0.5173665881156921 + }, + { + "id": "https://openalex.org/C61696701", + "wikidata": "https://www.wikidata.org/wiki/Q770766", + "display_name": "Engineering physics", + "level": 1, + "score": 0.3996226489543915 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.3428024649620056 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.33104032278060913 + }, + { + "id": "https://openalex.org/C55587333", + "wikidata": "https://www.wikidata.org/wiki/Q1133029", + "display_name": "Engineering ethics", + "level": 1, + "score": 0.3266659080982208 + }, + { + "id": "https://openalex.org/C78519656", + "wikidata": "https://www.wikidata.org/wiki/Q101333", + "display_name": "Mechanical engineering", + "level": 1, + "score": 0.10730153322219849 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.08470335602760315 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.08188295364379883 + }, + { + "id": "https://openalex.org/C13355873", + "wikidata": "https://www.wikidata.org/wiki/Q2920850", + "display_name": "Connection (principal bundle)", + "level": 2, + "score": 0.05932199954986572 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1103/revmodphys.91.045002", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/revmodphys.91.045002", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S73260565", + "display_name": "Reviews of Modern Physics", + "issn_l": "0034-6861", + "issn": [ + "0034-6861", + "1538-4527", + "1539-0756" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1903.10563", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1903.10563", + "pdf_url": "https://arxiv.org/pdf/1903.10563", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:HAL:hal-02101667v1", + "is_oa": false, + "landing_page_url": "https://hal.science/hal-02101667", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402512", + "display_name": "HAL (Le Centre pour la Communication Scientifique Directe)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1294671590", + "host_organization_name": "Centre National de la Recherche Scientifique", + "host_organization_lineage": [ + "https://openalex.org/I1294671590" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Rev.Mod.Phys., 2019, 91 (4), pp.045002. ⟨10.1103/RevModPhys.91.045002⟩", + "raw_type": "Journal articles" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:283035", + "is_oa": true, + "landing_page_url": "https://infoscience.epfl.ch/handle/20.500.14299/175040", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "research article" + }, + { + "id": "pmh:oai:pure.mpg.de:item_3192298", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/21.11116/0000-0005-B0C5-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Reviews of Modern Physics", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1903.10563", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1903.10563", + "pdf_url": "https://arxiv.org/pdf/1903.10563", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G162064734", + "display_name": null, + "funder_award_id": "W911NF-13-1-0387", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G3038972242", + "display_name": null, + "funder_award_id": "714608-SMiLe", + "funder_id": "https://openalex.org/F4320338335", + "funder_display_name": "H2020 European Research Council" + }, + { + "id": "https://openalex.org/G3228186847", + "display_name": null, + "funder_award_id": "ACI-1450310", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G346715306", + "display_name": null, + "funder_award_id": "OAC-1836650", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6221687394", + "display_name": null, + "funder_award_id": "DMR-1420073", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + }, + { + "id": "https://openalex.org/F4320338335", + "display_name": "H2020 European Research Council", + "ror": "https://ror.org/0472cxd90" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 580, + "referenced_works": [ + "https://openalex.org/W32507011", + "https://openalex.org/W41554520", + "https://openalex.org/W51943945", + "https://openalex.org/W577274971", + "https://openalex.org/W632087424", + "https://openalex.org/W659070123", + "https://openalex.org/W965729195", + "https://openalex.org/W1490670270", + "https://openalex.org/W1501987263", + "https://openalex.org/W1510052597", + "https://openalex.org/W1527520754", + "https://openalex.org/W1529624360", + "https://openalex.org/W1543736766", + "https://openalex.org/W1555084454", + "https://openalex.org/W1579940749", + "https://openalex.org/W1594031697", + "https://openalex.org/W1631356911", + "https://openalex.org/W1650706190", + "https://openalex.org/W1668248414", + "https://openalex.org/W1694049600", + "https://openalex.org/W1731081199", + "https://openalex.org/W1813659000", + "https://openalex.org/W1825525822", + "https://openalex.org/W1871641673", + "https://openalex.org/W1890000358", + "https://openalex.org/W1896203379", + "https://openalex.org/W1959879694", + "https://openalex.org/W1963762696", + "https://openalex.org/W1970789124", + "https://openalex.org/W1973128603", + "https://openalex.org/W1975907901", + "https://openalex.org/W1983959825", + "https://openalex.org/W1984793731", + "https://openalex.org/W1988369744", + "https://openalex.org/W1988790447", + "https://openalex.org/W1990124919", + "https://openalex.org/W1990755770", + "https://openalex.org/W1993482030", + "https://openalex.org/W1994395934", + "https://openalex.org/W1995842804", + "https://openalex.org/W1998515260", + "https://openalex.org/W1999383621", + "https://openalex.org/W1999975338", + "https://openalex.org/W2004531067", + "https://openalex.org/W2007749676", + "https://openalex.org/W2010536552", + "https://openalex.org/W2011535927", + "https://openalex.org/W2012895716", + "https://openalex.org/W2015990127", + "https://openalex.org/W2019781611", + "https://openalex.org/W2020452821", + "https://openalex.org/W2020786104", + "https://openalex.org/W2024514015", + "https://openalex.org/W2025444507", + "https://openalex.org/W2029007937", + "https://openalex.org/W2029413789", + "https://openalex.org/W2029507757", + "https://openalex.org/W2030450972", + "https://openalex.org/W2034451938", + "https://openalex.org/W2036463035", + "https://openalex.org/W2037768897", + "https://openalex.org/W2040171281", + "https://openalex.org/W2042318263", + "https://openalex.org/W2045973738", + "https://openalex.org/W2049530405", + "https://openalex.org/W2053881994", + "https://openalex.org/W2062363822", + "https://openalex.org/W2063397409", + "https://openalex.org/W2064675550", + "https://openalex.org/W2066424095", + "https://openalex.org/W2068476337", + "https://openalex.org/W2069129925", + "https://openalex.org/W2072420187", + "https://openalex.org/W2072637332", + "https://openalex.org/W2073065445", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076476236", + "https://openalex.org/W2079488937", + "https://openalex.org/W2080021732", + "https://openalex.org/W2080173214", + "https://openalex.org/W2080531309", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081119846", + "https://openalex.org/W2081748565", + "https://openalex.org/W2083415705", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087375161", + "https://openalex.org/W2088025933", + "https://openalex.org/W2090614046", + "https://openalex.org/W2093437356", + "https://openalex.org/W2096391265", + "https://openalex.org/W2097714737", + "https://openalex.org/W2103496339", + "https://openalex.org/W2104489082", + "https://openalex.org/W2105724942", + "https://openalex.org/W2112370854", + "https://openalex.org/W2116064496", + "https://openalex.org/W2116416291", + "https://openalex.org/W2118706537", + "https://openalex.org/W2120802379", + "https://openalex.org/W2121863487", + "https://openalex.org/W2125621954", + "https://openalex.org/W2127048411", + "https://openalex.org/W2128084896", + "https://openalex.org/W2132914434", + "https://openalex.org/W2134344701", + "https://openalex.org/W2139812092", + "https://openalex.org/W2140862024", + "https://openalex.org/W2148539882", + "https://openalex.org/W2151729750", + "https://openalex.org/W2151781750", + "https://openalex.org/W2152876174", + "https://openalex.org/W2155413623", + "https://openalex.org/W2161966883", + "https://openalex.org/W2165960883", + "https://openalex.org/W2167298647", + "https://openalex.org/W2168029744", + "https://openalex.org/W2171253836", + "https://openalex.org/W2209668876", + "https://openalex.org/W2211979669", + "https://openalex.org/W2226799981", + "https://openalex.org/W2240020188", + "https://openalex.org/W2244690429", + "https://openalex.org/W2246040896", + "https://openalex.org/W2257086086", + "https://openalex.org/W2257617748", + "https://openalex.org/W2257937122", + "https://openalex.org/W2267648874", + "https://openalex.org/W2325907229", + "https://openalex.org/W2326812357", + "https://openalex.org/W2337082154", + "https://openalex.org/W2339008828", + "https://openalex.org/W2341702711", + "https://openalex.org/W2347891459", + "https://openalex.org/W2394697995", + "https://openalex.org/W2414456771", + "https://openalex.org/W2419175238", + "https://openalex.org/W2486570794", + "https://openalex.org/W2490183153", + "https://openalex.org/W2491766731", + "https://openalex.org/W2494808947", + "https://openalex.org/W2515276161", + "https://openalex.org/W2516533688", + "https://openalex.org/W2516912949", + "https://openalex.org/W2517648041", + "https://openalex.org/W2520022941", + "https://openalex.org/W2521066248", + "https://openalex.org/W2525193548", + "https://openalex.org/W2528697476", + "https://openalex.org/W2528710350", + "https://openalex.org/W2530117613", + "https://openalex.org/W2530819665", + "https://openalex.org/W2531147647", + "https://openalex.org/W2533940598", + "https://openalex.org/W2541404351", + "https://openalex.org/W2543804629", + "https://openalex.org/W2547192247", + "https://openalex.org/W2547447472", + "https://openalex.org/W2548129158", + "https://openalex.org/W2549491455", + "https://openalex.org/W2556341799", + "https://openalex.org/W2557778781", + "https://openalex.org/W2558748708", + "https://openalex.org/W2559394418", + "https://openalex.org/W2559655401", + "https://openalex.org/W2562250282", + "https://openalex.org/W2563240863", + "https://openalex.org/W2563437659", + "https://openalex.org/W2565722603", + "https://openalex.org/W2566505556", + "https://openalex.org/W2572438701", + "https://openalex.org/W2580506952", + "https://openalex.org/W2580838454", + "https://openalex.org/W2582157661", + "https://openalex.org/W2582761306", + "https://openalex.org/W2582886917", + "https://openalex.org/W2588219153", + "https://openalex.org/W2588591043", + "https://openalex.org/W2592570417", + "https://openalex.org/W2593634001", + "https://openalex.org/W2593807178", + "https://openalex.org/W2594041373", + "https://openalex.org/W2594639291", + "https://openalex.org/W2594780084", + "https://openalex.org/W2594983911", + "https://openalex.org/W2604272474", + "https://openalex.org/W2604506260", + "https://openalex.org/W2604901683", + "https://openalex.org/W2605800822", + "https://openalex.org/W2606429533", + "https://openalex.org/W2606470147", + "https://openalex.org/W2607662938", + "https://openalex.org/W2607839392", + "https://openalex.org/W2610038766", + "https://openalex.org/W2611652092", + "https://openalex.org/W2612065714", + "https://openalex.org/W2612690371", + "https://openalex.org/W2614083378", + "https://openalex.org/W2614157797", + "https://openalex.org/W2615473567", + "https://openalex.org/W2618159897", + "https://openalex.org/W2618574512", + "https://openalex.org/W2618646460", + "https://openalex.org/W2618945100", + "https://openalex.org/W2620286290", + "https://openalex.org/W2623750799", + "https://openalex.org/W2624637765", + "https://openalex.org/W2626454479", + "https://openalex.org/W2649051464", + "https://openalex.org/W2727796268", + "https://openalex.org/W2731335845", + "https://openalex.org/W2736592352", + "https://openalex.org/W2737327729", + "https://openalex.org/W2739440074", + "https://openalex.org/W2740976142", + "https://openalex.org/W2742127985", + "https://openalex.org/W2743218360", + "https://openalex.org/W2744415540", + "https://openalex.org/W2745533326", + "https://openalex.org/W2746272096", + "https://openalex.org/W2746470301", + "https://openalex.org/W2750458571", + "https://openalex.org/W2750586355", + "https://openalex.org/W2750673150", + "https://openalex.org/W2752849906", + "https://openalex.org/W2753545915", + "https://openalex.org/W2753962198", + "https://openalex.org/W2755157865", + "https://openalex.org/W2755190613", + "https://openalex.org/W2755695124", + "https://openalex.org/W2756015143", + "https://openalex.org/W2756291233", + "https://openalex.org/W2761015455", + "https://openalex.org/W2761329292", + "https://openalex.org/W2761704992", + "https://openalex.org/W2762549329", + "https://openalex.org/W2762761825", + "https://openalex.org/W2763146374", + "https://openalex.org/W2763850513", + "https://openalex.org/W2763894180", + "https://openalex.org/W2764347725", + "https://openalex.org/W2765128778", + "https://openalex.org/W2765372792", + "https://openalex.org/W2765499180", + "https://openalex.org/W2765597272", + "https://openalex.org/W2765861397", + "https://openalex.org/W2765910566", + "https://openalex.org/W2766140179", + "https://openalex.org/W2766183519", + "https://openalex.org/W2766323574", + "https://openalex.org/W2766572821", + "https://openalex.org/W2766678531", + "https://openalex.org/W2767545053", + "https://openalex.org/W2767713609", + "https://openalex.org/W2768213699", + "https://openalex.org/W2769068614", + "https://openalex.org/W2769287225", + "https://openalex.org/W2772549578", + "https://openalex.org/W2774682142", + "https://openalex.org/W2775562332", + "https://openalex.org/W2775599538", + "https://openalex.org/W2775970449", + "https://openalex.org/W2778051509", + "https://openalex.org/W2778530713", + "https://openalex.org/W2779710223", + "https://openalex.org/W2780640308", + "https://openalex.org/W2781708744", + "https://openalex.org/W2782213776", + "https://openalex.org/W2782714865", + "https://openalex.org/W2782719466", + "https://openalex.org/W2783102654", + "https://openalex.org/W2785331752", + "https://openalex.org/W2785813126", + "https://openalex.org/W2785838999", + "https://openalex.org/W2785942752", + "https://openalex.org/W2786295636", + "https://openalex.org/W2786721297", + "https://openalex.org/W2786956473", + "https://openalex.org/W2787088079", + "https://openalex.org/W2787955889", + "https://openalex.org/W2788379092", + "https://openalex.org/W2788577944", + "https://openalex.org/W2788652239", + "https://openalex.org/W2788808196", + "https://openalex.org/W2788824392", + "https://openalex.org/W2789327225", + "https://openalex.org/W2789590546", + "https://openalex.org/W2789706299", + "https://openalex.org/W2790105002", + "https://openalex.org/W2791995286", + "https://openalex.org/W2792137452", + "https://openalex.org/W2792315573", + "https://openalex.org/W2792351009", + "https://openalex.org/W2792521034", + "https://openalex.org/W2792944272", + "https://openalex.org/W2792946961", + "https://openalex.org/W2793087725", + "https://openalex.org/W2793179281", + "https://openalex.org/W2793645414", + "https://openalex.org/W2793709686", + "https://openalex.org/W2794727009", + "https://openalex.org/W2795016065", + "https://openalex.org/W2795407028", + "https://openalex.org/W2796506892", + "https://openalex.org/W2796744096", + "https://openalex.org/W2798084934", + "https://openalex.org/W2798368581", + "https://openalex.org/W2798398359", + "https://openalex.org/W2798434869", + "https://openalex.org/W2798439837", + "https://openalex.org/W2798701005", + "https://openalex.org/W2798718650", + "https://openalex.org/W2799038815", + "https://openalex.org/W2800301423", + "https://openalex.org/W2803163155", + "https://openalex.org/W2803328959", + "https://openalex.org/W2803439868", + "https://openalex.org/W2804425690", + "https://openalex.org/W2804639765", + "https://openalex.org/W2805461540", + "https://openalex.org/W2805827569", + "https://openalex.org/W2806094831", + "https://openalex.org/W2806315097", + "https://openalex.org/W2806607279", + "https://openalex.org/W2806687966", + "https://openalex.org/W2807616984", + "https://openalex.org/W2808455355", + "https://openalex.org/W2809092000", + "https://openalex.org/W2810437889", + "https://openalex.org/W2810441707", + "https://openalex.org/W2810443692", + "https://openalex.org/W2820787925", + "https://openalex.org/W2837143805", + "https://openalex.org/W2845055700", + "https://openalex.org/W2883445762", + "https://openalex.org/W2883954259", + "https://openalex.org/W2884430236", + "https://openalex.org/W2884564258", + "https://openalex.org/W2884817966", + "https://openalex.org/W2885278795", + "https://openalex.org/W2886382778", + "https://openalex.org/W2886408278", + "https://openalex.org/W2888720512", + "https://openalex.org/W2888774813", + "https://openalex.org/W2889149492", + "https://openalex.org/W2891423421", + "https://openalex.org/W2892666903", + "https://openalex.org/W2893674448", + "https://openalex.org/W2894980093", + "https://openalex.org/W2895363620", + "https://openalex.org/W2895846750", + "https://openalex.org/W2896410853", + "https://openalex.org/W2896564495", + "https://openalex.org/W2896712926", + "https://openalex.org/W2896817368", + "https://openalex.org/W2897050953", + "https://openalex.org/W2897760057", + "https://openalex.org/W2898121159", + "https://openalex.org/W2898391453", + "https://openalex.org/W2898595154", + "https://openalex.org/W2898966067", + "https://openalex.org/W2899415024", + "https://openalex.org/W2899961353", + "https://openalex.org/W2900466252", + "https://openalex.org/W2901551902", + "https://openalex.org/W2902247106", + "https://openalex.org/W2902639110", + "https://openalex.org/W2903935053", + "https://openalex.org/W2905527813", + "https://openalex.org/W2907627375", + "https://openalex.org/W2910259907", + "https://openalex.org/W2912516940", + "https://openalex.org/W2913063022", + "https://openalex.org/W2914465168", + "https://openalex.org/W2914520121", + "https://openalex.org/W2914529849", + "https://openalex.org/W2914982345", + "https://openalex.org/W2915156775", + "https://openalex.org/W2916052864", + "https://openalex.org/W2916528205", + "https://openalex.org/W2917217327", + "https://openalex.org/W2918745211", + "https://openalex.org/W2919115771", + "https://openalex.org/W2919751573", + "https://openalex.org/W2923779858", + "https://openalex.org/W2935584311", + "https://openalex.org/W2940305049", + "https://openalex.org/W2940425080", + "https://openalex.org/W2941443959", + "https://openalex.org/W2949158470", + "https://openalex.org/W2949697408", + "https://openalex.org/W2950881872", + "https://openalex.org/W2950999850", + "https://openalex.org/W2951004968", + "https://openalex.org/W2951993056", + "https://openalex.org/W2952177798", + "https://openalex.org/W2952203743", + "https://openalex.org/W2952877407", + "https://openalex.org/W2953283096", + "https://openalex.org/W2953495237", + "https://openalex.org/W2953581299", + "https://openalex.org/W2954332695", + "https://openalex.org/W2954692534", + "https://openalex.org/W2962730419", + "https://openalex.org/W2962929001", + "https://openalex.org/W2962938080", + "https://openalex.org/W2962947392", + "https://openalex.org/W2962999242", + "https://openalex.org/W2963071675", + "https://openalex.org/W2963072996", + "https://openalex.org/W2963173679", + "https://openalex.org/W2963784808", + "https://openalex.org/W2963819344", + "https://openalex.org/W2963827891", + "https://openalex.org/W2963886912", + "https://openalex.org/W2964156139", + "https://openalex.org/W2964268718", + "https://openalex.org/W2964313985", + "https://openalex.org/W2971059194", + "https://openalex.org/W2972246420", + "https://openalex.org/W2974176966", + "https://openalex.org/W2979001666", + "https://openalex.org/W2991697224", + "https://openalex.org/W2993717751", + "https://openalex.org/W2997073156", + "https://openalex.org/W2999905431", + "https://openalex.org/W3006317140", + "https://openalex.org/W3006943238", + "https://openalex.org/W3022095225", + "https://openalex.org/W3022539872", + "https://openalex.org/W3026847731", + "https://openalex.org/W3037108023", + "https://openalex.org/W3098229010", + "https://openalex.org/W3098509317", + "https://openalex.org/W3098558521", + "https://openalex.org/W3098574683", + "https://openalex.org/W3098827579", + "https://openalex.org/W3098847359", + "https://openalex.org/W3099013266", + "https://openalex.org/W3099014823", + "https://openalex.org/W3099142519", + "https://openalex.org/W3099186397", + "https://openalex.org/W3099267591", + "https://openalex.org/W3099305384", + "https://openalex.org/W3099381338", + "https://openalex.org/W3099423575", + "https://openalex.org/W3099659109", + "https://openalex.org/W3099680657", + "https://openalex.org/W3099765109", + "https://openalex.org/W3099782627", + "https://openalex.org/W3099813870", + "https://openalex.org/W3099950071", + "https://openalex.org/W3099956647", + "https://openalex.org/W3100009607", + "https://openalex.org/W3100068159", + "https://openalex.org/W3100072999", + "https://openalex.org/W3100127953", + "https://openalex.org/W3100248348", + "https://openalex.org/W3100294950", + "https://openalex.org/W3100492156", + "https://openalex.org/W3100511033", + "https://openalex.org/W3100550188", + "https://openalex.org/W3100571530", + "https://openalex.org/W3100749134", + "https://openalex.org/W3100757891", + "https://openalex.org/W3100942527", + "https://openalex.org/W3101119258", + "https://openalex.org/W3101214870", + "https://openalex.org/W3101363214", + "https://openalex.org/W3101493857", + "https://openalex.org/W3101501459", + "https://openalex.org/W3101542436", + "https://openalex.org/W3101643101", + "https://openalex.org/W3101696966", + "https://openalex.org/W3101749733", + "https://openalex.org/W3101949649", + "https://openalex.org/W3102014803", + "https://openalex.org/W3102038441", + "https://openalex.org/W3102180547", + "https://openalex.org/W3102400420", + "https://openalex.org/W3102409313", + "https://openalex.org/W3102548437", + "https://openalex.org/W3102549167", + "https://openalex.org/W3102617294", + "https://openalex.org/W3102641634", + "https://openalex.org/W3102678975", + "https://openalex.org/W3102776521", + "https://openalex.org/W3102844577", + "https://openalex.org/W3102885034", + "https://openalex.org/W3102926255", + "https://openalex.org/W3102929400", + "https://openalex.org/W3103002362", + "https://openalex.org/W3103107186", + "https://openalex.org/W3103289362", + "https://openalex.org/W3103328814", + "https://openalex.org/W3103393581", + "https://openalex.org/W3103574448", + "https://openalex.org/W3103589224", + "https://openalex.org/W3103722330", + "https://openalex.org/W3103746320", + "https://openalex.org/W3103863530", + "https://openalex.org/W3104065018", + "https://openalex.org/W3104289311", + "https://openalex.org/W3104300173", + "https://openalex.org/W3104403078", + "https://openalex.org/W3104481216", + "https://openalex.org/W3104496372", + "https://openalex.org/W3104536462", + "https://openalex.org/W3104644561", + "https://openalex.org/W3104674222", + "https://openalex.org/W3104690326", + "https://openalex.org/W3104771979", + "https://openalex.org/W3104864936", + "https://openalex.org/W3104962094", + "https://openalex.org/W3105233262", + "https://openalex.org/W3105377867", + "https://openalex.org/W3105494006", + "https://openalex.org/W3105570377", + "https://openalex.org/W3105585588", + "https://openalex.org/W3105977603", + "https://openalex.org/W3106144922", + "https://openalex.org/W3106166086", + "https://openalex.org/W3106193592", + "https://openalex.org/W3106214974", + "https://openalex.org/W3106310231", + "https://openalex.org/W3106418633", + "https://openalex.org/W3106447034", + "https://openalex.org/W3106469526", + "https://openalex.org/W3112028493", + "https://openalex.org/W3121355058", + "https://openalex.org/W3121659139", + "https://openalex.org/W3123261968", + "https://openalex.org/W3124956069", + "https://openalex.org/W3132379378", + "https://openalex.org/W3137695714", + "https://openalex.org/W3140960170", + "https://openalex.org/W3147165232", + "https://openalex.org/W4212774754", + "https://openalex.org/W4236747242", + "https://openalex.org/W4237249260", + "https://openalex.org/W4238893454", + "https://openalex.org/W4239969927", + "https://openalex.org/W4244364296", + "https://openalex.org/W4248685136", + "https://openalex.org/W4250955649", + "https://openalex.org/W4252579706", + "https://openalex.org/W4253029311", + "https://openalex.org/W4253271028", + "https://openalex.org/W4255056905", + "https://openalex.org/W4285719527", + "https://openalex.org/W4288418124", + "https://openalex.org/W4288616930", + "https://openalex.org/W4288622534", + "https://openalex.org/W4289108190", + "https://openalex.org/W4289305635", + "https://openalex.org/W4289389579", + "https://openalex.org/W4289543312", + "https://openalex.org/W4289751512", + "https://openalex.org/W4289761856", + "https://openalex.org/W4293358966", + "https://openalex.org/W4295111187", + "https://openalex.org/W4295769412", + "https://openalex.org/W4295837399", + "https://openalex.org/W4297749952", + "https://openalex.org/W4297802696", + "https://openalex.org/W4298125159", + "https://openalex.org/W4298201378", + "https://openalex.org/W4299295087", + "https://openalex.org/W4299565696", + "https://openalex.org/W4299971819", + "https://openalex.org/W4300852227", + "https://openalex.org/W4300885568", + "https://openalex.org/W4300921457", + "https://openalex.org/W4300946572", + "https://openalex.org/W4300990119", + "https://openalex.org/W4301055545", + "https://openalex.org/W4301057100", + "https://openalex.org/W4301369164", + "https://openalex.org/W4302549904", + "https://openalex.org/W4394667618" + ], + "related_works": [ + "https://openalex.org/W2181722423", + "https://openalex.org/W2347222412", + "https://openalex.org/W2085601491", + "https://openalex.org/W2375996887", + "https://openalex.org/W4322723290", + "https://openalex.org/W2368976073", + "https://openalex.org/W2948237757", + "https://openalex.org/W2376548177", + "https://openalex.org/W2808994565", + "https://openalex.org/W2769449614" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "October": [ + 1 + ], + "2018": [ + 2 + ], + "an": [ + 3 + ], + "APS": [ + 4 + ], + "Physics": [ + 5 + ], + "Next": [ + 6 + ], + "Workshop": [ + 7 + ], + "on": [ + 8 + ], + "Machine": [ + 9 + ], + "Learning": [ + 10 + ], + "was": [ + 11 + ], + "held": [ + 12 + ], + "in": [ + 13, + 34 + ], + "Riverhead,": [ + 14 + ], + "NY.": [ + 15 + ], + "This": [ + 16 + ], + "article": [ + 17 + ], + "reviews": [ + 18 + ], + "and": [ + 19 + ], + "summarizes": [ + 20 + ], + "the": [ + 21, + 35 + ], + "proceedings": [ + 22 + ], + "of": [ + 23 + ], + "this": [ + 24 + ], + "very": [ + 25 + ], + "broad,": [ + 26 + ], + "emerging": [ + 27 + ], + "field.This": [ + 28 + ], + "needs": [ + 29 + ], + "to": [ + 30 + ], + "be": [ + 31 + ], + "a": [ + 32, + 39 + ], + "placard": [ + 33 + ], + "left-hand": [ + 36 + ], + "column,": [ + 37 + ], + "with": [ + 38 + ], + "custom": [ + 40 + ], + "tag.": [ + 41 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 114 + }, + { + "year": 2025, + "cited_by_count": 374 + }, + { + "year": 2024, + "cited_by_count": 374 + }, + { + "year": 2023, + "cited_by_count": 477 + }, + { + "year": 2022, + "cited_by_count": 416 + }, + { + "year": 2021, + "cited_by_count": 429 + }, + { + "year": 2020, + "cited_by_count": 209 + }, + { + "year": 2019, + "cited_by_count": 19 + }, + { + "year": 2018, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2603766943", + "doi": "https://doi.org/10.1145/3052973.3053009", + "title": "Practical Black-Box Attacks against Machine Learning", + "display_name": "Practical Black-Box Attacks against Machine Learning", + "relevance_score": 3520.3503, + "publication_year": 2017, + "publication_date": "2017-03-31", + "ids": { + "openalex": "https://openalex.org/W2603766943", + "doi": "https://doi.org/10.1145/3052973.3053009", + "mag": "2603766943" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3052973.3053009", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3052973.3053009", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5018809423", + "display_name": "Nicolas Papernot", + "orcid": "https://orcid.org/0000-0001-5078-7233" + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nicolas Papernot", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055368149", + "display_name": "Patrick McDaniel", + "orcid": "https://orcid.org/0000-0003-2091-7484" + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Patrick McDaniel", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004271128", + "display_name": "Ian Goodfellow", + "orcid": "https://orcid.org/0000-0003-3937-2322" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210161460", + "display_name": "OpenAI (United States)", + "ror": "https://ror.org/05wx9n238", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210161460" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ian Goodfellow", + "raw_affiliation_strings": [ + "OpenAI, San Francisco, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "OpenAI, San Francisco, CA, USA", + "institution_ids": [ + "https://openalex.org/I4210161460" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5088826068", + "display_name": "Somesh Jha", + "orcid": "https://orcid.org/0000-0001-5877-0436" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Somesh Jha", + "raw_affiliation_strings": [ + "University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Z. Berkay Celik", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I130769515", + "display_name": "Pennsylvania State University", + "ror": "https://ror.org/04p491231", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130769515" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Z. Berkay Celik", + "raw_affiliation_strings": [ + "Pennsylvania State University, University Park, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Pennsylvania State University, University Park, PA, USA", + "institution_ids": [ + "https://openalex.org/I130769515" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5103191815", + "display_name": "Ananthram Swami", + "orcid": "https://orcid.org/0000-0003-1439-332X" + }, + "institutions": [ + { + "id": "https://openalex.org/I166416128", + "display_name": "DEVCOM Army Research Laboratory", + "ror": "https://ror.org/011hc8f90", + "country_code": "US", + "type": "government", + "lineage": [ + "https://openalex.org/I1304082316", + "https://openalex.org/I1330347796", + "https://openalex.org/I166416128", + "https://openalex.org/I2802705668", + "https://openalex.org/I4210154437" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ananthram Swami", + "raw_affiliation_strings": [ + "US Army Research Laboratory, Adelphi, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "US Army Research Laboratory, Adelphi, MD, USA", + "institution_ids": [ + "https://openalex.org/I166416128" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5018809423" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I130769515" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 282.6909, + "has_fulltext": false, + "cited_by_count": 3465, + "citation_normalized_percentile": { + "value": 0.99991872, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "506", + "last_page": "519" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9887999892234802, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9490000009536743, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.8607215881347656 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7777668237686157 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.7760648727416992 + }, + { + "id": "https://openalex.org/keywords/black-box", + "display_name": "Black box", + "score": 0.7213448286056519 + }, + { + "id": "https://openalex.org/keywords/malware", + "display_name": "Malware", + "score": 0.7048903107643127 + }, + { + "id": "https://openalex.org/keywords/deep-neural-networks", + "display_name": "Deep neural networks", + "score": 0.65977942943573 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6321082711219788 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.6107656955718994 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5658857226371765 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.559665858745575 + }, + { + "id": "https://openalex.org/keywords/adversarial-machine-learning", + "display_name": "Adversarial machine learning", + "score": 0.5187221169471741 + }, + { + "id": "https://openalex.org/keywords/threat-model", + "display_name": "Threat model", + "score": 0.4236634075641632 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.32835885882377625 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.8607215881347656 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7777668237686157 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.7760648727416992 + }, + { + "id": "https://openalex.org/C94966114", + "wikidata": "https://www.wikidata.org/wiki/Q29256", + "display_name": "Black box", + "level": 2, + "score": 0.7213448286056519 + }, + { + "id": "https://openalex.org/C541664917", + "wikidata": "https://www.wikidata.org/wiki/Q14001", + "display_name": "Malware", + "level": 2, + "score": 0.7048903107643127 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.65977942943573 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6321082711219788 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.6107656955718994 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5658857226371765 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.559665858745575 + }, + { + "id": "https://openalex.org/C2778403875", + "wikidata": "https://www.wikidata.org/wiki/Q20312394", + "display_name": "Adversarial machine learning", + "level": 3, + "score": 0.5187221169471741 + }, + { + "id": "https://openalex.org/C140547941", + "wikidata": "https://www.wikidata.org/wiki/Q7797194", + "display_name": "Threat model", + "level": 2, + "score": 0.4236634075641632 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.32835885882377625 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3052973.3053009", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3052973.3053009", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.6399999856948853, + "id": "https://metadata.un.org/sdg/16", + "display_name": "Peace, Justice and strong institutions" + } + ], + "awards": [ + { + "id": "https://openalex.org/G2043895709", + "display_name": null, + "funder_award_id": "W911NF-13-2-0045", + "funder_id": "https://openalex.org/F4320338295", + "funder_display_name": "Army Research Laboratory" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320338295", + "display_name": "Army Research Laboratory", + "ror": "https://ror.org/011hc8f90" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 18, + "referenced_works": [ + "https://openalex.org/W9657784", + "https://openalex.org/W581033782", + "https://openalex.org/W1510924833", + "https://openalex.org/W2038296020", + "https://openalex.org/W2045638068", + "https://openalex.org/W2067713319", + "https://openalex.org/W2095577883", + "https://openalex.org/W2119885577", + "https://openalex.org/W2151298633", + "https://openalex.org/W2174868984", + "https://openalex.org/W2180612164", + "https://openalex.org/W2252814878", + "https://openalex.org/W2461943168", + "https://openalex.org/W2475730566", + "https://openalex.org/W2535873859", + "https://openalex.org/W2574797807", + "https://openalex.org/W2963207607", + "https://openalex.org/W2964153729" + ], + "related_works": [ + "https://openalex.org/W4312601715", + "https://openalex.org/W3159204880", + "https://openalex.org/W2982631433", + "https://openalex.org/W4377865163", + "https://openalex.org/W4392828243", + "https://openalex.org/W4312822655", + "https://openalex.org/W3157170264", + "https://openalex.org/W4298185893", + "https://openalex.org/W4402427143", + "https://openalex.org/W2896078964" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 161 + ], + "(ML)": [ + 2 + ], + "models,": [ + 3 + ], + "e.g.,": [ + 4 + ], + "deep": [ + 5, + 160 + ], + "neural": [ + 6 + ], + "networks": [ + 7 + ], + "(DNNs),": [ + 8 + ], + "are": [ + 9, + 138 + ], + "vulnerable": [ + 10 + ], + "to": [ + 11, + 17, + 25, + 87, + 94, + 106, + 130, + 186, + 237 + ], + "adversarial": [ + 12, + 46, + 132, + 172, + 208, + 239 + ], + "examples:": [ + 13 + ], + "malicious": [ + 14, + 32 + ], + "inputs": [ + 15, + 113 + ], + "modified": [ + 16 + ], + "yield": [ + 18, + 207 + ], + "erroneous": [ + 19 + ], + "model": [ + 20, + 54, + 105 + ], + "outputs,": [ + 21 + ], + "while": [ + 22 + ], + "appearing": [ + 23 + ], + "unmodified": [ + 24 + ], + "human": [ + 26 + ], + "observers.": [ + 27 + ], + "Potential": [ + 28 + ], + "attacks": [ + 29, + 48 + ], + "include": [ + 30 + ], + "having": [ + 31 + ], + "content": [ + 33 + ], + "like": [ + 34 + ], + "malware": [ + 35 + ], + "identified": [ + 36 + ], + "as": [ + 37 + ], + "legitimate": [ + 38 + ], + "or": [ + 39, + 56 + ], + "controlling": [ + 40, + 69 + ], + "vehicle": [ + 41 + ], + "behavior.": [ + 42 + ], + "Yet,": [ + 43 + ], + "all": [ + 44 + ], + "existing": [ + 45 + ], + "example": [ + 47, + 240 + ], + "require": [ + 49 + ], + "knowledge": [ + 50 + ], + "of": [ + 51, + 66, + 82, + 170, + 183, + 217, + 231 + ], + "either": [ + 52 + ], + "the": [ + 53, + 62, + 79, + 92, + 109, + 122, + 127, + 141, + 171, + 180, + 192 + ], + "internals": [ + 55 + ], + "its": [ + 57 + ], + "training": [ + 58, + 102 + ], + "data.": [ + 59 + ], + "We": [ + 60, + 125, + 163, + 178, + 221 + ], + "introduce": [ + 61 + ], + "first": [ + 63 + ], + "practical": [ + 64 + ], + "demonstration": [ + 65 + ], + "an": [ + 67, + 117, + 158 + ], + "attacker": [ + 68 + ], + "a": [ + 70, + 103, + 146, + 153 + ], + "remotely": [ + 71 + ], + "hosted": [ + 72, + 155, + 197 + ], + "DNN": [ + 73, + 93, + 154, + 167 + ], + "with": [ + 74, + 175 + ], + "no": [ + 75 + ], + "such": [ + 76 + ], + "knowledge.": [ + 77 + ], + "Indeed,": [ + 78 + ], + "only": [ + 80 + ], + "capability": [ + 81 + ], + "our": [ + 83, + 176, + 184 + ], + "black-box": [ + 84, + 226 + ], + "adversary": [ + 85, + 118 + ], + "is": [ + 86, + 229 + ], + "observe": [ + 88 + ], + "labels": [ + 89 + ], + "given": [ + 90 + ], + "by": [ + 91, + 116, + 121, + 140, + 156, + 190, + 198, + 211 + ], + "chosen": [ + 95 + ], + "inputs.": [ + 96 + ], + "Our": [ + 97 + ], + "attack": [ + 98, + 152, + 194, + 227 + ], + "strategy": [ + 99, + 185, + 228 + ], + "consists": [ + 100 + ], + "in": [ + 101 + ], + "local": [ + 104, + 128 + ], + "substitute": [ + 107, + 129 + ], + "for": [ + 108 + ], + "target": [ + 110, + 123 + ], + "DNN,": [ + 111 + ], + "using": [ + 112, + 202 + ], + "synthetically": [ + 114 + ], + "generated": [ + 115 + ], + "and": [ + 119, + 134, + 148, + 200, + 213, + 219 + ], + "labeled": [ + 120 + ], + "DNN.": [ + 124, + 143 + ], + "use": [ + 126 + ], + "craft": [ + 131 + ], + "examples,": [ + 133 + ], + "find": [ + 135, + 164, + 223 + ], + "that": [ + 136, + 165, + 224 + ], + "they": [ + 137 + ], + "misclassified": [ + 139, + 210 + ], + "targeted": [ + 142 + ], + "To": [ + 144 + ], + "perform": [ + 145 + ], + "real-world": [ + 147 + ], + "properly-blinded": [ + 149 + ], + "evaluation,": [ + 150 + ], + "we": [ + 151 + ], + "MetaMind,": [ + 157 + ], + "online": [ + 159 + ], + "API.": [ + 162 + ], + "their": [ + 166 + ], + "misclassifies": [ + 168 + ], + "84.24%": [ + 169 + ], + "examples": [ + 173, + 209 + ], + "crafted": [ + 174 + ], + "substitute.": [ + 177 + ], + "demonstrate": [ + 179 + ], + "general": [ + 181 + ], + "applicability": [ + 182 + ], + "many": [ + 187 + ], + "ML": [ + 188 + ], + "techniques": [ + 189 + ], + "conducting": [ + 191 + ], + "same": [ + 193 + ], + "against": [ + 195 + ], + "models": [ + 196 + ], + "Amazon": [ + 199, + 212 + ], + "Google,": [ + 201 + ], + "logistic": [ + 203 + ], + "regression": [ + 204 + ], + "substitutes.": [ + 205 + ], + "They": [ + 206 + ], + "Google": [ + 214 + ], + "at": [ + 215 + ], + "rates": [ + 216 + ], + "96.19%": [ + 218 + ], + "88.94%.": [ + 220 + ], + "also": [ + 222 + ], + "this": [ + 225 + ], + "capable": [ + 230 + ], + "evading": [ + 232 + ], + "defense": [ + 233 + ], + "strategies": [ + 234 + ], + "previously": [ + 235 + ], + "found": [ + 236 + ], + "make": [ + 238 + ], + "crafting": [ + 241 + ], + "harder.": [ + 242 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 65 + }, + { + "year": 2025, + "cited_by_count": 289 + }, + { + "year": 2024, + "cited_by_count": 377 + }, + { + "year": 2023, + "cited_by_count": 396 + }, + { + "year": 2022, + "cited_by_count": 409 + }, + { + "year": 2021, + "cited_by_count": 569 + }, + { + "year": 2020, + "cited_by_count": 590 + }, + { + "year": 2019, + "cited_by_count": 476 + }, + { + "year": 2018, + "cited_by_count": 240 + }, + { + "year": 2017, + "cited_by_count": 52 + }, + { + "year": 2016, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2914584698", + "doi": null, + "title": "Proceedings of the 23rd international conference on Machine learning", + "display_name": "Proceedings of the 23rd international conference on Machine learning", + "relevance_score": 3418.8123, + "publication_year": 2006, + "publication_date": "2006-06-25", + "ids": { + "openalex": "https://openalex.org/W2914584698", + "mag": "2914584698" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209271", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5051617344", + "display_name": "William W. Cohen", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "William W. Cohen", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5101927521", + "display_name": "Andrew Moore", + "orcid": "https://orcid.org/0000-0002-3395-0841" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Andrew Moore", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-3395-0841", + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5051617344" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 2.9972, + "has_fulltext": false, + "cited_by_count": 2592, + "citation_normalized_percentile": { + "value": 0.91286853, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.6675000190734863, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12254", + "display_name": "Machine Learning in Bioinformatics", + "score": 0.6675000190734863, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.6546000242233276, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.64774489402771 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5538260340690613 + }, + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5068791508674622 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3816671371459961 + }, + { + "id": "https://openalex.org/keywords/medical-education", + "display_name": "Medical education", + "score": 0.338736891746521 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.23399221897125244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.64774489402771 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5538260340690613 + }, + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5068791508674622 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3816671371459961 + }, + { + "id": "https://openalex.org/C509550671", + "wikidata": "https://www.wikidata.org/wiki/Q126945", + "display_name": "Medical education", + "level": 1, + "score": 0.338736891746521 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.23399221897125244 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-034209271", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/action/showBook?doi=10.1145%2F1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "mag:2914584698", + "is_oa": false, + "landing_page_url": "https://dl.acm.org/citation.cfm?id=1143844", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [], + "abstract_inverted_index": { + "This": [ + 0, + 52, + 138 + ], + "volume,": [ + 1 + ], + "which": [ + 2, + 92, + 295 + ], + "is": [ + 3, + 34 + ], + "also": [ + 4, + 81, + 123, + 288 + ], + "available": [ + 5 + ], + "from": [ + 6, + 165 + ], + "http://www.machinelearning.org,": [ + 7 + ], + "the": [ + 8, + 12, + 18, + 26, + 43, + 47, + 69, + 82, + 85, + 128, + 158, + 163, + 166, + 179, + 201, + 215, + 223, + 231, + 239, + 249, + 264, + 269, + 284, + 301, + 325, + 330, + 353, + 370 + ], + "home": [ + 9 + ], + "page": [ + 10 + ], + "of": [ + 11, + 42, + 49, + 98, + 127, + 130, + 182, + 222, + 238, + 261, + 280, + 324, + 329, + 352, + 355, + 362, + 369 + ], + "International": [ + 13, + 28 + ], + "Machine": [ + 14, + 31, + 89 + ], + "Learning": [ + 15, + 75, + 90 + ], + "Society,": [ + 16 + ], + "contains": [ + 17 + ], + "technical": [ + 19, + 285 + ], + "papers": [ + 20, + 148, + 164, + 170, + 253, + 307 + ], + "accepted": [ + 21, + 252, + 274 + ], + "for": [ + 22, + 38, + 84, + 275, + 317 + ], + "presentation": [ + 23, + 39 + ], + "at": [ + 24, + 57, + 357 + ], + "ICML-2006,": [ + 25 + ], + "23rd": [ + 27 + ], + "Conference": [ + 29, + 72 + ], + "on": [ + 30, + 73 + ], + "Learning.": [ + 32 + ], + "ICML": [ + 33, + 54 + ], + "an": [ + 35, + 106, + 197, + 257, + 277, + 334 + ], + "international": [ + 36 + ], + "forum": [ + 37 + ], + "and": [ + 40, + 64, + 113, + 122, + 204, + 292, + 299, + 310, + 365 + ], + "discussion": [ + 41, + 221 + ], + "latest": [ + 44 + ], + "results": [ + 45 + ], + "in": [ + 46, + 61, + 95, + 136, + 157, + 219, + 236, + 311 + ], + "field": [ + 48, + 129 + ], + "machine": [ + 50, + 131 + ], + "learning.": [ + 51 + ], + "year,": [ + 53 + ], + "was": [ + 55, + 65, + 80, + 93, + 102 + ], + "held": [ + 56, + 94, + 297 + ], + "Carnegie": [ + 58, + 77 + ], + "Mellon": [ + 59, + 78 + ], + "University,": [ + 60 + ], + "Pittsburgh,": [ + 62 + ], + "Pennsylvania,": [ + 63 + ], + "co-located": [ + 66 + ], + "with": [ + 67, + 162, + 320 + ], + "COLT-2006,": [ + 68 + ], + "19th": [ + 70 + ], + "Annual": [ + 71 + ], + "Computational": [ + 74 + ], + "Theory.Coincidentally,": [ + 76 + ], + "University": [ + 79, + 354 + ], + "venue": [ + 83 + ], + "first": [ + 86, + 167, + 180 + ], + "ICML---the": [ + 87 + ], + "First": [ + 88 + ], + "Workshop,": [ + 91 + ], + "1980.": [ + 96 + ], + "Instead": [ + 97 + ], + "proceedings,": [ + 99 + ], + "a": [ + 100, + 124, + 174, + 210, + 220, + 228, + 312, + 338 + ], + "book": [ + 101 + ], + "published": [ + 103, + 161 + ], + "(Machine": [ + 104 + ], + "Learning:": [ + 105 + ], + "Artificial": [ + 107 + ], + "Intelligence": [ + 108 + ], + "Approach,": [ + 109 + ], + "ed.": [ + 110 + ], + "Michalski,": [ + 111 + ], + "Carbonell,": [ + 112 + ], + "Mitchell,": [ + 114 + ], + "Morgan": [ + 115 + ], + "Kaufman,": [ + 116 + ], + "1983)": [ + 117 + ], + "containing": [ + 118 + ], + "sixteen": [ + 119 + ], + "research": [ + 120 + ], + "papers,": [ + 121 + ], + "comprehensive": [ + 125, + 159 + ], + "bibliography": [ + 139 + ], + "learning,": [ + 132 + ], + "as": [ + 133, + 153, + 155 + ], + "it": [ + 134 + ], + "stood": [ + 135 + ], + "1983.": [ + 137 + ], + "contained": [ + 140 + ], + "572": [ + 141 + ], + "entries.In": [ + 142 + ], + "2006,": [ + 143 + ], + "no": [ + 144 + ], + "less": [ + 145 + ], + "than": [ + 146 + ], + "548": [ + 147, + 270 + ], + "were": [ + 149, + 156, + 171, + 194, + 254, + 273, + 296, + 342 + ], + "submitted": [ + 150 + ], + "to": [ + 151, + 173, + 199, + 206, + 227, + 256, + 283, + 345, + 348 + ], + "ICML---nearly": [ + 152 + ], + "many": [ + 154 + ], + "ICML.": [ + 168 + ], + "These": [ + 169 + ], + "subjected": [ + 172 + ], + "thorough": [ + 175 + ], + "review": [ + 176, + 262 + ], + "process.": [ + 177 + ], + "In": [ + 178 + ], + "round": [ + 181, + 260 + ], + "reviewing,": [ + 183 + ], + "every": [ + 184 + ], + "paper": [ + 185 + ], + "received": [ + 186 + ], + "three": [ + 187 + ], + "reviews": [ + 188, + 203 + ], + "by": [ + 189, + 209, + 230, + 263, + 337 + ], + "program": [ + 190 + ], + "committee": [ + 191 + ], + "members.": [ + 192 + ], + "Authors": [ + 193, + 304 + ], + "then": [ + 195, + 217 + ], + "given": [ + 196 + ], + "opportunity": [ + 198 + ], + "view": [ + 200 + ], + "first-round": [ + 202 + ], + "respond": [ + 205 + ], + "them.": [ + 207 + ], + "Led": [ + 208 + ], + "Senior": [ + 211, + 232, + 265 + ], + "Program": [ + 212, + 233, + 266 + ], + "Committee": [ + 213, + 234 + ], + "member,": [ + 214 + ], + "reviewers": [ + 216 + ], + "engaged": [ + 218 + ], + "paper,": [ + 224 + ], + "leading": [ + 225 + ], + "finally": [ + 226 + ], + "decision": [ + 229 + ], + "member": [ + 235 + ], + "charge": [ + 237 + ], + "paper.": [ + 240 + ], + "Papers": [ + 241 + ], + "could": [ + 242 + ], + "be": [ + 243, + 346 + ], + "accepted,": [ + 244 + ], + "rejected,": [ + 245 + ], + "or": [ + 246 + ], + "conditionally": [ + 247, + 251 + ], + "accepted;": [ + 248 + ], + "36": [ + 250 + ], + "subject": [ + 255 + ], + "additional": [ + 258 + ], + "final": [ + 259 + ], + "Committee.": [ + 267 + ], + "Of": [ + 268 + ], + "submissions,": [ + 271 + ], + "140": [ + 272 + ], + "publication,": [ + 276 + ], + "acceptance": [ + 278 + ], + "rate": [ + 279 + ], + "25.5%.In": [ + 281 + ], + "addition": [ + 282 + ], + "talks,": [ + 286 + ], + "ICML-2006": [ + 287 + ], + "included": [ + 289, + 333 + ], + "seven": [ + 290 + ], + "tutorials": [ + 291 + ], + "eleven": [ + 293 + ], + "workshops,": [ + 294 + ], + "before": [ + 298 + ], + "after": [ + 300 + ], + "conference,": [ + 302 + ], + "respectively.": [ + 303 + ], + "presented": [ + 305 + ], + "their": [ + 306 + ], + "both": [ + 308 + ], + "orally": [ + 309 + ], + "poster": [ + 313 + ], + "session,": [ + 314 + ], + "allowing": [ + 315 + ], + "time": [ + 316 + ], + "detailed": [ + 318 + ], + "discussions": [ + 319 + ], + "any": [ + 321 + ], + "interested": [ + 322 + ], + "attendees": [ + 323 + ], + "conference.": [ + 326 + ], + "Each": [ + 327 + ], + "day": [ + 328 + ], + "main": [ + 331 + ], + "conference": [ + 332 + ], + "invited": [ + 335 + ], + "talk": [ + 336 + ], + "prominent": [ + 339 + ], + "researcher.": [ + 340 + ], + "We": [ + 341 + ], + "very": [ + 343 + ], + "fortunate": [ + 344 + ], + "able": [ + 347 + ], + "host": [ + 349 + ], + "David": [ + 350 + ], + "Haussler,": [ + 351 + ], + "California": [ + 356 + ], + "Santa": [ + 358 + ], + "Cruz;": [ + 359 + ], + "Robert": [ + 360 + ], + "Schapire,": [ + 361 + ], + "Princeton": [ + 363 + ], + "University;": [ + 364 + ], + "Mandyam": [ + 366 + ], + "V.": [ + 367 + ], + "Srinivasan,": [ + 368 + ], + "Australian": [ + 371 + ], + "National": [ + 372 + ], + "University.": [ + 373 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 295 + }, + { + "year": 2024, + "cited_by_count": 391 + }, + { + "year": 2023, + "cited_by_count": 338 + }, + { + "year": 2022, + "cited_by_count": 297 + }, + { + "year": 2021, + "cited_by_count": 262 + }, + { + "year": 2020, + "cited_by_count": 272 + }, + { + "year": 2019, + "cited_by_count": 207 + }, + { + "year": 2018, + "cited_by_count": 147 + }, + { + "year": 2017, + "cited_by_count": 134 + }, + { + "year": 2016, + "cited_by_count": 74 + }, + { + "year": 2015, + "cited_by_count": 37 + }, + { + "year": 2014, + "cited_by_count": 40 + }, + { + "year": 2013, + "cited_by_count": 21 + }, + { + "year": 2012, + "cited_by_count": 20 + } + ], + "updated_date": "2025-11-06T04:12:42.849631", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3116286104", + "doi": "https://doi.org/10.3390/e23010018", + "title": "Explainable AI: A Review of Machine Learning Interpretability Methods", + "display_name": "Explainable AI: A Review of Machine Learning Interpretability Methods", + "relevance_score": 3376.3457, + "publication_year": 2020, + "publication_date": "2020-12-25", + "ids": { + "openalex": "https://openalex.org/W3116286104", + "doi": "https://doi.org/10.3390/e23010018", + "mag": "3116286104", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/33375658" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5074689646", + "display_name": "Pantelis Linardatos", + "orcid": "https://orcid.org/0000-0003-1132-4724" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": true, + "raw_author_name": "Pantelis Linardatos", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0003-1132-4724", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5057093696", + "display_name": "Vasilis Papastefanopoulos", + "orcid": "https://orcid.org/0000-0001-8169-1373" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Vasilis Papastefanopoulos", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0001-8169-1373", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5066370772", + "display_name": "Sotiris Kotsiantis", + "orcid": "https://orcid.org/0000-0002-2247-3082" + }, + "institutions": [ + { + "id": "https://openalex.org/I174878644", + "display_name": "University of Patras", + "ror": "https://ror.org/017wvtq80", + "country_code": "GR", + "type": "education", + "lineage": [ + "https://openalex.org/I174878644" + ] + } + ], + "countries": [ + "GR" + ], + "is_corresponding": false, + "raw_author_name": "Sotiris Kotsiantis", + "raw_affiliation_strings": [ + "Department of Mathematics, University of Patras, 26504 Patras, Greece" + ], + "raw_orcid": "https://orcid.org/0000-0002-2247-3082", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics, University of Patras, 26504 Patras, Greece", + "institution_ids": [ + "https://openalex.org/I174878644" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5074689646" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I174878644" + ], + "apc_list": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "apc_paid": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "fwci": 147.8795, + "has_fulltext": false, + "cited_by_count": 2703, + "citation_normalized_percentile": { + "value": 0.99982619, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 89, + "max": 100 + }, + "biblio": { + "volume": "23", + "issue": "1", + "first_page": "18", + "last_page": "18" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.972599983215332, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.881382167339325 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.77054762840271 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7226959466934204 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6755812764167786 + }, + { + "id": "https://openalex.org/keywords/ambiguity", + "display_name": "Ambiguity", + "score": 0.6382596492767334 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5369188189506531 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.5124835968017578 + }, + { + "id": "https://openalex.org/keywords/black-box", + "display_name": "Black box", + "score": 0.43949806690216064 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.3528066873550415 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.34925395250320435 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.10554653406143188 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.10227954387664795 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.881382167339325 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.77054762840271 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7226959466934204 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6755812764167786 + }, + { + "id": "https://openalex.org/C2780522230", + "wikidata": "https://www.wikidata.org/wiki/Q1140419", + "display_name": "Ambiguity", + "level": 2, + "score": 0.6382596492767334 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5369188189506531 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.5124835968017578 + }, + { + "id": "https://openalex.org/C94966114", + "wikidata": "https://www.wikidata.org/wiki/Q29256", + "display_name": "Black box", + "level": 2, + "score": 0.43949806690216064 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.3528066873550415 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.34925395250320435 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.10554653406143188 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.10227954387664795 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + { + "id": "pmid:33375658", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/33375658", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy (Basel, Switzerland)", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:36ca352966604ee69cce840410673de9", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/36ca352966604ee69cce840410673de9", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy, Vol 23, Iss 1, p 18 (2020)", + "raw_type": "article" + }, + { + "id": "pmh:oai:mdpi.com:/1099-4300/23/1/18/", + "is_oa": true, + "landing_page_url": "https://dx.doi.org/10.3390/e23010018", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy; Volume 23; Issue 1; Pages: 18", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:7824368", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/7824368", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Entropy (Basel)", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/e23010018", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/e23010018", + "pdf_url": "https://www.mdpi.com/1099-4300/23/1/18/pdf?version=1609160444", + "source": { + "id": "https://openalex.org/S195231649", + "display_name": "Entropy", + "issn_l": "1099-4300", + "issn": [ + "1099-4300" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Entropy", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3116286104.pdf" + }, + "referenced_works_count": 184, + "referenced_works": [ + "https://openalex.org/W100464641", + "https://openalex.org/W273955616", + "https://openalex.org/W999207820", + "https://openalex.org/W1678356000", + "https://openalex.org/W1787224781", + "https://openalex.org/W1825675169", + "https://openalex.org/W1849277567", + "https://openalex.org/W1901616594", + "https://openalex.org/W1942214758", + "https://openalex.org/W1945616565", + "https://openalex.org/W1961345416", + "https://openalex.org/W1979362125", + "https://openalex.org/W1979769549", + "https://openalex.org/W1994080277", + "https://openalex.org/W1996796871", + "https://openalex.org/W2014352947", + "https://openalex.org/W2029767409", + "https://openalex.org/W2035363534", + "https://openalex.org/W2044639673", + "https://openalex.org/W2046945713", + "https://openalex.org/W2066238228", + "https://openalex.org/W2088765131", + "https://openalex.org/W2097246321", + "https://openalex.org/W2100960835", + "https://openalex.org/W2101589741", + "https://openalex.org/W2102636708", + "https://openalex.org/W2116572416", + "https://openalex.org/W2116666691", + "https://openalex.org/W2116984840", + "https://openalex.org/W2123045220", + "https://openalex.org/W2125283600", + "https://openalex.org/W2125847307", + "https://openalex.org/W2128272608", + "https://openalex.org/W2141200610", + "https://openalex.org/W2141755357", + "https://openalex.org/W2151868609", + "https://openalex.org/W2157928966", + "https://openalex.org/W2163605009", + "https://openalex.org/W2164878629", + "https://openalex.org/W2180612164", + "https://openalex.org/W2195388612", + "https://openalex.org/W2243397390", + "https://openalex.org/W2282821441", + "https://openalex.org/W2295107390", + "https://openalex.org/W2295598076", + "https://openalex.org/W2336525064", + "https://openalex.org/W2396394641", + "https://openalex.org/W2440159969", + "https://openalex.org/W2483215953", + "https://openalex.org/W2484189903", + "https://openalex.org/W2492294785", + "https://openalex.org/W2535873859", + "https://openalex.org/W2543927648", + "https://openalex.org/W2551974706", + "https://openalex.org/W2556096924", + "https://openalex.org/W2570685808", + "https://openalex.org/W2594475271", + "https://openalex.org/W2597603852", + "https://openalex.org/W2603766943", + "https://openalex.org/W2605409611", + "https://openalex.org/W2609368435", + "https://openalex.org/W2618851150", + "https://openalex.org/W2626639386", + "https://openalex.org/W2732560823", + "https://openalex.org/W2734421735", + "https://openalex.org/W2739220786", + "https://openalex.org/W2745565856", + "https://openalex.org/W2746600820", + "https://openalex.org/W2755655609", + "https://openalex.org/W2765424254", + "https://openalex.org/W2765793020", + "https://openalex.org/W2768894107", + "https://openalex.org/W2770312844", + "https://openalex.org/W2773022113", + "https://openalex.org/W2773497437", + "https://openalex.org/W2774644650", + "https://openalex.org/W2785699986", + "https://openalex.org/W2787955716", + "https://openalex.org/W2788199784", + "https://openalex.org/W2788403449", + "https://openalex.org/W2789160704", + "https://openalex.org/W2792942633", + "https://openalex.org/W2796215194", + "https://openalex.org/W2796885425", + "https://openalex.org/W2798312813", + "https://openalex.org/W2799194071", + "https://openalex.org/W2803831897", + "https://openalex.org/W2809136100", + "https://openalex.org/W2887252986", + "https://openalex.org/W2888078780", + "https://openalex.org/W2888421747", + "https://openalex.org/W2889210204", + "https://openalex.org/W2889252776", + "https://openalex.org/W2891503716", + "https://openalex.org/W2905526464", + "https://openalex.org/W2905810301", + "https://openalex.org/W2909878761", + "https://openalex.org/W2910705748", + "https://openalex.org/W2914598080", + "https://openalex.org/W2919115771", + "https://openalex.org/W2943646750", + "https://openalex.org/W2949128310", + "https://openalex.org/W2949197630", + "https://openalex.org/W2949200088", + "https://openalex.org/W2953911539", + "https://openalex.org/W2954503794", + "https://openalex.org/W2955782190", + "https://openalex.org/W2962718684", + "https://openalex.org/W2962772482", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962816513", + "https://openalex.org/W2962818281", + "https://openalex.org/W2962858109", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963100392", + "https://openalex.org/W2963116854", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963126845", + "https://openalex.org/W2963165363", + "https://openalex.org/W2963233086", + "https://openalex.org/W2963382180", + "https://openalex.org/W2963483561", + "https://openalex.org/W2963615251", + "https://openalex.org/W2963847595", + "https://openalex.org/W2963857521", + "https://openalex.org/W2963859254", + "https://openalex.org/W2963969878", + "https://openalex.org/W2964082701", + "https://openalex.org/W2965749257", + "https://openalex.org/W2966149470", + "https://openalex.org/W2971970905", + "https://openalex.org/W2981731882", + "https://openalex.org/W2988194011", + "https://openalex.org/W2998277219", + "https://openalex.org/W3000208741", + "https://openalex.org/W3003420231", + "https://openalex.org/W3013371788", + "https://openalex.org/W3015625436", + "https://openalex.org/W3023553115", + "https://openalex.org/W3027870051", + "https://openalex.org/W3035517615", + "https://openalex.org/W3035736465", + "https://openalex.org/W3037881545", + "https://openalex.org/W3098276446", + "https://openalex.org/W3098278632", + "https://openalex.org/W3099126561", + "https://openalex.org/W3101449015", + "https://openalex.org/W3102476541", + "https://openalex.org/W3103557498", + "https://openalex.org/W3104423855", + "https://openalex.org/W3104570147", + "https://openalex.org/W3106412272", + "https://openalex.org/W3121410165", + "https://openalex.org/W3121588992", + "https://openalex.org/W3138819813", + "https://openalex.org/W4238293282", + "https://openalex.org/W4241793634", + "https://openalex.org/W4251708881", + "https://openalex.org/W4288625073", + "https://openalex.org/W4289258088", + "https://openalex.org/W4300337452", + "https://openalex.org/W6610017368", + "https://openalex.org/W6637162671", + "https://openalex.org/W6684072790", + "https://openalex.org/W6703326205", + "https://openalex.org/W6719080892", + "https://openalex.org/W6728551298", + "https://openalex.org/W6733049761", + "https://openalex.org/W6734194636", + "https://openalex.org/W6739575509", + "https://openalex.org/W6740085662", + "https://openalex.org/W6744110554", + "https://openalex.org/W6745730051", + "https://openalex.org/W6747473890", + "https://openalex.org/W6748377460", + "https://openalex.org/W6750628419", + "https://openalex.org/W6750829902", + "https://openalex.org/W6751569023", + "https://openalex.org/W6751776086", + "https://openalex.org/W6752083044", + "https://openalex.org/W6755768460", + "https://openalex.org/W6762840784", + "https://openalex.org/W6765646913", + "https://openalex.org/W7014198846" + ], + "related_works": [ + "https://openalex.org/W2797441709", + "https://openalex.org/W2346578521", + "https://openalex.org/W4297660007", + "https://openalex.org/W4377704659", + "https://openalex.org/W2886918272", + "https://openalex.org/W4387589990", + "https://openalex.org/W2943982549", + "https://openalex.org/W3101055019", + "https://openalex.org/W2910028250", + "https://openalex.org/W4241566321" + ], + "abstract_inverted_index": { + "Recent": [ + 0 + ], + "advances": [ + 1 + ], + "in": [ + 2, + 20, + 29, + 76, + 95, + 156 + ], + "artificial": [ + 3 + ], + "intelligence": [ + 4 + ], + "(AI)": [ + 5 + ], + "have": [ + 6 + ], + "led": [ + 7 + ], + "to": [ + 8, + 61, + 73, + 152 + ], + "its": [ + 9 + ], + "widespread": [ + 10 + ], + "industrial": [ + 11 + ], + "adoption,": [ + 12 + ], + "with": [ + 13, + 108 + ], + "machine": [ + 14, + 70, + 118, + 132 + ], + "learning": [ + 15, + 71, + 119, + 133 + ], + "systems": [ + 16, + 41, + 72 + ], + "demonstrating": [ + 17 + ], + "superhuman": [ + 18 + ], + "performance": [ + 19 + ], + "a": [ + 21, + 91, + 103, + 138, + 165 + ], + "significant": [ + 22 + ], + "number": [ + 23 + ], + "of": [ + 24, + 98, + 111, + 143 + ], + "tasks.": [ + 25 + ], + "However,": [ + 26 + ], + "this": [ + 27, + 160 + ], + "surge": [ + 28 + ], + "performance,": [ + 30 + ], + "has": [ + 31, + 65, + 121 + ], + "often": [ + 32 + ], + "been": [ + 33, + 122 + ], + "achieved": [ + 34 + ], + "through": [ + 35 + ], + "increased": [ + 36 + ], + "model": [ + 37 + ], + "complexity,": [ + 38 + ], + "turning": [ + 39 + ], + "such": [ + 40, + 87 + ], + "into": [ + 42 + ], + "\"black": [ + 43 + ], + "box\"": [ + 44 + ], + "approaches": [ + 45 + ], + "and": [ + 46, + 116, + 141, + 171 + ], + "causing": [ + 47 + ], + "uncertainty": [ + 48 + ], + "regarding": [ + 49 + ], + "the": [ + 50, + 56, + 96, + 109, + 157 + ], + "way": [ + 51, + 57 + ], + "they": [ + 52, + 59 + ], + "operate": [ + 53 + ], + "and,": [ + 54 + ], + "ultimately,": [ + 55 + ], + "that": [ + 58, + 105, + 114, + 159 + ], + "come": [ + 60 + ], + "decisions.": [ + 62 + ], + "This": [ + 63, + 128 + ], + "ambiguity": [ + 64 + ], + "made": [ + 66 + ], + "it": [ + 67 + ], + "problematic": [ + 68 + ], + "for": [ + 69, + 168 + ], + "be": [ + 74, + 85 + ], + "adopted": [ + 75 + ], + "sensitive": [ + 77 + ], + "yet": [ + 78 + ], + "critical": [ + 79 + ], + "domains,": [ + 80 + ], + "where": [ + 81 + ], + "their": [ + 82, + 153 + ], + "value": [ + 83 + ], + "could": [ + 84 + ], + "immense,": [ + 86 + ], + "as": [ + 88, + 148, + 150, + 164 + ], + "healthcare.": [ + 89 + ], + "As": [ + 90 + ], + "result,": [ + 92 + ], + "scientific": [ + 93 + ], + "interest": [ + 94 + ], + "field": [ + 97, + 104 + ], + "Explainable": [ + 99 + ], + "Artificial": [ + 100 + ], + "Intelligence": [ + 101 + ], + "(XAI),": [ + 102 + ], + "is": [ + 106 + ], + "concerned": [ + 107 + ], + "development": [ + 110 + ], + "new": [ + 112 + ], + "methods": [ + 113, + 145 + ], + "explain": [ + 115 + ], + "interpret": [ + 117 + ], + "models,": [ + 120 + ], + "tremendously": [ + 123 + ], + "reignited": [ + 124 + ], + "over": [ + 125 + ], + "recent": [ + 126 + ], + "years.": [ + 127 + ], + "study": [ + 129 + ], + "focuses": [ + 130 + ], + "on": [ + 131 + ], + "interpretability": [ + 134 + ], + "methods;": [ + 135 + ], + "more": [ + 136 + ], + "specifically,": [ + 137 + ], + "literature": [ + 139 + ], + "review": [ + 140 + ], + "taxonomy": [ + 142 + ], + "these": [ + 144 + ], + "are": [ + 146 + ], + "presented,": [ + 147 + ], + "well": [ + 149 + ], + "links": [ + 151 + ], + "programming": [ + 154 + ], + "implementations,": [ + 155 + ], + "hope": [ + 158 + ], + "survey": [ + 161 + ], + "would": [ + 162 + ], + "serve": [ + 163 + ], + "reference": [ + 166 + ], + "point": [ + 167 + ], + "both": [ + 169 + ], + "theorists": [ + 170 + ], + "practitioners.": [ + 172 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 210 + }, + { + "year": 2025, + "cited_by_count": 702 + }, + { + "year": 2024, + "cited_by_count": 707 + }, + { + "year": 2023, + "cited_by_count": 591 + }, + { + "year": 2022, + "cited_by_count": 382 + }, + { + "year": 2021, + "cited_by_count": 109 + }, + { + "year": 2020, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2142334564", + "doi": "https://doi.org/10.2307/1269742", + "title": "Machine Learning, Neural and Statistical Classification", + "display_name": "Machine Learning, Neural and Statistical Classification", + "relevance_score": 3336.3496, + "publication_year": 1995, + "publication_date": "1995-11-01", + "ids": { + "openalex": "https://openalex.org/W2142334564", + "doi": "https://doi.org/10.2307/1269742", + "mag": "2142334564" + }, + "language": "en", + "primary_location": { + "id": "doi:10.2307/1269742", + "is_oa": false, + "landing_page_url": "https://doi.org/10.2307/1269742", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021483518", + "display_name": "Bill Fulkerson", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I5490798", + "display_name": "John Deere (Germany)", + "ror": "https://ror.org/02xc43e34", + "country_code": "DE", + "type": "company", + "lineage": [ + "https://openalex.org/I4210096981", + "https://openalex.org/I5490798" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Bill Fulkerson", + "raw_affiliation_strings": [ + "Deere & Company", + "University of Edinburgh U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "Deere & Company", + "institution_ids": [ + "https://openalex.org/I5490798" + ] + }, + { + "raw_affiliation_string": "University of Edinburgh U.K", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5006171154", + "display_name": "D. Michie", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "D. Michie", + "raw_affiliation_strings": [ + "University of Edinburgh , U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "University of Edinburgh , U.K", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080673459", + "display_name": "D. J. Spiegelhalter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "D. J. Spiegelhalter", + "raw_affiliation_strings": [ + "Univ. Forvie Site, Cambridge, U.K.#TAB#" + ], + "affiliations": [ + { + "raw_affiliation_string": "Univ. Forvie Site, Cambridge, U.K.#TAB#", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5111533856", + "display_name": "C. C. W. Taylor", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "C. C. Taylor", + "raw_affiliation_strings": [ + "University of Leeds; U.K" + ], + "affiliations": [ + { + "raw_affiliation_string": "University of Leeds; U.K", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5021483518" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I5490798" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 121.1376, + "has_fulltext": false, + "cited_by_count": 2191, + "citation_normalized_percentile": { + "value": 0.99989156, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "37", + "issue": "4", + "first_page": "459", + "last_page": "459" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9955999851226807, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9955999851226807, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9819999933242798, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T14351", + "display_name": "Statistical and Computational Modeling", + "score": 0.9731000065803528, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6783725023269653 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6460950374603271 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.638775646686554 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5508975982666016 + }, + { + "id": "https://openalex.org/keywords/statistical-learning", + "display_name": "Statistical learning", + "score": 0.4216362535953522 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6783725023269653 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6460950374603271 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.638775646686554 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5508975982666016 + }, + { + "id": "https://openalex.org/C2982736386", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Statistical learning", + "level": 2, + "score": 0.4216362535953522 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.2307/1269742", + "is_oa": false, + "landing_page_url": "https://doi.org/10.2307/1269742", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S985303", + "display_name": "Technometrics", + "issn_l": "0040-1706", + "issn": [ + "0040-1706", + "1537-2723" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Technometrics", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 7, + "referenced_works": [ + "https://openalex.org/W1515620500", + "https://openalex.org/W1602329118", + "https://openalex.org/W1704669313", + "https://openalex.org/W1770912791", + "https://openalex.org/W2023837194", + "https://openalex.org/W2488901271", + "https://openalex.org/W3014310718" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Survey": [ + 0 + ], + "of": [ + 1, + 8 + ], + "previous": [ + 2 + ], + "comparisons": [ + 3 + ], + "and": [ + 4, + 15 + ], + "theoretical": [ + 5 + ], + "work": [ + 6 + ], + "descriptions": [ + 7, + 11 + ], + "methods": [ + 9 + ], + "dataset": [ + 10 + ], + "criteria": [ + 12 + ], + "for": [ + 13 + ], + "comparison": [ + 14 + ], + "methodology": [ + 16 + ], + "(including": [ + 17 + ], + "validation)": [ + 18 + ], + "empirical": [ + 19 + ], + "results": [ + 20 + ], + "machine": [ + 21, + 24 + ], + "learning": [ + 22 + ], + "on": [ + 23 + ], + "learning.": [ + 25 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 17 + }, + { + "year": 2023, + "cited_by_count": 45 + }, + { + "year": 2022, + "cited_by_count": 44 + }, + { + "year": 2021, + "cited_by_count": 64 + }, + { + "year": 2020, + "cited_by_count": 70 + }, + { + "year": 2019, + "cited_by_count": 65 + }, + { + "year": 2018, + "cited_by_count": 65 + }, + { + "year": 2017, + "cited_by_count": 80 + }, + { + "year": 2016, + "cited_by_count": 58 + }, + { + "year": 2015, + "cited_by_count": 64 + }, + { + "year": 2014, + "cited_by_count": 78 + }, + { + "year": 2013, + "cited_by_count": 68 + }, + { + "year": 2012, + "cited_by_count": 84 + } + ], + "updated_date": "2026-04-04T16:13:02.066488", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2962727772", + "doi": null, + "title": "Automatic differentiation in machine learning: a survey", + "display_name": "Automatic differentiation in machine learning: a survey", + "relevance_score": 3317.6707, + "publication_year": 2015, + "publication_date": "2015-01-01", + "ids": { + "openalex": "https://openalex.org/W2962727772", + "mag": "2962727772" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5063994783", + "display_name": "Atılım Güneş Baydin", + "orcid": "https://orcid.org/0000-0001-9854-8100" + }, + "institutions": [ + { + "id": "https://openalex.org/I40120149", + "display_name": "University of Oxford", + "ror": "https://ror.org/052gg0110", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I40120149" + ] + }, + { + "id": "https://openalex.org/I4210146410", + "display_name": "Science Oxford", + "ror": "https://ror.org/04j8yhy50", + "country_code": "GB", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210146410" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Atılım Güneş Baydin", + "raw_affiliation_strings": [ + "Department of Engineering Science; University of Oxford; Oxford United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0001-9854-8100", + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering Science; University of Oxford; Oxford United Kingdom", + "institution_ids": [ + "https://openalex.org/I4210146410", + "https://openalex.org/I40120149" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009984528", + "display_name": "Barak A. Pearlmutter", + "orcid": "https://orcid.org/0000-0003-0521-4553" + }, + "institutions": [ + { + "id": "https://openalex.org/I157286207", + "display_name": "National University of Ireland, Maynooth", + "ror": "https://ror.org/048nfjm95", + "country_code": "IE", + "type": "education", + "lineage": [ + "https://openalex.org/I157286207" + ] + } + ], + "countries": [ + "IE" + ], + "is_corresponding": false, + "raw_author_name": "Barak A. Pearlmutter", + "raw_affiliation_strings": [ + "Department of Computer Science , National University of Ireland Maynooth , Maynooth, Co. Kildare, Ireland" + ], + "raw_orcid": "https://orcid.org/0000-0003-0521-4553", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , National University of Ireland Maynooth , Maynooth, Co. Kildare, Ireland", + "institution_ids": [ + "https://openalex.org/I157286207" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055832270", + "display_name": "Alexey Radul", + "orcid": "https://orcid.org/0000-0002-7251-4057" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alexey Radul", + "raw_affiliation_strings": [ + "Department of Brain and Cognitive Sciences, Massachusetts Institute of Technology, Cambridge, MA" + ], + "raw_orcid": "https://orcid.org/0000-0002-7251-4057", + "affiliations": [ + { + "raw_affiliation_string": "Department of Brain and Cognitive Sciences, Massachusetts Institute of Technology, Cambridge, MA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5079140683", + "display_name": "Jeffrey Mark Siskind", + "orcid": "https://orcid.org/0000-0002-0105-6503" + }, + "institutions": [ + { + "id": "https://openalex.org/I219193219", + "display_name": "Purdue University West Lafayette", + "ror": "https://ror.org/02dqehb95", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I219193219" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jeffrey Mark Siskind", + "raw_affiliation_strings": [ + "School of Electrical & Computer Engineering, Purdue University, West Lafayette, IN" + ], + "raw_orcid": "https://orcid.org/0000-0002-0105-6503", + "affiliations": [ + { + "raw_affiliation_string": "School of Electrical & Computer Engineering, Purdue University, West Lafayette, IN", + "institution_ids": [ + "https://openalex.org/I219193219" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5063994783" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I40120149", + "https://openalex.org/I4210146410" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 5.8829, + "has_fulltext": true, + "cited_by_count": 2097, + "citation_normalized_percentile": { + "value": 0.96990496, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 97, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9828000068664551, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T13650", + "display_name": "Computational Physics and Python Applications", + "score": 0.9753999710083008, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7707252502441406 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6958426833152771 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.6952723264694214 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6923137903213501 + }, + { + "id": "https://openalex.org/keywords/automatic-differentiation", + "display_name": "Automatic differentiation", + "score": 0.5773985385894775 + }, + { + "id": "https://openalex.org/keywords/differentiable-function", + "display_name": "Differentiable function", + "score": 0.5487818717956543 + }, + { + "id": "https://openalex.org/keywords/clarity", + "display_name": "CLARITY", + "score": 0.49600204825401306 + }, + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.47601065039634705 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.47393471002578735 + }, + { + "id": "https://openalex.org/keywords/algorithmic-learning-theory", + "display_name": "Algorithmic learning theory", + "score": 0.4503173828125 + }, + { + "id": "https://openalex.org/keywords/active-learning", + "display_name": "Active learning (machine learning)", + "score": 0.41797730326652527 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.36606842279434204 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.18022793531417847 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.14339032769203186 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.09765636920928955 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7707252502441406 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6958426833152771 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.6952723264694214 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6923137903213501 + }, + { + "id": "https://openalex.org/C133512626", + "wikidata": "https://www.wikidata.org/wiki/Q787371", + "display_name": "Automatic differentiation", + "level": 3, + "score": 0.5773985385894775 + }, + { + "id": "https://openalex.org/C202615002", + "wikidata": "https://www.wikidata.org/wiki/Q783507", + "display_name": "Differentiable function", + "level": 2, + "score": 0.5487818717956543 + }, + { + "id": "https://openalex.org/C2777146004", + "wikidata": "https://www.wikidata.org/wiki/Q14949826", + "display_name": "CLARITY", + "level": 2, + "score": 0.49600204825401306 + }, + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.47601065039634705 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.47393471002578735 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.4503173828125 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.41797730326652527 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.36606842279434204 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.18022793531417847 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.14339032769203186 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.09765636920928955 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C55493867", + "wikidata": "https://www.wikidata.org/wiki/Q7094", + "display_name": "Biochemistry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + } + ], + "best_oa_location": { + "id": "pmh:oai:eprints.maynoothuniversity.ie:8145", + "is_oa": true, + "landing_page_url": null, + "pdf_url": "http://eprints.maynoothuniversity.ie/8145/1/BP-Automatic-2015.pdf", + "source": { + "id": "https://openalex.org/S4306401432", + "display_name": "Maynooth University ePrints and eTheses Archive (Maynooth University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I157286207", + "host_organization_name": "National University of Ireland, Maynooth", + "host_organization_lineage": [ + "https://openalex.org/I157286207" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Monograph" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6346593773", + "display_name": null, + "funder_award_id": "09/IN.1/I2637", + "funder_id": "https://openalex.org/F4320320847", + "funder_display_name": "Science Foundation Ireland" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320320847", + "display_name": "Science Foundation Ireland", + "ror": "https://ror.org/0271asj38" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2962727772.pdf", + "grobid_xml": "https://content.openalex.org/works/W2962727772.grobid-xml" + }, + "referenced_works_count": 165, + "referenced_works": [ + "https://openalex.org/W10127936", + "https://openalex.org/W24803201", + "https://openalex.org/W32371573", + "https://openalex.org/W54927611", + "https://openalex.org/W56900066", + "https://openalex.org/W79234129", + "https://openalex.org/W96156603", + "https://openalex.org/W114517082", + "https://openalex.org/W150071318", + "https://openalex.org/W163279865", + "https://openalex.org/W178772886", + "https://openalex.org/W183071939", + "https://openalex.org/W195465510", + "https://openalex.org/W199058730", + "https://openalex.org/W658381347", + "https://openalex.org/W1448623749", + "https://openalex.org/W1491719553", + "https://openalex.org/W1498436455", + "https://openalex.org/W1508921047", + "https://openalex.org/W1510408204", + "https://openalex.org/W1526743513", + "https://openalex.org/W1531185881", + "https://openalex.org/W1531720974", + "https://openalex.org/W1533682968", + "https://openalex.org/W1545319692", + "https://openalex.org/W1554025628", + "https://openalex.org/W1554447113", + "https://openalex.org/W1555213329", + "https://openalex.org/W1556604985", + "https://openalex.org/W1558109178", + "https://openalex.org/W1579027943", + "https://openalex.org/W1585773866", + "https://openalex.org/W1593851055", + "https://openalex.org/W1597010871", + "https://openalex.org/W1597497095", + "https://openalex.org/W1601796594", + "https://openalex.org/W1602017060", + "https://openalex.org/W1667652561", + "https://openalex.org/W1732222442", + "https://openalex.org/W1746819321", + "https://openalex.org/W1781063653", + "https://openalex.org/W1786620475", + "https://openalex.org/W1833324609", + "https://openalex.org/W1841592590", + "https://openalex.org/W1868018859", + "https://openalex.org/W1902934009", + "https://openalex.org/W1906598733", + "https://openalex.org/W1909320841", + "https://openalex.org/W1959608418", + "https://openalex.org/W1960579544", + "https://openalex.org/W1964298340", + "https://openalex.org/W1965256357", + "https://openalex.org/W1976804081", + "https://openalex.org/W1980177911", + "https://openalex.org/W1981814724", + "https://openalex.org/W1983864872", + "https://openalex.org/W1984176077", + "https://openalex.org/W1985280181", + "https://openalex.org/W1987027398", + "https://openalex.org/W1988141348", + "https://openalex.org/W1991173503", + "https://openalex.org/W1996647346", + "https://openalex.org/W1996852196", + "https://openalex.org/W1997030105", + "https://openalex.org/W1999333806", + "https://openalex.org/W2004750113", + "https://openalex.org/W2005126631", + "https://openalex.org/W2006903949", + "https://openalex.org/W2008957460", + "https://openalex.org/W2017000414", + "https://openalex.org/W2018435387", + "https://openalex.org/W2030762303", + "https://openalex.org/W2031070741", + "https://openalex.org/W2039708501", + "https://openalex.org/W2042661604", + "https://openalex.org/W2057377421", + "https://openalex.org/W2058760524", + "https://openalex.org/W2058821858", + "https://openalex.org/W2062422869", + "https://openalex.org/W2065468339", + "https://openalex.org/W2069077343", + "https://openalex.org/W2069563463", + "https://openalex.org/W2070389042", + "https://openalex.org/W2076063813", + "https://openalex.org/W2076554018", + "https://openalex.org/W2077306381", + "https://openalex.org/W2083381683", + "https://openalex.org/W2084689793", + "https://openalex.org/W2084818100", + "https://openalex.org/W2087169336", + "https://openalex.org/W2098694378", + "https://openalex.org/W2106164382", + "https://openalex.org/W2108207895", + "https://openalex.org/W2109189215", + "https://openalex.org/W2112796928", + "https://openalex.org/W2119717200", + "https://openalex.org/W2120420045", + "https://openalex.org/W2124313187", + "https://openalex.org/W2129142203", + "https://openalex.org/W2129288307", + "https://openalex.org/W2133400152", + "https://openalex.org/W2133564696", + "https://openalex.org/W2134275125", + "https://openalex.org/W2136985729", + "https://openalex.org/W2137808436", + "https://openalex.org/W2141524150", + "https://openalex.org/W2146502635", + "https://openalex.org/W2146534684", + "https://openalex.org/W2146856863", + "https://openalex.org/W2157488230", + "https://openalex.org/W2161239884", + "https://openalex.org/W2161969291", + "https://openalex.org/W2163248562", + "https://openalex.org/W2163922914", + "https://openalex.org/W2167315686", + "https://openalex.org/W2167839676", + "https://openalex.org/W2171928131", + "https://openalex.org/W2250861254", + "https://openalex.org/W2271840356", + "https://openalex.org/W2271982975", + "https://openalex.org/W2327562811", + "https://openalex.org/W2382989034", + "https://openalex.org/W2396666011", + "https://openalex.org/W2403726878", + "https://openalex.org/W2405844906", + "https://openalex.org/W2423581336", + "https://openalex.org/W2464234964", + "https://openalex.org/W2478429860", + "https://openalex.org/W2482888308", + "https://openalex.org/W2496722619", + "https://openalex.org/W2509865812", + "https://openalex.org/W2513383847", + "https://openalex.org/W2539792571", + "https://openalex.org/W2566652804", + "https://openalex.org/W2572175727", + "https://openalex.org/W2574963492", + "https://openalex.org/W2577537660", + "https://openalex.org/W2578556340", + "https://openalex.org/W2586661897", + "https://openalex.org/W2597452529", + "https://openalex.org/W2606594511", + "https://openalex.org/W2618530766", + "https://openalex.org/W2754835109", + "https://openalex.org/W2768092088", + "https://openalex.org/W2778749116", + "https://openalex.org/W2786741601", + "https://openalex.org/W2899771611", + "https://openalex.org/W2919115771", + "https://openalex.org/W2948461586", + "https://openalex.org/W2950999850", + "https://openalex.org/W2951008357", + "https://openalex.org/W2952339051", + "https://openalex.org/W2953146438", + "https://openalex.org/W2962994101", + "https://openalex.org/W2963042536", + "https://openalex.org/W2963264829", + "https://openalex.org/W2963773578", + "https://openalex.org/W2963977107", + "https://openalex.org/W2964121744", + "https://openalex.org/W2986953278", + "https://openalex.org/W3004157836", + "https://openalex.org/W3087399931", + "https://openalex.org/W3100141945", + "https://openalex.org/W3121926921", + "https://openalex.org/W3123351260" + ], + "related_works": [ + "https://openalex.org/W3146803896", + "https://openalex.org/W3101260193", + "https://openalex.org/W3003922491", + "https://openalex.org/W2970971581", + "https://openalex.org/W2964121744", + "https://openalex.org/W2919115771", + "https://openalex.org/W2899771611", + "https://openalex.org/W2899283552", + "https://openalex.org/W2803629276", + "https://openalex.org/W2749028154", + "https://openalex.org/W2745110207", + "https://openalex.org/W2402144811", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2064675550", + "https://openalex.org/W2051434435", + "https://openalex.org/W1585773866", + "https://openalex.org/W1533861849", + "https://openalex.org/W1498436455", + "https://openalex.org/W2963112935" + ], + "abstract_inverted_index": { + "Derivatives,": [ + 0 + ], + "mostly": [ + 1 + ], + "in": [ + 2, + 11, + 34, + 51, + 97 + ], + "the": [ + 3, + 72, + 84, + 98, + 114, + 119 + ], + "form": [ + 4 + ], + "of": [ + 5, + 23, + 67, + 74, + 100, + 116 + ], + "gradients": [ + 6 + ], + "and": [ + 7, + 31, + 43, + 49, + 63, + 76, + 91 + ], + "Hessians,": [ + 8 + ], + "are": [ + 9 + ], + "ubiquitous": [ + 10 + ], + "machine": [ + 12, + 54, + 77, + 120 + ], + "learning.": [ + 13 + ], + "Automatic": [ + 14 + ], + "differentiation": [ + 15 + ], + "(AD)": [ + 16 + ], + "is": [ + 17 + ], + "a": [ + 18, + 88 + ], + "technique": [ + 19 + ], + "for": [ + 20 + ], + "calculating": [ + 21 + ], + "derivatives": [ + 22 + ], + "numeric": [ + 24 + ], + "functions": [ + 25 + ], + "expressed": [ + 26 + ], + "as": [ + 27, + 37 + ], + "computer": [ + 28 + ], + "programs": [ + 29 + ], + "efficiently": [ + 30 + ], + "accurately,": [ + 32 + ], + "used": [ + 33 + ], + "fields": [ + 35 + ], + "such": [ + 36 + ], + "computational": [ + 38 + ], + "fluid": [ + 39 + ], + "dynamics,": [ + 40 + ], + "nuclear": [ + 41 + ], + "engineering,": [ + 42 + ], + "atmospheric": [ + 44 + ], + "sciences.": [ + 45 + ], + "Despite": [ + 46 + ], + "its": [ + 47 + ], + "advantages": [ + 48 + ], + "use": [ + 50, + 66, + 115 + ], + "other": [ + 52 + ], + "fields,": [ + 53 + ], + "learning": [ + 55, + 121 + ], + "practitioners": [ + 56 + ], + "have": [ + 57, + 112 + ], + "been": [ + 58 + ], + "little": [ + 59 + ], + "influenced": [ + 60 + ], + "by": [ + 61 + ], + "AD": [ + 62, + 75, + 82, + 117 + ], + "make": [ + 64, + 87 + ], + "scant": [ + 65 + ], + "available": [ + 68 + ], + "tools.": [ + 69 + ], + "We": [ + 70, + 103 + ], + "survey": [ + 71 + ], + "intersection": [ + 73 + ], + "learning,": [ + 78 + ], + "cover": [ + 79 + ], + "applications": [ + 80 + ], + "where": [ + 81 + ], + "has": [ + 83 + ], + "potential": [ + 85 + ], + "to": [ + 86, + 105 + ], + "big": [ + 89 + ], + "impact,": [ + 90 + ], + "report": [ + 92 + ], + "on": [ + 93 + ], + "some": [ + 94, + 107 + ], + "recent": [ + 95 + ], + "developments": [ + 96 + ], + "adoption": [ + 99 + ], + "this": [ + 101 + ], + "technique.": [ + 102 + ], + "aim": [ + 104 + ], + "dispel": [ + 106 + ], + "misconceptions": [ + 108 + ], + "that": [ + 109 + ], + "we": [ + 110 + ], + "contend": [ + 111 + ], + "impeded": [ + 113 + ], + "within": [ + 118 + ], + "community.": [ + 122 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 252 + }, + { + "year": 2024, + "cited_by_count": 379 + }, + { + "year": 2023, + "cited_by_count": 398 + }, + { + "year": 2022, + "cited_by_count": 312 + }, + { + "year": 2021, + "cited_by_count": 381 + }, + { + "year": 2020, + "cited_by_count": 242 + }, + { + "year": 2019, + "cited_by_count": 99 + }, + { + "year": 2018, + "cited_by_count": 24 + }, + { + "year": 2017, + "cited_by_count": 6 + }, + { + "year": 2016, + "cited_by_count": 4 + } + ], + "updated_date": "2026-05-21T09:19:25.381259", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2751318774", + "doi": "https://doi.org/10.1142/9789811201967_0001", + "title": "Introduction to Machine Learning", + "display_name": "Introduction to Machine Learning", + "relevance_score": 3261.247, + "publication_year": 2019, + "publication_date": "2019-02-27", + "ids": { + "openalex": "https://openalex.org/W2751318774", + "doi": "https://doi.org/10.1142/9789811201967_0001", + "mag": "2751318774" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1142/9789811201967_0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/9789811201967_0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210240769", + "display_name": "Series in machine perception and artificial intelligence", + "issn_l": "1793-0839", + "issn": [ + "1793-0839" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "book series" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Series in Machine Perception and Artificial Intelligence", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 45.4453, + "has_fulltext": false, + "cited_by_count": 1659, + "citation_normalized_percentile": { + "value": 0.9987236, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "1", + "last_page": "22" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.3314000070095062, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.3314000070095062, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.49732616543769836 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.354877233505249 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.49732616543769836 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.354877233505249 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1142/9789811201967_0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/9789811201967_0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210240769", + "display_name": "Series in machine perception and artificial intelligence", + "issn_l": "1793-0839", + "issn": [ + "1793-0839" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "book series" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Series in Machine Perception and Artificial Intelligence", + "raw_type": "book-chapter" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2382290278", + "https://openalex.org/W2096946506", + "https://openalex.org/W2350741829", + "https://openalex.org/W3004735627", + "https://openalex.org/W3107474891" + ], + "abstract_inverted_index": { + "The": [ + 0, + 140 + ], + "goal": [ + 1 + ], + "of": [ + 2, + 24, + 74, + 91, + 187, + 197, + 252, + 265 + ], + "machine": [ + 3, + 25, + 81, + 92, + 198, + 266 + ], + "learning": [ + 4, + 26, + 82, + 93, + 119, + 199, + 267 + ], + "is": [ + 5, + 63 + ], + "to": [ + 6, + 9, + 16, + 36, + 60, + 86, + 136, + 171, + 224, + 254 + ], + "program": [ + 7 + ], + "computers": [ + 8 + ], + "use": [ + 10 + ], + "example": [ + 11 + ], + "data": [ + 12, + 35, + 116 + ], + "or": [ + 13 + ], + "past": [ + 14, + 33 + ], + "experience": [ + 15 + ], + "solve": [ + 17 + ], + "a": [ + 18, + 45, + 64, + 71, + 88, + 137, + 191 + ], + "given": [ + 19 + ], + "problem.": [ + 20 + ], + "Many": [ + 21 + ], + "successful": [ + 22 + ], + "applications": [ + 23 + ], + "exist": [ + 27 + ], + "already,": [ + 28 + ], + "including": [ + 29, + 104 + ], + "systems": [ + 30 + ], + "that": [ + 31, + 44, + 124 + ], + "analyze": [ + 32 + ], + "sales": [ + 34 + ], + "predict": [ + 37 + ], + "customer": [ + 38 + ], + "behavior,": [ + 39 + ], + "optimize": [ + 40 + ], + "robot": [ + 41 + ], + "behavior": [ + 42 + ], + "so": [ + 43, + 123 + ], + "task": [ + 46 + ], + "can": [ + 47, + 127, + 227 + ], + "be": [ + 48, + 228, + 251 + ], + "completed": [ + 49, + 238 + ], + "using": [ + 50 + ], + "minimum": [ + 51 + ], + "resources,": [ + 52 + ], + "and": [ + 53, + 95, + 115, + 163, + 167, + 182, + 195, + 212, + 221, + 233, + 245, + 271 + ], + "extract": [ + 54 + ], + "knowledge": [ + 55 + ], + "from": [ + 56, + 101, + 130 + ], + "bioinformatics": [ + 57 + ], + "data.": [ + 58 + ], + "Introduction": [ + 59, + 223 + ], + "Machine": [ + 61, + 225, + 272 + ], + "Learning": [ + 62, + 226, + 273 + ], + "comprehensive": [ + 65 + ], + "textbook": [ + 66 + ], + "on": [ + 67, + 177, + 193, + 204 + ], + "the": [ + 68, + 125, + 131, + 134, + 172, + 205, + 257, + 263 + ], + "subject,": [ + 69 + ], + "covering": [ + 70 + ], + "broad": [ + 72 + ], + "array": [ + 73 + ], + "topics": [ + 75, + 144 + ], + "not": [ + 76 + ], + "usually": [ + 77 + ], + "included": [ + 78 + ], + "in": [ + 79, + 133, + 190, + 240, + 256 + ], + "introductory": [ + 80 + ], + "texts.": [ + 83 + ], + "In": [ + 84 + ], + "order": [ + 85 + ], + "present": [ + 87 + ], + "unified": [ + 89 + ], + "treatment": [ + 90 + ], + "problems": [ + 94 + ], + "solutions,": [ + 96 + ], + "it": [ + 97 + ], + "discusses": [ + 98 + ], + "many": [ + 99, + 213 + ], + "methods": [ + 100 + ], + "different": [ + 102 + ], + "fields,": [ + 103 + ], + "statistics,": [ + 105 + ], + "pattern": [ + 106 + ], + "recognition,": [ + 107 + ], + "neural": [ + 108 + ], + "networks,": [ + 109 + ], + "artificial": [ + 110 + ], + "intelligence,": [ + 111 + ], + "signal": [ + 112 + ], + "processing,": [ + 113 + ], + "control,": [ + 114 + ], + "mining.": [ + 117 + ], + "All": [ + 118, + 216 + ], + "algorithms": [ + 120 + ], + "are": [ + 121, + 175, + 260 + ], + "explained": [ + 122 + ], + "student": [ + 126 + ], + "easily": [ + 128 + ], + "move": [ + 129 + ], + "equations": [ + 132 + ], + "book": [ + 135 + ], + "computer": [ + 138, + 241 + ], + "program.": [ + 139 + ], + "text": [ + 141 + ], + "covers": [ + 142 + ], + "such": [ + 143 + ], + "as": [ + 145 + ], + "supervised": [ + 146 + ], + "learning,": [ + 147 + ], + "Bayesian": [ + 148, + 183 + ], + "decision": [ + 149 + ], + "theory,": [ + 150 + ], + "parametric": [ + 151 + ], + "methods,": [ + 152, + 154 + ], + "multivariate": [ + 153 + ], + "multilayer": [ + 155 + ], + "perceptrons,": [ + 156 + ], + "local": [ + 157 + ], + "models,": [ + 158, + 161, + 181 + ], + "hidden": [ + 159 + ], + "Markov": [ + 160 + ], + "assessing": [ + 162 + ], + "comparing": [ + 164 + ], + "classification": [ + 165 + ], + "algorithms,": [ + 166 + ], + "reinforcement": [ + 168 + ], + "learning.": [ + 169 + ], + "New": [ + 170 + ], + "second": [ + 173 + ], + "edition": [ + 174 + ], + "chapters": [ + 176, + 217 + ], + "kernel": [ + 178 + ], + "machines,": [ + 179 + ], + "graphical": [ + 180 + ], + "estimation;": [ + 184 + ], + "expanded": [ + 185 + ], + "coverage": [ + 186 + ], + "statistical": [ + 188 + ], + "tests": [ + 189 + ], + "chapter": [ + 192 + ], + "design": [ + 194 + ], + "analysis": [ + 196 + ], + "experiments;": [ + 200 + ], + "case": [ + 201 + ], + "studies": [ + 202 + ], + "available": [ + 203 + ], + "Web": [ + 206 + ], + "(with": [ + 207 + ], + "downloadable": [ + 208 + ], + "results": [ + 209 + ], + "for": [ + 210 + ], + "instructors);": [ + 211 + ], + "additional": [ + 214 + ], + "exercises.": [ + 215 + ], + "have": [ + 218, + 237 + ], + "been": [ + 219 + ], + "revised": [ + 220 + ], + "updated.": [ + 222 + ], + "used": [ + 229 + ], + "by": [ + 230 + ], + "advanced": [ + 231 + ], + "undergraduates": [ + 232 + ], + "graduate": [ + 234 + ], + "students": [ + 235 + ], + "who": [ + 236, + 259 + ], + "courses": [ + 239 + ], + "programming,": [ + 242 + ], + "probability,": [ + 243 + ], + "calculus,": [ + 244 + ], + "linear": [ + 246 + ], + "algebra.": [ + 247 + ], + "It": [ + 248 + ], + "will": [ + 249 + ], + "also": [ + 250 + ], + "interest": [ + 253 + ], + "engineers": [ + 255 + ], + "field": [ + 258 + ], + "concerned": [ + 261 + ], + "with": [ + 262 + ], + "application": [ + 264 + ], + "methods.": [ + 268 + ], + "Adaptive": [ + 269 + ], + "Computation": [ + 270 + ], + "series": [ + 274 + ] + }, + "counts_by_year": [ + { + "year": 2024, + "cited_by_count": 2 + }, + { + "year": 2023, + "cited_by_count": 3 + }, + { + "year": 2022, + "cited_by_count": 6 + }, + { + "year": 2021, + "cited_by_count": 46 + }, + { + "year": 2020, + "cited_by_count": 57 + }, + { + "year": 2019, + "cited_by_count": 56 + }, + { + "year": 2018, + "cited_by_count": 50 + }, + { + "year": 2017, + "cited_by_count": 63 + }, + { + "year": 2016, + "cited_by_count": 108 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 168 + }, + { + "year": 2013, + "cited_by_count": 151 + }, + { + "year": 2012, + "cited_by_count": 140 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4205539948", + "doi": "https://doi.org/10.1093/rfs/hhaa009", + "title": "Empirical Asset Pricing via Machine Learning", + "display_name": "Empirical Asset Pricing via Machine Learning", + "relevance_score": 3166.7078, + "publication_year": 2020, + "publication_date": "2020-02-20", + "ids": { + "openalex": "https://openalex.org/W4205539948", + "doi": "https://doi.org/10.1093/rfs/hhaa009" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5025931561", + "display_name": "Shihao Gu", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Shihao Gu", + "raw_affiliation_strings": [ + "Booth School of Business, University of Chicago" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Booth School of Business, University of Chicago", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101435735", + "display_name": "Bryan Kelly", + "orcid": "https://orcid.org/0000-0001-6752-822X" + }, + "institutions": [ + { + "id": "https://openalex.org/I139787848", + "display_name": "Capital University", + "ror": "https://ror.org/00jy9e726", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I139787848" + ] + }, + { + "id": "https://openalex.org/I32971472", + "display_name": "Yale University", + "ror": "https://ror.org/03v76x132", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I32971472" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Bryan Kelly", + "raw_affiliation_strings": [ + "Yale University, AQR Capital Management, and NBER" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Yale University, AQR Capital Management, and NBER", + "institution_ids": [ + "https://openalex.org/I139787848", + "https://openalex.org/I32971472" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5050253426", + "display_name": "Dacheng Xiu", + "orcid": "https://orcid.org/0000-0002-2250-0861" + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Dacheng Xiu", + "raw_affiliation_strings": [ + "Booth School of Business, University of Chicago" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Booth School of Business, University of Chicago", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5025931561" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I40347166" + ], + "apc_list": { + "value": 3724, + "currency": "USD", + "value_usd": 3724 + }, + "apc_paid": null, + "fwci": 221.2533, + "has_fulltext": true, + "cited_by_count": 2188, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "33", + "issue": "5", + "first_page": "2223", + "last_page": "2273" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10047", + "display_name": "Financial Markets and Investment Strategies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10047", + "display_name": "Financial Markets and Investment Strategies", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T11326", + "display_name": "Stock Market Forecasting Methods", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10282", + "display_name": "Financial Risk and Volatility Modeling", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/2003", + "display_name": "Finance" + }, + "field": { + "id": "https://openalex.org/fields/20", + "display_name": "Economics, Econometrics and Finance" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/capital-asset-pricing-model", + "display_name": "Capital asset pricing model", + "score": 0.7436144351959229 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6426714658737183 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6057676076889038 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5858373641967773 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5564541816711426 + }, + { + "id": "https://openalex.org/keywords/volatility", + "display_name": "Volatility (finance)", + "score": 0.5285476446151733 + }, + { + "id": "https://openalex.org/keywords/market-liquidity", + "display_name": "Market liquidity", + "score": 0.519666314125061 + }, + { + "id": "https://openalex.org/keywords/econometrics", + "display_name": "Econometrics", + "score": 0.5052424073219299 + }, + { + "id": "https://openalex.org/keywords/asset", + "display_name": "Asset (computer security)", + "score": 0.485171377658844 + }, + { + "id": "https://openalex.org/keywords/trace", + "display_name": "TRACE (psycholinguistics)", + "score": 0.45744583010673523 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4424659311771393 + }, + { + "id": "https://openalex.org/keywords/economics", + "display_name": "Economics", + "score": 0.3305661678314209 + }, + { + "id": "https://openalex.org/keywords/finance", + "display_name": "Finance", + "score": 0.1892847716808319 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C181236170", + "wikidata": "https://www.wikidata.org/wiki/Q848354", + "display_name": "Capital asset pricing model", + "level": 2, + "score": 0.7436144351959229 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6426714658737183 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6057676076889038 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5858373641967773 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5564541816711426 + }, + { + "id": "https://openalex.org/C91602232", + "wikidata": "https://www.wikidata.org/wiki/Q756115", + "display_name": "Volatility (finance)", + "level": 2, + "score": 0.5285476446151733 + }, + { + "id": "https://openalex.org/C183582576", + "wikidata": "https://www.wikidata.org/wiki/Q184783", + "display_name": "Market liquidity", + "level": 2, + "score": 0.519666314125061 + }, + { + "id": "https://openalex.org/C149782125", + "wikidata": "https://www.wikidata.org/wiki/Q160039", + "display_name": "Econometrics", + "level": 1, + "score": 0.5052424073219299 + }, + { + "id": "https://openalex.org/C76178495", + "wikidata": "https://www.wikidata.org/wiki/Q4808784", + "display_name": "Asset (computer security)", + "level": 2, + "score": 0.485171377658844 + }, + { + "id": "https://openalex.org/C75291252", + "wikidata": "https://www.wikidata.org/wiki/Q1315756", + "display_name": "TRACE (psycholinguistics)", + "level": 2, + "score": 0.45744583010673523 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4424659311771393 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.3305661678314209 + }, + { + "id": "https://openalex.org/C10138342", + "wikidata": "https://www.wikidata.org/wiki/Q43015", + "display_name": "Finance", + "level": 1, + "score": 0.1892847716808319 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:RePEc:oup:revfin:v:33:y:2020:i:5:p:2223-2273.", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/10.1093/rfs/hhaa009", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1093/rfs/hhaa009", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1093/rfs/hhaa009", + "pdf_url": "https://academic.oup.com/rfs/article-pdf/33/5/2223/33209812/hhaa009.pdf", + "source": { + "id": "https://openalex.org/S170137484", + "display_name": "Review of Financial Studies", + "issn_l": "0893-9454", + "issn": [ + "0893-9454", + "1465-7368" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Review of Financial Studies", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W4205539948.pdf", + "grobid_xml": "https://content.openalex.org/works/W4205539948.grobid-xml" + }, + "referenced_works_count": 70, + "referenced_works": [ + "https://openalex.org/W608042232", + "https://openalex.org/W1503022246", + "https://openalex.org/W1522301498", + "https://openalex.org/W1533618852", + "https://openalex.org/W1534477342", + "https://openalex.org/W1594031697", + "https://openalex.org/W1678356000", + "https://openalex.org/W1789808336", + "https://openalex.org/W1969404656", + "https://openalex.org/W1971217947", + "https://openalex.org/W1976251851", + "https://openalex.org/W1995834279", + "https://openalex.org/W2007694684", + "https://openalex.org/W2024046085", + "https://openalex.org/W2046033161", + "https://openalex.org/W2048662624", + "https://openalex.org/W2063730763", + "https://openalex.org/W2070534370", + "https://openalex.org/W2103496339", + "https://openalex.org/W2135293965", + "https://openalex.org/W2136922672", + "https://openalex.org/W2137983211", + "https://openalex.org/W2139753118", + "https://openalex.org/W2144570112", + "https://openalex.org/W2154987621", + "https://openalex.org/W2194775991", + "https://openalex.org/W2265274622", + "https://openalex.org/W2291108100", + "https://openalex.org/W2319405822", + "https://openalex.org/W2338469198", + "https://openalex.org/W2503100348", + "https://openalex.org/W2546302380", + "https://openalex.org/W2560674852", + "https://openalex.org/W2741371467", + "https://openalex.org/W2787894218", + "https://openalex.org/W2799643291", + "https://openalex.org/W2911964244", + "https://openalex.org/W2938815980", + "https://openalex.org/W2967005703", + "https://openalex.org/W3001826040", + "https://openalex.org/W3004050393", + "https://openalex.org/W3004732066", + "https://openalex.org/W3018089439", + "https://openalex.org/W3121274430", + "https://openalex.org/W3121588992", + "https://openalex.org/W3122020290", + "https://openalex.org/W3122118888", + "https://openalex.org/W3123267500", + "https://openalex.org/W3123752263", + "https://openalex.org/W3124436545", + "https://openalex.org/W3125696988", + "https://openalex.org/W3125950889", + "https://openalex.org/W3126032681", + "https://openalex.org/W3126136988", + "https://openalex.org/W3131102529", + "https://openalex.org/W4211170237", + "https://openalex.org/W4237239309", + "https://openalex.org/W4242067316", + "https://openalex.org/W4297853882", + "https://openalex.org/W4388297464", + "https://openalex.org/W6637242042", + "https://openalex.org/W6637404493", + "https://openalex.org/W6638667902", + "https://openalex.org/W6660794422", + "https://openalex.org/W6682889407", + "https://openalex.org/W6684409620", + "https://openalex.org/W6691187937", + "https://openalex.org/W6694527737", + "https://openalex.org/W6736719330", + "https://openalex.org/W6781003217" + ], + "related_works": [ + "https://openalex.org/W2512907043", + "https://openalex.org/W4248657878", + "https://openalex.org/W1985218057", + "https://openalex.org/W4313341805", + "https://openalex.org/W2167647189", + "https://openalex.org/W4390564844", + "https://openalex.org/W2131958170", + "https://openalex.org/W2061122711", + "https://openalex.org/W2273754158", + "https://openalex.org/W4313341917" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "We": [ + 1, + 22, + 46 + ], + "perform": [ + 2 + ], + "a": [ + 3, + 80 + ], + "comparative": [ + 4 + ], + "analysis": [ + 5 + ], + "of": [ + 6, + 14, + 39, + 76 + ], + "machine": [ + 7, + 30 + ], + "learning": [ + 8, + 31 + ], + "methods": [ + 9, + 50, + 70 + ], + "for": [ + 10 + ], + "the": [ + 11, + 37, + 44, + 48, + 73, + 100, + 108, + 111 + ], + "canonical": [ + 12 + ], + "problem": [ + 13 + ], + "empirical": [ + 15 + ], + "asset": [ + 16, + 19 + ], + "pricing:": [ + 17 + ], + "measuring": [ + 18 + ], + "risk": [ + 20 + ], + "premiums.": [ + 21 + ], + "demonstrate": [ + 23 + ], + "large": [ + 24 + ], + "economic": [ + 25 + ], + "gains": [ + 26, + 59 + ], + "to": [ + 27, + 60, + 107, + 110 + ], + "investors": [ + 28 + ], + "using": [ + 29 + ], + "forecasts,": [ + 32 + ], + "in": [ + 33 + ], + "some": [ + 34 + ], + "cases": [ + 35 + ], + "doubling": [ + 36 + ], + "performance": [ + 38 + ], + "leading": [ + 40 + ], + "regression-based": [ + 41 + ], + "strategies": [ + 42 + ], + "from": [ + 43 + ], + "literature.": [ + 45 + ], + "identify": [ + 47 + ], + "best-performing": [ + 49 + ], + "(trees": [ + 51 + ], + "and": [ + 52, + 55, + 88 + ], + "neural": [ + 53 + ], + "networks)": [ + 54 + ], + "trace": [ + 56 + ], + "their": [ + 57 + ], + "predictive": [ + 58, + 78 + ], + "allowing": [ + 61 + ], + "nonlinear": [ + 62 + ], + "predictor": [ + 63 + ], + "interactions": [ + 64 + ], + "missed": [ + 65 + ], + "by": [ + 66 + ], + "other": [ + 67 + ], + "methods.": [ + 68 + ], + "All": [ + 69 + ], + "agree": [ + 71 + ], + "on": [ + 72, + 85, + 99 + ], + "same": [ + 74 + ], + "set": [ + 75, + 81 + ], + "dominant": [ + 77 + ], + "signals,": [ + 79 + ], + "that": [ + 82 + ], + "includes": [ + 83 + ], + "variations": [ + 84 + ], + "momentum,": [ + 86 + ], + "liquidity,": [ + 87 + ], + "volatility.": [ + 89 + ], + "Authors": [ + 90 + ], + "have": [ + 91 + ], + "furnished": [ + 92 + ], + "an": [ + 93 + ], + "Internet": [ + 94 + ], + "Appendix,": [ + 95 + ], + "which": [ + 96 + ], + "is": [ + 97 + ], + "available": [ + 98 + ], + "Oxford": [ + 101 + ], + "University": [ + 102 + ], + "Press": [ + 103 + ], + "Web": [ + 104 + ], + "site": [ + 105 + ], + "next": [ + 106 + ], + "link": [ + 109 + ], + "final": [ + 112 + ], + "published": [ + 113 + ], + "paper": [ + 114 + ], + "online.": [ + 115 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 261 + }, + { + "year": 2025, + "cited_by_count": 533 + }, + { + "year": 2024, + "cited_by_count": 433 + }, + { + "year": 2023, + "cited_by_count": 355 + }, + { + "year": 2022, + "cited_by_count": 246 + }, + { + "year": 2021, + "cited_by_count": 212 + }, + { + "year": 2020, + "cited_by_count": 105 + }, + { + "year": 2019, + "cited_by_count": 18 + }, + { + "year": 2018, + "cited_by_count": 13 + }, + { + "year": 2017, + "cited_by_count": 5 + }, + { + "year": 2016, + "cited_by_count": 3 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1993220166", + "doi": "https://doi.org/10.1145/1007730.1007735", + "title": "A study of the behavior of several methods for balancing machine learning training data", + "display_name": "A study of the behavior of several methods for balancing machine learning training data", + "relevance_score": 3145.3699, + "publication_year": 2004, + "publication_date": "2004-06-01", + "ids": { + "openalex": "https://openalex.org/W1993220166", + "doi": "https://doi.org/10.1145/1007730.1007735", + "mag": "1993220166" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/1007730.1007735", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1007730.1007735", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210176598", + "display_name": "ACM SIGKDD Explorations Newsletter", + "issn_l": "1931-0145", + "issn": [ + "1931-0145", + "1931-0153" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM SIGKDD Explorations Newsletter", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5102371518", + "display_name": "Gustavo E. A. P. A. Batista", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": true, + "raw_author_name": "Gustavo E. A. P. A. Batista", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5005717519", + "display_name": "Ronaldo C. Prati", + "orcid": "https://orcid.org/0000-0001-8597-4987" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": false, + "raw_author_name": "Ronaldo C. Prati", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5000813310", + "display_name": "Maria Carolina Monard", + "orcid": "https://orcid.org/0000-0001-6004-7407" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210131883", + "display_name": "Brazilian Society of Computational and Applied Mathematics", + "ror": "https://ror.org/03kcw4w74", + "country_code": "BR", + "type": "other", + "lineage": [ + "https://openalex.org/I4210131883" + ] + } + ], + "countries": [ + "BR" + ], + "is_corresponding": false, + "raw_author_name": "Maria Carolina Monard", + "raw_affiliation_strings": [ + "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Instituto de Ciências Matemáticas e de Computação, São Carlos - SP, Brazil", + "institution_ids": [ + "https://openalex.org/I4210131883" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5102371518" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210131883" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 37.4612, + "has_fulltext": false, + "cited_by_count": 4104, + "citation_normalized_percentile": { + "value": 0.99786653, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "6", + "issue": "1", + "first_page": "20", + "last_page": "29" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10538", + "display_name": "Data Mining Algorithms and Applications", + "score": 0.9883999824523926, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8465416431427002 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.7231571078300476 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7109780311584473 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6125052571296692 + }, + { + "id": "https://openalex.org/keywords/sampling", + "display_name": "Sampling (signal processing)", + "score": 0.5954932570457458 + }, + { + "id": "https://openalex.org/keywords/simple-random-sample", + "display_name": "Simple random sample", + "score": 0.5651431083679199 + }, + { + "id": "https://openalex.org/keywords/event", + "display_name": "Event (particle physics)", + "score": 0.47093668580055237 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.44805052876472473 + }, + { + "id": "https://openalex.org/keywords/simple", + "display_name": "Simple (philosophy)", + "score": 0.44138047099113464 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8465416431427002 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.7231571078300476 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7109780311584473 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6125052571296692 + }, + { + "id": "https://openalex.org/C140779682", + "wikidata": "https://www.wikidata.org/wiki/Q210868", + "display_name": "Sampling (signal processing)", + "level": 3, + "score": 0.5954932570457458 + }, + { + "id": "https://openalex.org/C20353970", + "wikidata": "https://www.wikidata.org/wiki/Q1056998", + "display_name": "Simple random sample", + "level": 3, + "score": 0.5651431083679199 + }, + { + "id": "https://openalex.org/C2779662365", + "wikidata": "https://www.wikidata.org/wiki/Q5416694", + "display_name": "Event (particle physics)", + "level": 2, + "score": 0.47093668580055237 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.44805052876472473 + }, + { + "id": "https://openalex.org/C2780586882", + "wikidata": "https://www.wikidata.org/wiki/Q7520643", + "display_name": "Simple (philosophy)", + "level": 2, + "score": 0.44138047099113464 + }, + { + "id": "https://openalex.org/C2908647359", + "wikidata": "https://www.wikidata.org/wiki/Q2625603", + "display_name": "Population", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C106131492", + "wikidata": "https://www.wikidata.org/wiki/Q3072260", + "display_name": "Filter (signal processing)", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C149923435", + "wikidata": "https://www.wikidata.org/wiki/Q37732", + "display_name": "Demography", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/1007730.1007735", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/1007730.1007735", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210176598", + "display_name": "ACM SIGKDD Explorations Newsletter", + "issn_l": "1931-0145", + "issn": [ + "1931-0145", + "1931-0153" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "ACM SIGKDD Explorations Newsletter", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W85350352", + "https://openalex.org/W102369970", + "https://openalex.org/W142793689", + "https://openalex.org/W1499467920", + "https://openalex.org/W1504694836", + "https://openalex.org/W1576442155", + "https://openalex.org/W1591261915", + "https://openalex.org/W1941659294", + "https://openalex.org/W1977245551", + "https://openalex.org/W1994410331", + "https://openalex.org/W2004131797", + "https://openalex.org/W2058732827", + "https://openalex.org/W2084812512", + "https://openalex.org/W2107686700", + "https://openalex.org/W2114968414", + "https://openalex.org/W2122496402", + "https://openalex.org/W2125055259", + "https://openalex.org/W2136903812", + "https://openalex.org/W2137029138", + "https://openalex.org/W2147169507", + "https://openalex.org/W2148143831", + "https://openalex.org/W2152761983", + "https://openalex.org/W2157092487", + "https://openalex.org/W2170913656", + "https://openalex.org/W2797114046", + "https://openalex.org/W4285719527" + ], + "related_works": [ + "https://openalex.org/W2370014976", + "https://openalex.org/W2350399852", + "https://openalex.org/W3047864323", + "https://openalex.org/W1036777753", + "https://openalex.org/W4379210352", + "https://openalex.org/W4238714840", + "https://openalex.org/W4362679606", + "https://openalex.org/W2994963386", + "https://openalex.org/W3004700962", + "https://openalex.org/W2088812990" + ], + "abstract_inverted_index": { + "There": [ + 0 + ], + "are": [ + 1, + 283 + ], + "several": [ + 2 + ], + "aspects": [ + 3, + 22 + ], + "that": [ + 4, + 18, + 112, + 280 + ], + "might": [ + 5 + ], + "influence": [ + 6 + ], + "the": [ + 7, + 40, + 43, + 62, + 70, + 74, + 94, + 99, + 119, + 126, + 141, + 194, + 197, + 210, + 255, + 266, + 270, + 288, + 298, + 302, + 312, + 316, + 326 + ], + "performance": [ + 8, + 120, + 261 + ], + "achieved": [ + 9 + ], + "by": [ + 10, + 93 + ], + "existing": [ + 11 + ], + "learning": [ + 12, + 63, + 122, + 133 + ], + "systems.": [ + 13, + 123 + ], + "It": [ + 14 + ], + "has": [ + 15 + ], + "been": [ + 16 + ], + "reported": [ + 17 + ], + "one": [ + 19, + 36 + ], + "of": [ + 20, + 90, + 121, + 143, + 152, + 213, + 235, + 269, + 305, + 319 + ], + "these": [ + 21, + 158, + 281 + ], + "is": [ + 23, + 50, + 246 + ], + "related": [ + 24, + 72, + 131 + ], + "to": [ + 25, + 35, + 68, + 73, + 96, + 129, + 132, + 172, + 204, + 249 + ], + "class": [ + 26, + 37, + 100, + 113, + 138, + 149, + 175 + ], + "imbalance": [ + 27, + 101, + 114 + ], + "in": [ + 28, + 31, + 42, + 52, + 103, + 140, + 170, + 182, + 209, + 301, + 315 + ], + "which": [ + 29, + 49 + ], + "examples": [ + 30, + 41, + 139 + ], + "training": [ + 32 + ], + "data": [ + 33, + 55, + 106, + 167, + 229 + ], + "belonging": [ + 34 + ], + "heavily": [ + 38 + ], + "outnumber": [ + 39 + ], + "other": [ + 44, + 144 + ], + "class.": [ + 45, + 76 + ], + "In": [ + 46, + 77, + 124 + ], + "this": [ + 47, + 78 + ], + "situation,": [ + 48 + ], + "found": [ + 51 + ], + "real": [ + 53 + ], + "world": [ + 54 + ], + "describing": [ + 56 + ], + "an": [ + 57 + ], + "infrequent": [ + 58 + ], + "but": [ + 59 + ], + "important": [ + 60 + ], + "event,": [ + 61 + ], + "system": [ + 64 + ], + "may": [ + 65 + ], + "have": [ + 66 + ], + "difficulties": [ + 67 + ], + "learn": [ + 69 + ], + "concept": [ + 71 + ], + "minority": [ + 75, + 137 + ], + "work": [ + 79 + ], + "we": [ + 80, + 263 + ], + "perform": [ + 81 + ], + "a": [ + 82, + 162, + 232, + 241 + ], + "broad": [ + 83 + ], + "experimental": [ + 84 + ], + "evaluation": [ + 85 + ], + "involving": [ + 86 + ], + "ten": [ + 87 + ], + "methods,": [ + 88, + 216 + ], + "three": [ + 89 + ], + "them": [ + 91 + ], + "proposed": [ + 92, + 154, + 215 + ], + "authors,": [ + 95 + ], + "deal": [ + 97, + 156 + ], + "with": [ + 98, + 134, + 157, + 166, + 231 + ], + "problem": [ + 102, + 127 + ], + "thirteen": [ + 104 + ], + "UCI": [ + 105 + ], + "sets.": [ + 107 + ], + "Our": [ + 108, + 177, + 277 + ], + "experiments": [ + 109, + 179 + ], + "provide": [ + 110, + 186 + ], + "evidence": [ + 111 + ], + "does": [ + 115 + ], + "not": [ + 116 + ], + "systematically": [ + 117 + ], + "hinder": [ + 118 + ], + "fact,": [ + 125 + ], + "seems": [ + 128, + 203 + ], + "be": [ + 130 + ], + "too": [ + 135 + ], + "few": [ + 136 + ], + "presence": [ + 142 + ], + "complicating": [ + 145 + ], + "factors,": [ + 146 + ], + "such": [ + 147 + ], + "as": [ + 148 + ], + "overlapping.": [ + 150 + ], + "Two": [ + 151, + 212 + ], + "our": [ + 153, + 214 + ], + "methods": [ + 155, + 169, + 185, + 192, + 257 + ], + "conditions": [ + 159, + 320 + ], + "directly,": [ + 160 + ], + "allying": [ + 161 + ], + "known": [ + 163 + ], + "over-sampling": [ + 164, + 184, + 244, + 252, + 256, + 295, + 328 + ], + "method": [ + 165 + ], + "cleaning": [ + 168 + ], + "order": [ + 171 + ], + "produce": [ + 173 + ], + "better-defined": [ + 174 + ], + "clusters.": [ + 176 + ], + "comparative": [ + 178 + ], + "show": [ + 180, + 279 + ], + "that,": [ + 181 + ], + "general,": [ + 183 + ], + "more": [ + 187, + 250, + 285 + ], + "accurate": [ + 188 + ], + "results": [ + 189, + 206, + 227, + 278 + ], + "than": [ + 190 + ], + "under-sampling": [ + 191 + ], + "considering": [ + 193 + ], + "area": [ + 195 + ], + "under": [ + 196 + ], + "ROC": [ + 198 + ], + "curve": [ + 199 + ], + "(AUC).": [ + 200 + ], + "This": [ + 201 + ], + "result": [ + 202 + ], + "contradict": [ + 205 + ], + "previously": [ + 207 + ], + "published": [ + 208 + ], + "literature.": [ + 211 + ], + "Smote": [ + 217, + 221, + 309 + ], + "+": [ + 218, + 222, + 310 + ], + "Tomek": [ + 219 + ], + "and": [ + 220, + 308 + ], + "ENN,": [ + 223 + ], + "presented": [ + 224 + ], + "very": [ + 225, + 242, + 247, + 259 + ], + "good": [ + 226, + 260 + ], + "for": [ + 228 + ], + "sets": [ + 230 + ], + "small": [ + 233 + ], + "number": [ + 234, + 304, + 318 + ], + "positive": [ + 236 + ], + "examples.": [ + 237 + ], + "Moreover,": [ + 238 + ], + "Random": [ + 239, + 294 + ], + "over-sampling,": [ + 240 + ], + "simple": [ + 243 + ], + "method,": [ + 245 + ], + "competitive": [ + 248 + ], + "complex": [ + 251, + 286 + ], + "methods.": [ + 253, + 329 + ], + "Since": [ + 254 + ], + "provided": [ + 258 + ], + "results,": [ + 262 + ], + "also": [ + 264 + ], + "measured": [ + 265 + ], + "syntactic": [ + 267 + ], + "complexity": [ + 268 + ], + "decision": [ + 271 + ], + "trees": [ + 272, + 282 + ], + "induced": [ + 273, + 290, + 306 + ], + "from": [ + 274, + 291 + ], + "over-sampled": [ + 275 + ], + "data.": [ + 276, + 293 + ], + "usually": [ + 284, + 296 + ], + "then": [ + 287 + ], + "ones": [ + 289 + ], + "original": [ + 292 + ], + "produced": [ + 297 + ], + "smallest": [ + 299, + 313 + ], + "increase": [ + 300, + 314 + ], + "mean": [ + 303, + 317 + ], + "rules": [ + 307 + ], + "ENN": [ + 311 + ], + "per": [ + 321 + ], + "rule,": [ + 322 + ], + "when": [ + 323 + ], + "compared": [ + 324 + ], + "among": [ + 325 + ], + "investigated": [ + 327 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 138 + }, + { + "year": 2025, + "cited_by_count": 463 + }, + { + "year": 2024, + "cited_by_count": 437 + }, + { + "year": 2023, + "cited_by_count": 422 + }, + { + "year": 2022, + "cited_by_count": 418 + }, + { + "year": 2021, + "cited_by_count": 366 + }, + { + "year": 2020, + "cited_by_count": 372 + }, + { + "year": 2019, + "cited_by_count": 282 + }, + { + "year": 2018, + "cited_by_count": 198 + }, + { + "year": 2017, + "cited_by_count": 148 + }, + { + "year": 2016, + "cited_by_count": 128 + }, + { + "year": 2015, + "cited_by_count": 102 + }, + { + "year": 2014, + "cited_by_count": 100 + }, + { + "year": 2013, + "cited_by_count": 103 + }, + { + "year": 2012, + "cited_by_count": 86 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2767079719", + "doi": "https://doi.org/10.1145/3133956.3133982", + "title": "Practical Secure Aggregation for Privacy-Preserving Machine Learning", + "display_name": "Practical Secure Aggregation for Privacy-Preserving Machine Learning", + "relevance_score": 3137.6895, + "publication_year": 2017, + "publication_date": "2017-10-27", + "ids": { + "openalex": "https://openalex.org/W2767079719", + "doi": "https://doi.org/10.1145/3133956.3133982", + "mag": "2767079719" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3133956.3133982", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3133956.3133982", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5011571548", + "display_name": "Keith Bonawitz", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Keith Bonawitz", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5090386348", + "display_name": "Vladimir Ivanov", + "orcid": "https://orcid.org/0000-0002-2272-3504" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vladimir Ivanov", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5048810237", + "display_name": "Ben Kreuter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ben Kreuter", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5042948297", + "display_name": "Antonio Marcedone", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + }, + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Antonio Marcedone", + "raw_affiliation_strings": [ + "Cornell Tech & Google Inc., New York, NY, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Cornell Tech & Google Inc., New York, NY, USA", + "institution_ids": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5040311844", + "display_name": "H. Brendan McMahan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "H. Brendan McMahan", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5112503421", + "display_name": "Sarvar Patel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Sarvar Patel", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5071710055", + "display_name": "Daniel Ramage", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Daniel Ramage", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5103065610", + "display_name": "Aaron Segal", + "orcid": "https://orcid.org/0009-0009-4015-2248" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Aaron Segal", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5030536555", + "display_name": "Karn Seth", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karn Seth", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 9, + "corresponding_author_ids": [ + "https://openalex.org/A5011571548" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1291425158" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 115.557, + "has_fulltext": false, + "cited_by_count": 3395, + "citation_normalized_percentile": { + "value": 0.99961175, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "1175", + "last_page": "1191" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8472366333007812 + }, + { + "id": "https://openalex.org/keywords/overhead", + "display_name": "Overhead (engineering)", + "score": 0.7010411024093628 + }, + { + "id": "https://openalex.org/keywords/protocol", + "display_name": "Protocol (science)", + "score": 0.6327217221260071 + }, + { + "id": "https://openalex.org/keywords/universal-composability", + "display_name": "Universal composability", + "score": 0.5701457858085632 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.5431879758834839 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.5169126987457275 + }, + { + "id": "https://openalex.org/keywords/aggregate", + "display_name": "Aggregate (composite)", + "score": 0.5009667873382568 + }, + { + "id": "https://openalex.org/keywords/cryptographic-protocol", + "display_name": "Cryptographic protocol", + "score": 0.39526641368865967 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.3952005207538605 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.33491313457489014 + }, + { + "id": "https://openalex.org/keywords/cryptography", + "display_name": "Cryptography", + "score": 0.27258676290512085 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.24293646216392517 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.08857136964797974 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8472366333007812 + }, + { + "id": "https://openalex.org/C2779960059", + "wikidata": "https://www.wikidata.org/wiki/Q7113681", + "display_name": "Overhead (engineering)", + "level": 2, + "score": 0.7010411024093628 + }, + { + "id": "https://openalex.org/C2780385302", + "wikidata": "https://www.wikidata.org/wiki/Q367158", + "display_name": "Protocol (science)", + "level": 3, + "score": 0.6327217221260071 + }, + { + "id": "https://openalex.org/C165751822", + "wikidata": "https://www.wikidata.org/wiki/Q7894118", + "display_name": "Universal composability", + "level": 4, + "score": 0.5701457858085632 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.5431879758834839 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.5169126987457275 + }, + { + "id": "https://openalex.org/C4679612", + "wikidata": "https://www.wikidata.org/wiki/Q866298", + "display_name": "Aggregate (composite)", + "level": 2, + "score": 0.5009667873382568 + }, + { + "id": "https://openalex.org/C33884865", + "wikidata": "https://www.wikidata.org/wiki/Q1254335", + "display_name": "Cryptographic protocol", + "level": 3, + "score": 0.39526641368865967 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.3952005207538605 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.33491313457489014 + }, + { + "id": "https://openalex.org/C178489894", + "wikidata": "https://www.wikidata.org/wiki/Q8789", + "display_name": "Cryptography", + "level": 2, + "score": 0.27258676290512085 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.24293646216392517 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.08857136964797974 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C204787440", + "wikidata": "https://www.wikidata.org/wiki/Q188504", + "display_name": "Alternative medicine", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3133956.3133982", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3133956.3133982", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.49000000953674316 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 56, + "referenced_works": [ + "https://openalex.org/W25045116", + "https://openalex.org/W95608104", + "https://openalex.org/W1071368427", + "https://openalex.org/W1493407996", + "https://openalex.org/W1519947574", + "https://openalex.org/W1557833142", + "https://openalex.org/W1595357546", + "https://openalex.org/W1656028867", + "https://openalex.org/W1836711297", + "https://openalex.org/W1952161176", + "https://openalex.org/W1952958290", + "https://openalex.org/W1981029888", + "https://openalex.org/W2006453614", + "https://openalex.org/W2027471022", + "https://openalex.org/W2027595342", + "https://openalex.org/W2033974828", + "https://openalex.org/W2051267297", + "https://openalex.org/W2053637704", + "https://openalex.org/W2053801139", + "https://openalex.org/W2058648304", + "https://openalex.org/W2061106457", + "https://openalex.org/W2069657084", + "https://openalex.org/W2087811006", + "https://openalex.org/W2104803737", + "https://openalex.org/W2128865076", + "https://openalex.org/W2135930857", + "https://openalex.org/W2141420453", + "https://openalex.org/W2146673169", + "https://openalex.org/W2149093588", + "https://openalex.org/W2152768255", + "https://openalex.org/W2156186849", + "https://openalex.org/W2163481970", + "https://openalex.org/W2164284862", + "https://openalex.org/W2200869402", + "https://openalex.org/W2232997092", + "https://openalex.org/W2267098117", + "https://openalex.org/W2295522738", + "https://openalex.org/W2336650964", + "https://openalex.org/W2400777838", + "https://openalex.org/W2402235285", + "https://openalex.org/W2413533038", + "https://openalex.org/W2473418344", + "https://openalex.org/W2525846285", + "https://openalex.org/W2535690855", + "https://openalex.org/W2536058570", + "https://openalex.org/W2538520193", + "https://openalex.org/W2541884796", + "https://openalex.org/W2557283755", + "https://openalex.org/W2568821124", + "https://openalex.org/W2599930814", + "https://openalex.org/W2911978475", + "https://openalex.org/W2951114885", + "https://openalex.org/W3031847131", + "https://openalex.org/W3102407811", + "https://openalex.org/W3141405531", + "https://openalex.org/W3150645827" + ], + "related_works": [ + "https://openalex.org/W1554274402", + "https://openalex.org/W2029851387", + "https://openalex.org/W4255046035", + "https://openalex.org/W2114477748", + "https://openalex.org/W37362883", + "https://openalex.org/W1554289623", + "https://openalex.org/W2384294878", + "https://openalex.org/W2989724018", + "https://openalex.org/W4315630650", + "https://openalex.org/W2115382662" + ], + "abstract_inverted_index": { + "We": [ + 0, + 62, + 95 + ], + "design": [ + 1 + ], + "a": [ + 2, + 16, + 31, + 48, + 58, + 108 + ], + "novel,": [ + 3 + ], + "communication-efficient,": [ + 4 + ], + "failure-robust": [ + 5 + ], + "protocol": [ + 6, + 14, + 68, + 101, + 132 + ], + "for": [ + 7, + 45, + 57, + 138, + 148 + ], + "secure": [ + 8, + 32 + ], + "aggregation": [ + 9 + ], + "of": [ + 10, + 22, + 66, + 88, + 99 + ], + "high-dimensional": [ + 11 + ], + "data.": [ + 12 + ], + "Our": [ + 13 + ], + "allows": [ + 15 + ], + "server": [ + 17 + ], + "to": [ + 18, + 52 + ], + "compute": [ + 19 + ], + "the": [ + 20, + 64, + 70, + 97, + 158 + ], + "sum": [ + 21 + ], + "large,": [ + 23 + ], + "user-held": [ + 24 + ], + "data": [ + 25, + 122, + 156 + ], + "vectors": [ + 26, + 153 + ], + "from": [ + 27 + ], + "mobile": [ + 28 + ], + "devices": [ + 29 + ], + "in": [ + 30, + 47, + 69, + 157 + ], + "manner": [ + 33 + ], + "(i.e.": [ + 34 + ], + "without": [ + 35 + ], + "learning": [ + 36, + 50 + ], + "each": [ + 37 + ], + "user's": [ + 38 + ], + "individual": [ + 39 + ], + "contribution),": [ + 40 + ], + "and": [ + 41, + 72, + 76, + 102, + 107, + 114, + 124, + 141, + 144, + 151 + ], + "can": [ + 42 + ], + "be": [ + 43 + ], + "used,": [ + 44 + ], + "example,": [ + 46 + ], + "federated": [ + 49 + ], + "setting,": [ + 51 + ], + "aggregate": [ + 53 + ], + "user-provided": [ + 54 + ], + "model": [ + 55 + ], + "updates": [ + 56 + ], + "deep": [ + 59 + ], + "neural": [ + 60 + ], + "network.": [ + 61 + ], + "prove": [ + 63 + ], + "security": [ + 65, + 79 + ], + "our": [ + 67, + 100, + 131 + ], + "honest-but-curious": [ + 71 + ], + "active": [ + 73 + ], + "adversary": [ + 74 + ], + "settings,": [ + 75 + ], + "show": [ + 77 + ], + "that": [ + 78, + 111 + ], + "is": [ + 80 + ], + "maintained": [ + 81 + ], + "even": [ + 82, + 119 + ], + "if": [ + 83 + ], + "an": [ + 84 + ], + "arbitrarily": [ + 85 + ], + "chosen": [ + 86 + ], + "subset": [ + 87 + ], + "users": [ + 89, + 140, + 150 + ], + "drop": [ + 90 + ], + "out": [ + 91 + ], + "at": [ + 92 + ], + "any": [ + 93 + ], + "time.": [ + 94 + ], + "evaluate": [ + 96 + ], + "efficiency": [ + 98 + ], + "show,": [ + 103 + ], + "by": [ + 104 + ], + "complexity": [ + 105 + ], + "analysis": [ + 106 + ], + "concrete": [ + 109 + ], + "implementation,": [ + 110 + ], + "its": [ + 112 + ], + "runtime": [ + 113 + ], + "communication": [ + 115, + 136 + ], + "overhead": [ + 116 + ], + "remain": [ + 117 + ], + "low": [ + 118 + ], + "on": [ + 120 + ], + "large": [ + 121 + ], + "sets": [ + 123 + ], + "client": [ + 125 + ], + "pools.": [ + 126 + ], + "For": [ + 127 + ], + "16-bit": [ + 128 + ], + "input": [ + 129 + ], + "values,": [ + 130 + ], + "offers": [ + 133 + ], + "$1.73": [ + 134 + ], + "x": [ + 135, + 146 + ], + "expansion": [ + 137, + 147 + ], + "210": [ + 139 + ], + "220-dimensional": [ + 142 + ], + "vectors,": [ + 143 + ], + "1.98": [ + 145 + ], + "214": [ + 149 + ], + "224-dimensional": [ + 152 + ], + "over": [ + 154 + ], + "sending": [ + 155 + ], + "clear.": [ + 159 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 198 + }, + { + "year": 2025, + "cited_by_count": 652 + }, + { + "year": 2024, + "cited_by_count": 595 + }, + { + "year": 2023, + "cited_by_count": 547 + }, + { + "year": 2022, + "cited_by_count": 392 + }, + { + "year": 2021, + "cited_by_count": 456 + }, + { + "year": 2020, + "cited_by_count": 335 + }, + { + "year": 2019, + "cited_by_count": 166 + }, + { + "year": 2018, + "cited_by_count": 46 + }, + { + "year": 2017, + "cited_by_count": 8 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3122548859", + "doi": "https://doi.org/10.1177/2053951715622512", + "title": "How the machine ‘thinks’: Understanding opacity in machine learning algorithms", + "display_name": "How the machine ‘thinks’: Understanding opacity in machine learning algorithms", + "relevance_score": 3136.3552, + "publication_year": 2016, + "publication_date": "2016-01-06", + "ids": { + "openalex": "https://openalex.org/W3122548859", + "doi": "https://doi.org/10.1177/2053951715622512", + "mag": "3122548859" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5060940190", + "display_name": "Jenna Burrell", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Jenna Burrell", + "raw_affiliation_strings": [ + "School of Information, UC-Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Information, UC-Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5060940190" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486" + ], + "apc_list": { + "value": 800, + "currency": "USD", + "value_usd": 800 + }, + "apc_paid": { + "value": 800, + "currency": "USD", + "value_usd": 800 + }, + "fwci": 172.356, + "has_fulltext": false, + "cited_by_count": 2445, + "citation_normalized_percentile": { + "value": 0.9999191, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10883", + "display_name": "Ethics and Social Impacts of AI", + "score": 0.9934999942779541, + "subfield": { + "id": "https://openalex.org/subfields/3311", + "display_name": "Safety Research" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10883", + "display_name": "Ethics and Social Impacts of AI", + "score": 0.9934999942779541, + "subfield": { + "id": "https://openalex.org/subfields/3311", + "display_name": "Safety Research" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T12519", + "display_name": "Cybercrime and Law Enforcement Studies", + "score": 0.9776999950408936, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11838", + "display_name": "Crime, Illicit Activities, and Governance", + "score": 0.9753000140190125, + "subfield": { + "id": "https://openalex.org/subfields/3312", + "display_name": "Sociology and Political Science" + }, + "field": { + "id": "https://openalex.org/fields/33", + "display_name": "Social Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7680913209915161 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7178860902786255 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6108432412147522 + }, + { + "id": "https://openalex.org/keywords/credit-card-fraud", + "display_name": "Credit card fraud", + "score": 0.5365657210350037 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.529035747051239 + }, + { + "id": "https://openalex.org/keywords/audit", + "display_name": "Audit", + "score": 0.4749186933040619 + }, + { + "id": "https://openalex.org/keywords/opacity", + "display_name": "Opacity", + "score": 0.4564440846443176 + }, + { + "id": "https://openalex.org/keywords/credit-card", + "display_name": "Credit card", + "score": 0.24632757902145386 + }, + { + "id": "https://openalex.org/keywords/economics", + "display_name": "Economics", + "score": 0.14912906289100647 + }, + { + "id": "https://openalex.org/keywords/world-wide-web", + "display_name": "World Wide Web", + "score": 0.1430377960205078 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7680913209915161 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7178860902786255 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6108432412147522 + }, + { + "id": "https://openalex.org/C2780747020", + "wikidata": "https://www.wikidata.org/wiki/Q83873", + "display_name": "Credit card fraud", + "level": 4, + "score": 0.5365657210350037 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.529035747051239 + }, + { + "id": "https://openalex.org/C199521495", + "wikidata": "https://www.wikidata.org/wiki/Q181487", + "display_name": "Audit", + "level": 2, + "score": 0.4749186933040619 + }, + { + "id": "https://openalex.org/C60056205", + "wikidata": "https://www.wikidata.org/wiki/Q691914", + "display_name": "Opacity", + "level": 2, + "score": 0.4564440846443176 + }, + { + "id": "https://openalex.org/C2983355114", + "wikidata": "https://www.wikidata.org/wiki/Q161380", + "display_name": "Credit card", + "level": 3, + "score": 0.24632757902145386 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.14912906289100647 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.1430377960205078 + }, + { + "id": "https://openalex.org/C187736073", + "wikidata": "https://www.wikidata.org/wiki/Q2920921", + "display_name": "Management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C145097563", + "wikidata": "https://www.wikidata.org/wiki/Q1148747", + "display_name": "Payment", + "level": 2, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:e24df3681a27440f95339729c7a4e28c", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/e24df3681a27440f95339729c7a4e28c", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Big Data & Society, Vol 3 (2016)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1177/2053951715622512", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1177/2053951715622512", + "pdf_url": "https://journals.sagepub.com/doi/pdf/10.1177/2053951715622512", + "source": { + "id": "https://openalex.org/S2736409588", + "display_name": "Big Data & Society", + "issn_l": "2053-9517", + "issn": [ + "2053-9517" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Big Data & Society", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.4399999976158142 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W3122548859.pdf" + }, + "referenced_works_count": 31, + "referenced_works": [ + "https://openalex.org/W202799293", + "https://openalex.org/W606820417", + "https://openalex.org/W1540016313", + "https://openalex.org/W1648303880", + "https://openalex.org/W1990060255", + "https://openalex.org/W2021362544", + "https://openalex.org/W2048315072", + "https://openalex.org/W2065240211", + "https://openalex.org/W2066384602", + "https://openalex.org/W2074057591", + "https://openalex.org/W2078620351", + "https://openalex.org/W2100960835", + "https://openalex.org/W2158604749", + "https://openalex.org/W2161336914", + "https://openalex.org/W2163284576", + "https://openalex.org/W2186089794", + "https://openalex.org/W2339183141", + "https://openalex.org/W2556704061", + "https://openalex.org/W2566747599", + "https://openalex.org/W2735886174", + "https://openalex.org/W2799929805", + "https://openalex.org/W2951240445", + "https://openalex.org/W3123374861", + "https://openalex.org/W3157172840", + "https://openalex.org/W4233093336", + "https://openalex.org/W4233551533", + "https://openalex.org/W4238428424", + "https://openalex.org/W4239941956", + "https://openalex.org/W4242887383", + "https://openalex.org/W4244021162", + "https://openalex.org/W4285719527" + ], + "related_works": [ + "https://openalex.org/W2161791806", + "https://openalex.org/W4366824690", + "https://openalex.org/W2613656770", + "https://openalex.org/W2482431380", + "https://openalex.org/W2073474947", + "https://openalex.org/W2082077321", + "https://openalex.org/W2053059436", + "https://openalex.org/W4313201885", + "https://openalex.org/W2401696997", + "https://openalex.org/W4243546976" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "article": [ + 1, + 113 + ], + "considers": [ + 2 + ], + "the": [ + 3, + 95, + 102, + 116, + 153 + ], + "issue": [ + 4 + ], + "of": [ + 5, + 14, + 43, + 73, + 97, + 140, + 145, + 156, + 174, + 177 + ], + "opacity": [ + 6, + 76, + 84, + 91, + 157 + ], + "as": [ + 7, + 19, + 77, + 85, + 142 + ], + "a": [ + 8, + 68, + 143, + 165, + 169, + 175 + ], + "problem": [ + 9 + ], + "for": [ + 10 + ], + "socially": [ + 11 + ], + "consequential": [ + 12 + ], + "mechanisms": [ + 13, + 42 + ], + "classification": [ + 15, + 44 + ], + "and": [ + 16, + 32, + 38, + 51, + 88, + 101, + 134, + 138, + 179 + ], + "ranking,": [ + 17 + ], + "such": [ + 18 + ], + "spam": [ + 20 + ], + "filters,": [ + 21 + ], + "credit": [ + 22, + 39 + ], + "card": [ + 23 + ], + "fraud": [ + 24 + ], + "detection,": [ + 25 + ], + "search": [ + 26 + ], + "engines,": [ + 27 + ], + "news": [ + 28 + ], + "trends,": [ + 29 + ], + "market": [ + 30 + ], + "segmentation": [ + 31 + ], + "advertising,": [ + 33 + ], + "insurance": [ + 34 + ], + "or": [ + 35, + 80 + ], + "loan": [ + 36 + ], + "qualification,": [ + 37 + ], + "scoring.": [ + 40 + ], + "These": [ + 41 + ], + "all": [ + 45 + ], + "frequently": [ + 46 + ], + "rely": [ + 47 + ], + "on": [ + 48, + 55 + ], + "computational": [ + 49 + ], + "algorithms,": [ + 50 + ], + "in": [ + 52, + 111, + 123, + 164 + ], + "many": [ + 53 + ], + "cases": [ + 54 + ], + "machine": [ + 56, + 98 + ], + "learning": [ + 57, + 99 + ], + "algorithms": [ + 58, + 100, + 117 + ], + "to": [ + 59, + 105, + 171, + 184 + ], + "do": [ + 60, + 135 + ], + "this": [ + 61, + 64, + 112 + ], + "work.": [ + 62 + ], + "In": [ + 63 + ], + "article,": [ + 65 + ], + "I": [ + 66, + 119, + 149 + ], + "draw": [ + 67 + ], + "distinction": [ + 69 + ], + "between": [ + 70 + ], + "three": [ + 71 + ], + "forms": [ + 72, + 155 + ], + "opacity:": [ + 74 + ], + "(1)": [ + 75 + ], + "intentional": [ + 78 + ], + "corporate": [ + 79 + ], + "state": [ + 81 + ], + "secrecy,": [ + 82 + ], + "(2)": [ + 83 + ], + "technical": [ + 86, + 178 + ], + "illiteracy,": [ + 87 + ], + "(3)": [ + 89 + ], + "an": [ + 90 + ], + "that": [ + 92, + 151, + 158 + ], + "arises": [ + 93 + ], + "from": [ + 94 + ], + "characteristics": [ + 96 + ], + "scale": [ + 103 + ], + "required": [ + 104 + ], + "apply": [ + 106 + ], + "them": [ + 107 + ], + "usefully.": [ + 108 + ], + "The": [ + 109 + ], + "analysis": [ + 110 + ], + "gets": [ + 114 + ], + "inside": [ + 115 + ], + "themselves.": [ + 118 + ], + "cite": [ + 120 + ], + "existing": [ + 121 + ], + "literatures": [ + 122 + ], + "computer": [ + 124 + ], + "science,": [ + 125 + ], + "known": [ + 126 + ], + "industry": [ + 127 + ], + "practices": [ + 128 + ], + "(as": [ + 129 + ], + "they": [ + 130 + ], + "are": [ + 131 + ], + "publicly": [ + 132 + ], + "presented),": [ + 133 + ], + "some": [ + 136 + ], + "testing": [ + 137 + ], + "manipulation": [ + 139 + ], + "code": [ + 141, + 147 + ], + "form": [ + 144 + ], + "lightweight": [ + 146 + ], + "audit.": [ + 148 + ], + "argue": [ + 150 + ], + "recognizing": [ + 152 + ], + "distinct": [ + 154 + ], + "may": [ + 159 + ], + "be": [ + 160 + ], + "coming": [ + 161 + ], + "into": [ + 162 + ], + "play": [ + 163 + ], + "given": [ + 166 + ], + "application": [ + 167 + ], + "is": [ + 168 + ], + "key": [ + 170 + ], + "determining": [ + 172 + ], + "which": [ + 173 + ], + "variety": [ + 176 + ], + "non-technical": [ + 180 + ], + "solutions": [ + 181 + ], + "could": [ + 182 + ], + "help": [ + 183 + ], + "prevent": [ + 185 + ], + "harm.": [ + 186 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 262 + }, + { + "year": 2025, + "cited_by_count": 414 + }, + { + "year": 2024, + "cited_by_count": 392 + }, + { + "year": 2023, + "cited_by_count": 320 + }, + { + "year": 2022, + "cited_by_count": 266 + }, + { + "year": 2021, + "cited_by_count": 272 + }, + { + "year": 2020, + "cited_by_count": 216 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 91 + }, + { + "year": 2017, + "cited_by_count": 61 + }, + { + "year": 2016, + "cited_by_count": 14 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2610886376", + "doi": "https://doi.org/10.1257/jep.31.2.87", + "title": "Machine Learning: An Applied Econometric Approach", + "display_name": "Machine Learning: An Applied Econometric Approach", + "relevance_score": 3079.0986, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2610886376", + "doi": "https://doi.org/10.1257/jep.31.2.87", + "mag": "2610886376" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5034703281", + "display_name": "Sendhil Mullainathan", + "orcid": "https://orcid.org/0000-0001-8508-4052" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Sendhil Mullainathan", + "raw_affiliation_strings": [ + "Sendhil Mullainathan is the Robert C. Waggoner Professor of Economics, Harvard University, Cambridge, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Sendhil Mullainathan is the Robert C. Waggoner Professor of Economics, Harvard University, Cambridge, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5061755779", + "display_name": "Jann Spiess", + "orcid": "https://orcid.org/0000-0002-4120-8241" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801851002", + "display_name": "Harvard University Press", + "ror": "https://ror.org/006v7bf86", + "country_code": "US", + "type": "other", + "lineage": [ + "https://openalex.org/I136199984", + "https://openalex.org/I2801851002" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jann Spiess", + "raw_affiliation_strings": [ + "Jann Spiess is a PhD candidate in Economics, Harvard University, Cambridge, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Jann Spiess is a PhD candidate in Economics, Harvard University, Cambridge, Massachusetts", + "institution_ids": [ + "https://openalex.org/I2801851002" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5034703281" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 86.1138, + "has_fulltext": false, + "cited_by_count": 1863, + "citation_normalized_percentile": { + "value": 0.99985157, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "31", + "issue": "2", + "first_page": "87", + "last_page": "106" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11963", + "display_name": "Impact of Light on Environment and Health", + "score": 0.9472000002861023, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11963", + "display_name": "Impact of Light on Environment and Health", + "score": 0.9472000002861023, + "subfield": { + "id": "https://openalex.org/subfields/2306", + "display_name": "Global and Planetary Change" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11918", + "display_name": "Forecasting Techniques and Applications", + "score": 0.9279999732971191, + "subfield": { + "id": "https://openalex.org/subfields/1803", + "display_name": "Management Science and Operations Research" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T12617", + "display_name": "Energy, Environment, and Transportation Policies", + "score": 0.9222000241279602, + "subfield": { + "id": "https://openalex.org/subfields/2105", + "display_name": "Renewable Energy, Sustainability and the Environment" + }, + "field": { + "id": "https://openalex.org/fields/21", + "display_name": "Energy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.8121298551559448 + }, + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8074401617050171 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7986088991165161 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7388002872467041 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7208589911460876 + }, + { + "id": "https://openalex.org/keywords/face", + "display_name": "Face (sociological concept)", + "score": 0.47808337211608887 + }, + { + "id": "https://openalex.org/keywords/empirical-research", + "display_name": "Empirical research", + "score": 0.46658068895339966 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.11046332120895386 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.8121298551559448 + }, + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8074401617050171 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7986088991165161 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7388002872467041 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7208589911460876 + }, + { + "id": "https://openalex.org/C2779304628", + "wikidata": "https://www.wikidata.org/wiki/Q3503480", + "display_name": "Face (sociological concept)", + "level": 2, + "score": 0.47808337211608887 + }, + { + "id": "https://openalex.org/C120936955", + "wikidata": "https://www.wikidata.org/wiki/Q2155640", + "display_name": "Empirical research", + "level": 2, + "score": 0.46658068895339966 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.11046332120895386 + }, + { + "id": "https://openalex.org/C36289849", + "wikidata": "https://www.wikidata.org/wiki/Q34749", + "display_name": "Social science", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C144024400", + "wikidata": "https://www.wikidata.org/wiki/Q21201", + "display_name": "Sociology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:RePEc:aea:jecper:v:31:y:2017:i:2:p:87-106", + "is_oa": false, + "landing_page_url": "https://www.aeaweb.org/articles?id=10.1257/jep.31.2.87", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1257/jep.31.2.87", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1257/jep.31.2.87", + "pdf_url": "https://www.aeaweb.org/articles/pdf/doi/10.1257/jep.31.2.87", + "source": { + "id": "https://openalex.org/S72880728", + "display_name": "The Journal of Economic Perspectives", + "issn_l": "0895-3309", + "issn": [ + "0895-3309", + "1944-7965" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315912", + "host_organization_name": "American Economic Association", + "host_organization_lineage": [ + "https://openalex.org/P4310315912" + ], + "host_organization_lineage_names": [ + "American Economic Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of Economic Perspectives", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Decent work and economic growth", + "id": "https://metadata.un.org/sdg/8", + "score": 0.5699999928474426 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 36, + "referenced_works": [ + "https://openalex.org/W1964565322", + "https://openalex.org/W1982471084", + "https://openalex.org/W1982991166", + "https://openalex.org/W1995466835", + "https://openalex.org/W1999822211", + "https://openalex.org/W2012218966", + "https://openalex.org/W2021314860", + "https://openalex.org/W2023336635", + "https://openalex.org/W2080896439", + "https://openalex.org/W2081993622", + "https://openalex.org/W2086426685", + "https://openalex.org/W2105224904", + "https://openalex.org/W2120846249", + "https://openalex.org/W2124142297", + "https://openalex.org/W2133367005", + "https://openalex.org/W2133757074", + "https://openalex.org/W2138545569", + "https://openalex.org/W2150940164", + "https://openalex.org/W2155419203", + "https://openalex.org/W2163162137", + "https://openalex.org/W2165144879", + "https://openalex.org/W2173315138", + "https://openalex.org/W2203167467", + "https://openalex.org/W2305754340", + "https://openalex.org/W2371804352", + "https://openalex.org/W2513506629", + "https://openalex.org/W2513604209", + "https://openalex.org/W2528504543", + "https://openalex.org/W2546040478", + "https://openalex.org/W3102065143", + "https://openalex.org/W3121263799", + "https://openalex.org/W3123123374", + "https://openalex.org/W3125633690", + "https://openalex.org/W3125786740", + "https://openalex.org/W3126053622", + "https://openalex.org/W4238040836" + ], + "related_works": [ + "https://openalex.org/W4205140848", + "https://openalex.org/W2068663075", + "https://openalex.org/W2978678743", + "https://openalex.org/W2797837731", + "https://openalex.org/W4393677513", + "https://openalex.org/W4390832911", + "https://openalex.org/W829257147", + "https://openalex.org/W4385302116", + "https://openalex.org/W2549786917", + "https://openalex.org/W3204758414" + ], + "abstract_inverted_index": { + "Machines": [ + 0 + ], + "are": [ + 1, + 123, + 146 + ], + "increasingly": [ + 2 + ], + "doing": [ + 3 + ], + "“intelligent”": [ + 4 + ], + "things.": [ + 5 + ], + "Face": [ + 6 + ], + "recognition": [ + 7 + ], + "algorithms": [ + 8, + 122, + 145, + 171 + ], + "use": [ + 9, + 60, + 162 + ], + "a": [ + 10, + 18, + 24, + 32, + 64, + 90, + 165 + ], + "large": [ + 11 + ], + "dataset": [ + 12 + ], + "of": [ + 13, + 31, + 66, + 100, + 168 + ], + "photos": [ + 14 + ], + "labeled": [ + 15 + ], + "as": [ + 16 + ], + "having": [ + 17 + ], + "face": [ + 19, + 33 + ], + "or": [ + 20, + 136, + 149 + ], + "not": [ + 21, + 83 + ], + "to": [ + 22, + 39, + 114, + 127, + 156, + 161 + ], + "estimate": [ + 23 + ], + "function": [ + 25 + ], + "that": [ + 26, + 71, + 143 + ], + "predicts": [ + 27 + ], + "the": [ + 28, + 78, + 98, + 141, + 144 + ], + "presence": [ + 29 + ], + "y": [ + 30 + ], + "from": [ + 34 + ], + "pixels": [ + 35 + ], + "x.": [ + 36 + ], + "This": [ + 37, + 138 + ], + "similarity": [ + 38 + ], + "econometrics": [ + 40 + ], + "raises": [ + 41, + 140 + ], + "questions:": [ + 42 + ], + "How": [ + 43 + ], + "do": [ + 44 + ], + "these": [ + 45, + 170 + ], + "new": [ + 46, + 86 + ], + "empirical": [ + 47, + 55 + ], + "tools": [ + 48 + ], + "fit": [ + 49 + ], + "with": [ + 50 + ], + "what": [ + 51 + ], + "we": [ + 52, + 59 + ], + "know?": [ + 53 + ], + "As": [ + 54 + ], + "economists,": [ + 56 + ], + "how": [ + 57, + 169 + ], + "can": [ + 58, + 130, + 179, + 184 + ], + "them?": [ + 61 + ], + "We": [ + 62, + 154 + ], + "present": [ + 63 + ], + "way": [ + 65 + ], + "thinking": [ + 67 + ], + "about": [ + 68 + ], + "machine": [ + 69, + 94, + 112 + ], + "learning": [ + 70, + 82, + 95, + 113, + 121 + ], + "gives": [ + 72 + ], + "it": [ + 73, + 88 + ], + "its": [ + 74 + ], + "own": [ + 75 + ], + "place": [ + 76 + ], + "in": [ + 77, + 134 + ], + "econometric": [ + 79 + ], + "toolbox.": [ + 80 + ], + "Machine": [ + 81, + 120 + ], + "only": [ + 84 + ], + "provides": [ + 85 + ], + "tools,": [ + 87 + ], + "solves": [ + 89 + ], + "different": [ + 91 + ], + "problem.": [ + 92 + ], + "Specifically,": [ + 93 + ], + "revolves": [ + 96 + ], + "around": [ + 97, + 107 + ], + "problem": [ + 99 + ], + "prediction,": [ + 101 + ], + "while": [ + 102 + ], + "many": [ + 103 + ], + "economic": [ + 104 + ], + "applications": [ + 105 + ], + "revolve": [ + 106 + ], + "parameter": [ + 108 + ], + "estimation.": [ + 109 + ], + "So": [ + 110 + ], + "applying": [ + 111 + ], + "economics": [ + 115 + ], + "requires": [ + 116 + ], + "finding": [ + 117 + ], + "relevant": [ + 118 + ], + "tasks.": [ + 119 + ], + "now": [ + 124 + ], + "technically": [ + 125 + ], + "easy": [ + 126 + ], + "use:": [ + 128 + ], + "you": [ + 129 + ], + "download": [ + 131 + ], + "convenient": [ + 132 + ], + "packages": [ + 133 + ], + "R": [ + 135 + ], + "Python.": [ + 137 + ], + "also": [ + 139 + ], + "risk": [ + 142 + ], + "applied": [ + 147 + ], + "naively": [ + 148 + ], + "their": [ + 150 + ], + "output": [ + 151 + ], + "is": [ + 152 + ], + "misinterpreted.": [ + 153 + ], + "hope": [ + 155 + ], + "make": [ + 157 + ], + "them": [ + 158 + ], + "conceptually": [ + 159 + ], + "easier": [ + 160 + ], + "by": [ + 163 + ], + "providing": [ + 164 + ], + "crisper": [ + 166 + ], + "understanding": [ + 167 + ], + "work,": [ + 172 + ], + "where": [ + 173, + 177, + 182 + ], + "they": [ + 174, + 178, + 183 + ], + "excel,": [ + 175 + ], + "and": [ + 176 + ], + "stumble—and": [ + 180 + ], + "thus": [ + 181 + ], + "be": [ + 185 + ], + "most": [ + 186 + ], + "usefully": [ + 187 + ], + "applied.": [ + 188 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 117 + }, + { + "year": 2025, + "cited_by_count": 278 + }, + { + "year": 2024, + "cited_by_count": 224 + }, + { + "year": 2023, + "cited_by_count": 243 + }, + { + "year": 2022, + "cited_by_count": 218 + }, + { + "year": 2021, + "cited_by_count": 274 + }, + { + "year": 2020, + "cited_by_count": 191 + }, + { + "year": 2019, + "cited_by_count": 182 + }, + { + "year": 2018, + "cited_by_count": 100 + }, + { + "year": 2017, + "cited_by_count": 28 + }, + { + "year": 2016, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2968923792", + "doi": "https://doi.org/10.1038/s41524-019-0221-0", + "title": "Recent advances and applications of machine learning in solid-state materials science", + "display_name": "Recent advances and applications of machine learning in solid-state materials science", + "relevance_score": 3011.797, + "publication_year": 2019, + "publication_date": "2019-08-08", + "ids": { + "openalex": "https://openalex.org/W2968923792", + "doi": "https://doi.org/10.1038/s41524-019-0221-0", + "mag": "2968923792" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5057207447", + "display_name": "Jonathan Schmidt", + "orcid": "https://orcid.org/0000-0001-5685-6404" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Jonathan Schmidt", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": "https://orcid.org/0000-0001-5685-6404", + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013807218", + "display_name": "Mário R. G. Marques", + "orcid": "https://orcid.org/0000-0002-7420-5098" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Mário R. G. Marques", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-7420-5098", + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074073454", + "display_name": "Silvana Botti", + "orcid": "https://orcid.org/0000-0002-4920-2370" + }, + "institutions": [ + { + "id": "https://openalex.org/I76198965", + "display_name": "Friedrich Schiller University Jena", + "ror": "https://ror.org/05qpz1x62", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I76198965" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Silvana Botti", + "raw_affiliation_strings": [ + "Institut fr Festkrpertheorie und -optik, Friedrich-Schiller-Universitt Jena, Max-Wien-Platz 1, 07743 Jena, Germany", + "Institut für Festkörpertheorie und -optik, Friedrich-Schiller-Universität Jena, Max-Wien-Platz 1, 07743, Jena, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Festkrpertheorie und -optik, Friedrich-Schiller-Universitt Jena, Max-Wien-Platz 1, 07743 Jena, Germany", + "institution_ids": [ + "https://openalex.org/I76198965" + ] + }, + { + "raw_affiliation_string": "Institut für Festkörpertheorie und -optik, Friedrich-Schiller-Universität Jena, Max-Wien-Platz 1, 07743, Jena, Germany", + "institution_ids": [ + "https://openalex.org/I76198965" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5052107166", + "display_name": "Miguel A. L. Marques", + "orcid": "https://orcid.org/0000-0003-0170-8222" + }, + "institutions": [ + { + "id": "https://openalex.org/I68956291", + "display_name": "Martin Luther University Halle-Wittenberg", + "ror": "https://ror.org/05gqaka33", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I68956291" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Miguel A. L. Marques", + "raw_affiliation_strings": [ + "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institut fr Physik, Martin-Luther-Universitt, 06120 Halle-Wittenberg, Halle (Saale), Germany and", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + }, + { + "raw_affiliation_string": "Institut für Physik, Martin-Luther-Universität, 06120, Halle-Wittenberg, Halle (Saale), Germany", + "institution_ids": [ + "https://openalex.org/I68956291" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5057207447" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I68956291" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 99.7619, + "has_fulltext": true, + "cited_by_count": 2366, + "citation_normalized_percentile": { + "value": 0.99995996, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "5", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.998199999332428, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.991100013256073, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.8451576828956604 + }, + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.7814731597900391 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7652289867401123 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7290407419204712 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7001760005950928 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.5603207945823669 + }, + { + "id": "https://openalex.org/keywords/property", + "display_name": "Property (philosophy)", + "score": 0.45152583718299866 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.4503237307071686 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.08372414112091064 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.8451576828956604 + }, + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.7814731597900391 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7652289867401123 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7290407419204712 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7001760005950928 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.5603207945823669 + }, + { + "id": "https://openalex.org/C189950617", + "wikidata": "https://www.wikidata.org/wiki/Q937228", + "display_name": "Property (philosophy)", + "level": 2, + "score": 0.45152583718299866 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.4503237307071686 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.08372414112091064 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:2e9ae6991e1e44179c61e241d69e1fe2", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/2e9ae6991e1e44179c61e241d69e1fe2", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials, Vol 5, Iss 1, Pp 1-36 (2019)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1038/s41524-019-0221-0", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-019-0221-0", + "pdf_url": "https://www.nature.com/articles/s41524-019-0221-0.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2968923792.pdf", + "grobid_xml": "https://content.openalex.org/works/W2968923792.grobid-xml" + }, + "referenced_works_count": 518, + "referenced_works": [ + "https://openalex.org/W26088913", + "https://openalex.org/W145450961", + "https://openalex.org/W179824108", + "https://openalex.org/W203253523", + "https://openalex.org/W230490465", + "https://openalex.org/W327991062", + "https://openalex.org/W590077806", + "https://openalex.org/W654619586", + "https://openalex.org/W814282759", + "https://openalex.org/W1485300768", + "https://openalex.org/W1498183065", + "https://openalex.org/W1499888549", + "https://openalex.org/W1501856433", + "https://openalex.org/W1503398984", + "https://openalex.org/W1504770578", + "https://openalex.org/W1510052597", + "https://openalex.org/W1534043326", + "https://openalex.org/W1539789214", + "https://openalex.org/W1542652324", + "https://openalex.org/W1544171083", + "https://openalex.org/W1563453094", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571836963", + "https://openalex.org/W1577152309", + "https://openalex.org/W1581242383", + "https://openalex.org/W1584200143", + "https://openalex.org/W1596185547", + "https://openalex.org/W1625555899", + "https://openalex.org/W1643338536", + "https://openalex.org/W1662382123", + "https://openalex.org/W1677182931", + "https://openalex.org/W1678356000", + "https://openalex.org/W1678620623", + "https://openalex.org/W1780364926", + "https://openalex.org/W1787224781", + "https://openalex.org/W1800437104", + "https://openalex.org/W1806613374", + "https://openalex.org/W1812560530", + "https://openalex.org/W1849277567", + "https://openalex.org/W1861259131", + "https://openalex.org/W1865667476", + "https://openalex.org/W1875061881", + "https://openalex.org/W1875161738", + "https://openalex.org/W1940355499", + "https://openalex.org/W1964746686", + "https://openalex.org/W1964882117", + "https://openalex.org/W1965007242", + "https://openalex.org/W1965387924", + "https://openalex.org/W1965621008", + "https://openalex.org/W1966295044", + "https://openalex.org/W1966452023", + "https://openalex.org/W1967499431", + "https://openalex.org/W1967969088", + "https://openalex.org/W1971714101", + "https://openalex.org/W1972135189", + "https://openalex.org/W1973200549", + "https://openalex.org/W1975997599", + "https://openalex.org/W1976492731", + "https://openalex.org/W1976581079", + "https://openalex.org/W1978538703", + "https://openalex.org/W1979769287", + "https://openalex.org/W1979879584", + "https://openalex.org/W1981368803", + "https://openalex.org/W1981955214", + "https://openalex.org/W1982598895", + "https://openalex.org/W1983077902", + "https://openalex.org/W1984003326", + "https://openalex.org/W1986912357", + "https://openalex.org/W1988102749", + "https://openalex.org/W1988227526", + "https://openalex.org/W1988790447", + "https://openalex.org/W1989389325", + "https://openalex.org/W1989628244", + "https://openalex.org/W1989893427", + "https://openalex.org/W1990810992", + "https://openalex.org/W1991713655", + "https://openalex.org/W1992985800", + "https://openalex.org/W1994624373", + "https://openalex.org/W1995341919", + "https://openalex.org/W1996425351", + "https://openalex.org/W1998056920", + "https://openalex.org/W1998723350", + "https://openalex.org/W1999921067", + "https://openalex.org/W2000009216", + "https://openalex.org/W2000290731", + "https://openalex.org/W2000413114", + "https://openalex.org/W2002097322", + "https://openalex.org/W2002507631", + "https://openalex.org/W2005774952", + "https://openalex.org/W2006102096", + "https://openalex.org/W2007207351", + "https://openalex.org/W2007850701", + "https://openalex.org/W2011602276", + "https://openalex.org/W2012700578", + "https://openalex.org/W2014509568", + "https://openalex.org/W2014615332", + "https://openalex.org/W2015197254", + "https://openalex.org/W2015558379", + "https://openalex.org/W2017805851", + "https://openalex.org/W2018108526", + "https://openalex.org/W2019430858", + "https://openalex.org/W2020246947", + "https://openalex.org/W2020786104", + "https://openalex.org/W2021774695", + "https://openalex.org/W2021928136", + "https://openalex.org/W2022890839", + "https://openalex.org/W2024330948", + "https://openalex.org/W2025111634", + "https://openalex.org/W2025444507", + "https://openalex.org/W2025679679", + "https://openalex.org/W2025838043", + "https://openalex.org/W2027408247", + "https://openalex.org/W2029413789", + "https://openalex.org/W2030178277", + "https://openalex.org/W2030976617", + "https://openalex.org/W2031558918", + "https://openalex.org/W2033086537", + "https://openalex.org/W2033206800", + "https://openalex.org/W2034097448", + "https://openalex.org/W2035352360", + "https://openalex.org/W2036701191", + "https://openalex.org/W2037566781", + "https://openalex.org/W2037782625", + "https://openalex.org/W2039609876", + "https://openalex.org/W2039959185", + "https://openalex.org/W2040019593", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041726686", + "https://openalex.org/W2042492924", + "https://openalex.org/W2042640655", + "https://openalex.org/W2042877835", + "https://openalex.org/W2042958553", + "https://openalex.org/W2044375044", + "https://openalex.org/W2046598747", + "https://openalex.org/W2051740693", + "https://openalex.org/W2051801258", + "https://openalex.org/W2052523499", + "https://openalex.org/W2053011449", + "https://openalex.org/W2053962240", + "https://openalex.org/W2054057690", + "https://openalex.org/W2055529982", + "https://openalex.org/W2056132907", + "https://openalex.org/W2057562773", + "https://openalex.org/W2057767448", + "https://openalex.org/W2057858097", + "https://openalex.org/W2060410316", + "https://openalex.org/W2060558956", + "https://openalex.org/W2061179540", + "https://openalex.org/W2063007245", + "https://openalex.org/W2064675550", + "https://openalex.org/W2065586875", + "https://openalex.org/W2068231021", + "https://openalex.org/W2068972463", + "https://openalex.org/W2069483681", + "https://openalex.org/W2070043768", + "https://openalex.org/W2070931774", + "https://openalex.org/W2074497204", + "https://openalex.org/W2074681440", + "https://openalex.org/W2075245047", + "https://openalex.org/W2075545717", + "https://openalex.org/W2075894130", + "https://openalex.org/W2075937489", + "https://openalex.org/W2076118331", + "https://openalex.org/W2077562320", + "https://openalex.org/W2078016408", + "https://openalex.org/W2080321486", + "https://openalex.org/W2080635178", + "https://openalex.org/W2081635359", + "https://openalex.org/W2083032961", + "https://openalex.org/W2083415705", + "https://openalex.org/W2083956694", + "https://openalex.org/W2084972556", + "https://openalex.org/W2085093563", + "https://openalex.org/W2085788926", + "https://openalex.org/W2086702546", + "https://openalex.org/W2086957099", + "https://openalex.org/W2087347434", + "https://openalex.org/W2087404659", + "https://openalex.org/W2087661061", + "https://openalex.org/W2088687796", + "https://openalex.org/W2088925839", + "https://openalex.org/W2090752561", + "https://openalex.org/W2092196700", + "https://openalex.org/W2092332261", + "https://openalex.org/W2093229042", + "https://openalex.org/W2093717447", + "https://openalex.org/W2094176506", + "https://openalex.org/W2095705004", + "https://openalex.org/W2097968133", + "https://openalex.org/W2099471712", + "https://openalex.org/W2100495367", + "https://openalex.org/W2100689957", + "https://openalex.org/W2102074887", + "https://openalex.org/W2102940758", + "https://openalex.org/W2103780778", + "https://openalex.org/W2104489082", + "https://openalex.org/W2106111284", + "https://openalex.org/W2107278155", + "https://openalex.org/W2108738385", + "https://openalex.org/W2111935653", + "https://openalex.org/W2112431211", + "https://openalex.org/W2112796928", + "https://openalex.org/W2114704115", + "https://openalex.org/W2116341502", + "https://openalex.org/W2121020550", + "https://openalex.org/W2121237359", + "https://openalex.org/W2122825543", + "https://openalex.org/W2123306226", + "https://openalex.org/W2124820885", + "https://openalex.org/W2125132504", + "https://openalex.org/W2126316555", + "https://openalex.org/W2127271355", + "https://openalex.org/W2128333270", + "https://openalex.org/W2128420091", + "https://openalex.org/W2128659236", + "https://openalex.org/W2134164499", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135305876", + "https://openalex.org/W2137262074", + "https://openalex.org/W2138002307", + "https://openalex.org/W2139062161", + "https://openalex.org/W2142009706", + "https://openalex.org/W2144752499", + "https://openalex.org/W2146611938", + "https://openalex.org/W2147654806", + "https://openalex.org/W2147800946", + "https://openalex.org/W2147993766", + "https://openalex.org/W2148596493", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153483479", + "https://openalex.org/W2153693853", + "https://openalex.org/W2154560360", + "https://openalex.org/W2154579312", + "https://openalex.org/W2155155530", + "https://openalex.org/W2155927283", + "https://openalex.org/W2156267707", + "https://openalex.org/W2156387975", + "https://openalex.org/W2159357141", + "https://openalex.org/W2163224677", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2164452299", + "https://openalex.org/W2164524421", + "https://openalex.org/W2169589339", + "https://openalex.org/W2171029115", + "https://openalex.org/W2173027866", + "https://openalex.org/W2176170193", + "https://openalex.org/W2176412452", + "https://openalex.org/W2192127365", + "https://openalex.org/W2194775991", + "https://openalex.org/W2195388612", + "https://openalex.org/W2200589053", + "https://openalex.org/W2217912240", + "https://openalex.org/W2222214459", + "https://openalex.org/W2230728100", + "https://openalex.org/W2257979135", + "https://openalex.org/W2261108203", + "https://openalex.org/W2278970271", + "https://openalex.org/W2279481448", + "https://openalex.org/W2290847742", + "https://openalex.org/W2291925970", + "https://openalex.org/W2294798173", + "https://openalex.org/W2297621926", + "https://openalex.org/W2299676960", + "https://openalex.org/W2302501749", + "https://openalex.org/W2312842167", + "https://openalex.org/W2316320254", + "https://openalex.org/W2316524229", + "https://openalex.org/W2319902168", + "https://openalex.org/W2322326629", + "https://openalex.org/W2331520253", + "https://openalex.org/W2331812412", + "https://openalex.org/W2334013383", + "https://openalex.org/W2335591923", + "https://openalex.org/W2337082154", + "https://openalex.org/W2337110853", + "https://openalex.org/W2337496963", + "https://openalex.org/W2343462019", + "https://openalex.org/W2343821232", + "https://openalex.org/W2347129741", + "https://openalex.org/W2395579298", + "https://openalex.org/W2415372084", + "https://openalex.org/W2419175238", + "https://openalex.org/W2437591545", + "https://openalex.org/W2460314483", + "https://openalex.org/W2461312660", + "https://openalex.org/W2462003543", + "https://openalex.org/W2464725281", + "https://openalex.org/W2468907370", + "https://openalex.org/W2471982001", + "https://openalex.org/W2474543364", + "https://openalex.org/W2482115826", + "https://openalex.org/W2489757118", + "https://openalex.org/W2490901606", + "https://openalex.org/W2499226730", + "https://openalex.org/W2509907061", + "https://openalex.org/W2510169513", + "https://openalex.org/W2511358339", + "https://openalex.org/W2511699341", + "https://openalex.org/W2517221375", + "https://openalex.org/W2520022941", + "https://openalex.org/W2520500207", + "https://openalex.org/W2524910928", + "https://openalex.org/W2526943155", + "https://openalex.org/W2527189750", + "https://openalex.org/W2527749992", + "https://openalex.org/W2531545384", + "https://openalex.org/W2534747019", + "https://openalex.org/W2547447472", + "https://openalex.org/W2550668110", + "https://openalex.org/W2555683692", + "https://openalex.org/W2556028878", + "https://openalex.org/W2563751252", + "https://openalex.org/W2564209180", + "https://openalex.org/W2565212977", + "https://openalex.org/W2566573083", + "https://openalex.org/W2566642125", + "https://openalex.org/W2567115595", + "https://openalex.org/W2572438701", + "https://openalex.org/W2576881135", + "https://openalex.org/W2583795764", + "https://openalex.org/W2592733333", + "https://openalex.org/W2593724699", + "https://openalex.org/W2593838212", + "https://openalex.org/W2600236415", + "https://openalex.org/W2605627947", + "https://openalex.org/W2606191816", + "https://openalex.org/W2606478829", + "https://openalex.org/W2609397020", + "https://openalex.org/W2613094910", + "https://openalex.org/W2614083378", + "https://openalex.org/W2616519837", + "https://openalex.org/W2618945100", + "https://openalex.org/W2625386340", + "https://openalex.org/W2650911154", + "https://openalex.org/W2725771565", + "https://openalex.org/W2728789193", + "https://openalex.org/W2728984672", + "https://openalex.org/W2734520197", + "https://openalex.org/W2739066022", + "https://openalex.org/W2741557496", + "https://openalex.org/W2742014174", + "https://openalex.org/W2742061408", + "https://openalex.org/W2742127985", + "https://openalex.org/W2742835787", + "https://openalex.org/W2744546448", + "https://openalex.org/W2746244909", + "https://openalex.org/W2746340587", + "https://openalex.org/W2750556263", + "https://openalex.org/W2750673150", + "https://openalex.org/W2751488329", + "https://openalex.org/W2752033117", + "https://openalex.org/W2752052391", + "https://openalex.org/W2755320374", + "https://openalex.org/W2760202681", + "https://openalex.org/W2764267192", + "https://openalex.org/W2765459427", + "https://openalex.org/W2765597272", + "https://openalex.org/W2765966278", + "https://openalex.org/W2766432501", + "https://openalex.org/W2766518642", + "https://openalex.org/W2766856748", + "https://openalex.org/W2768213699", + "https://openalex.org/W2768591600", + "https://openalex.org/W2768828389", + "https://openalex.org/W2769287225", + "https://openalex.org/W2773094581", + "https://openalex.org/W2773787581", + "https://openalex.org/W2774180927", + "https://openalex.org/W2775811982", + "https://openalex.org/W2778051509", + "https://openalex.org/W2782772320", + "https://openalex.org/W2782811937", + "https://openalex.org/W2783016230", + "https://openalex.org/W2783428669", + "https://openalex.org/W2783643969", + "https://openalex.org/W2784208423", + "https://openalex.org/W2785060548", + "https://openalex.org/W2785434749", + "https://openalex.org/W2786956473", + "https://openalex.org/W2787894218", + "https://openalex.org/W2789575256", + "https://openalex.org/W2790939418", + "https://openalex.org/W2790960441", + "https://openalex.org/W2792351009", + "https://openalex.org/W2792521034", + "https://openalex.org/W2793186536", + "https://openalex.org/W2793847568", + "https://openalex.org/W2794749944", + "https://openalex.org/W2794792904", + "https://openalex.org/W2796365074", + "https://openalex.org/W2800722845", + "https://openalex.org/W2801870733", + "https://openalex.org/W2802513623", + "https://openalex.org/W2803328959", + "https://openalex.org/W2804333359", + "https://openalex.org/W2804431384", + "https://openalex.org/W2804529100", + "https://openalex.org/W2804765537", + "https://openalex.org/W2805504266", + "https://openalex.org/W2806173046", + "https://openalex.org/W2806275814", + "https://openalex.org/W2806393871", + "https://openalex.org/W2806681928", + "https://openalex.org/W2807070436", + "https://openalex.org/W2807471255", + "https://openalex.org/W2807890728", + "https://openalex.org/W2808433588", + "https://openalex.org/W2808651099", + "https://openalex.org/W2809409278", + "https://openalex.org/W2810294304", + "https://openalex.org/W2810643961", + "https://openalex.org/W2831812383", + "https://openalex.org/W2883021798", + "https://openalex.org/W2883578585", + "https://openalex.org/W2884430236", + "https://openalex.org/W2885048850", + "https://openalex.org/W2885427655", + "https://openalex.org/W2888296885", + "https://openalex.org/W2888395196", + "https://openalex.org/W2889393096", + "https://openalex.org/W2890177760", + "https://openalex.org/W2890641732", + "https://openalex.org/W2890910436", + "https://openalex.org/W2891365537", + "https://openalex.org/W2894543465", + "https://openalex.org/W2896311968", + "https://openalex.org/W2896731862", + "https://openalex.org/W2899133278", + "https://openalex.org/W2899771611", + "https://openalex.org/W2901005646", + "https://openalex.org/W2902687791", + "https://openalex.org/W2902914368", + "https://openalex.org/W2903284152", + "https://openalex.org/W2903483166", + "https://openalex.org/W2911964244", + "https://openalex.org/W2913390193", + "https://openalex.org/W2919115771", + "https://openalex.org/W2922185717", + "https://openalex.org/W2949095042", + "https://openalex.org/W2949117887", + "https://openalex.org/W2949415003", + "https://openalex.org/W2949536823", + "https://openalex.org/W2950898568", + "https://openalex.org/W2952254971", + "https://openalex.org/W2962778515", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962858756", + "https://openalex.org/W2963073614", + "https://openalex.org/W2963169277", + "https://openalex.org/W2963470893", + "https://openalex.org/W2963613996", + "https://openalex.org/W2963657244", + "https://openalex.org/W2963807552", + "https://openalex.org/W2963923030", + "https://openalex.org/W2964332384", + "https://openalex.org/W2971890617", + "https://openalex.org/W2976720228", + "https://openalex.org/W2998779578", + "https://openalex.org/W3036192984", + "https://openalex.org/W3098179186", + "https://openalex.org/W3098181309", + "https://openalex.org/W3098539674", + "https://openalex.org/W3098905070", + "https://openalex.org/W3099030566", + "https://openalex.org/W3099108283", + "https://openalex.org/W3099152177", + "https://openalex.org/W3099236691", + "https://openalex.org/W3099563879", + "https://openalex.org/W3099756651", + "https://openalex.org/W3099803468", + "https://openalex.org/W3099950071", + "https://openalex.org/W3100015175", + "https://openalex.org/W3100157108", + "https://openalex.org/W3100559197", + "https://openalex.org/W3100710928", + "https://openalex.org/W3100824689", + "https://openalex.org/W3101510464", + "https://openalex.org/W3101568640", + "https://openalex.org/W3101728438", + "https://openalex.org/W3101883705", + "https://openalex.org/W3102449990", + "https://openalex.org/W3102617294", + "https://openalex.org/W3102656154", + "https://openalex.org/W3102797483", + "https://openalex.org/W3103128256", + "https://openalex.org/W3103297471", + "https://openalex.org/W3103421232", + "https://openalex.org/W3103584381", + "https://openalex.org/W3103699203", + "https://openalex.org/W3104257088", + "https://openalex.org/W3104644561", + "https://openalex.org/W3105187533", + "https://openalex.org/W3105535058", + "https://openalex.org/W3105658368", + "https://openalex.org/W3106384232", + "https://openalex.org/W3106419168", + "https://openalex.org/W3138819813", + "https://openalex.org/W3145506661", + "https://openalex.org/W3188900288", + "https://openalex.org/W4206212643", + "https://openalex.org/W4211049957", + "https://openalex.org/W4214765890", + "https://openalex.org/W4229646010", + "https://openalex.org/W4230189600", + "https://openalex.org/W4238812661", + "https://openalex.org/W4239664769", + "https://openalex.org/W4244412880", + "https://openalex.org/W4245176872", + "https://openalex.org/W4249528159", + "https://openalex.org/W4251461630", + "https://openalex.org/W4254688476", + "https://openalex.org/W4256669726", + "https://openalex.org/W4300263211", + "https://openalex.org/W4302799641", + "https://openalex.org/W6679121739", + "https://openalex.org/W6704559304", + "https://openalex.org/W6756040250" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W2806259446", + "https://openalex.org/W1986582023", + "https://openalex.org/W2883749686", + "https://openalex.org/W2966829450", + "https://openalex.org/W4315864862" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "One": [ + 1 + ], + "of": [ + 2, + 22, + 31, + 47, + 65, + 94, + 102, + 108, + 127, + 153, + 162, + 178 + ], + "the": [ + 3, + 10, + 66, + 92, + 100, + 106, + 125, + 146, + 160, + 164, + 175 + ], + "most": [ + 4, + 67 + ], + "exciting": [ + 5 + ], + "tools": [ + 6 + ], + "that": [ + 7, + 49 + ], + "have": [ + 8 + ], + "entered": [ + 9 + ], + "material": [ + 11 + ], + "science": [ + 12 + ], + "toolbox": [ + 13 + ], + "in": [ + 14, + 70, + 86, + 116, + 183, + 197 + ], + "recent": [ + 15, + 68 + ], + "years": [ + 16 + ], + "is": [ + 17 + ], + "machine": [ + 18, + 53, + 79, + 96, + 131, + 169 + ], + "learning.": [ + 19, + 132 + ], + "This": [ + 20 + ], + "collection": [ + 21 + ], + "statistical": [ + 23 + ], + "methods": [ + 24, + 129 + ], + "has": [ + 25 + ], + "already": [ + 26 + ], + "proved": [ + 27 + ], + "to": [ + 28, + 55, + 144 + ], + "be": [ + 29, + 142 + ], + "capable": [ + 30 + ], + "considerably": [ + 32 + ], + "speeding": [ + 33 + ], + "up": [ + 34 + ], + "both": [ + 35 + ], + "fundamental": [ + 36 + ], + "and": [ + 37, + 51, + 63, + 84, + 105, + 121, + 138, + 150, + 163, + 180, + 190 + ], + "applied": [ + 38, + 143 + ], + "research.": [ + 39 + ], + "At": [ + 40 + ], + "present,": [ + 41 + ], + "we": [ + 42, + 77, + 113, + 187 + ], + "are": [ + 43, + 158 + ], + "witnessing": [ + 44 + ], + "an": [ + 45 + ], + "explosion": [ + 46 + ], + "works": [ + 48 + ], + "develop": [ + 50 + ], + "apply": [ + 52 + ], + "learning": [ + 54, + 80, + 97, + 137, + 170 + ], + "solid-state": [ + 56 + ], + "systems.": [ + 57 + ], + "We": [ + 58, + 89, + 133, + 172 + ], + "provide": [ + 59 + ], + "a": [ + 60, + 74 + ], + "comprehensive": [ + 61 + ], + "overview": [ + 62 + ], + "analysis": [ + 64 + ], + "research": [ + 69, + 115, + 192 + ], + "this": [ + 71 + ], + "topic.": [ + 72 + ], + "As": [ + 73 + ], + "starting": [ + 75 + ], + "point,": [ + 76 + ], + "introduce": [ + 78 + ], + "principles,": [ + 81 + ], + "algorithms,": [ + 82 + ], + "descriptors,": [ + 83 + ], + "databases": [ + 85 + ], + "materials": [ + 87, + 104, + 184, + 199 + ], + "science.": [ + 88, + 185, + 200 + ], + "continue": [ + 90 + ], + "with": [ + 91 + ], + "description": [ + 93 + ], + "different": [ + 95, + 176 + ], + "approaches": [ + 98, + 123 + ], + "for": [ + 99, + 124, + 194 + ], + "discovery": [ + 101 + ], + "stable": [ + 103 + ], + "prediction": [ + 107 + ], + "their": [ + 109, + 181 + ], + "crystal": [ + 110 + ], + "structure.": [ + 111 + ], + "Then": [ + 112 + ], + "discuss": [ + 114 + ], + "numerous": [ + 117 + ], + "quantitative": [ + 118 + ], + "structure–property": [ + 119 + ], + "relationships": [ + 120 + ], + "various": [ + 122, + 195 + ], + "replacement": [ + 126 + ], + "first-principle": [ + 128 + ], + "by": [ + 130 + ], + "review": [ + 134 + ], + "how": [ + 135 + ], + "active": [ + 136 + ], + "surrogate-based": [ + 139 + ], + "optimization": [ + 140 + ], + "can": [ + 141 + ], + "improve": [ + 145 + ], + "rational": [ + 147 + ], + "design": [ + 148 + ], + "process": [ + 149 + ], + "related": [ + 151 + ], + "examples": [ + 152 + ], + "applications.": [ + 154 + ], + "Two": [ + 155 + ], + "major": [ + 156 + ], + "questions": [ + 157 + ], + "always": [ + 159 + ], + "interpretability": [ + 161, + 179 + ], + "physical": [ + 165 + ], + "understanding": [ + 166 + ], + "gained": [ + 167 + ], + "from": [ + 168 + ], + "models.": [ + 171 + ], + "consider": [ + 173 + ], + "therefore": [ + 174 + ], + "facets": [ + 177 + ], + "importance": [ + 182 + ], + "Finally,": [ + 186 + ], + "propose": [ + 188 + ], + "solutions": [ + 189 + ], + "future": [ + 191 + ], + "paths": [ + 193 + ], + "challenges": [ + 196 + ], + "computational": [ + 198 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 153 + }, + { + "year": 2025, + "cited_by_count": 356 + }, + { + "year": 2024, + "cited_by_count": 379 + }, + { + "year": 2023, + "cited_by_count": 392 + }, + { + "year": 2022, + "cited_by_count": 452 + }, + { + "year": 2021, + "cited_by_count": 400 + }, + { + "year": 2020, + "cited_by_count": 223 + }, + { + "year": 2019, + "cited_by_count": 10 + }, + { + "year": 2018, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2910705748", + "doi": "https://doi.org/10.1073/pnas.1900654116", + "title": "Definitions, methods, and applications in interpretable machine learning", + "display_name": "Definitions, methods, and applications in interpretable machine learning", + "relevance_score": 2995.7358, + "publication_year": 2019, + "publication_date": "2019-10-16", + "ids": { + "openalex": "https://openalex.org/W2910705748", + "doi": "https://doi.org/10.1073/pnas.1900654116", + "mag": "2910705748", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31619572" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5057838960", + "display_name": "William J. Murdoch", + "orcid": "https://orcid.org/0009-0009-7610-5187" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "W. James Murdoch", + "raw_affiliation_strings": [ + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017514239", + "display_name": "Chandan Singh", + "orcid": "https://orcid.org/0000-0003-0318-2340" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chandan Singh", + "raw_affiliation_strings": [ + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5013534934", + "display_name": "Karl Kumbier", + "orcid": "https://orcid.org/0000-0001-6521-1173" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Karl Kumbier", + "raw_affiliation_strings": [ + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5029714016", + "display_name": "Reza Abbasi-Asl", + "orcid": "https://orcid.org/0000-0001-7824-4628" + }, + "institutions": [ + { + "id": "https://openalex.org/I1314596251", + "display_name": "Allen Institute for Brain Science", + "ror": "https://ror.org/00dcv1019", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1314596251", + "https://openalex.org/I4210140341" + ] + }, + { + "id": "https://openalex.org/I180670191", + "display_name": "University of California, San Francisco", + "ror": "https://ror.org/043mz5j54", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I180670191" + ] + }, + { + "id": "https://openalex.org/I4210140341", + "display_name": "Allen Institute", + "ror": "https://ror.org/03cpe7c52", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210140341" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Reza Abbasi-Asl", + "raw_affiliation_strings": [ + "Allen Institute for Brain Science, Seattle, WA 98109", + "Department of Neurology, University of California, San Francisco, CA 94158;", + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "Department of Neurology, University of California, San Francisco, CA 94158; and" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Allen Institute for Brain Science, Seattle, WA 98109", + "institution_ids": [ + "https://openalex.org/I4210140341", + "https://openalex.org/I1314596251" + ] + }, + { + "raw_affiliation_string": "Department of Neurology, University of California, San Francisco, CA 94158;", + "institution_ids": [ + "https://openalex.org/I180670191" + ] + }, + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Department of Neurology, University of California, San Francisco, CA 94158; and", + "institution_ids": [ + "https://openalex.org/I180670191" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100646137", + "display_name": "Bin Yu", + "orcid": "https://orcid.org/0000-0002-8888-4060" + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Bin Yu", + "raw_affiliation_strings": [ + "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "Statistics Department, University of California, Berkeley, CA 94720;" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Electrical Engineering and Computer Science Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Statistics Department, University of California, Berkeley, CA 94720;", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5100646137" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 116.6663, + "has_fulltext": true, + "cited_by_count": 2050, + "citation_normalized_percentile": { + "value": 0.99969336, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "116", + "issue": "44", + "first_page": "22071", + "last_page": "22080" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9951000213623047, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9890999794006348, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.9390578269958496 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7489986419677734 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6651195883750916 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.6388148069381714 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6340200901031494 + }, + { + "id": "https://openalex.org/keywords/context", + "display_name": "Context (archaeology)", + "score": 0.6267019510269165 + }, + { + "id": "https://openalex.org/keywords/interpretation", + "display_name": "Interpretation (philosophy)", + "score": 0.6191895604133606 + }, + { + "id": "https://openalex.org/keywords/modularity", + "display_name": "Modularity (biology)", + "score": 0.5174987316131592 + }, + { + "id": "https://openalex.org/keywords/vocabulary", + "display_name": "Vocabulary", + "score": 0.4941387474536896 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.4534083902835846 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.411584734916687 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.9390578269958496 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7489986419677734 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6651195883750916 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.6388148069381714 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6340200901031494 + }, + { + "id": "https://openalex.org/C2779343474", + "wikidata": "https://www.wikidata.org/wiki/Q3109175", + "display_name": "Context (archaeology)", + "level": 2, + "score": 0.6267019510269165 + }, + { + "id": "https://openalex.org/C527412718", + "wikidata": "https://www.wikidata.org/wiki/Q855395", + "display_name": "Interpretation (philosophy)", + "level": 2, + "score": 0.6191895604133606 + }, + { + "id": "https://openalex.org/C2779478453", + "wikidata": "https://www.wikidata.org/wiki/Q6889748", + "display_name": "Modularity (biology)", + "level": 2, + "score": 0.5174987316131592 + }, + { + "id": "https://openalex.org/C2777601683", + "wikidata": "https://www.wikidata.org/wiki/Q6499736", + "display_name": "Vocabulary", + "level": 2, + "score": 0.4941387474536896 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.4534083902835846 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.411584734916687 + }, + { + "id": "https://openalex.org/C151730666", + "wikidata": "https://www.wikidata.org/wiki/Q7205", + "display_name": "Paleontology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C54355233", + "wikidata": "https://www.wikidata.org/wiki/Q7162", + "display_name": "Genetics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + { + "id": "pmid:31619572", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31619572", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences of the United States of America", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1901.04592", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1901.04592", + "pdf_url": "https://arxiv.org/pdf/1901.04592", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:osti.gov:1633246", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1633246", + "pdf_url": "https://www.osti.gov/servlets/purl/1633246", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:ark:/13030/qt13x9q01k", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:oai:escholarship.org/ark:/13030/qt13x9q01k", + "is_oa": false, + "landing_page_url": "https://escholarship.org/uc/item/13x9q01k", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400115", + "display_name": "eScholarship (California Digital Library)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I2801248553", + "host_organization_name": "California Digital Library", + "host_organization_lineage": [ + "https://openalex.org/I2801248553" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Proceedings of the National Academy of Sciences of the United States of America, vol 116, iss 44", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:6105936", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6825274", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1073/pnas.1900654116", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1073/pnas.1900654116", + "pdf_url": "https://www.pnas.org/content/pnas/116/44/22071.full.pdf", + "source": { + "id": "https://openalex.org/S125754415", + "display_name": "Proceedings of the National Academy of Sciences", + "issn_l": "0027-8424", + "issn": [ + "0027-8424", + "1091-6490" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320052", + "host_organization_name": "National Academy of Sciences", + "host_organization_lineage": [ + "https://openalex.org/P4310320052" + ], + "host_organization_lineage_names": [ + "National Academy of Sciences" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the National Academy of Sciences", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.7599999904632568 + } + ], + "awards": [ + { + "id": "https://openalex.org/G1490606517", + "display_name": null, + "funder_award_id": "N00014-16-1-2664", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G1739869781", + "display_name": null, + "funder_award_id": "CCF-0939370", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4776703908", + "display_name": null, + "funder_award_id": "CGSD3-487534-2016", + "funder_id": "https://openalex.org/F4320334593", + "funder_display_name": "Natural Sciences and Engineering Research Council of Canada" + }, + { + "id": "https://openalex.org/G5202753860", + "display_name": "Canonical Linear Methods and Hierarchical Non-Linear Methods in High-Dimensional Statistics", + "funder_award_id": "1613002", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6244900323", + "display_name": null, + "funder_award_id": "0939370", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7379344686", + "display_name": null, + "funder_award_id": "1741340", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7501964373", + "display_name": null, + "funder_award_id": "W911NF1710005", + "funder_id": "https://openalex.org/F4320338281", + "funder_display_name": "Army Research Office" + }, + { + "id": "https://openalex.org/G8170601752", + "display_name": null, + "funder_award_id": "IIS 1741340", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G8341606209", + "display_name": null, + "funder_award_id": "DMS-1613002", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G8876996369", + "display_name": null, + "funder_award_id": "N00014", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320334593", + "display_name": "Natural Sciences and Engineering Research Council of Canada", + "ror": "https://ror.org/01h531d29" + }, + { + "id": "https://openalex.org/F4320337345", + "display_name": "Office of Naval Research", + "ror": "https://ror.org/00rk2pe57" + }, + { + "id": "https://openalex.org/F4320338281", + "display_name": "Army Research Office", + "ror": "https://ror.org/05epdh915" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2910705748.pdf", + "grobid_xml": "https://content.openalex.org/works/W2910705748.grobid-xml" + }, + "referenced_works_count": 137, + "referenced_works": [ + "https://openalex.org/W11356396", + "https://openalex.org/W830575572", + "https://openalex.org/W1034019924", + "https://openalex.org/W1500693574", + "https://openalex.org/W1511986666", + "https://openalex.org/W1587026990", + "https://openalex.org/W1594031697", + "https://openalex.org/W1810028515", + "https://openalex.org/W1849277567", + "https://openalex.org/W1951216520", + "https://openalex.org/W1961953963", + "https://openalex.org/W1989968174", + "https://openalex.org/W1996796871", + "https://openalex.org/W2012712694", + "https://openalex.org/W2013511833", + "https://openalex.org/W2025341678", + "https://openalex.org/W2034637247", + "https://openalex.org/W2043175314", + "https://openalex.org/W2048231652", + "https://openalex.org/W2061939373", + "https://openalex.org/W2078977693", + "https://openalex.org/W2084341220", + "https://openalex.org/W2086396353", + "https://openalex.org/W2087448554", + "https://openalex.org/W2088286197", + "https://openalex.org/W2100960835", + "https://openalex.org/W2102636708", + "https://openalex.org/W2103780778", + "https://openalex.org/W2105464873", + "https://openalex.org/W2108384452", + "https://openalex.org/W2113882472", + "https://openalex.org/W2118022153", + "https://openalex.org/W2119858020", + "https://openalex.org/W2123045220", + "https://openalex.org/W2128659236", + "https://openalex.org/W2135046866", + "https://openalex.org/W2143481518", + "https://openalex.org/W2145860152", + "https://openalex.org/W2148694408", + "https://openalex.org/W2150165932", + "https://openalex.org/W2153332911", + "https://openalex.org/W2157355630", + "https://openalex.org/W2158196600", + "https://openalex.org/W2161969291", + "https://openalex.org/W2166163519", + "https://openalex.org/W2169053895", + "https://openalex.org/W2270785838", + "https://openalex.org/W2282821441", + "https://openalex.org/W2315452447", + "https://openalex.org/W2342249984", + "https://openalex.org/W2346578521", + "https://openalex.org/W2464516813", + "https://openalex.org/W2472803348", + "https://openalex.org/W2493343568", + "https://openalex.org/W2502949459", + "https://openalex.org/W2510508396", + "https://openalex.org/W2516809705", + "https://openalex.org/W2530010084", + "https://openalex.org/W2530395818", + "https://openalex.org/W2559655401", + "https://openalex.org/W2587529872", + "https://openalex.org/W2590082389", + "https://openalex.org/W2592895748", + "https://openalex.org/W2592929672", + "https://openalex.org/W2594633041", + "https://openalex.org/W2597603852", + "https://openalex.org/W2604526796", + "https://openalex.org/W2612690371", + "https://openalex.org/W2618851150", + "https://openalex.org/W2619351609", + "https://openalex.org/W2619444510", + "https://openalex.org/W2731142262", + "https://openalex.org/W2739349903", + "https://openalex.org/W2742591084", + "https://openalex.org/W2752194699", + "https://openalex.org/W2769421449", + "https://openalex.org/W2782630856", + "https://openalex.org/W2785184350", + "https://openalex.org/W2785760873", + "https://openalex.org/W2786715987", + "https://openalex.org/W2787070805", + "https://openalex.org/W2793165286", + "https://openalex.org/W2793277523", + "https://openalex.org/W2795431618", + "https://openalex.org/W2803354268", + "https://openalex.org/W2807015674", + "https://openalex.org/W2808315098", + "https://openalex.org/W2891612330", + "https://openalex.org/W2896089889", + "https://openalex.org/W2900404061", + "https://openalex.org/W2901939789", + "https://openalex.org/W2903768344", + "https://openalex.org/W2911964244", + "https://openalex.org/W2945800295", + "https://openalex.org/W2945976633", + "https://openalex.org/W2952354376", + "https://openalex.org/W2962772482", + "https://openalex.org/W2962862931", + "https://openalex.org/W2962883557", + "https://openalex.org/W2963016445", + "https://openalex.org/W2963029978", + "https://openalex.org/W2963233086", + "https://openalex.org/W2963382180", + "https://openalex.org/W2963424533", + "https://openalex.org/W2963715038", + "https://openalex.org/W2963798744", + "https://openalex.org/W2964118342", + "https://openalex.org/W2964159526", + "https://openalex.org/W3085162807", + "https://openalex.org/W3098232790", + "https://openalex.org/W3102564565", + "https://openalex.org/W3124792046", + "https://openalex.org/W3150635270", + "https://openalex.org/W3150893739", + "https://openalex.org/W4212774754", + "https://openalex.org/W4229494842", + "https://openalex.org/W4230605228", + "https://openalex.org/W4230742466", + "https://openalex.org/W4236697647", + "https://openalex.org/W4236965008", + "https://openalex.org/W4237723258", + "https://openalex.org/W4254687493", + "https://openalex.org/W4255332246", + "https://openalex.org/W4255405844", + "https://openalex.org/W4292023222", + "https://openalex.org/W4293861706", + "https://openalex.org/W4295313945", + "https://openalex.org/W4299408792", + "https://openalex.org/W4300756893", + "https://openalex.org/W4309520320", + "https://openalex.org/W4399576166", + "https://openalex.org/W6684823039", + "https://openalex.org/W6716358881", + "https://openalex.org/W6728551298", + "https://openalex.org/W6734194636", + "https://openalex.org/W6754669440", + "https://openalex.org/W6982728064" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W2888392564", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W2963326959", + "https://openalex.org/W4388685194", + "https://openalex.org/W4312407344", + "https://openalex.org/W2894289927" + ], + "abstract_inverted_index": { + "Machine-learning": [ + 0 + ], + "models": [ + 1, + 23 + ], + "have": [ + 2 + ], + "demonstrated": [ + 3 + ], + "great": [ + 4 + ], + "success": [ + 5 + ], + "in": [ + 6, + 90, + 189 + ], + "learning": [ + 7, + 95 + ], + "complex": [ + 8 + ], + "patterns": [ + 9 + ], + "that": [ + 10, + 211, + 219 + ], + "enable": [ + 11 + ], + "them": [ + 12 + ], + "to": [ + 13, + 21, + 28, + 48, + 78, + 83, + 126, + 131, + 168, + 229 + ], + "make": [ + 14, + 221 + ], + "predictions": [ + 15 + ], + "about": [ + 16, + 51 + ], + "unobserved": [ + 17 + ], + "data.": [ + 18 + ], + "In": [ + 19, + 56 + ], + "addition": [ + 20 + ], + "using": [ + 22 + ], + "for": [ + 24, + 104, + 114, + 206, + 224 + ], + "prediction,": [ + 25 + ], + "the": [ + 26, + 52, + 62, + 91, + 98, + 134, + 165, + 181, + 234 + ], + "ability": [ + 27 + ], + "interpret": [ + 29 + ], + "what": [ + 30, + 72 + ], + "a": [ + 31, + 127, + 141, + 216 + ], + "model": [ + 32 + ], + "has": [ + 33, + 46 + ], + "learned": [ + 34 + ], + "is": [ + 35, + 59 + ], + "receiving": [ + 36 + ], + "an": [ + 37 + ], + "increasing": [ + 38 + ], + "amount": [ + 39 + ], + "of": [ + 40, + 54, + 65, + 93, + 136, + 143, + 191, + 201, + 237 + ], + "attention.": [ + 41 + ], + "However,": [ + 42 + ], + "this": [ + 43, + 212 + ], + "increased": [ + 44 + ], + "focus": [ + 45 + ], + "led": [ + 47 + ], + "considerable": [ + 49 + ], + "confusion": [ + 50 + ], + "notion": [ + 53 + ], + "interpretability.": [ + 55, + 192 + ], + "particular,": [ + 57 + ], + "it": [ + 58, + 222 + ], + "unclear": [ + 60 + ], + "how": [ + 61, + 161 + ], + "wide": [ + 63 + ], + "array": [ + 64 + ], + "proposed": [ + 66 + ], + "interpretation": [ + 67, + 137, + 238 + ], + "methods": [ + 68, + 203 + ], + "are": [ + 69 + ], + "related": [ + 70 + ], + "and": [ + 71, + 96, + 120, + 148, + 157, + 170, + 204, + 227, + 231 + ], + "common": [ + 73, + 217 + ], + "concepts": [ + 74 + ], + "can": [ + 75, + 163 + ], + "be": [ + 76 + ], + "used": [ + 77 + ], + "evaluate": [ + 79, + 169 + ], + "them.": [ + 80 + ], + "We": [ + 81, + 209 + ], + "aim": [ + 82 + ], + "address": [ + 84 + ], + "these": [ + 85 + ], + "concerns": [ + 86 + ], + "by": [ + 87, + 186 + ], + "defining": [ + 88 + ], + "interpretability": [ + 89 + ], + "context": [ + 92 + ], + "machine": [ + 94 + ], + "introducing": [ + 97 + ], + "predictive,": [ + 99 + ], + "descriptive,": [ + 100 + ], + "relevant": [ + 101 + ], + "(PDR)": [ + 102 + ], + "framework": [ + 103, + 109, + 167 + ], + "discussing": [ + 105 + ], + "interpretations.": [ + 106 + ], + "The": [ + 107 + ], + "PDR": [ + 108, + 166 + ], + "provides": [ + 110 + ], + "3": [ + 111 + ], + "overarching": [ + 112 + ], + "desiderata": [ + 113 + ], + "evaluation:": [ + 115 + ], + "predictive": [ + 116 + ], + "accuracy,": [ + 117, + 119 + ], + "descriptive": [ + 118 + ], + "relevancy,": [ + 121 + ], + "with": [ + 122, + 152 + ], + "relevancy": [ + 123 + ], + "judged": [ + 124 + ], + "relative": [ + 125 + ], + "human": [ + 128, + 187 + ], + "audience.": [ + 129 + ], + "Moreover,": [ + 130 + ], + "help": [ + 132 + ], + "manage": [ + 133 + ], + "deluge": [ + 135 + ], + "methods,": [ + 138 + ], + "we": [ + 139, + 173, + 198 + ], + "introduce": [ + 140 + ], + "categorization": [ + 142 + ], + "existing": [ + 144, + 202 + ], + "techniques": [ + 145 + ], + "into": [ + 146 + ], + "model-based": [ + 147 + ], + "post": [ + 149 + ], + "hoc": [ + 150 + ], + "categories,": [ + 151 + ], + "subgroups": [ + 153 + ], + "including": [ + 154 + ], + "sparsity,": [ + 155 + ], + "modularity,": [ + 156 + ], + "simulatability.": [ + 158 + ], + "To": [ + 159 + ], + "demonstrate": [ + 160 + ], + "practitioners": [ + 162, + 226 + ], + "use": [ + 164 + ], + "understand": [ + 171 + ], + "interpretations,": [ + 172 + ], + "provide": [ + 174, + 215 + ], + "numerous": [ + 175 + ], + "real-world": [ + 176 + ], + "examples.": [ + 177 + ], + "These": [ + 178 + ], + "examples": [ + 179 + ], + "highlight": [ + 180 + ], + "often": [ + 182 + ], + "underappreciated": [ + 183 + ], + "role": [ + 184 + ], + "played": [ + 185 + ], + "audiences": [ + 188 + ], + "discussions": [ + 190 + ], + "Finally,": [ + 193 + ], + "based": [ + 194 + ], + "on": [ + 195 + ], + "our": [ + 196 + ], + "framework,": [ + 197 + ], + "discuss": [ + 199, + 230 + ], + "limitations": [ + 200 + ], + "directions": [ + 205 + ], + "future": [ + 207 + ], + "work.": [ + 208 + ], + "hope": [ + 210 + ], + "work": [ + 213 + ], + "will": [ + 214, + 220 + ], + "vocabulary": [ + 218 + ], + "easier": [ + 223 + ], + "both": [ + 225 + ], + "researchers": [ + 228 + ], + "choose": [ + 232 + ], + "from": [ + 233 + ], + "full": [ + 235 + ], + "range": [ + 236 + ], + "methods.": [ + 239 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 135 + }, + { + "year": 2025, + "cited_by_count": 357 + }, + { + "year": 2024, + "cited_by_count": 384 + }, + { + "year": 2023, + "cited_by_count": 375 + }, + { + "year": 2022, + "cited_by_count": 317 + }, + { + "year": 2021, + "cited_by_count": 280 + }, + { + "year": 2020, + "cited_by_count": 161 + }, + { + "year": 2019, + "cited_by_count": 38 + }, + { + "year": 2018, + "cited_by_count": 2 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2342408547", + "doi": "https://doi.org/10.1109/comst.2015.2494502", + "title": "A Survey of Data Mining and Machine Learning Methods for Cyber Security Intrusion Detection", + "display_name": "A Survey of Data Mining and Machine Learning Methods for Cyber Security Intrusion Detection", + "relevance_score": 2986.594, + "publication_year": 2015, + "publication_date": "2015-10-26", + "ids": { + "openalex": "https://openalex.org/W2342408547", + "doi": "https://doi.org/10.1109/comst.2015.2494502", + "mag": "2342408547" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/comst.2015.2494502", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/comst.2015.2494502", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S23688054", + "display_name": "IEEE Communications Surveys & Tutorials", + "issn_l": "1553-877X", + "issn": [ + "1553-877X", + "2373-745X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Communications Surveys & Tutorials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5036462876", + "display_name": "Anna L. Buczak", + "orcid": "https://orcid.org/0000-0002-4468-7719" + }, + "institutions": [ + { + "id": "https://openalex.org/I2802946424", + "display_name": "Johns Hopkins University Applied Physics Laboratory", + "ror": "https://ror.org/029pp9z10", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I145311948", + "https://openalex.org/I2802946424" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Anna L. Buczak", + "raw_affiliation_strings": [ + "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA", + "institution_ids": [ + "https://openalex.org/I2802946424" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5103648432", + "display_name": "Erhan Guven", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I2802946424", + "display_name": "Johns Hopkins University Applied Physics Laboratory", + "ror": "https://ror.org/029pp9z10", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I145311948", + "https://openalex.org/I2802946424" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Erhan Guven", + "raw_affiliation_strings": [ + "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "The Johns Hopkins University Applied Physics Laboratory, Laurel, MD, USA", + "institution_ids": [ + "https://openalex.org/I2802946424" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5036462876" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2802946424" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 105.8915, + "has_fulltext": false, + "cited_by_count": 3024, + "citation_normalized_percentile": { + "value": 0.99986492, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "18", + "issue": "2", + "first_page": "1153", + "last_page": "1176" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9962999820709229, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9926999807357788, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8274868726730347 + }, + { + "id": "https://openalex.org/keywords/intrusion-detection-system", + "display_name": "Intrusion detection system", + "score": 0.7535451054573059 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.5479063391685486 + }, + { + "id": "https://openalex.org/keywords/relevance", + "display_name": "Relevance (law)", + "score": 0.5404182076454163 + }, + { + "id": "https://openalex.org/keywords/analytics", + "display_name": "Analytics", + "score": 0.47978121042251587 + }, + { + "id": "https://openalex.org/keywords/intrusion", + "display_name": "Intrusion", + "score": 0.44902172684669495 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3901662826538086 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.34739550948143005 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8274868726730347 + }, + { + "id": "https://openalex.org/C35525427", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion detection system", + "level": 2, + "score": 0.7535451054573059 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.5479063391685486 + }, + { + "id": "https://openalex.org/C158154518", + "wikidata": "https://www.wikidata.org/wiki/Q7310970", + "display_name": "Relevance (law)", + "level": 2, + "score": 0.5404182076454163 + }, + { + "id": "https://openalex.org/C79158427", + "wikidata": "https://www.wikidata.org/wiki/Q485396", + "display_name": "Analytics", + "level": 2, + "score": 0.47978121042251587 + }, + { + "id": "https://openalex.org/C158251709", + "wikidata": "https://www.wikidata.org/wiki/Q354025", + "display_name": "Intrusion", + "level": 2, + "score": 0.44902172684669495 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3901662826538086 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.34739550948143005 + }, + { + "id": "https://openalex.org/C17744445", + "wikidata": "https://www.wikidata.org/wiki/Q36442", + "display_name": "Political science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199539241", + "wikidata": "https://www.wikidata.org/wiki/Q7748", + "display_name": "Law", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17409809", + "wikidata": "https://www.wikidata.org/wiki/Q161764", + "display_name": "Geochemistry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/comst.2015.2494502", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/comst.2015.2494502", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S23688054", + "display_name": "IEEE Communications Surveys & Tutorials", + "issn_l": "1553-877X", + "issn": [ + "1553-877X", + "2373-745X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Communications Surveys & Tutorials", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 134, + "referenced_works": [ + "https://openalex.org/W4348436", + "https://openalex.org/W6091113", + "https://openalex.org/W49546894", + "https://openalex.org/W166342712", + "https://openalex.org/W1504694836", + "https://openalex.org/W1525180324", + "https://openalex.org/W1541288193", + "https://openalex.org/W1553696291", + "https://openalex.org/W1554891714", + "https://openalex.org/W1556024794", + "https://openalex.org/W1570448133", + "https://openalex.org/W1576185228", + "https://openalex.org/W1576660662", + "https://openalex.org/W1576818901", + "https://openalex.org/W1615454278", + "https://openalex.org/W1642161394", + "https://openalex.org/W1670263352", + "https://openalex.org/W1673310716", + "https://openalex.org/W1755360231", + "https://openalex.org/W1777713421", + "https://openalex.org/W1856750239", + "https://openalex.org/W1884606608", + "https://openalex.org/W1937068078", + "https://openalex.org/W1952056635", + "https://openalex.org/W1954903228", + "https://openalex.org/W1966809779", + "https://openalex.org/W1971751469", + "https://openalex.org/W1971784203", + "https://openalex.org/W1975791498", + "https://openalex.org/W1978779053", + "https://openalex.org/W1979877030", + "https://openalex.org/W1986334900", + "https://openalex.org/W1988741337", + "https://openalex.org/W1991237739", + "https://openalex.org/W1993717606", + "https://openalex.org/W1999427165", + "https://openalex.org/W2002016471", + "https://openalex.org/W2014712522", + "https://openalex.org/W2017528992", + "https://openalex.org/W2030553727", + "https://openalex.org/W2033626294", + "https://openalex.org/W2036959577", + "https://openalex.org/W2038819341", + "https://openalex.org/W2040870580", + "https://openalex.org/W2049633694", + "https://openalex.org/W2066664409", + "https://openalex.org/W2071221494", + "https://openalex.org/W2076384720", + "https://openalex.org/W2076526693", + "https://openalex.org/W2077574412", + "https://openalex.org/W2081707439", + "https://openalex.org/W2082550445", + "https://openalex.org/W2091576221", + "https://openalex.org/W2094138658", + "https://openalex.org/W2096118443", + "https://openalex.org/W2099940443", + "https://openalex.org/W2100024153", + "https://openalex.org/W2100537916", + "https://openalex.org/W2102201073", + "https://openalex.org/W2104593144", + "https://openalex.org/W2112076978", + "https://openalex.org/W2112090702", + "https://openalex.org/W2114996745", + "https://openalex.org/W2117707191", + "https://openalex.org/W2123619513", + "https://openalex.org/W2124261333", + "https://openalex.org/W2125055259", + "https://openalex.org/W2129018774", + "https://openalex.org/W2129879631", + "https://openalex.org/W2133941447", + "https://openalex.org/W2133990480", + "https://openalex.org/W2137983211", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139669429", + "https://openalex.org/W2142384583", + "https://openalex.org/W2142889610", + "https://openalex.org/W2143893259", + "https://openalex.org/W2145052282", + "https://openalex.org/W2146082061", + "https://openalex.org/W2149706766", + "https://openalex.org/W2152195021", + "https://openalex.org/W2154929945", + "https://openalex.org/W2156909104", + "https://openalex.org/W2158454296", + "https://openalex.org/W2160598920", + "https://openalex.org/W2161302205", + "https://openalex.org/W2164576874", + "https://openalex.org/W2166275707", + "https://openalex.org/W2166559705", + "https://openalex.org/W2167917621", + "https://openalex.org/W2169654335", + "https://openalex.org/W2169768310", + "https://openalex.org/W2171331105", + "https://openalex.org/W2173213060", + "https://openalex.org/W2188268519", + "https://openalex.org/W2203709713", + "https://openalex.org/W2319660501", + "https://openalex.org/W2502697733", + "https://openalex.org/W2802348331", + "https://openalex.org/W2911964244", + "https://openalex.org/W2912565176", + "https://openalex.org/W3099514962", + "https://openalex.org/W3141738472", + "https://openalex.org/W3146803896", + "https://openalex.org/W3150719513", + "https://openalex.org/W3211952227", + "https://openalex.org/W4211007335", + "https://openalex.org/W4211064163", + "https://openalex.org/W4213332169", + "https://openalex.org/W4231918628", + "https://openalex.org/W4232872328", + "https://openalex.org/W4236137412", + "https://openalex.org/W4249991499", + "https://openalex.org/W4250857377", + "https://openalex.org/W4256360777", + "https://openalex.org/W4285719527", + "https://openalex.org/W4299670631", + "https://openalex.org/W6600247753", + "https://openalex.org/W6601962654", + "https://openalex.org/W6633310491", + "https://openalex.org/W6633402183", + "https://openalex.org/W6636895364", + "https://openalex.org/W6637131181", + "https://openalex.org/W6639223989", + "https://openalex.org/W6674887505", + "https://openalex.org/W6676769703", + "https://openalex.org/W6677572458", + "https://openalex.org/W6678524815", + "https://openalex.org/W6683882235", + "https://openalex.org/W6684325336", + "https://openalex.org/W6684920382", + "https://openalex.org/W6686806119", + "https://openalex.org/W6724329653", + "https://openalex.org/W7048738093" + ], + "related_works": [ + "https://openalex.org/W2357468538", + "https://openalex.org/W2085384747", + "https://openalex.org/W1577110157", + "https://openalex.org/W2106071040", + "https://openalex.org/W2088166309", + "https://openalex.org/W4312133475", + "https://openalex.org/W4238976562", + "https://openalex.org/W2276587472", + "https://openalex.org/W1835907303", + "https://openalex.org/W2133389611" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "survey": [ + 1, + 7 + ], + "paper": [ + 2 + ], + "describes": [ + 3 + ], + "a": [ + 4, + 99 + ], + "focused": [ + 5 + ], + "literature": [ + 6 + ], + "of": [ + 8, + 22, + 28, + 38, + 43, + 76, + 82 + ], + "machine": [ + 9 + ], + "learning": [ + 10 + ], + "(ML)": [ + 11 + ], + "and": [ + 12, + 54, + 92 + ], + "data": [ + 13, + 57, + 67 + ], + "mining": [ + 14 + ], + "(DM)": [ + 15 + ], + "methods": [ + 16 + ], + "for": [ + 17, + 84, + 87 + ], + "cyber": [ + 18, + 66, + 88 + ], + "analytics": [ + 19 + ], + "in": [ + 20, + 61, + 70 + ], + "support": [ + 21 + ], + "intrusion": [ + 23 + ], + "detection.": [ + 24 + ], + "Short": [ + 25 + ], + "tutorial": [ + 26 + ], + "descriptions": [ + 27 + ], + "each": [ + 29, + 49 + ], + "ML/DM": [ + 30, + 62, + 71, + 77, + 86 + ], + "method": [ + 31, + 50, + 101 + ], + "are": [ + 32, + 58, + 72, + 102 + ], + "provided.": [ + 33, + 103 + ], + "Based": [ + 34 + ], + "on": [ + 35, + 95 + ], + "the": [ + 36, + 41 + ], + "number": [ + 37 + ], + "citations": [ + 39 + ], + "or": [ + 40 + ], + "relevance": [ + 42 + ], + "an": [ + 44 + ], + "emerging": [ + 45 + ], + "method,": [ + 46 + ], + "papers": [ + 47 + ], + "representing": [ + 48 + ], + "were": [ + 51 + ], + "identified,": [ + 52 + ], + "read,": [ + 53 + ], + "summarized.": [ + 55 + ], + "Because": [ + 56 + ], + "so": [ + 59 + ], + "important": [ + 60 + ], + "approaches,": [ + 63 + ], + "some": [ + 64, + 93 + ], + "well-known": [ + 65 + ], + "sets": [ + 68 + ], + "used": [ + 69 + ], + "described.": [ + 73 + ], + "The": [ + 74 + ], + "complexity": [ + 75 + ], + "algorithms": [ + 78 + ], + "is": [ + 79, + 90 + ], + "addressed,": [ + 80 + ], + "discussion": [ + 81 + ], + "challenges": [ + 83 + ], + "using": [ + 85 + ], + "security": [ + 89 + ], + "presented,": [ + 91 + ], + "recommendations": [ + 94 + ], + "when": [ + 96 + ], + "to": [ + 97 + ], + "use": [ + 98 + ], + "given": [ + 100 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 140 + }, + { + "year": 2025, + "cited_by_count": 371 + }, + { + "year": 2024, + "cited_by_count": 303 + }, + { + "year": 2023, + "cited_by_count": 326 + }, + { + "year": 2022, + "cited_by_count": 408 + }, + { + "year": 2021, + "cited_by_count": 454 + }, + { + "year": 2020, + "cited_by_count": 402 + }, + { + "year": 2019, + "cited_by_count": 317 + }, + { + "year": 2018, + "cited_by_count": 219 + }, + { + "year": 2017, + "cited_by_count": 72 + }, + { + "year": 2016, + "cited_by_count": 10 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4213308398", + "doi": "https://doi.org/10.1007/978-3-030-05318-5", + "title": "Automated Machine Learning", + "display_name": "Automated Machine Learning", + "relevance_score": 2930.7764, + "publication_year": 2019, + "publication_date": "2019-01-01", + "ids": { + "openalex": "https://openalex.org/W4213308398", + "doi": "https://doi.org/10.1007/978-3-030-05318-5" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "hybrid", + "oa_url": "https://doi.org/10.1007/978-3-030-05318-5", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5031002895", + "display_name": "Frank Hutter", + "orcid": "https://orcid.org/0000-0002-2037-3694" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Frank Hutter", + "raw_affiliation_strings": [ + "Department of Computer Science, University of Freiburg, Freiburg, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of Freiburg, Freiburg, Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032997049", + "display_name": "Lars Kotthoff", + "orcid": "https://orcid.org/0000-0003-4635-6873" + }, + "institutions": [ + { + "id": "https://openalex.org/I12834331", + "display_name": "University of Wyoming", + "ror": "https://ror.org/01485tq96", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12834331" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lars Kotthoff", + "raw_affiliation_strings": [ + "University of Wyoming, Laramie, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Wyoming, Laramie, USA", + "institution_ids": [ + "https://openalex.org/I12834331" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016794035", + "display_name": "Joaquin Vanschoren", + "orcid": "https://orcid.org/0000-0001-7044-9805" + }, + "institutions": [ + { + "id": "https://openalex.org/I83019370", + "display_name": "Eindhoven University of Technology", + "ror": "https://ror.org/02c2kyt77", + "country_code": "NL", + "type": "education", + "lineage": [ + "https://openalex.org/I83019370" + ] + } + ], + "countries": [ + "NL" + ], + "is_corresponding": false, + "raw_author_name": "Joaquin Vanschoren", + "raw_affiliation_strings": [ + "Eindhoven University of Technology, Eindhoven, The Netherlands" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Eindhoven University of Technology, Eindhoven, The Netherlands", + "institution_ids": [ + "https://openalex.org/I83019370" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5031002895" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161046081" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 76.3906, + "has_fulltext": true, + "cited_by_count": 1379, + "citation_normalized_percentile": { + "value": 0.99947479, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.32330000400543213, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.32330000400543213, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6049460172653198 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5378867983818054 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4316948652267456 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6049460172653198 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5378867983818054 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4316948652267456 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + { + "id": "pmh:tue:oai:pure.tue.nl:publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "is_oa": true, + "landing_page_url": "https://research.tue.nl/nl/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "pdf_url": "https://research.tue.nl/nl/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "source": { + "id": "https://openalex.org/S4306401843", + "display_name": "Data Archiving and Networked Services (DANS)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1322597698", + "host_organization_name": "Royal Netherlands Academy of Arts and Sciences", + "host_organization_lineage": [ + "https://openalex.org/I1322597698" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "public-domain", + "license_id": "https://openalex.org/licenses/public-domain", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "info:eu-repo/semantics/book" + }, + { + "id": "pmh:oai:doab-books:43691", + "is_oa": true, + "landing_page_url": "http://www.oapen.org/download/?type=document&docid=1007149", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400539", + "display_name": "Directory of Open access Books (OAPEN Foundation)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "book" + }, + { + "id": "pmh:oai:pure.tue.nl:publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "is_oa": false, + "landing_page_url": "https://research.tue.nl/en/publications/14f00e7a-0861-477a-81f6-5b5c51f660f4", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922641", + "display_name": "TU/e Research Portal", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": { + "id": "doi:10.1007/978-3-030-05318-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1007/978-3-030-05318-5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210189751", + "display_name": "˜The œSpringer series on challenges in machine learning", + "issn_l": "2520-131X", + "issn": [ + "2520-131X", + "2520-1328" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319972", + "host_organization_name": "Springer International Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310319972", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Springer International Publishing", + "Springer Nature" + ], + "type": "book series" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Springer Series on Challenges in Machine Learning", + "raw_type": "book" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6636476603", + "display_name": "Data-Driven Methods for Modelling and Optimizing the Empirical Performance of Deep Neural Networks", + "funder_award_id": "716721", + "funder_id": "https://openalex.org/F4320320300", + "funder_display_name": "European Commission" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320313934", + "display_name": "Institut national de recherche en informatique et en automatique (INRIA)", + "ror": "https://ror.org/02kvxyf05" + }, + { + "id": "https://openalex.org/F4320315803", + "display_name": "Centres de Recerca de Catalunya", + "ror": null + }, + { + "id": "https://openalex.org/F4320320300", + "display_name": "European Commission", + "ror": "https://ror.org/00k4n6c32" + }, + { + "id": "https://openalex.org/F4320320879", + "display_name": "Deutsche Forschungsgemeinschaft", + "ror": "https://ror.org/018mejw64" + }, + { + "id": "https://openalex.org/F4320321505", + "display_name": "Generalitat de Catalunya", + "ror": "https://ror.org/01bg62x04" + }, + { + "id": "https://openalex.org/F4320334593", + "display_name": "Natural Sciences and Engineering Research Council of Canada", + "ror": "https://ror.org/01h531d29" + }, + { + "id": "https://openalex.org/F4320336677", + "display_name": "BrainLinks-BrainTools", + "ror": null + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 463, + "referenced_works": [ + "https://openalex.org/W6908809", + "https://openalex.org/W24696228", + "https://openalex.org/W28412257", + "https://openalex.org/W41730657", + "https://openalex.org/W54639073", + "https://openalex.org/W60686164", + "https://openalex.org/W62188234", + "https://openalex.org/W76131926", + "https://openalex.org/W76331760", + "https://openalex.org/W85803853", + "https://openalex.org/W100047375", + "https://openalex.org/W114730584", + "https://openalex.org/W116375701", + "https://openalex.org/W122178443", + "https://openalex.org/W135104305", + "https://openalex.org/W138547447", + "https://openalex.org/W145519053", + "https://openalex.org/W148859753", + "https://openalex.org/W172742023", + "https://openalex.org/W174542576", + "https://openalex.org/W192975702", + "https://openalex.org/W198580638", + "https://openalex.org/W202805564", + "https://openalex.org/W202978992", + "https://openalex.org/W358897728", + "https://openalex.org/W603776396", + "https://openalex.org/W1165382972", + "https://openalex.org/W1471542436", + "https://openalex.org/W1480330138", + "https://openalex.org/W1484746829", + "https://openalex.org/W1488960379", + "https://openalex.org/W1491420040", + "https://openalex.org/W1494192115", + "https://openalex.org/W1494580925", + "https://openalex.org/W1500302649", + "https://openalex.org/W1501110974", + "https://openalex.org/W1503705371", + "https://openalex.org/W1507030697", + "https://openalex.org/W1512747601", + "https://openalex.org/W1516621661", + "https://openalex.org/W1519451279", + "https://openalex.org/W1520992199", + "https://openalex.org/W1522301498", + "https://openalex.org/W1528411633", + "https://openalex.org/W1533803232", + "https://openalex.org/W1534069108", + "https://openalex.org/W1534477342", + "https://openalex.org/W1535039099", + "https://openalex.org/W1539741229", + "https://openalex.org/W1542791059", + "https://openalex.org/W1543201103", + "https://openalex.org/W1549223806", + "https://openalex.org/W1556753024", + "https://openalex.org/W1565746575", + "https://openalex.org/W1568834902", + "https://openalex.org/W1569757501", + "https://openalex.org/W1575029535", + "https://openalex.org/W1575661061", + "https://openalex.org/W1577932924", + "https://openalex.org/W1581066146", + "https://openalex.org/W1588486985", + "https://openalex.org/W1588628884", + "https://openalex.org/W1588959569", + "https://openalex.org/W1589492330", + "https://openalex.org/W1593343777", + "https://openalex.org/W1598052524", + "https://openalex.org/W1601795611", + "https://openalex.org/W1604262624", + "https://openalex.org/W1631708156", + "https://openalex.org/W1638732406", + "https://openalex.org/W1640798781", + "https://openalex.org/W1647221522", + "https://openalex.org/W1661871015", + "https://openalex.org/W1663203009", + "https://openalex.org/W1663583528", + "https://openalex.org/W1678356000", + "https://openalex.org/W1680392829", + "https://openalex.org/W1690919088", + "https://openalex.org/W1701825639", + "https://openalex.org/W1758907577", + "https://openalex.org/W1763644767", + "https://openalex.org/W1840091437", + "https://openalex.org/W1868018859", + "https://openalex.org/W1880189740", + "https://openalex.org/W1886872224", + "https://openalex.org/W1922017469", + "https://openalex.org/W1925428099", + "https://openalex.org/W1925504357", + "https://openalex.org/W1935590542", + "https://openalex.org/W1965555277", + "https://openalex.org/W1968634175", + "https://openalex.org/W1969163824", + "https://openalex.org/W1971713783", + "https://openalex.org/W1973229481", + "https://openalex.org/W1979769287", + "https://openalex.org/W1980264541", + "https://openalex.org/W1981903823", + "https://openalex.org/W1984557319", + "https://openalex.org/W1985995090", + "https://openalex.org/W1986490585", + "https://openalex.org/W1986543815", + "https://openalex.org/W1986929000", + "https://openalex.org/W1989048657", + "https://openalex.org/W1994197834", + "https://openalex.org/W1994326354", + "https://openalex.org/W2001485654", + "https://openalex.org/W2040730773", + "https://openalex.org/W2040884411", + "https://openalex.org/W2048430744", + "https://openalex.org/W2050310928", + "https://openalex.org/W2051346631", + "https://openalex.org/W2056224615", + "https://openalex.org/W2057261601", + "https://openalex.org/W2062118960", + "https://openalex.org/W2062227835", + "https://openalex.org/W2064186732", + "https://openalex.org/W2074702228", + "https://openalex.org/W2074724805", + "https://openalex.org/W2078885513", + "https://openalex.org/W2083542829", + "https://openalex.org/W2084136177", + "https://openalex.org/W2084150578", + "https://openalex.org/W2087817842", + "https://openalex.org/W2089213632", + "https://openalex.org/W2089217417", + "https://openalex.org/W2090136295", + "https://openalex.org/W2091118421", + "https://openalex.org/W2095655959", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096863518", + "https://openalex.org/W2097998348", + "https://openalex.org/W2099201756", + "https://openalex.org/W2101234009", + "https://openalex.org/W2101341561", + "https://openalex.org/W2102770307", + "https://openalex.org/W2105031846", + "https://openalex.org/W2106411961", + "https://openalex.org/W2106614481", + "https://openalex.org/W2107853397", + "https://openalex.org/W2108626634", + "https://openalex.org/W2109042184", + "https://openalex.org/W2109346685", + "https://openalex.org/W2111935653", + "https://openalex.org/W2112204321", + "https://openalex.org/W2112364454", + "https://openalex.org/W2113145584", + "https://openalex.org/W2113207845", + "https://openalex.org/W2113584252", + "https://openalex.org/W2115733720", + "https://openalex.org/W2115763804", + "https://openalex.org/W2116882733", + "https://openalex.org/W2117539524", + "https://openalex.org/W2118789407", + "https://openalex.org/W2119814172", + "https://openalex.org/W2120420045", + "https://openalex.org/W2122053572", + "https://openalex.org/W2122379760", + "https://openalex.org/W2122776323", + "https://openalex.org/W2123395972", + "https://openalex.org/W2123649031", + "https://openalex.org/W2124022122", + "https://openalex.org/W2124290836", + "https://openalex.org/W2124802506", + "https://openalex.org/W2125849100", + "https://openalex.org/W2125877832", + "https://openalex.org/W2126204609", + "https://openalex.org/W2126559945", + "https://openalex.org/W2126964466", + "https://openalex.org/W2127416213", + "https://openalex.org/W2129458072", + "https://openalex.org/W2130942839", + "https://openalex.org/W2131241448", + "https://openalex.org/W2131822674", + "https://openalex.org/W2133418613", + "https://openalex.org/W2133958955", + "https://openalex.org/W2136139971", + "https://openalex.org/W2136636278", + "https://openalex.org/W2137825550", + "https://openalex.org/W2138784882", + "https://openalex.org/W2139805416", + "https://openalex.org/W2141125852", + "https://openalex.org/W2141408223", + "https://openalex.org/W2142334564", + "https://openalex.org/W2142959074", + "https://openalex.org/W2143104527", + "https://openalex.org/W2144656844", + "https://openalex.org/W2144752499", + "https://openalex.org/W2144981148", + "https://openalex.org/W2145287260", + "https://openalex.org/W2145339207", + "https://openalex.org/W2145955992", + "https://openalex.org/W2146502635", + "https://openalex.org/W2149731329", + "https://openalex.org/W2150446468", + "https://openalex.org/W2152589362", + "https://openalex.org/W2153667946", + "https://openalex.org/W2154776925", + "https://openalex.org/W2155853132", + "https://openalex.org/W2156417353", + "https://openalex.org/W2157069634", + "https://openalex.org/W2160644528", + "https://openalex.org/W2163605009", + "https://openalex.org/W2163922914", + "https://openalex.org/W2165607334", + "https://openalex.org/W2165698076", + "https://openalex.org/W2165962877", + "https://openalex.org/W2166107799", + "https://openalex.org/W2168175751", + "https://openalex.org/W2168939893", + "https://openalex.org/W2171033594", + "https://openalex.org/W2171658832", + "https://openalex.org/W2181956361", + "https://openalex.org/W2182070128", + "https://openalex.org/W2182361439", + "https://openalex.org/W2183341477", + "https://openalex.org/W2183704914", + "https://openalex.org/W2186013251", + "https://openalex.org/W2189149359", + "https://openalex.org/W2192203593", + "https://openalex.org/W2194775991", + "https://openalex.org/W2200000192", + "https://openalex.org/W2210969396", + "https://openalex.org/W2226783037", + "https://openalex.org/W2234598170", + "https://openalex.org/W2234898963", + "https://openalex.org/W2249362929", + "https://openalex.org/W2250178193", + "https://openalex.org/W2257979135", + "https://openalex.org/W2266822037", + "https://openalex.org/W2270245739", + "https://openalex.org/W2271971987", + "https://openalex.org/W2282339125", + "https://openalex.org/W2295598076", + "https://openalex.org/W2295739661", + "https://openalex.org/W2309832917", + "https://openalex.org/W2317747985", + "https://openalex.org/W2344075909", + "https://openalex.org/W2346138280", + "https://openalex.org/W2346573293", + "https://openalex.org/W2368061054", + "https://openalex.org/W2384495648", + "https://openalex.org/W2395916875", + "https://openalex.org/W2396466031", + "https://openalex.org/W2396961612", + "https://openalex.org/W2397115702", + "https://openalex.org/W2399500811", + "https://openalex.org/W2399851305", + "https://openalex.org/W2400084313", + "https://openalex.org/W2407014344", + "https://openalex.org/W2407212869", + "https://openalex.org/W2418011751", + "https://openalex.org/W2465345967", + "https://openalex.org/W2467110937", + "https://openalex.org/W2472819217", + "https://openalex.org/W2474440862", + "https://openalex.org/W2486444208", + "https://openalex.org/W2504108613", + "https://openalex.org/W2522203492", + "https://openalex.org/W2531409750", + "https://openalex.org/W2549852851", + "https://openalex.org/W2551342063", + "https://openalex.org/W2553303224", + "https://openalex.org/W2555886487", + "https://openalex.org/W2556372419", + "https://openalex.org/W2556522401", + "https://openalex.org/W2560674852", + "https://openalex.org/W2563364594", + "https://openalex.org/W2571670780", + "https://openalex.org/W2578206533", + "https://openalex.org/W2580087858", + "https://openalex.org/W2585240214", + "https://openalex.org/W2587014634", + "https://openalex.org/W2588803499", + "https://openalex.org/W2593649365", + "https://openalex.org/W2593649546", + "https://openalex.org/W2594475271", + "https://openalex.org/W2596367596", + "https://openalex.org/W2601450892", + "https://openalex.org/W2604763608", + "https://openalex.org/W2604766410", + "https://openalex.org/W2608595939", + "https://openalex.org/W2608702473", + "https://openalex.org/W2610817424", + "https://openalex.org/W2613868844", + "https://openalex.org/W2616180702", + "https://openalex.org/W2616619952", + "https://openalex.org/W2618530766", + "https://openalex.org/W2619184049", + "https://openalex.org/W2620641980", + "https://openalex.org/W2620689287", + "https://openalex.org/W2622730215", + "https://openalex.org/W2623091261", + "https://openalex.org/W2624086852", + "https://openalex.org/W2624473996", + "https://openalex.org/W2626984672", + "https://openalex.org/W2725660645", + "https://openalex.org/W2728797307", + "https://openalex.org/W2734383650", + "https://openalex.org/W2740438624", + "https://openalex.org/W2741261073", + "https://openalex.org/W2741430497", + "https://openalex.org/W2746314669", + "https://openalex.org/W2748513770", + "https://openalex.org/W2751836095", + "https://openalex.org/W2752331852", + "https://openalex.org/W2752852504", + "https://openalex.org/W2753160622", + "https://openalex.org/W2753433947", + "https://openalex.org/W2756085244", + "https://openalex.org/W2765407302", + "https://openalex.org/W2768408766", + "https://openalex.org/W2769653148", + "https://openalex.org/W2769743674", + "https://openalex.org/W2772089072", + "https://openalex.org/W2773108397", + "https://openalex.org/W2773706593", + "https://openalex.org/W2774246732", + "https://openalex.org/W2775233965", + "https://openalex.org/W2777138789", + "https://openalex.org/W2777539043", + "https://openalex.org/W2778618317", + "https://openalex.org/W2778633128", + "https://openalex.org/W2778749116", + "https://openalex.org/W2780562800", + "https://openalex.org/W2782093256", + "https://openalex.org/W2783201493", + "https://openalex.org/W2784287478", + "https://openalex.org/W2785444061", + "https://openalex.org/W2785494456", + "https://openalex.org/W2787035179", + "https://openalex.org/W2787189300", + "https://openalex.org/W2787501667", + "https://openalex.org/W2788079077", + "https://openalex.org/W2788110787", + "https://openalex.org/W2788853733", + "https://openalex.org/W2789487674", + "https://openalex.org/W2793670633", + "https://openalex.org/W2793695846", + "https://openalex.org/W2794356495", + "https://openalex.org/W2796265726", + "https://openalex.org/W2803311163", + "https://openalex.org/W2803435037", + "https://openalex.org/W2804534929", + "https://openalex.org/W2808938483", + "https://openalex.org/W2809054435", + "https://openalex.org/W2809880372", + "https://openalex.org/W2809899846", + "https://openalex.org/W2818275232", + "https://openalex.org/W2826306652", + "https://openalex.org/W2884528674", + "https://openalex.org/W2885311373", + "https://openalex.org/W2885487916", + "https://openalex.org/W2885820039", + "https://openalex.org/W2886200920", + "https://openalex.org/W2887612286", + "https://openalex.org/W2889130221", + "https://openalex.org/W2899771611", + "https://openalex.org/W2902994895", + "https://openalex.org/W2903995489", + "https://openalex.org/W2911090636", + "https://openalex.org/W2913566062", + "https://openalex.org/W2913668833", + "https://openalex.org/W2914694469", + "https://openalex.org/W2947123069", + "https://openalex.org/W2949264490", + "https://openalex.org/W2950277768", + "https://openalex.org/W2950326163", + "https://openalex.org/W2950330175", + "https://openalex.org/W2950680102", + "https://openalex.org/W2950731343", + "https://openalex.org/W2951104886", + "https://openalex.org/W2951775784", + "https://openalex.org/W2952074906", + "https://openalex.org/W2952125132", + "https://openalex.org/W2953384591", + "https://openalex.org/W2963216850", + "https://openalex.org/W2963263347", + "https://openalex.org/W2963305465", + "https://openalex.org/W2963341924", + "https://openalex.org/W2963446712", + "https://openalex.org/W2963474950", + "https://openalex.org/W2963565814", + "https://openalex.org/W2963628712", + "https://openalex.org/W2963775850", + "https://openalex.org/W2963778169", + "https://openalex.org/W2963815651", + "https://openalex.org/W2963821229", + "https://openalex.org/W2963840672", + "https://openalex.org/W2963905884", + "https://openalex.org/W2964025389", + "https://openalex.org/W2964029277", + "https://openalex.org/W2964054038", + "https://openalex.org/W2964081807", + "https://openalex.org/W2964137095", + "https://openalex.org/W2965658867", + "https://openalex.org/W2997644599", + "https://openalex.org/W3000180494", + "https://openalex.org/W3006551545", + "https://openalex.org/W3023169168", + "https://openalex.org/W3026324026", + "https://openalex.org/W3035219538", + "https://openalex.org/W3043188097", + "https://openalex.org/W3099343340", + "https://openalex.org/W3099934359", + "https://openalex.org/W3100055683", + "https://openalex.org/W3102978735", + "https://openalex.org/W3118608800", + "https://openalex.org/W3120740533", + "https://openalex.org/W3122943284", + "https://openalex.org/W3124229194", + "https://openalex.org/W3195149063", + "https://openalex.org/W4205687621", + "https://openalex.org/W4211049957", + "https://openalex.org/W4226503094", + "https://openalex.org/W4232158517", + "https://openalex.org/W4233965824", + "https://openalex.org/W4234228486", + "https://openalex.org/W4237910115", + "https://openalex.org/W4239181501", + "https://openalex.org/W4243562335", + "https://openalex.org/W4246635279", + "https://openalex.org/W4247950230", + "https://openalex.org/W4250224875", + "https://openalex.org/W4255491615", + "https://openalex.org/W4289752289", + "https://openalex.org/W4289763996", + "https://openalex.org/W4293407356", + "https://openalex.org/W4293407536", + "https://openalex.org/W4293870975", + "https://openalex.org/W4294375521", + "https://openalex.org/W4294646197", + "https://openalex.org/W4295185264", + "https://openalex.org/W4295292688", + "https://openalex.org/W4295727797", + "https://openalex.org/W4297670622", + "https://openalex.org/W4297733768", + "https://openalex.org/W4297778814", + "https://openalex.org/W4297800546", + "https://openalex.org/W4297803580", + "https://openalex.org/W4297917482", + "https://openalex.org/W4298052809", + "https://openalex.org/W4298342842", + "https://openalex.org/W4298826872", + "https://openalex.org/W4299518610", + "https://openalex.org/W4300001399", + "https://openalex.org/W4300197707", + "https://openalex.org/W4300427683", + "https://openalex.org/W4300687381", + "https://openalex.org/W4300687870", + "https://openalex.org/W4300716136", + "https://openalex.org/W4300799480", + "https://openalex.org/W4300971732", + "https://openalex.org/W4301181331", + "https://openalex.org/W4301260059", + "https://openalex.org/W4302594429", + "https://openalex.org/W4302768905", + "https://openalex.org/W4302793682", + "https://openalex.org/W4303633609", + "https://openalex.org/W4313169793", + "https://openalex.org/W4324106947", + "https://openalex.org/W4387808640", + "https://openalex.org/W4394633966", + "https://openalex.org/W4394672493" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "open": [ + 1 + ], + "access": [ + 2 + ], + "book": [ + 3 + ], + "gives": [ + 4 + ], + "the": [ + 5, + 29 + ], + "first": [ + 6, + 30 + ], + "comprehensive": [ + 7 + ], + "overview": [ + 8 + ], + "of": [ + 9, + 19, + 33 + ], + "general": [ + 10 + ], + "methods": [ + 11 + ], + "in": [ + 12 + ], + "Automatic": [ + 13 + ], + "Machine": [ + 14 + ], + "Learning,": [ + 15 + ], + "AutoML,": [ + 16 + ], + "collects": [ + 17 + ], + "descriptions": [ + 18 + ], + "existing": [ + 20 + ], + "AutoML": [ + 21, + 34 + ], + "systems": [ + 22 + ], + "based": [ + 23 + ], + "on": [ + 24 + ], + "these": [ + 25 + ], + "methods,": [ + 26 + ], + "and": [ + 27 + ], + "discusses": [ + 28 + ], + "international": [ + 31 + ], + "challenge": [ + 32 + ], + "systems.": [ + 35 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 78 + }, + { + "year": 2025, + "cited_by_count": 270 + }, + { + "year": 2024, + "cited_by_count": 240 + }, + { + "year": 2023, + "cited_by_count": 230 + }, + { + "year": 2022, + "cited_by_count": 223 + }, + { + "year": 2021, + "cited_by_count": 212 + }, + { + "year": 2020, + "cited_by_count": 107 + }, + { + "year": 2019, + "cited_by_count": 19 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2022-02-24T00:00:00" + }, + { + "id": "https://openalex.org/W2168029744", + "doi": "https://doi.org/10.1214/009053607000000677", + "title": "Kernel methods in machine learning", + "display_name": "Kernel methods in machine learning", + "relevance_score": 2928.1125, + "publication_year": 2008, + "publication_date": "2008-05-26", + "ids": { + "openalex": "https://openalex.org/W2168029744", + "doi": "https://doi.org/10.1214/009053607000000677", + "mag": "2168029744" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Thomas Hofmann", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I42894916", + "display_name": "Data61", + "ror": "https://ror.org/03q397159", + "country_code": "AU", + "type": "other", + "lineage": [ + "https://openalex.org/I1292875679", + "https://openalex.org/I2801453606", + "https://openalex.org/I42894916", + "https://openalex.org/I4387156119" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "Thomas Hofmann", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "institution_ids": [ + "https://openalex.org/I42894916" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Bernhard Schölkopf", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Bernhard Schölkopf", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Alexander J. Smola", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I42894916", + "display_name": "Data61", + "ror": "https://ror.org/03q397159", + "country_code": "AU", + "type": "other", + "lineage": [ + "https://openalex.org/I1292875679", + "https://openalex.org/I2801453606", + "https://openalex.org/I42894916", + "https://openalex.org/I4387156119" + ] + }, + { + "id": "https://openalex.org/I4210112925", + "display_name": "Max Planck Institute for Biological Cybernetics", + "ror": "https://ror.org/026nmvv73", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I4210112925" + ] + } + ], + "countries": [ + "AU", + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Alexander J. Smola", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TBINGEN GERMANY" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "institution_ids": [ + "https://openalex.org/I42894916" + ] + }, + { + "raw_affiliation_string": "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TBINGEN GERMANY", + "institution_ids": [ + "https://openalex.org/I4210112925" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I42894916" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 26.4332, + "has_fulltext": true, + "cited_by_count": 1588, + "citation_normalized_percentile": { + "value": 0.99597728, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "36", + "issue": "3", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.2791999876499176, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.2791999876499176, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.27090001106262207, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.1281999945640564, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.7440000176429749 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.5529999732971191 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.5508999824523926 + }, + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.48159998655319214 + }, + { + "id": "https://openalex.org/keywords/binary-classification", + "display_name": "Binary classification", + "score": 0.45410001277923584 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4406000077724457 + }, + { + "id": "https://openalex.org/keywords/kernel-embedding-of-distributions", + "display_name": "Kernel embedding of distributions", + "score": 0.43630000948905945 + }, + { + "id": "https://openalex.org/keywords/representer-theorem", + "display_name": "Representer theorem", + "score": 0.42590001225471497 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.34369999170303345 + }, + { + "id": "https://openalex.org/keywords/radial-basis-function-kernel", + "display_name": "Radial basis function kernel", + "score": 0.34049999713897705 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.7440000176429749 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6704999804496765 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6018999814987183 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.5529999732971191 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.5508999824523926 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5184000134468079 + }, + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.48159998655319214 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.46219998598098755 + }, + { + "id": "https://openalex.org/C66905080", + "wikidata": "https://www.wikidata.org/wiki/Q17005494", + "display_name": "Binary classification", + "level": 3, + "score": 0.45410001277923584 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4406000077724457 + }, + { + "id": "https://openalex.org/C134517425", + "wikidata": "https://www.wikidata.org/wiki/Q16000131", + "display_name": "Kernel embedding of distributions", + "level": 4, + "score": 0.43630000948905945 + }, + { + "id": "https://openalex.org/C172623408", + "wikidata": "https://www.wikidata.org/wiki/Q7314263", + "display_name": "Representer theorem", + "level": 5, + "score": 0.42590001225471497 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.34369999170303345 + }, + { + "id": "https://openalex.org/C75866337", + "wikidata": "https://www.wikidata.org/wiki/Q7280263", + "display_name": "Radial basis function kernel", + "level": 4, + "score": 0.34049999713897705 + }, + { + "id": "https://openalex.org/C140417398", + "wikidata": "https://www.wikidata.org/wiki/Q16933942", + "display_name": "Tree kernel", + "level": 5, + "score": 0.3375000059604645 + }, + { + "id": "https://openalex.org/C58973888", + "wikidata": "https://www.wikidata.org/wiki/Q1041418", + "display_name": "Semi-supervised learning", + "level": 2, + "score": 0.32499998807907104 + }, + { + "id": "https://openalex.org/C14036430", + "wikidata": "https://www.wikidata.org/wiki/Q3736076", + "display_name": "Function (biology)", + "level": 2, + "score": 0.3230000138282776 + }, + { + "id": "https://openalex.org/C22367795", + "wikidata": "https://www.wikidata.org/wiki/Q7625208", + "display_name": "Structured prediction", + "level": 2, + "score": 0.3158000111579895 + }, + { + "id": "https://openalex.org/C160446489", + "wikidata": "https://www.wikidata.org/wiki/Q7226642", + "display_name": "Polynomial kernel", + "level": 4, + "score": 0.3151000142097473 + }, + { + "id": "https://openalex.org/C115903097", + "wikidata": "https://www.wikidata.org/wiki/Q7094097", + "display_name": "Online machine learning", + "level": 3, + "score": 0.31119999289512634 + }, + { + "id": "https://openalex.org/C65660741", + "wikidata": "https://www.wikidata.org/wiki/Q3952743", + "display_name": "Score", + "level": 2, + "score": 0.3109000027179718 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.30809998512268066 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.2989000082015991 + }, + { + "id": "https://openalex.org/C77967617", + "wikidata": "https://www.wikidata.org/wiki/Q4677561", + "display_name": "Active learning (machine learning)", + "level": 2, + "score": 0.295199990272522 + }, + { + "id": "https://openalex.org/C158622935", + "wikidata": "https://www.wikidata.org/wiki/Q660848", + "display_name": "Nonlinear system", + "level": 2, + "score": 0.28299999237060547 + }, + { + "id": "https://openalex.org/C48372109", + "wikidata": "https://www.wikidata.org/wiki/Q3913", + "display_name": "Binary number", + "level": 2, + "score": 0.27970001101493835 + }, + { + "id": "https://openalex.org/C51632099", + "wikidata": "https://www.wikidata.org/wiki/Q3985153", + "display_name": "Training set", + "level": 2, + "score": 0.2784000039100647 + }, + { + "id": "https://openalex.org/C2780428219", + "wikidata": "https://www.wikidata.org/wiki/Q16952335", + "display_name": "Cover (algebra)", + "level": 2, + "score": 0.27799999713897705 + }, + { + "id": "https://openalex.org/C115051666", + "wikidata": "https://www.wikidata.org/wiki/Q6522493", + "display_name": "Ranging", + "level": 2, + "score": 0.2750999927520752 + }, + { + "id": "https://openalex.org/C136389625", + "wikidata": "https://www.wikidata.org/wiki/Q334384", + "display_name": "Supervised learning", + "level": 3, + "score": 0.27230000495910645 + }, + { + "id": "https://openalex.org/C21080849", + "wikidata": "https://www.wikidata.org/wiki/Q13611879", + "display_name": "Data point", + "level": 2, + "score": 0.26989999413490295 + }, + { + "id": "https://openalex.org/C2778572836", + "wikidata": "https://www.wikidata.org/wiki/Q380933", + "display_name": "Space (punctuation)", + "level": 2, + "score": 0.25369998812675476 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:math/0701907", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/math/0701907", + "pdf_url": "https://arxiv.org/pdf/math/0701907", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:CULeuclid:euclid.aos/1211819561", + "is_oa": false, + "landing_page_url": "http://projecteuclid.org/euclid.aos/1211819561", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400787", + "display_name": "Project Euclid (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:openresearch-repository.anu.edu.au:1885/100161", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/1885/100161", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402539", + "display_name": "ANU Open Research (Australian National University)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I118347636", + "host_organization_name": "Australian National University", + "host_organization_lineage": [ + "https://openalex.org/I118347636" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annals of Statistics", + "raw_type": "Journal article" + } + ], + "best_oa_location": { + "id": "doi:10.1214/009053607000000677", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1214/009053607000000677", + "pdf_url": "https://projecteuclid.org/journals/annals-of-statistics/volume-36/issue-3/Kernel-methods-in-machine-learning/10.1214/009053607000000677.pdf", + "source": { + "id": "https://openalex.org/S119757635", + "display_name": "The Annals of Statistics", + "issn_l": "0090-5364", + "issn": [ + "0090-5364", + "2168-8966" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319881", + "host_organization_name": "Institute of Mathematical Statistics", + "host_organization_lineage": [ + "https://openalex.org/P4310319881" + ], + "host_organization_lineage_names": [ + "Institute of Mathematical Statistics" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Annals of Statistics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320310369", + "display_name": "National ICT Australia", + "ror": "https://ror.org/03q397159" + }, + { + "id": "https://openalex.org/F4320315885", + "display_name": "Australian Government", + "ror": "https://ror.org/0314h5y94" + }, + { + "id": "https://openalex.org/F4320328470", + "display_name": "Mathematisches Forschungsinstitut Oberwolfach", + "ror": "https://ror.org/001zbj766" + }, + { + "id": "https://openalex.org/F4320334704", + "display_name": "Australian Research Council", + "ror": "https://ror.org/05mmh0f86" + } + ], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2168029744.pdf", + "grobid_xml": "https://content.openalex.org/works/W2168029744.grobid-xml" + }, + "referenced_works_count": 116, + "referenced_works": [ + "https://openalex.org/W14071851", + "https://openalex.org/W56743589", + "https://openalex.org/W179694669", + "https://openalex.org/W1490266132", + "https://openalex.org/W1496189301", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512098439", + "https://openalex.org/W1526146785", + "https://openalex.org/W1526729636", + "https://openalex.org/W1542652324", + "https://openalex.org/W1549656520", + "https://openalex.org/W1550988992", + "https://openalex.org/W1560729174", + "https://openalex.org/W1575431606", + "https://openalex.org/W1578255497", + "https://openalex.org/W1587744656", + "https://openalex.org/W1596052433", + "https://openalex.org/W1604293137", + "https://openalex.org/W1638081485", + "https://openalex.org/W1647376582", + "https://openalex.org/W1719651905", + "https://openalex.org/W1774304772", + "https://openalex.org/W1835509607", + "https://openalex.org/W1899157803", + "https://openalex.org/W1966347620", + "https://openalex.org/W1968934255", + "https://openalex.org/W1975077471", + "https://openalex.org/W1982032418", + "https://openalex.org/W1986931325", + "https://openalex.org/W1989408439", + "https://openalex.org/W1990534247", + "https://openalex.org/W1991200719", + "https://openalex.org/W1992236290", + "https://openalex.org/W1992666150", + "https://openalex.org/W1995558350", + "https://openalex.org/W1998438337", + "https://openalex.org/W1999486090", + "https://openalex.org/W2001792610", + "https://openalex.org/W2002806284", + "https://openalex.org/W2007154098", + "https://openalex.org/W2008400752", + "https://openalex.org/W2009511046", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015904350", + "https://openalex.org/W2018582985", + "https://openalex.org/W2020816856", + "https://openalex.org/W2025341678", + "https://openalex.org/W2051381803", + "https://openalex.org/W2060591526", + "https://openalex.org/W2064976291", + "https://openalex.org/W2070771761", + "https://openalex.org/W2075887074", + "https://openalex.org/W2082100828", + "https://openalex.org/W2082612735", + "https://openalex.org/W2083780577", + "https://openalex.org/W2086404575", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092182929", + "https://openalex.org/W2098385651", + "https://openalex.org/W2101276256", + "https://openalex.org/W2103657184", + "https://openalex.org/W2104128541", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106353560", + "https://openalex.org/W2108153239", + "https://openalex.org/W2112076978", + "https://openalex.org/W2114281975", + "https://openalex.org/W2119647652", + "https://openalex.org/W2120340025", + "https://openalex.org/W2121127625", + "https://openalex.org/W2123606421", + "https://openalex.org/W2123737232", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2125053431", + "https://openalex.org/W2127713198", + "https://openalex.org/W2131479089", + "https://openalex.org/W2132637896", + "https://openalex.org/W2132870739", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135498906", + "https://openalex.org/W2139686264", + "https://openalex.org/W2140095548", + "https://openalex.org/W2141224867", + "https://openalex.org/W2141407058", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144068644", + "https://openalex.org/W2148018895", + "https://openalex.org/W2151949149", + "https://openalex.org/W2156515921", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2159737176", + "https://openalex.org/W2161920802", + "https://openalex.org/W2162836072", + "https://openalex.org/W2164943005", + "https://openalex.org/W2169945149", + "https://openalex.org/W2408196097", + "https://openalex.org/W2554813760", + "https://openalex.org/W2795528501", + "https://openalex.org/W2988119488", + "https://openalex.org/W2994982620", + "https://openalex.org/W4210636998", + "https://openalex.org/W4232576706", + "https://openalex.org/W4234698323", + "https://openalex.org/W4238284510", + "https://openalex.org/W4238957295", + "https://openalex.org/W4239510810", + "https://openalex.org/W4246066915", + "https://openalex.org/W4247545571", + "https://openalex.org/W4249925659", + "https://openalex.org/W4251085907", + "https://openalex.org/W4251115686", + "https://openalex.org/W4298876635", + "https://openalex.org/W4396738453" + ], + "related_works": [], + "abstract_inverted_index": { + "We": [ + 0, + 77 + ], + "review": [ + 1 + ], + "machine": [ + 2 + ], + "learning": [ + 3, + 12, + 52 + ], + "methods": [ + 4, + 10, + 90 + ], + "employing": [ + 5 + ], + "positive": [ + 6 + ], + "definite": [ + 7 + ], + "kernels.": [ + 8 + ], + "These": [ + 9 + ], + "formulate": [ + 11 + ], + "and": [ + 13, + 49 + ], + "estimation": [ + 14, + 92 + ], + "problems": [ + 15 + ], + "in": [ + 16, + 31, + 37 + ], + "a": [ + 17, + 34, + 79 + ], + "reproducing": [ + 18 + ], + "kernel": [ + 19 + ], + "Hilbert": [ + 20 + ], + "space": [ + 21 + ], + "(RKHS)": [ + 22 + ], + "of": [ + 23, + 33, + 40, + 45, + 51, + 62, + 82 + ], + "functions": [ + 24, + 68, + 72 + ], + "defined": [ + 25, + 73 + ], + "on": [ + 26, + 74 + ], + "the": [ + 27, + 43, + 47, + 56 + ], + "data": [ + 28 + ], + "domain,": [ + 29 + ], + "expanded": [ + 30 + ], + "terms": [ + 32 + ], + "kernel.": [ + 35 + ], + "Working": [ + 36 + ], + "linear": [ + 38 + ], + "spaces": [ + 39 + ], + "function": [ + 41 + ], + "has": [ + 42 + ], + "benefit": [ + 44 + ], + "facilitating": [ + 46 + ], + "construction": [ + 48 + ], + "analysis": [ + 50 + ], + "algorithms": [ + 53 + ], + "while": [ + 54 + ], + "at": [ + 55 + ], + "same": [ + 57 + ], + "time": [ + 58 + ], + "allowing": [ + 59 + ], + "large": [ + 60 + ], + "classes": [ + 61 + ], + "functions.": [ + 63 + ], + "The": [ + 64 + ], + "latter": [ + 65 + ], + "include": [ + 66 + ], + "nonlinear": [ + 67 + ], + "as": [ + 69, + 71 + ], + "well": [ + 70 + ], + "nonvectorial": [ + 75 + ], + "data.": [ + 76, + 95 + ], + "cover": [ + 78 + ], + "wide": [ + 80 + ], + "range": [ + 81 + ], + "methods,": [ + 83 + ], + "ranging": [ + 84 + ], + "from": [ + 85 + ], + "binary": [ + 86 + ], + "classifiers": [ + 87 + ], + "to": [ + 88 + ], + "sophisticated": [ + 89 + ], + "for": [ + 91 + ], + "with": [ + 93 + ], + "structured": [ + 94 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 37 + }, + { + "year": 2025, + "cited_by_count": 119 + }, + { + "year": 2024, + "cited_by_count": 144 + }, + { + "year": 2023, + "cited_by_count": 146 + }, + { + "year": 2022, + "cited_by_count": 169 + }, + { + "year": 2021, + "cited_by_count": 146 + }, + { + "year": 2020, + "cited_by_count": 163 + }, + { + "year": 2019, + "cited_by_count": 122 + }, + { + "year": 2018, + "cited_by_count": 99 + }, + { + "year": 2017, + "cited_by_count": 100 + }, + { + "year": 2016, + "cited_by_count": 81 + }, + { + "year": 2015, + "cited_by_count": 60 + }, + { + "year": 2014, + "cited_by_count": 67 + }, + { + "year": 2013, + "cited_by_count": 48 + }, + { + "year": 2012, + "cited_by_count": 41 + } + ], + "updated_date": "2026-05-22T09:01:20.584952", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2951278869", + "doi": "https://doi.org/10.48550/arxiv.cs/0205070", + "title": "Thumbs up? Sentiment Classification using Machine Learning Techniques", + "display_name": "Thumbs up? Sentiment Classification using Machine Learning Techniques", + "relevance_score": 2912.426, + "publication_year": 2002, + "publication_date": "2002-05-28", + "ids": { + "openalex": "https://openalex.org/W2951278869", + "doi": "https://doi.org/10.48550/arxiv.cs/0205070", + "mag": "2951278869" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/cs/0205070", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101799605", + "display_name": "Bo Pang", + "orcid": "https://orcid.org/0000-0003-4521-6369" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Pang, Bo", + "raw_affiliation_strings": [ + "[Cornell Univ., Ithaca, NY]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Cornell Univ., Ithaca, NY]", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5076876084", + "display_name": "Lillian Lee", + "orcid": "https://orcid.org/0000-0003-4770-1712" + }, + "institutions": [ + { + "id": "https://openalex.org/I205783295", + "display_name": "Cornell University", + "ror": "https://ror.org/05bnh6r87", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I205783295" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Lee, Lillian", + "raw_affiliation_strings": [ + "[Cornell Univ., Ithaca, NY]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "[Cornell Univ., Ithaca, NY]", + "institution_ids": [ + "https://openalex.org/I205783295" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5010223683", + "display_name": "Shivakumar Vaithyanathan", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4210085935", + "display_name": "IBM Research - Almaden", + "ror": "https://ror.org/005w8dd04", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1341412227", + "https://openalex.org/I4210085935", + "https://openalex.org/I4210114115" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vaithyanathan, Shivakumar", + "raw_affiliation_strings": [ + "IBM Almaden Research Center, San Jose´, CA#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "IBM Almaden Research Center, San Jose´, CA#TAB#", + "institution_ids": [ + "https://openalex.org/I4210085935" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5101799605" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I205783295" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 2213, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10664", + "display_name": "Sentiment Analysis and Opinion Mining", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10664", + "display_name": "Sentiment Analysis and Opinion Mining", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10028", + "display_name": "Topic Modeling", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/naive-bayes-classifier", + "display_name": "Naive Bayes classifier", + "score": 0.7803267240524292 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7159409523010254 + }, + { + "id": "https://openalex.org/keywords/categorization", + "display_name": "Categorization", + "score": 0.7090805172920227 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7036598324775696 + }, + { + "id": "https://openalex.org/keywords/sentiment-analysis", + "display_name": "Sentiment analysis", + "score": 0.6854574084281921 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6812595129013062 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6556271314620972 + }, + { + "id": "https://openalex.org/keywords/principle-of-maximum-entropy", + "display_name": "Principle of maximum entropy", + "score": 0.6111433506011963 + }, + { + "id": "https://openalex.org/keywords/natural-language-processing", + "display_name": "Natural language processing", + "score": 0.4346766471862793 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C52001869", + "wikidata": "https://www.wikidata.org/wiki/Q812530", + "display_name": "Naive Bayes classifier", + "level": 3, + "score": 0.7803267240524292 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7159409523010254 + }, + { + "id": "https://openalex.org/C94124525", + "wikidata": "https://www.wikidata.org/wiki/Q912550", + "display_name": "Categorization", + "level": 2, + "score": 0.7090805172920227 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7036598324775696 + }, + { + "id": "https://openalex.org/C66402592", + "wikidata": "https://www.wikidata.org/wiki/Q2271421", + "display_name": "Sentiment analysis", + "level": 2, + "score": 0.6854574084281921 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6812595129013062 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6556271314620972 + }, + { + "id": "https://openalex.org/C9679016", + "wikidata": "https://www.wikidata.org/wiki/Q1417473", + "display_name": "Principle of maximum entropy", + "level": 2, + "score": 0.6111433506011963 + }, + { + "id": "https://openalex.org/C204321447", + "wikidata": "https://www.wikidata.org/wiki/Q30642", + "display_name": "Natural language processing", + "level": 1, + "score": 0.4346766471862793 + } + ], + "mesh": [], + "locations_count": 8, + "locations": [ + { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.115.7478", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.115.7478", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/people/pabo/papers/sentiment.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.17.9562", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.17.9562", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/home/llee/papers/sentiment.ps", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.224.2133", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.224.2133", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.columbia.edu/%7Ejulia/papers/pangetal02.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.3.1972", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.3.1972", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://acl.ldc.upenn.edu/W/W02/W02-1011.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.342.8489", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.342.8489", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://arxiv.org/pdf/cs/0205070v1.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.93.8755", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.8755", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.cornell.edu/home/llee/papers/sentiment.pdf", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.cs/0205070", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.cs/0205070", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:cs/0205070", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/cs/0205070", + "pdf_url": "https://arxiv.org/pdf/cs/0205070", + "source": { + "id": "https://openalex.org/S4393918464", + "display_name": "ArXiv.org", + "issn_l": "2331-8422", + "issn": [ + "2331-8422" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.6100000143051147 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 21, + "referenced_works": [ + "https://openalex.org/W94749751", + "https://openalex.org/W123043039", + "https://openalex.org/W159417085", + "https://openalex.org/W204713426", + "https://openalex.org/W1547032355", + "https://openalex.org/W1550206324", + "https://openalex.org/W1576520375", + "https://openalex.org/W1924689489", + "https://openalex.org/W1998442272", + "https://openalex.org/W2038201841", + "https://openalex.org/W2048374711", + "https://openalex.org/W2066590388", + "https://openalex.org/W2086042358", + "https://openalex.org/W2093585241", + "https://openalex.org/W2096175520", + "https://openalex.org/W2149684865", + "https://openalex.org/W2163306339", + "https://openalex.org/W2787893582", + "https://openalex.org/W2949696181", + "https://openalex.org/W3146306708", + "https://openalex.org/W3151392175" + ], + "related_works": [ + "https://openalex.org/W2165912799", + "https://openalex.org/W2735662278", + "https://openalex.org/W2382615723", + "https://openalex.org/W4311804456", + "https://openalex.org/W1987484445", + "https://openalex.org/W2623658258", + "https://openalex.org/W2143413548", + "https://openalex.org/W1969219540", + "https://openalex.org/W2370459448", + "https://openalex.org/W3021501837" + ], + "abstract_inverted_index": { + "We": [ + 0, + 69 + ], + "consider": [ + 1 + ], + "the": [ + 2, + 40, + 76 + ], + "problem": [ + 3, + 79 + ], + "of": [ + 4 + ], + "classifying": [ + 5 + ], + "documents": [ + 6 + ], + "not": [ + 7, + 57 + ], + "by": [ + 8, + 11, + 71 + ], + "topic,": [ + 9 + ], + "but": [ + 10 + ], + "overall": [ + 12 + ], + "sentiment,": [ + 13 + ], + "e.g.,": [ + 14 + ], + "determining": [ + 15 + ], + "whether": [ + 16 + ], + "a": [ + 17 + ], + "review": [ + 18 + ], + "is": [ + 19 + ], + "positive": [ + 20 + ], + "or": [ + 21 + ], + "negative.": [ + 22 + ], + "Using": [ + 23 + ], + "movie": [ + 24 + ], + "reviews": [ + 25 + ], + "as": [ + 26, + 59, + 64 + ], + "data,": [ + 27 + ], + "we": [ + 28, + 45 + ], + "find": [ + 29 + ], + "that": [ + 30, + 74 + ], + "standard": [ + 31 + ], + "machine": [ + 32, + 42 + ], + "learning": [ + 33, + 43 + ], + "techniques": [ + 34 + ], + "definitively": [ + 35 + ], + "outperform": [ + 36 + ], + "human-produced": [ + 37 + ], + "baselines.": [ + 38 + ], + "However,": [ + 39 + ], + "three": [ + 41 + ], + "methods": [ + 44 + ], + "employed": [ + 46 + ], + "(Naive": [ + 47 + ], + "Bayes,": [ + 48 + ], + "maximum": [ + 49 + ], + "entropy": [ + 50 + ], + "classification,": [ + 51 + ], + "and": [ + 52 + ], + "support": [ + 53 + ], + "vector": [ + 54 + ], + "machines)": [ + 55 + ], + "do": [ + 56 + ], + "perform": [ + 58 + ], + "well": [ + 60 + ], + "on": [ + 61, + 65 + ], + "sentiment": [ + 62, + 77 + ], + "classification": [ + 63, + 78 + ], + "traditional": [ + 66 + ], + "topic-based": [ + 67 + ], + "categorization.": [ + 68 + ], + "conclude": [ + 70 + ], + "examining": [ + 72 + ], + "factors": [ + 73 + ], + "make": [ + 75 + ], + "more": [ + 80 + ], + "challenging.": [ + 81 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 36 + }, + { + "year": 2024, + "cited_by_count": 80 + }, + { + "year": 2023, + "cited_by_count": 125 + }, + { + "year": 2022, + "cited_by_count": 143 + }, + { + "year": 2021, + "cited_by_count": 182 + }, + { + "year": 2020, + "cited_by_count": 197 + }, + { + "year": 2019, + "cited_by_count": 212 + }, + { + "year": 2018, + "cited_by_count": 230 + }, + { + "year": 2017, + "cited_by_count": 222 + }, + { + "year": 2016, + "cited_by_count": 184 + }, + { + "year": 2015, + "cited_by_count": 154 + }, + { + "year": 2014, + "cited_by_count": 131 + }, + { + "year": 2013, + "cited_by_count": 61 + }, + { + "year": 2012, + "cited_by_count": 44 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2104489082", + "doi": "https://doi.org/10.1103/physrevlett.108.058301", + "title": "Fast and Accurate Modeling of Molecular Atomization Energies with Machine Learning", + "display_name": "Fast and Accurate Modeling of Molecular Atomization Energies with Machine Learning", + "relevance_score": 2889.4575, + "publication_year": 2012, + "publication_date": "2012-01-31", + "ids": { + "openalex": "https://openalex.org/W2104489082", + "doi": "https://doi.org/10.1103/physrevlett.108.058301", + "mag": "2104489082", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/22400967" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/physrevlett.108.058301", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.108.058301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1109.2618", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5020780798", + "display_name": "Matthias Rupp", + "orcid": "https://orcid.org/0000-0002-2934-2958" + }, + "institutions": [ + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Matthias Rupp", + "raw_affiliation_strings": [ + "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "Machine Learning Group, Technical University of Berlin", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5026929463", + "display_name": "Alexandre Tkatchenko", + "orcid": "https://orcid.org/0000-0002-1012-4854" + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I2800875726", + "display_name": "Fritz Haber Institute of the Max Planck Society", + "ror": "https://ror.org/03k9qs827", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I2800875726" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alexandre Tkatchenko", + "raw_affiliation_strings": [ + "Fritz-Haber-Institut der Max-Planck-Gesellschaft, 14195 Berlin, Germany", + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Theory, Fritz Haber Institute, Max Planck Society", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Fritz-Haber-Institut der Max-Planck-Gesellschaft, 14195 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Theory, Fritz Haber Institute, Max Planck Society", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107838719", + "display_name": "Klaus‐Robert Müller", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I4577782", + "display_name": "Technische Universität Berlin", + "ror": "https://ror.org/03v4gjf40", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I4577782" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Klaus-Robert Müller", + "raw_affiliation_strings": [ + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "Machine Learning Group, Technical University of Berlin", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin, Franklinstr 28/29, 10587 Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Machine Learning Group, Technical University of Berlin", + "institution_ids": [ + "https://openalex.org/I4577782" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088793872", + "display_name": "O. Anatole von Lilienfeld", + "orcid": "https://orcid.org/0000-0001-7419-0466" + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I1282105669", + "display_name": "Argonne National Laboratory", + "ror": "https://ror.org/05gvnxz63", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1282105669", + "https://openalex.org/I1330989302", + "https://openalex.org/I39565521", + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "O. Anatole von Lilienfeld", + "raw_affiliation_strings": [ + "Argonne Leadership Computing Facility, Argonne National Laboratory, Argonne, Illinois 60439, USA", + "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "Argonne Leadership Computing Facility, Argonne National Laboratory", + "Institute of Pure and Applied Mathematics, University of California Los Angeles" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Argonne Leadership Computing Facility, Argonne National Laboratory, Argonne, Illinois 60439, USA", + "institution_ids": [ + "https://openalex.org/I1282105669" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles, Los Angeles, California 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Argonne Leadership Computing Facility, Argonne National Laboratory", + "institution_ids": [ + "https://openalex.org/I1282105669" + ] + }, + { + "raw_affiliation_string": "Institute of Pure and Applied Mathematics, University of California Los Angeles", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5020780798" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161318765", + "https://openalex.org/I4577782" + ], + "apc_list": { + "value": 3750, + "currency": "USD", + "value_usd": 3750 + }, + "apc_paid": null, + "fwci": 13.8904, + "has_fulltext": false, + "cited_by_count": 2377, + "citation_normalized_percentile": { + "value": 0.99412296, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "108", + "issue": "5", + "first_page": "058301", + "last_page": "058301" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10002", + "display_name": "Advanced Chemical Physics Studies", + "score": 0.9954000115394592, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9923999905586243, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.4200275242328644 + }, + { + "id": "https://openalex.org/keywords/statistical-physics", + "display_name": "Statistical physics", + "score": 0.3693031072616577 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.28881940245628357 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.4200275242328644 + }, + { + "id": "https://openalex.org/C121864883", + "wikidata": "https://www.wikidata.org/wiki/Q677916", + "display_name": "Statistical physics", + "level": 1, + "score": 0.3693031072616577 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.28881940245628357 + } + ], + "mesh": [], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1103/physrevlett.108.058301", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.108.058301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + { + "id": "pmid:22400967", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/22400967", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical review letters", + "raw_type": null + }, + { + "id": "pmh:oai:edoc.unibas.ch:43360", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401836", + "display_name": "edoc (University of Basel)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1850255", + "host_organization_name": "University of Basel", + "host_organization_lineage": [ + "https://openalex.org/I1850255" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "acceptedVersion", + "is_accepted": true, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + }, + { + "id": "pmh:oai:arXiv.org:1109.2618", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1109.2618", + "pdf_url": "https://arxiv.org/pdf/1109.2618", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:orbilu.uni.lu:10993/25176", + "is_oa": true, + "landing_page_url": "http://orbilu.uni.lu/handle/10993/25176", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401815", + "display_name": "Open Repository and Bibliography (University of Luxembourg)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I186903577", + "host_organization_name": "University of Luxembourg", + "host_organization_lineage": [ + "https://openalex.org/I186903577" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-sa", + "license_id": "https://openalex.org/licenses/cc-by-nc-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PHYSICAL REVIEW LETTERS, 108(5). ONE PHYSICS ELLIPSE, COLLEGE PK, MD 20740-3844 USA: AMER PHYSICAL SOC (2012).", + "raw_type": null + }, + { + "id": "pmh:oai:osti.gov:1099077", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1099077", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1500966", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-000F-C6EF-A", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Physical Review Letters", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1109.2618", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1109.2618", + "pdf_url": "https://arxiv.org/pdf/1109.2618", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "display_name": "Affordable and clean energy", + "id": "https://metadata.un.org/sdg/7", + "score": 0.8700000047683716 + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320306084", + "display_name": "U.S. Department of Energy", + "ror": "https://ror.org/01bj3aw27" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 41, + "referenced_works": [ + "https://openalex.org/W1480376833", + "https://openalex.org/W1522205938", + "https://openalex.org/W1544445790", + "https://openalex.org/W1545231783", + "https://openalex.org/W1548618691", + "https://openalex.org/W1554944419", + "https://openalex.org/W1975997599", + "https://openalex.org/W1978538703", + "https://openalex.org/W1979408061", + "https://openalex.org/W1982598895", + "https://openalex.org/W1987236926", + "https://openalex.org/W1988636074", + "https://openalex.org/W1998317125", + "https://openalex.org/W1998848097", + "https://openalex.org/W2000500972", + "https://openalex.org/W2000957843", + "https://openalex.org/W2016819003", + "https://openalex.org/W2017891892", + "https://openalex.org/W2022080248", + "https://openalex.org/W2023390323", + "https://openalex.org/W2023466796", + "https://openalex.org/W2025444507", + "https://openalex.org/W2030976617", + "https://openalex.org/W2037761619", + "https://openalex.org/W2038617772", + "https://openalex.org/W2049961577", + "https://openalex.org/W2059401145", + "https://openalex.org/W2075930604", + "https://openalex.org/W2083415705", + "https://openalex.org/W2108995755", + "https://openalex.org/W2130437470", + "https://openalex.org/W2143981217", + "https://openalex.org/W2148424525", + "https://openalex.org/W2151571625", + "https://openalex.org/W2153693853", + "https://openalex.org/W2171033594", + "https://openalex.org/W2206840988", + "https://openalex.org/W2230728100", + "https://openalex.org/W2787894218", + "https://openalex.org/W3119651796", + "https://openalex.org/W4242320552" + ], + "related_works": [ + "https://openalex.org/W4391375266", + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W4391913857", + "https://openalex.org/W2358668433", + "https://openalex.org/W4396701345", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W4396696052" + ], + "abstract_inverted_index": { + "We": [ + 0 + ], + "introduce": [ + 1 + ], + "a": [ + 2, + 11, + 36, + 69 + ], + "machine": [ + 3 + ], + "learning": [ + 4 + ], + "model": [ + 5 + ], + "to": [ + 6, + 51 + ], + "predict": [ + 7 + ], + "atomization": [ + 8, + 52, + 84 + ], + "energies": [ + 9, + 53 + ], + "of": [ + 10, + 14, + 27, + 41, + 73, + 82 + ], + "diverse": [ + 12 + ], + "set": [ + 13 + ], + "organic": [ + 15, + 66 + ], + "molecules,": [ + 16 + ], + "based": [ + 17 + ], + "on": [ + 18, + 48 + ], + "nuclear": [ + 19 + ], + "charges": [ + 20 + ], + "and": [ + 21, + 49 + ], + "atomic": [ + 22 + ], + "positions": [ + 23 + ], + "only.": [ + 24 + ], + "The": [ + 25 + ], + "problem": [ + 26, + 40 + ], + "solving": [ + 28 + ], + "the": [ + 29, + 80 + ], + "molecular": [ + 30, + 83 + ], + "Schrödinger": [ + 31 + ], + "equation": [ + 32 + ], + "is": [ + 33, + 77 + ], + "mapped": [ + 34 + ], + "onto": [ + 35 + ], + "nonlinear": [ + 37 + ], + "statistical": [ + 38 + ], + "regression": [ + 39 + ], + "reduced": [ + 42 + ], + "complexity.": [ + 43 + ], + "Regression": [ + 44 + ], + "models": [ + 45 + ], + "are": [ + 46 + ], + "trained": [ + 47 + ], + "compared": [ + 50 + ], + "computed": [ + 54 + ], + "with": [ + 55 + ], + "hybrid": [ + 56 + ], + "density-functional": [ + 57 + ], + "theory.": [ + 58 + ], + "Cross": [ + 59 + ], + "validation": [ + 60 + ], + "over": [ + 61 + ], + "more": [ + 62 + ], + "than": [ + 63 + ], + "seven": [ + 64 + ], + "thousand": [ + 65 + ], + "molecules": [ + 67 + ], + "yields": [ + 68 + ], + "mean": [ + 70 + ], + "absolute": [ + 71 + ], + "error": [ + 72 + ], + "∼10": [ + 74 + ], + "kcal/mol.": [ + 75 + ], + "Applicability": [ + 76 + ], + "demonstrated": [ + 78 + ], + "for": [ + 79 + ], + "prediction": [ + 81 + ], + "potential": [ + 85 + ], + "energy": [ + 86 + ], + "curves.": [ + 87 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 66 + }, + { + "year": 2025, + "cited_by_count": 222 + }, + { + "year": 2024, + "cited_by_count": 270 + }, + { + "year": 2023, + "cited_by_count": 256 + }, + { + "year": 2022, + "cited_by_count": 238 + }, + { + "year": 2021, + "cited_by_count": 346 + }, + { + "year": 2020, + "cited_by_count": 362 + }, + { + "year": 2019, + "cited_by_count": 205 + }, + { + "year": 2018, + "cited_by_count": 182 + }, + { + "year": 2017, + "cited_by_count": 95 + }, + { + "year": 2016, + "cited_by_count": 41 + }, + { + "year": 2015, + "cited_by_count": 33 + }, + { + "year": 2014, + "cited_by_count": 25 + }, + { + "year": 2013, + "cited_by_count": 25 + }, + { + "year": 2012, + "cited_by_count": 9 + } + ], + "updated_date": "2026-05-26T13:28:51.108037", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1590183771", + "doi": "https://doi.org/10.1017/cbo9780511804779", + "title": "Bayesian Reasoning and Machine Learning", + "display_name": "Bayesian Reasoning and Machine Learning", + "relevance_score": 2856.6394, + "publication_year": 2012, + "publication_date": "2012-06-05", + "ids": { + "openalex": "https://openalex.org/W1590183771", + "doi": "https://doi.org/10.1017/cbo9780511804779", + "mag": "1590183771" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9780511804779", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511804779", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101763101", + "display_name": "David Barber", + "orcid": "https://orcid.org/0000-0003-2163-2982" + }, + "institutions": [ + { + "id": "https://openalex.org/I2800173700", + "display_name": "UCL Australia", + "ror": "https://ror.org/024atcf19", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I2800173700" + ] + }, + { + "id": "https://openalex.org/I45129253", + "display_name": "University College London", + "ror": "https://ror.org/02jx3x895", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I124357947", + "https://openalex.org/I45129253" + ] + } + ], + "countries": [ + "AU", + "GB" + ], + "is_corresponding": true, + "raw_author_name": "David Barber", + "raw_affiliation_strings": [ + "University College London", + "University college London" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University College London", + "institution_ids": [ + "https://openalex.org/I45129253" + ] + }, + { + "raw_affiliation_string": "University college London", + "institution_ids": [ + "https://openalex.org/I2800173700" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5101763101" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2800173700", + "https://openalex.org/I45129253" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 16.0361, + "has_fulltext": false, + "cited_by_count": 1650, + "citation_normalized_percentile": { + "value": 0.99438202, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.3961000144481659, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11875", + "display_name": "Statistics Education and Methodologies", + "score": 0.3961000144481659, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.38089999556541443, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/toolbox", + "display_name": "Toolbox", + "score": 0.8341989517211914 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6473276615142822 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.49235260486602783 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3714091181755066 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3704102039337158 + }, + { + "id": "https://openalex.org/keywords/human–computer-interaction", + "display_name": "Human–computer interaction", + "score": 0.3456208109855652 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.16564661264419556 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2777655017", + "wikidata": "https://www.wikidata.org/wiki/Q1501161", + "display_name": "Toolbox", + "level": 2, + "score": 0.8341989517211914 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6473276615142822 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.49235260486602783 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3714091181755066 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3704102039337158 + }, + { + "id": "https://openalex.org/C107457646", + "wikidata": "https://www.wikidata.org/wiki/Q207434", + "display_name": "Human–computer interaction", + "level": 1, + "score": 0.3456208109855652 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.16564661264419556 + } + ], + "mesh": [], + "locations_count": 10, + "locations": [ + { + "id": "doi:10.1017/cbo9780511804779", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511804779", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.232.8159", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.232.8159", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/270212.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.365.5529", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.365.5529", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/180613.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.369.3646", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.369.3646", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/090310.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.649.4333", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.649.4333", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/250214.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.696.6905", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.696.6905", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/240415.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.715.5862", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.715.5862", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://web4.cs.ucl.ac.uk/staff/D.Barber/textbook/181115.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-024811811", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=024811811&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-035597209", + "is_oa": false, + "landing_page_url": "http://www.cs.ucl.ac.uk/staff/d.barber/brml/", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:1495251", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1495251", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Industry, innovation and infrastructure", + "id": "https://metadata.un.org/sdg/9", + "score": 0.41999998688697815 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W4286629047", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1 + ], + "methods": [ + 2, + 46 + ], + "extract": [ + 3 + ], + "value": [ + 4 + ], + "from": [ + 5, + 90 + ], + "vast": [ + 6 + ], + "data": [ + 7 + ], + "sets": [ + 8 + ], + "quickly": [ + 9 + ], + "and": [ + 10, + 33, + 36, + 73, + 82, + 85, + 113, + 125, + 130, + 140 + ], + "with": [ + 11, + 63, + 76 + ], + "modest": [ + 12, + 64 + ], + "resources.": [ + 13 + ], + "They": [ + 14 + ], + "are": [ + 15, + 132, + 146 + ], + "established": [ + 16 + ], + "tools": [ + 17 + ], + "in": [ + 18, + 79, + 134 + ], + "a": [ + 19, + 106, + 143 + ], + "wide": [ + 20 + ], + "range": [ + 21 + ], + "of": [ + 22, + 50, + 99, + 108 + ], + "industrial": [ + 23 + ], + "applications,": [ + 24 + ], + "including": [ + 25, + 142 + ], + "search": [ + 26 + ], + "engines,": [ + 27 + ], + "DNA": [ + 28 + ], + "sequencing,": [ + 29 + ], + "stock": [ + 30 + ], + "market": [ + 31 + ], + "analysis,": [ + 32 + ], + "robot": [ + 34 + ], + "locomotion,": [ + 35 + ], + "their": [ + 37, + 48 + ], + "use": [ + 38 + ], + "is": [ + 39, + 68 + ], + "spreading": [ + 40 + ], + "rapidly.": [ + 41 + ], + "People": [ + 42 + ], + "who": [ + 43 + ], + "know": [ + 44 + ], + "the": [ + 45, + 97, + 120 + ], + "have": [ + 47 + ], + "choice": [ + 49 + ], + "rewarding": [ + 51 + ], + "jobs.": [ + 52 + ], + "This": [ + 53 + ], + "hands-on": [ + 54 + ], + "text": [ + 55 + ], + "opens": [ + 56 + ], + "these": [ + 57 + ], + "opportunities": [ + 58 + ], + "to": [ + 59, + 93 + ], + "computer": [ + 60, + 128 + ], + "science": [ + 61 + ], + "students": [ + 62, + 75, + 139 + ], + "mathematical": [ + 65 + ], + "backgrounds.": [ + 66 + ], + "It": [ + 67 + ], + "designed": [ + 69 + ], + "for": [ + 70, + 119, + 138 + ], + "final-year": [ + 71 + ], + "undergraduates": [ + 72 + ], + "master's": [ + 74 + ], + "limited": [ + 77 + ], + "background": [ + 78 + ], + "linear": [ + 80 + ], + "algebra": [ + 81 + ], + "calculus.": [ + 83 + ], + "Comprehensive": [ + 84 + ], + "coherent,": [ + 86 + ], + "it": [ + 87 + ], + "develops": [ + 88 + ], + "everything": [ + 89 + ], + "basic": [ + 91 + ], + "reasoning": [ + 92 + ], + "advanced": [ + 94 + ], + "techniques": [ + 95 + ], + "within": [ + 96 + ], + "framework": [ + 98 + ], + "graphical": [ + 100 + ], + "models.": [ + 101 + ], + "Students": [ + 102 + ], + "learn": [ + 103 + ], + "more": [ + 104 + ], + "than": [ + 105 + ], + "menu": [ + 107 + ], + "techniques,": [ + 109 + ], + "they": [ + 110 + ], + "develop": [ + 111 + ], + "analytical": [ + 112 + ], + "problem-solving": [ + 114 + ], + "skills": [ + 115 + ], + "that": [ + 116 + ], + "equip": [ + 117 + ], + "them": [ + 118 + ], + "real": [ + 121 + ], + "world.": [ + 122 + ], + "Numerous": [ + 123 + ], + "examples": [ + 124 + ], + "exercises,": [ + 126 + ], + "both": [ + 127 + ], + "based": [ + 129 + ], + "theoretical,": [ + 131 + ], + "included": [ + 133 + ], + "every": [ + 135 + ], + "chapter.": [ + 136 + ], + "Resources": [ + 137 + ], + "instructors,": [ + 141 + ], + "MATLAB": [ + 144 + ], + "toolbox,": [ + 145 + ], + "available": [ + 147 + ], + "online.": [ + 148 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 18 + }, + { + "year": 2025, + "cited_by_count": 95 + }, + { + "year": 2024, + "cited_by_count": 101 + }, + { + "year": 2023, + "cited_by_count": 93 + }, + { + "year": 2022, + "cited_by_count": 124 + }, + { + "year": 2021, + "cited_by_count": 135 + }, + { + "year": 2020, + "cited_by_count": 193 + }, + { + "year": 2019, + "cited_by_count": 172 + }, + { + "year": 2018, + "cited_by_count": 141 + }, + { + "year": 2017, + "cited_by_count": 132 + }, + { + "year": 2016, + "cited_by_count": 126 + }, + { + "year": 2015, + "cited_by_count": 110 + }, + { + "year": 2014, + "cited_by_count": 100 + }, + { + "year": 2013, + "cited_by_count": 73 + }, + { + "year": 2012, + "cited_by_count": 22 + } + ], + "updated_date": "2026-05-28T09:10:13.091523", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3123436326", + "doi": "https://doi.org/10.1111/ectj.12097", + "title": "Double/debiased machine learning for treatment and structural parameters", + "display_name": "Double/debiased machine learning for treatment and structural parameters", + "relevance_score": 2840.0427, + "publication_year": 2017, + "publication_date": "2017-06-24", + "ids": { + "openalex": "https://openalex.org/W3123436326", + "doi": "https://doi.org/10.1111/ectj.12097", + "mag": "3123436326" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5068383641", + "display_name": "Victor Chernozhukov", + "orcid": "https://orcid.org/0000-0002-3250-6714" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Victor Chernozhukov", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5110738906", + "display_name": "Denis Chetverikov", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Denis Chetverikov", + "raw_affiliation_strings": [ + "University of California Los Angeles, 315 Portola Plaza, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of California Los Angeles, 315 Portola Plaza, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050184772", + "display_name": "Mert Demirer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mert Demirer", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015565298", + "display_name": "Esther Duflo", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Esther Duflo", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5086970490", + "display_name": "Christian Hansen", + "orcid": "https://orcid.org/0009-0006-8123-1039" + }, + "institutions": [ + { + "id": "https://openalex.org/I40347166", + "display_name": "University of Chicago", + "ror": "https://ror.org/024mw5h28", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I40347166" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christian Hansen", + "raw_affiliation_strings": [ + "University of Chicago, 5807 S. Woodlawn Ave., Chicago, IL 60637, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Chicago, 5807 S. Woodlawn Ave., Chicago, IL 60637, USA", + "institution_ids": [ + "https://openalex.org/I40347166" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5113931380", + "display_name": "Whitney K. Newey", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Whitney Newey", + "raw_affiliation_strings": [ + "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Massachusetts Institute of Technology, 50 Memorial Drive, Cambridge, MA 02139, USA", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5079863455", + "display_name": "James M. Robins", + "orcid": "https://orcid.org/0000-0001-6609-209X" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "James Robins", + "raw_affiliation_strings": [ + "Harvard University, 677 Huntington Avenue, Boston, MA 02115, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Harvard University, 677 Huntington Avenue, Boston, MA 02115, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5068383641" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I63966007" + ], + "apc_list": { + "value": 3099, + "currency": "GBP", + "value_usd": 3801 + }, + "apc_paid": null, + "fwci": 49.5776, + "has_fulltext": false, + "cited_by_count": 2395, + "citation_normalized_percentile": { + "value": 0.99897025, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "21", + "issue": "1", + "first_page": "C1", + "last_page": "C68" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9990000128746033, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10136", + "display_name": "Statistical Methods and Inference", + "score": 0.9990000128746033, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10845", + "display_name": "Advanced Causal Inference Techniques", + "score": 0.9986000061035156, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10243", + "display_name": "Statistical Methods and Bayesian Inference", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/2613", + "display_name": "Statistics and Probability" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/overfitting", + "display_name": "Overfitting", + "score": 0.9195612668991089 + }, + { + "id": "https://openalex.org/keywords/estimator", + "display_name": "Estimator", + "score": 0.8237652778625488 + }, + { + "id": "https://openalex.org/keywords/nuisance-parameter", + "display_name": "Nuisance parameter", + "score": 0.6137700080871582 + }, + { + "id": "https://openalex.org/keywords/regularization", + "display_name": "Regularization (linguistics)", + "score": 0.611305832862854 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.5675204992294312 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.3928169012069702 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.37074944376945496 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3280455470085144 + }, + { + "id": "https://openalex.org/keywords/applied-mathematics", + "display_name": "Applied mathematics", + "score": 0.3253978490829468 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.3153572082519531 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1361507773399353 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C22019652", + "wikidata": "https://www.wikidata.org/wiki/Q331309", + "display_name": "Overfitting", + "level": 3, + "score": 0.9195612668991089 + }, + { + "id": "https://openalex.org/C185429906", + "wikidata": "https://www.wikidata.org/wiki/Q1130160", + "display_name": "Estimator", + "level": 2, + "score": 0.8237652778625488 + }, + { + "id": "https://openalex.org/C194531419", + "wikidata": "https://www.wikidata.org/wiki/Q17104825", + "display_name": "Nuisance parameter", + "level": 3, + "score": 0.6137700080871582 + }, + { + "id": "https://openalex.org/C2776135515", + "wikidata": "https://www.wikidata.org/wiki/Q17143721", + "display_name": "Regularization (linguistics)", + "level": 2, + "score": 0.611305832862854 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.5675204992294312 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.3928169012069702 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.37074944376945496 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3280455470085144 + }, + { + "id": "https://openalex.org/C28826006", + "wikidata": "https://www.wikidata.org/wiki/Q33521", + "display_name": "Applied mathematics", + "level": 1, + "score": 0.3253978490829468 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.3153572082519531 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1361507773399353 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.1111/ectj.12097", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1111/ectj.12097", + "pdf_url": "https://academic.oup.com/ectj/article-pdf/21/1/C1/27684918/ectj00c1.pdf", + "source": { + "id": "https://openalex.org/S33519306", + "display_name": "Econometrics Journal", + "issn_l": "1368-4221", + "issn": [ + "1368-4221", + "1368-423X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "The Econometrics Journal", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G6556031174", + "display_name": null, + "funder_award_id": "ES/I034021/1", + "funder_id": "https://openalex.org/F4320334630", + "funder_display_name": "Economic and Social Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320334630", + "display_name": "Economic and Social Research Council", + "ror": "https://ror.org/03n0ht308" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 94, + "referenced_works": [ + "https://openalex.org/W67506904", + "https://openalex.org/W81897278", + "https://openalex.org/W620038288", + "https://openalex.org/W1460189015", + "https://openalex.org/W1520595697", + "https://openalex.org/W1548939571", + "https://openalex.org/W1556388863", + "https://openalex.org/W1656622334", + "https://openalex.org/W1730512236", + "https://openalex.org/W1886275324", + "https://openalex.org/W1963509555", + "https://openalex.org/W1963874316", + "https://openalex.org/W1977675844", + "https://openalex.org/W1981809679", + "https://openalex.org/W1984547044", + "https://openalex.org/W1988734172", + "https://openalex.org/W2000008805", + "https://openalex.org/W2014373672", + "https://openalex.org/W2018543390", + "https://openalex.org/W2022450888", + "https://openalex.org/W2028995298", + "https://openalex.org/W2045640115", + "https://openalex.org/W2046977371", + "https://openalex.org/W2051507405", + "https://openalex.org/W2058248640", + "https://openalex.org/W2062579211", + "https://openalex.org/W2069119359", + "https://openalex.org/W2074523758", + "https://openalex.org/W2078411132", + "https://openalex.org/W2078658856", + "https://openalex.org/W2079597004", + "https://openalex.org/W2086426685", + "https://openalex.org/W2088093133", + "https://openalex.org/W2098895596", + "https://openalex.org/W2099730522", + "https://openalex.org/W2100532505", + "https://openalex.org/W2101746104", + "https://openalex.org/W2104780889", + "https://openalex.org/W2111162388", + "https://openalex.org/W2116581043", + "https://openalex.org/W2120846249", + "https://openalex.org/W2128235479", + "https://openalex.org/W2129086422", + "https://openalex.org/W2143966988", + "https://openalex.org/W2148119495", + "https://openalex.org/W2148596757", + "https://openalex.org/W2150291618", + "https://openalex.org/W2152001792", + "https://openalex.org/W2163162137", + "https://openalex.org/W2171443468", + "https://openalex.org/W2217990278", + "https://openalex.org/W2244523147", + "https://openalex.org/W2308122693", + "https://openalex.org/W2315960178", + "https://openalex.org/W2345898006", + "https://openalex.org/W2398799638", + "https://openalex.org/W2409903755", + "https://openalex.org/W2463468932", + "https://openalex.org/W2478927095", + "https://openalex.org/W2557116807", + "https://openalex.org/W2751382287", + "https://openalex.org/W2765398882", + "https://openalex.org/W2886798606", + "https://openalex.org/W2949148940", + "https://openalex.org/W2950845368", + "https://openalex.org/W2952150717", + "https://openalex.org/W2952248799", + "https://openalex.org/W2962952631", + "https://openalex.org/W2963278901", + "https://openalex.org/W3098302339", + "https://openalex.org/W3099550161", + "https://openalex.org/W3099718522", + "https://openalex.org/W3103221895", + "https://openalex.org/W3121832289", + "https://openalex.org/W3122193054", + "https://openalex.org/W3123233440", + "https://openalex.org/W3123785084", + "https://openalex.org/W3124166904", + "https://openalex.org/W3125188740", + "https://openalex.org/W3125441349", + "https://openalex.org/W3125657517", + "https://openalex.org/W3150893739", + "https://openalex.org/W3207136162", + "https://openalex.org/W4233056867", + "https://openalex.org/W4235461144", + "https://openalex.org/W4240967689", + "https://openalex.org/W4247571494", + "https://openalex.org/W4248240383", + "https://openalex.org/W4300220092", + "https://openalex.org/W4301106181", + "https://openalex.org/W6679265385", + "https://openalex.org/W6802843838", + "https://openalex.org/W6982782312", + "https://openalex.org/W7014881647" + ], + "related_works": [ + "https://openalex.org/W4362597605", + "https://openalex.org/W1574414179", + "https://openalex.org/W4245953108", + "https://openalex.org/W1977619534", + "https://openalex.org/W2236763869", + "https://openalex.org/W2097626286", + "https://openalex.org/W4293568347", + "https://openalex.org/W2808230936", + "https://openalex.org/W2023659367", + "https://openalex.org/W2600353266" + ], + "abstract_inverted_index": { + "We": [ + 0, + 21, + 149, + 205, + 217, + 301 + ], + "revisit": [ + 1 + ], + "the": [ + 2, + 14, + 24, + 36, + 46, + 59, + 135, + 146, + 152, + 162, + 207, + 230, + 267, + 279, + 303, + 314, + 320, + 334, + 351, + 356, + 361, + 369, + 388 + ], + "classic": [ + 3 + ], + "semi‐parametric": [ + 4 + ], + "problem": [ + 5 + ], + "of": [ + 6, + 16, + 45, + 61, + 114, + 124, + 154, + 161, + 164, + 196, + 203, + 210, + 229, + 244, + 252, + 269, + 273, + 298, + 313, + 390 + ], + "inference": [ + 7 + ], + "on": [ + 8, + 159, + 259, + 336, + 360 + ], + "a": [ + 9, + 109, + 270, + 325, + 341 + ], + "low‐dimensional": [ + 10 + ], + "parameter": [ + 11, + 47, + 163, + 232, + 323 + ], + "θ0": [ + 12, + 115, + 166 + ], + "in": [ + 13, + 75, + 97, + 105, + 112, + 134, + 226, + 324, + 340, + 374, + 392 + ], + "presence": [ + 15 + ], + "high‐dimensional": [ + 17, + 34, + 78 + ], + "nuisance": [ + 18, + 188, + 280 + ], + "parameters": [ + 19, + 189 + ], + "η0.": [ + 20 + ], + "depart": [ + 22 + ], + "from": [ + 23 + ], + "classical": [ + 25 + ], + "setting": [ + 26 + ], + "by": [ + 27, + 84, + 119, + 170, + 306 + ], + "allowing": [ + 28 + ], + "for": [ + 29, + 49, + 129, + 277 + ], + "η0": [ + 30, + 107, + 125 + ], + "to": [ + 31, + 73, + 87, + 139, + 187, + 190, + 309, + 318, + 332, + 349, + 367, + 381 + ], + "be": [ + 32, + 140, + 168 + ], + "so": [ + 33 + ], + "that": [ + 35, + 42, + 116, + 151, + 181, + 219, + 224 + ], + "traditional": [ + 37 + ], + "assumptions": [ + 38 + ], + "(e.g.": [ + 39 + ], + "Donsker": [ + 40 + ], + "properties)": [ + 41 + ], + "limit": [ + 43 + ], + "complexity": [ + 44 + ], + "space": [ + 48 + ], + "this": [ + 50 + ], + "object": [ + 51 + ], + "break": [ + 52 + ], + "down.": [ + 53 + ], + "To": [ + 54 + ], + "estimate": [ + 55, + 191 + ], + "η0,": [ + 56 + ], + "we": [ + 57, + 385 + ], + "consider": [ + 58 + ], + "use": [ + 60, + 195, + 268, + 389 + ], + "statistical": [ + 62, + 250 + ], + "or": [ + 63, + 213 + ], + "machine": [ + 64 + ], + "learning": [ + 65 + ], + "(ML)": [ + 66 + ], + "methods,": [ + 67 + ], + "which": [ + 68, + 198, + 241, + 264 + ], + "are": [ + 69, + 117, + 235 + ], + "particularly": [ + 70 + ], + "well": [ + 71, + 83 + ], + "suited": [ + 72 + ], + "estimation": [ + 74, + 160 + ], + "modern,": [ + 76 + ], + "very": [ + 77 + ], + "cases.": [ + 79 + ], + "ML": [ + 80, + 122, + 215, + 275 + ], + "methods": [ + 81, + 211, + 276 + ], + "perform": [ + 82 + ], + "employing": [ + 85 + ], + "regularization": [ + 86, + 93, + 101, + 155 + ], + "reduce": [ + 88 + ], + "variance": [ + 89 + ], + "and": [ + 90, + 103, + 157, + 234, + 238, + 256, + 293, + 296, + 355 + ], + "trading": [ + 91 + ], + "off": [ + 92 + ], + "bias": [ + 94, + 102, + 111, + 132, + 156 + ], + "with": [ + 95, + 185 + ], + "overfitting": [ + 96, + 104, + 158 + ], + "practice.": [ + 98 + ], + "However,": [ + 99 + ], + "both": [ + 100 + ], + "estimating": [ + 106, + 127, + 278 + ], + "cause": [ + 108 + ], + "heavy": [ + 110 + ], + "estimators": [ + 113, + 123, + 223 + ], + "obtained": [ + 118 + ], + "naively": [ + 120 + ], + "plugging": [ + 121 + ], + "into": [ + 126 + ], + "equations": [ + 128 + ], + "θ0.": [ + 130 + ], + "This": [ + 131 + ], + "results": [ + 133 + ], + "naive": [ + 136 + ], + "estimator": [ + 137 + ], + "failing": [ + 138 + ], + "N−1/2": [ + 141 + ], + "consistent,": [ + 142 + ], + "where": [ + 143 + ], + "N": [ + 144 + ], + "is": [ + 145, + 254 + ], + "sample": [ + 147 + ], + "size.": [ + 148 + ], + "show": [ + 150 + ], + "impact": [ + 153 + ], + "interest": [ + 165 + ], + "can": [ + 167 + ], + "removed": [ + 169 + ], + "using": [ + 171, + 178 + ], + "two": [ + 172 + ], + "simple,": [ + 173 + ], + "yet": [ + 174 + ], + "critical,": [ + 175 + ], + "ingredients:": [ + 176 + ], + "(1)": [ + 177 + ], + "Neyman‐orthogonal": [ + 179 + ], + "moments/scores": [ + 180 + ], + "have": [ + 182 + ], + "reduced": [ + 183 + ], + "sensitivity": [ + 184 + ], + "respect": [ + 186 + ], + "θ0;": [ + 192 + ], + "(2)": [ + 193 + ], + "making": [ + 194 + ], + "cross‐fitting,": [ + 197 + ], + "provides": [ + 199 + ], + "an": [ + 200, + 227, + 337, + 375 + ], + "efficient": [ + 201 + ], + "form": [ + 202 + ], + "data‐splitting.": [ + 204 + ], + "call": [ + 206 + ], + "resulting": [ + 208 + ], + "set": [ + 209 + ], + "double": [ + 212 + ], + "debiased": [ + 214 + ], + "(DML).": [ + 216 + ], + "verify": [ + 218 + ], + "DML": [ + 220, + 253, + 316, + 330, + 347, + 365, + 391 + ], + "delivers": [ + 221 + ], + "point": [ + 222 + ], + "concentrate": [ + 225 + ], + "N−1/2‐neighbourhood": [ + 228 + ], + "true": [ + 231 + ], + "values": [ + 233 + ], + "approximately": [ + 236 + ], + "unbiased": [ + 237 + ], + "normally": [ + 239 + ], + "distributed,": [ + 240 + ], + "allows": [ + 242 + ], + "construction": [ + 243 + ], + "valid": [ + 245 + ], + "confidence": [ + 246 + ], + "statements.": [ + 247 + ], + "The": [ + 248 + ], + "generic": [ + 249 + ], + "theory": [ + 251, + 305 + ], + "elementary": [ + 255 + ], + "simultaneously": [ + 257 + ], + "relies": [ + 258 + ], + "only": [ + 260 + ], + "weak": [ + 261 + ], + "theoretical": [ + 262, + 311, + 383 + ], + "requirements,": [ + 263 + ], + "will": [ + 265 + ], + "admit": [ + 266 + ], + "broad": [ + 271 + ], + "array": [ + 272 + ], + "modern": [ + 274 + ], + "parameters,": [ + 281 + ], + "such": [ + 282 + ], + "as": [ + 283 + ], + "random": [ + 284 + ], + "forests,": [ + 285 + ], + "lasso,": [ + 286 + ], + "ridge,": [ + 287 + ], + "deep": [ + 288 + ], + "neural": [ + 289 + ], + "nets,": [ + 290 + ], + "boosted": [ + 291 + ], + "trees,": [ + 292 + ], + "various": [ + 294 + ], + "hybrids": [ + 295 + ], + "ensembles": [ + 297 + ], + "these": [ + 299, + 382 + ], + "methods.": [ + 300 + ], + "illustrate": [ + 302, + 387 + ], + "general": [ + 304 + ], + "applying": [ + 307 + ], + "it": [ + 308 + ], + "provide": [ + 310 + ], + "properties": [ + 312 + ], + "following:": [ + 315 + ], + "applied": [ + 317, + 331, + 348, + 366 + ], + "learn": [ + 319, + 333, + 350, + 368 + ], + "main": [ + 321 + ], + "regression": [ + 322, + 328 + ], + "partially": [ + 326, + 342 + ], + "linear": [ + 327, + 343 + ], + "model;": [ + 329, + 346 + ], + "coefficient": [ + 335 + ], + "endogenous": [ + 338 + ], + "variable": [ + 339 + ], + "instrumental": [ + 344, + 376 + ], + "variables": [ + 345, + 377 + ], + "average": [ + 352, + 357, + 371 + ], + "treatment": [ + 353, + 358, + 372 + ], + "effect": [ + 354, + 359, + 373 + ], + "treated": [ + 362 + ], + "under": [ + 363 + ], + "unconfoundedness;": [ + 364 + ], + "local": [ + 370 + ], + "setting.": [ + 378 + ], + "In": [ + 379 + ], + "addition": [ + 380 + ], + "applications,": [ + 384 + ], + "also": [ + 386 + ], + "three": [ + 393 + ], + "empirical": [ + 394 + ], + "examples.": [ + 395 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 409 + }, + { + "year": 2025, + "cited_by_count": 714 + }, + { + "year": 2024, + "cited_by_count": 427 + }, + { + "year": 2023, + "cited_by_count": 257 + }, + { + "year": 2022, + "cited_by_count": 210 + }, + { + "year": 2021, + "cited_by_count": 172 + }, + { + "year": 2020, + "cited_by_count": 112 + }, + { + "year": 2019, + "cited_by_count": 70 + }, + { + "year": 2018, + "cited_by_count": 18 + }, + { + "year": 2017, + "cited_by_count": 5 + }, + { + "year": 2016, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2048266589", + "doi": "https://doi.org/10.1109/micro.2014.58", + "title": "DaDianNao: A Machine-Learning Supercomputer", + "display_name": "DaDianNao: A Machine-Learning Supercomputer", + "relevance_score": 2835.6885, + "publication_year": 2014, + "publication_date": "2014-12-01", + "ids": { + "openalex": "https://openalex.org/W2048266589", + "doi": "https://doi.org/10.1109/micro.2014.58", + "mag": "2048266589" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/micro.2014.58", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/micro.2014.58", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2014 47th Annual IEEE/ACM International Symposium on Microarchitecture", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5036492388", + "display_name": "Yunji Chen", + "orcid": "https://orcid.org/0000-0003-3925-5185" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Yunji Chen", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101630043", + "display_name": "Tao Luo", + "orcid": "https://orcid.org/0000-0002-3415-3676" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tao Luo", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China", + "University of CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + }, + { + "raw_affiliation_string": "University of CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5033237869", + "display_name": "Shaoli Liu", + "orcid": "https://orcid.org/0000-0001-7197-8805" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shaoli Liu", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101498177", + "display_name": "Shijin Zhang", + "orcid": "https://orcid.org/0000-0001-5141-3188" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Shijin Zhang", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100836264", + "display_name": "Liqiang He", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I2722730", + "display_name": "Inner Mongolia University", + "ror": "https://ror.org/0106qb496", + "country_code": "CN", + "type": "education", + "lineage": [ + "https://openalex.org/I2722730" + ] + }, + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "CN", + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Liqiang He", + "raw_affiliation_strings": [ + "Inner Mongolia University, China", + "Inria, Scalay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Inner Mongolia University, China", + "institution_ids": [ + "https://openalex.org/I2722730" + ] + }, + { + "raw_affiliation_string": "Inria, Scalay, France", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100404643", + "display_name": "Jia Wang", + "orcid": "https://orcid.org/0000-0002-3165-7051" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Jia Wang", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100435321", + "display_name": "Ling Li", + "orcid": "https://orcid.org/0000-0001-8877-9052" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ling Li", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5109886311", + "display_name": "Tianshi Chen", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Tianshi Chen", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100628169", + "display_name": "Zhiwei Xu", + "orcid": "https://orcid.org/0000-0002-1480-7265" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhiwei Xu", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101738013", + "display_name": "Ninghui Sun", + "orcid": "https://orcid.org/0000-0002-1953-1392" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ninghui Sun", + "raw_affiliation_strings": [ + "SKL of Computer Architecture, ICT, CAS, China" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "SKL of Computer Architecture, ICT, CAS, China", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5040252809", + "display_name": "Olivier Temam", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1326498283", + "display_name": "Institut national de recherche en informatique et en automatique", + "ror": "https://ror.org/02kvxyf05", + "country_code": "FR", + "type": "funder", + "lineage": [ + "https://openalex.org/I1326498283" + ] + } + ], + "countries": [ + "FR" + ], + "is_corresponding": false, + "raw_author_name": "Olivier Temam", + "raw_affiliation_strings": [ + "Inria, Scalay, France" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Inria, Scalay, France", + "institution_ids": [ + "https://openalex.org/I1326498283" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 11, + "corresponding_author_ids": [ + "https://openalex.org/A5036492388" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 66.2387, + "has_fulltext": false, + "cited_by_count": 1500, + "citation_normalized_percentile": { + "value": 0.99931381, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "609", + "last_page": "622" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10054", + "display_name": "Parallel Computing and Optimization Techniques", + "score": 0.9994999766349792, + "subfield": { + "id": "https://openalex.org/subfields/1708", + "display_name": "Hardware and Architecture" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8650738000869751 + }, + { + "id": "https://openalex.org/keywords/supercomputer", + "display_name": "Supercomputer", + "score": 0.6421846747398376 + }, + { + "id": "https://openalex.org/keywords/memory-footprint", + "display_name": "Memory footprint", + "score": 0.6217308640480042 + }, + { + "id": "https://openalex.org/keywords/convolutional-neural-network", + "display_name": "Convolutional neural network", + "score": 0.6212705373764038 + }, + { + "id": "https://openalex.org/keywords/speedup", + "display_name": "Speedup", + "score": 0.6080182790756226 + }, + { + "id": "https://openalex.org/keywords/parallel-computing", + "display_name": "Parallel computing", + "score": 0.5330008268356323 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5072109699249268 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.507047176361084 + }, + { + "id": "https://openalex.org/keywords/memory-bandwidth", + "display_name": "Memory bandwidth", + "score": 0.5065058469772339 + }, + { + "id": "https://openalex.org/keywords/bandwidth", + "display_name": "Bandwidth (computing)", + "score": 0.4705035388469696 + }, + { + "id": "https://openalex.org/keywords/auxiliary-memory", + "display_name": "Auxiliary memory", + "score": 0.46236518025398254 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.44564568996429443 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.3841804265975952 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.34958434104919434 + }, + { + "id": "https://openalex.org/keywords/computer-engineering", + "display_name": "Computer engineering", + "score": 0.32731860876083374 + }, + { + "id": "https://openalex.org/keywords/computer-hardware", + "display_name": "Computer hardware", + "score": 0.21425938606262207 + }, + { + "id": "https://openalex.org/keywords/operating-system", + "display_name": "Operating system", + "score": 0.1414709985256195 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.13462954759597778 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8650738000869751 + }, + { + "id": "https://openalex.org/C83283714", + "wikidata": "https://www.wikidata.org/wiki/Q121117", + "display_name": "Supercomputer", + "level": 2, + "score": 0.6421846747398376 + }, + { + "id": "https://openalex.org/C74912251", + "wikidata": "https://www.wikidata.org/wiki/Q6815727", + "display_name": "Memory footprint", + "level": 2, + "score": 0.6217308640480042 + }, + { + "id": "https://openalex.org/C81363708", + "wikidata": "https://www.wikidata.org/wiki/Q17084460", + "display_name": "Convolutional neural network", + "level": 2, + "score": 0.6212705373764038 + }, + { + "id": "https://openalex.org/C68339613", + "wikidata": "https://www.wikidata.org/wiki/Q1549489", + "display_name": "Speedup", + "level": 2, + "score": 0.6080182790756226 + }, + { + "id": "https://openalex.org/C173608175", + "wikidata": "https://www.wikidata.org/wiki/Q232661", + "display_name": "Parallel computing", + "level": 1, + "score": 0.5330008268356323 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5072109699249268 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.507047176361084 + }, + { + "id": "https://openalex.org/C188045654", + "wikidata": "https://www.wikidata.org/wiki/Q17148339", + "display_name": "Memory bandwidth", + "level": 2, + "score": 0.5065058469772339 + }, + { + "id": "https://openalex.org/C2776257435", + "wikidata": "https://www.wikidata.org/wiki/Q1576430", + "display_name": "Bandwidth (computing)", + "level": 2, + "score": 0.4705035388469696 + }, + { + "id": "https://openalex.org/C82687282", + "wikidata": "https://www.wikidata.org/wiki/Q66221", + "display_name": "Auxiliary memory", + "level": 2, + "score": 0.46236518025398254 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.44564568996429443 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.3841804265975952 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.34958434104919434 + }, + { + "id": "https://openalex.org/C113775141", + "wikidata": "https://www.wikidata.org/wiki/Q428691", + "display_name": "Computer engineering", + "level": 1, + "score": 0.32731860876083374 + }, + { + "id": "https://openalex.org/C9390403", + "wikidata": "https://www.wikidata.org/wiki/Q3966", + "display_name": "Computer hardware", + "level": 1, + "score": 0.21425938606262207 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.1414709985256195 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.13462954759597778 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/micro.2014.58", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/micro.2014.58", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2014 47th Annual IEEE/ACM International Symposium on Microarchitecture", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Affordable and clean energy", + "id": "https://metadata.un.org/sdg/7", + "score": 0.7099999785423279 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 61, + "referenced_works": [ + "https://openalex.org/W160318044", + "https://openalex.org/W587794757", + "https://openalex.org/W1501077214", + "https://openalex.org/W1964471912", + "https://openalex.org/W1987117608", + "https://openalex.org/W1994197834", + "https://openalex.org/W2006312753", + "https://openalex.org/W2010238453", + "https://openalex.org/W2024139303", + "https://openalex.org/W2038061869", + "https://openalex.org/W2043607059", + "https://openalex.org/W2056137328", + "https://openalex.org/W2062227835", + "https://openalex.org/W2071709160", + "https://openalex.org/W2077505860", + "https://openalex.org/W2082444966", + "https://openalex.org/W2089064077", + "https://openalex.org/W2098335003", + "https://openalex.org/W2102543317", + "https://openalex.org/W2107994122", + "https://openalex.org/W2108598243", + "https://openalex.org/W2109492604", + "https://openalex.org/W2111932160", + "https://openalex.org/W2112796928", + "https://openalex.org/W2116267755", + "https://openalex.org/W2120480077", + "https://openalex.org/W2121458485", + "https://openalex.org/W2125203716", + "https://openalex.org/W2128785632", + "https://openalex.org/W2136189984", + "https://openalex.org/W2136262589", + "https://openalex.org/W2141125852", + "https://openalex.org/W2148461049", + "https://openalex.org/W2148605318", + "https://openalex.org/W2152839228", + "https://openalex.org/W2155377787", + "https://openalex.org/W2162390675", + "https://openalex.org/W2163605009", + "https://openalex.org/W2168231600", + "https://openalex.org/W2169875292", + "https://openalex.org/W2187230075", + "https://openalex.org/W2252268321", + "https://openalex.org/W2253807446", + "https://openalex.org/W2467255337", + "https://openalex.org/W2504108613", + "https://openalex.org/W2546302380", + "https://openalex.org/W2963217749", + "https://openalex.org/W3151762208", + "https://openalex.org/W4232280717", + "https://openalex.org/W4239072543", + "https://openalex.org/W6617368339", + "https://openalex.org/W6651700774", + "https://openalex.org/W6673621702", + "https://openalex.org/W6676297131", + "https://openalex.org/W6678242812", + "https://openalex.org/W6680450716", + "https://openalex.org/W6681813608", + "https://openalex.org/W6683722107", + "https://openalex.org/W6684191040", + "https://openalex.org/W6684859321", + "https://openalex.org/W6691441656" + ], + "related_works": [ + "https://openalex.org/W4289827464", + "https://openalex.org/W4376647684", + "https://openalex.org/W4221139464", + "https://openalex.org/W4386302689", + "https://openalex.org/W2068996722", + "https://openalex.org/W4200309432", + "https://openalex.org/W3193699965", + "https://openalex.org/W4319917399", + "https://openalex.org/W2909779890", + "https://openalex.org/W2398743891" + ], + "abstract_inverted_index": { + "Many": [ + 0 + ], + "companies": [ + 1 + ], + "are": [ + 2, + 11, + 33, + 43 + ], + "deploying": [ + 3 + ], + "services,": [ + 4 + ], + "either": [ + 5 + ], + "for": [ + 6, + 17, + 185 + ], + "consumers": [ + 7 + ], + "or": [ + 8 + ], + "industry,": [ + 9 + ], + "which": [ + 10, + 42, + 62, + 70, + 127 + ], + "largely": [ + 12 + ], + "based": [ + 13 + ], + "on": [ + 14, + 84, + 102, + 155, + 183 + ], + "machine-learning": [ + 15, + 31, + 147 + ], + "algorithms": [ + 16, + 32 + ], + "sophisticated": [ + 18 + ], + "processing": [ + 19 + ], + "of": [ + 20, + 23, + 54, + 100, + 105, + 158, + 172, + 204 + ], + "large": [ + 21 + ], + "amounts": [ + 22 + ], + "data.": [ + 24 + ], + "The": [ + 25 + ], + "state-of-the-art": [ + 26 + ], + "and": [ + 27, + 35, + 40, + 49, + 89, + 123, + 177, + 197, + 207 + ], + "most": [ + 28 + ], + "popular": [ + 29 + ], + "such": [ + 30 + ], + "Convolutional": [ + 34 + ], + "Deep": [ + 36 + ], + "Neural": [ + 37 + ], + "Networks": [ + 38 + ], + "(CNNs": [ + 39 + ], + "DNNs),": [ + 41 + ], + "known": [ + 44, + 161 + ], + "to": [ + 45, + 119, + 168, + 194 + ], + "be": [ + 46 + ], + "both": [ + 47 + ], + "computationally": [ + 48 + ], + "memory": [ + 50, + 74, + 79, + 91 + ], + "intensive.": [ + 51 + ], + "A": [ + 52 + ], + "number": [ + 53 + ], + "neural": [ + 55, + 162 + ], + "network": [ + 56, + 163 + ], + "accelerators": [ + 57 + ], + "have": [ + 58 + ], + "been": [ + 59 + ], + "recently": [ + 60 + ], + "proposed": [ + 61 + ], + "can": [ + 63, + 117, + 128 + ], + "offer": [ + 64 + ], + "high": [ + 65, + 120 + ], + "computational": [ + 66, + 208 + ], + "capacity/area": [ + 67 + ], + "ratio,": [ + 68 + ], + "but": [ + 69 + ], + "remain": [ + 71 + ], + "hampered": [ + 72 + ], + "by": [ + 73, + 82, + 181 + ], + "accesses.": [ + 75 + ], + "However,": [ + 76 + ], + "unlike": [ + 77 + ], + "the": [ + 78, + 87, + 98, + 101, + 113, + 159, + 179, + 191, + 195 + ], + "wall": [ + 80 + ], + "faced": [ + 81 + ], + "processors": [ + 83 + ], + "general-purpose": [ + 85 + ], + "workloads,": [ + 86 + ], + "CNNs": [ + 88 + ], + "DNNs": [ + 90 + ], + "footprint,": [ + 92 + ], + "while": [ + 93 + ], + "large,": [ + 94 + ], + "is": [ + 95, + 166 + ], + "not": [ + 96 + ], + "beyond": [ + 97 + ], + "capability": [ + 99 + ], + "chip": [ + 103 + ], + "storage": [ + 104, + 206 + ], + "a": [ + 106, + 135, + 144, + 156, + 170, + 175, + 186, + 202 + ], + "multi-chip": [ + 107, + 146 + ], + "system.": [ + 108, + 188 + ], + "This": [ + 109 + ], + "property,": [ + 110 + ], + "combined": [ + 111 + ], + "with": [ + 112, + 210 + ], + "CNN/DNN": [ + 114 + ], + "algorithmic": [ + 115 + ], + "characteristics,": [ + 116 + ], + "lead": [ + 118 + ], + "internal": [ + 121 + ], + "bandwidth": [ + 122 + ], + "low": [ + 124 + ], + "external": [ + 125 + ], + "communications,": [ + 126 + ], + "in": [ + 129 + ], + "turn": [ + 130 + ], + "enable": [ + 131 + ], + "high-degree": [ + 132 + ], + "parallelism": [ + 133 + ], + "at": [ + 134, + 199 + ], + "reasonable": [ + 136 + ], + "area": [ + 137 + ], + "cost.": [ + 138 + ], + "In": [ + 139 + ], + "this": [ + 140 + ], + "article,": [ + 141 + ], + "we": [ + 142 + ], + "introduce": [ + 143 + ], + "custom": [ + 145, + 205 + ], + "architecture": [ + 148 + ], + "along": [ + 149 + ], + "those": [ + 150 + ], + "lines.": [ + 151 + ], + "We": [ + 152, + 189 + ], + "show": [ + 153 + ], + "that,": [ + 154 + ], + "subset": [ + 157 + ], + "largest": [ + 160 + ], + "layers,": [ + 164 + ], + "it": [ + 165 + ], + "possible": [ + 167 + ], + "achieve": [ + 169 + ], + "speedup": [ + 171 + ], + "450.65x": [ + 173 + ], + "over": [ + 174 + ], + "GPU,": [ + 176 + ], + "reduce": [ + 178 + ], + "energy": [ + 180 + ], + "150.31x": [ + 182 + ], + "average": [ + 184 + ], + "64-chip": [ + 187 + ], + "implement": [ + 190 + ], + "node": [ + 192 + ], + "down": [ + 193 + ], + "place": [ + 196 + ], + "route": [ + 198 + ], + "28nm,": [ + 200 + ], + "containing": [ + 201 + ], + "combination": [ + 203 + ], + "units,": [ + 209 + ], + "industry-grade": [ + 211 + ], + "interconnects.": [ + 212 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 14 + }, + { + "year": 2025, + "cited_by_count": 45 + }, + { + "year": 2024, + "cited_by_count": 74 + }, + { + "year": 2023, + "cited_by_count": 98 + }, + { + "year": 2022, + "cited_by_count": 139 + }, + { + "year": 2021, + "cited_by_count": 189 + }, + { + "year": 2020, + "cited_by_count": 234 + }, + { + "year": 2019, + "cited_by_count": 207 + }, + { + "year": 2018, + "cited_by_count": 232 + }, + { + "year": 2017, + "cited_by_count": 148 + }, + { + "year": 2016, + "cited_by_count": 93 + }, + { + "year": 2015, + "cited_by_count": 24 + }, + { + "year": 2014, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2964303497", + "doi": "https://doi.org/10.3390/electronics8080832", + "title": "Machine Learning Interpretability: A Survey on Methods and Metrics", + "display_name": "Machine Learning Interpretability: A Survey on Methods and Metrics", + "relevance_score": 2830.8088, + "publication_year": 2019, + "publication_date": "2019-07-26", + "ids": { + "openalex": "https://openalex.org/W2964303497", + "doi": "https://doi.org/10.3390/electronics8080832", + "mag": "2964303497" + }, + "language": "en", + "primary_location": { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5102720670", + "display_name": "Diogo V. Carvalho", + "orcid": "https://orcid.org/0000-0002-2349-4117" + }, + "institutions": [ + { + "id": "https://openalex.org/I182534213", + "display_name": "Universidade do Porto", + "ror": "https://ror.org/043pwc612", + "country_code": "PT", + "type": "education", + "lineage": [ + "https://openalex.org/I182534213" + ] + } + ], + "countries": [ + "PT" + ], + "is_corresponding": true, + "raw_author_name": "Diogo V. Carvalho", + "raw_affiliation_strings": [ + "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal" + ], + "raw_orcid": "https://orcid.org/0000-0002-2349-4117", + "affiliations": [ + { + "raw_affiliation_string": "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "institution_ids": [] + }, + { + "raw_affiliation_string": "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I182534213" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5102355791", + "display_name": "Eduardo M. Pereira", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Eduardo M. Pereira", + "raw_affiliation_strings": [ + "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Deloitte Portugal, Manuel Bandeira Street, 43, 4150-479 Porto, Portugal", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5013827007", + "display_name": "Jaime S. Cardoso", + "orcid": "https://orcid.org/0000-0002-3760-2473" + }, + "institutions": [ + { + "id": "https://openalex.org/I182534213", + "display_name": "Universidade do Porto", + "ror": "https://ror.org/043pwc612", + "country_code": "PT", + "type": "education", + "lineage": [ + "https://openalex.org/I182534213" + ] + }, + { + "id": "https://openalex.org/I4210166615", + "display_name": "INESC TEC", + "ror": "https://ror.org/05fa8ka61", + "country_code": "PT", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210125590", + "https://openalex.org/I4210166615" + ] + } + ], + "countries": [ + "PT" + ], + "is_corresponding": false, + "raw_author_name": "Jaime S. Cardoso", + "raw_affiliation_strings": [ + "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "INESC TEC, Dr. Roberto Frias Street, 4200-465 Porto, Portugal" + ], + "raw_orcid": "https://orcid.org/0000-0002-3760-2473", + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Engineering, University of Porto, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I182534213" + ] + }, + { + "raw_affiliation_string": "INESC TEC, Dr. Roberto Frias Street, 4200-465 Porto, Portugal", + "institution_ids": [ + "https://openalex.org/I4210166615" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5102720670" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I182534213" + ], + "apc_list": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "apc_paid": { + "value": 2000, + "currency": "CHF", + "value_usd": 2165 + }, + "fwci": 90.6976, + "has_fulltext": true, + "cited_by_count": 1743, + "citation_normalized_percentile": { + "value": 0.9995324, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "8", + "issue": "8", + "first_page": "832", + "last_page": "832" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9767000079154968, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/interpretability", + "display_name": "Interpretability", + "score": 0.9701313972473145 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.659199059009552 + }, + { + "id": "https://openalex.org/keywords/meaning", + "display_name": "Meaning (existential)", + "score": 0.6587560772895813 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6230239272117615 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5974628925323486 + }, + { + "id": "https://openalex.org/keywords/audit", + "display_name": "Audit", + "score": 0.5879456400871277 + }, + { + "id": "https://openalex.org/keywords/quality", + "display_name": "Quality (philosophy)", + "score": 0.5633484125137329 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.5597485899925232 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5310136675834656 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.4038145840167999 + }, + { + "id": "https://openalex.org/keywords/knowledge-management", + "display_name": "Knowledge management", + "score": 0.35610130429267883 + }, + { + "id": "https://openalex.org/keywords/risk-analysis", + "display_name": "Risk analysis (engineering)", + "score": 0.35108682513237 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.14015191793441772 + }, + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.12852543592453003 + }, + { + "id": "https://openalex.org/keywords/epistemology", + "display_name": "Epistemology", + "score": 0.08962225914001465 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C2781067378", + "wikidata": "https://www.wikidata.org/wiki/Q17027399", + "display_name": "Interpretability", + "level": 2, + "score": 0.9701313972473145 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.659199059009552 + }, + { + "id": "https://openalex.org/C2780876879", + "wikidata": "https://www.wikidata.org/wiki/Q3054749", + "display_name": "Meaning (existential)", + "level": 2, + "score": 0.6587560772895813 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6230239272117615 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5974628925323486 + }, + { + "id": "https://openalex.org/C199521495", + "wikidata": "https://www.wikidata.org/wiki/Q181487", + "display_name": "Audit", + "level": 2, + "score": 0.5879456400871277 + }, + { + "id": "https://openalex.org/C2779530757", + "wikidata": "https://www.wikidata.org/wiki/Q1207505", + "display_name": "Quality (philosophy)", + "level": 2, + "score": 0.5633484125137329 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.5597485899925232 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5310136675834656 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.4038145840167999 + }, + { + "id": "https://openalex.org/C56739046", + "wikidata": "https://www.wikidata.org/wiki/Q192060", + "display_name": "Knowledge management", + "level": 1, + "score": 0.35610130429267883 + }, + { + "id": "https://openalex.org/C112930515", + "wikidata": "https://www.wikidata.org/wiki/Q4389547", + "display_name": "Risk analysis (engineering)", + "level": 1, + "score": 0.35108682513237 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.14015191793441772 + }, + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.12852543592453003 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.08962225914001465 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C187736073", + "wikidata": "https://www.wikidata.org/wiki/Q2920921", + "display_name": "Management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C542102704", + "wikidata": "https://www.wikidata.org/wiki/Q183257", + "display_name": "Psychotherapist", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:45fdfd3de6ed423b85a89d6e8d758b60", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/45fdfd3de6ed423b85a89d6e8d758b60", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Electronics, Vol 8, Iss 8, p 832 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:mdpi.com:/2079-9292/8/8/832/", + "is_oa": true, + "landing_page_url": "http://dx.doi.org/10.3390/electronics8080832", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400947", + "display_name": "MDPI (MDPI AG)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210097602", + "host_organization_name": "Multidisciplinary Digital Publishing Institute (Switzerland)", + "host_organization_lineage": [ + "https://openalex.org/I4210097602" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Electronics", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.3390/electronics8080832", + "is_oa": true, + "landing_page_url": "https://doi.org/10.3390/electronics8080832", + "pdf_url": "https://www.mdpi.com/2079-9292/8/8/832/pdf?version=1564134847", + "source": { + "id": "https://openalex.org/S4210202905", + "display_name": "Electronics", + "issn_l": "2079-9292", + "issn": [ + "2079-9292" + ], + "is_oa": true, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310310987", + "host_organization_name": "Multidisciplinary Digital Publishing Institute", + "host_organization_lineage": [ + "https://openalex.org/P4310310987" + ], + "host_organization_lineage_names": [ + "Multidisciplinary Digital Publishing Institute" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Electronics", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.7200000286102295 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": true, + "pdf": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2964303497.pdf", + "grobid_xml": "https://content.openalex.org/works/W2964303497.grobid-xml" + }, + "referenced_works_count": 113, + "referenced_works": [ + "https://openalex.org/W17854248", + "https://openalex.org/W1516436026", + "https://openalex.org/W1537462412", + "https://openalex.org/W1585983533", + "https://openalex.org/W1678356000", + "https://openalex.org/W1821462560", + "https://openalex.org/W1968340857", + "https://openalex.org/W1971996841", + "https://openalex.org/W1977556410", + "https://openalex.org/W2026905436", + "https://openalex.org/W2048231652", + "https://openalex.org/W2063046703", + "https://openalex.org/W2073838543", + "https://openalex.org/W2075585362", + "https://openalex.org/W2084341220", + "https://openalex.org/W2096434649", + "https://openalex.org/W2123045220", + "https://openalex.org/W2125847307", + "https://openalex.org/W2130485404", + "https://openalex.org/W2134584261", + "https://openalex.org/W2134598164", + "https://openalex.org/W2149033360", + "https://openalex.org/W2187089797", + "https://openalex.org/W2194775991", + "https://openalex.org/W2195388612", + "https://openalex.org/W2198766081", + "https://openalex.org/W2232104438", + "https://openalex.org/W2282821441", + "https://openalex.org/W2319794630", + "https://openalex.org/W2367397349", + "https://openalex.org/W2467510144", + "https://openalex.org/W2528204193", + "https://openalex.org/W2551974706", + "https://openalex.org/W2564414379", + "https://openalex.org/W2587529872", + "https://openalex.org/W2594475271", + "https://openalex.org/W2607223307", + "https://openalex.org/W2617799811", + "https://openalex.org/W2618851150", + "https://openalex.org/W2626639386", + "https://openalex.org/W2732547613", + "https://openalex.org/W2744283806", + "https://openalex.org/W2744365997", + "https://openalex.org/W2762409054", + "https://openalex.org/W2762968537", + "https://openalex.org/W2765308317", + "https://openalex.org/W2769421449", + "https://openalex.org/W2769506033", + "https://openalex.org/W2781844902", + "https://openalex.org/W2787752464", + "https://openalex.org/W2788403449", + "https://openalex.org/W2791469229", + "https://openalex.org/W2794596673", + "https://openalex.org/W2795530988", + "https://openalex.org/W2795807997", + "https://openalex.org/W2796215194", + "https://openalex.org/W2796885425", + "https://openalex.org/W2804657206", + "https://openalex.org/W2806259446", + "https://openalex.org/W2807015674", + "https://openalex.org/W2807124908", + "https://openalex.org/W2810487289", + "https://openalex.org/W2886614482", + "https://openalex.org/W2887189984", + "https://openalex.org/W2891503716", + "https://openalex.org/W2894881080", + "https://openalex.org/W2898027682", + "https://openalex.org/W2901939789", + "https://openalex.org/W2902011388", + "https://openalex.org/W2902255491", + "https://openalex.org/W2907871166", + "https://openalex.org/W2917767525", + "https://openalex.org/W2920246635", + "https://openalex.org/W2927351257", + "https://openalex.org/W2947113669", + "https://openalex.org/W2949197630", + "https://openalex.org/W2949706042", + "https://openalex.org/W2950538796", + "https://openalex.org/W2951264787", + "https://openalex.org/W2952467640", + "https://openalex.org/W2962689739", + "https://openalex.org/W2962790223", + "https://openalex.org/W2962858109", + "https://openalex.org/W2963095307", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963483561", + "https://openalex.org/W2963660754", + "https://openalex.org/W2963847595", + "https://openalex.org/W2964112969", + "https://openalex.org/W2964244352", + "https://openalex.org/W2965595588", + "https://openalex.org/W2979481854", + "https://openalex.org/W2979997102", + "https://openalex.org/W2982560934", + "https://openalex.org/W3023058184", + "https://openalex.org/W3098278632", + "https://openalex.org/W3104119469", + "https://openalex.org/W3124443940", + "https://openalex.org/W3128452405", + "https://openalex.org/W4206534706", + "https://openalex.org/W4226065182", + "https://openalex.org/W4231827019", + "https://openalex.org/W4298082496", + "https://openalex.org/W4399636541", + "https://openalex.org/W6644682428", + "https://openalex.org/W6728551298", + "https://openalex.org/W6744393810", + "https://openalex.org/W6745730051", + "https://openalex.org/W6749553640", + "https://openalex.org/W6755687963", + "https://openalex.org/W6757984148", + "https://openalex.org/W6790587931", + "https://openalex.org/W6809680140" + ], + "related_works": [ + "https://openalex.org/W2905433371", + "https://openalex.org/W2888392564", + "https://openalex.org/W4310278675", + "https://openalex.org/W4388422664", + "https://openalex.org/W4390569940", + "https://openalex.org/W4361193272", + "https://openalex.org/W2963326959", + "https://openalex.org/W4388685194", + "https://openalex.org/W4312407344", + "https://openalex.org/W2894289927" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 96, + 177 + ], + "systems": [ + 2, + 40 + ], + "are": [ + 3, + 52, + 145 + ], + "becoming": [ + 4 + ], + "increasingly": [ + 5 + ], + "ubiquitous.": [ + 6 + ], + "These": [ + 7 + ], + "systems’s": [ + 8 + ], + "adoption": [ + 9 + ], + "has": [ + 10, + 106 + ], + "been": [ + 11 + ], + "expanding,": [ + 12 + ], + "accelerating": [ + 13 + ], + "the": [ + 14, + 55, + 63, + 77, + 85, + 88, + 122, + 127, + 141, + 146, + 152, + 168, + 172, + 182, + 187 + ], + "shift": [ + 15 + ], + "towards": [ + 16 + ], + "a": [ + 17, + 165, + 193 + ], + "more": [ + 18 + ], + "algorithmic": [ + 19 + ], + "society,": [ + 20 + ], + "meaning": [ + 21, + 45 + ], + "that": [ + 22 + ], + "algorithmically": [ + 23 + ], + "informed": [ + 24 + ], + "decisions": [ + 25, + 82 + ], + "have": [ + 26, + 75 + ], + "greater": [ + 27 + ], + "potential": [ + 28 + ], + "for": [ + 29, + 87, + 98 + ], + "significant": [ + 30 + ], + "social": [ + 31 + ], + "impact.": [ + 32 + ], + "However,": [ + 33, + 126 + ], + "most": [ + 34, + 147 + ], + "of": [ + 35, + 81, + 129, + 154, + 159, + 167, + 171, + 205 + ], + "these": [ + 36, + 130 + ], + "accurate": [ + 37 + ], + "decision": [ + 38 + ], + "support": [ + 39 + ], + "remain": [ + 41 + ], + "complex": [ + 42 + ], + "black": [ + 43 + ], + "boxes,": [ + 44 + ], + "their": [ + 46, + 66 + ], + "internal": [ + 47 + ], + "logic": [ + 48 + ], + "and": [ + 49, + 57, + 71, + 79, + 93, + 111, + 118, + 185, + 190 + ], + "inner": [ + 50 + ], + "workings": [ + 51 + ], + "hidden": [ + 53 + ], + "to": [ + 54, + 90, + 139, + 150, + 163, + 201 + ], + "user": [ + 56 + ], + "even": [ + 58 + ], + "experts": [ + 59 + ], + "cannot": [ + 60 + ], + "fully": [ + 61 + ], + "understand": [ + 62 + ], + "rationale": [ + 64 + ], + "behind": [ + 65 + ], + "predictions.": [ + 67 + ], + "Moreover,": [ + 68 + ], + "new": [ + 69 + ], + "regulations": [ + 70 + ], + "highly": [ + 72 + ], + "regulated": [ + 73 + ], + "domains": [ + 74 + ], + "made": [ + 76 + ], + "audit": [ + 78 + ], + "verifiability": [ + 80 + ], + "mandatory,": [ + 83 + ], + "increasing": [ + 84 + ], + "demand": [ + 86 + ], + "ability": [ + 89 + ], + "question,": [ + 91 + ], + "understand,": [ + 92 + ], + "trust": [ + 94 + ], + "machine": [ + 95, + 176 + ], + "systems,": [ + 97 + ], + "which": [ + 99 + ], + "interpretability": [ + 100, + 109, + 178 + ], + "is": [ + 101, + 134, + 162, + 197 + ], + "indispensable.": [ + 102 + ], + "The": [ + 103, + 157 + ], + "research": [ + 104, + 173 + ], + "community": [ + 105 + ], + "recognized": [ + 107 + ], + "this": [ + 108, + 160, + 208 + ], + "problem": [ + 110 + ], + "focused": [ + 112 + ], + "on": [ + 113, + 137, + 175, + 181, + 186, + 207 + ], + "developing": [ + 114 + ], + "both": [ + 115 + ], + "interpretable": [ + 116 + ], + "models": [ + 117 + ], + "explanation": [ + 119, + 142 + ], + "methods": [ + 120, + 131, + 189 + ], + "over": [ + 121 + ], + "past": [ + 123 + ], + "few": [ + 124 + ], + "years.": [ + 125 + ], + "emergence": [ + 128 + ], + "shows": [ + 132 + ], + "there": [ + 133 + ], + "no": [ + 135 + ], + "consensus": [ + 136 + ], + "how": [ + 138 + ], + "assess": [ + 140, + 151 + ], + "quality.": [ + 143 + ], + "Which": [ + 144 + ], + "suitable": [ + 148 + ], + "metrics": [ + 149 + ], + "quality": [ + 153 + ], + "an": [ + 155 + ], + "explanation?": [ + 156 + ], + "aim": [ + 158 + ], + "article": [ + 161 + ], + "provide": [ + 164 + ], + "review": [ + 166, + 196 + ], + "current": [ + 169 + ], + "state": [ + 170 + ], + "field": [ + 174 + ], + "while": [ + 179 + ], + "focusing": [ + 180 + ], + "societal": [ + 183 + ], + "impact": [ + 184 + ], + "developed": [ + 188 + ], + "metrics.": [ + 191 + ], + "Furthermore,": [ + 192 + ], + "complete": [ + 194 + ], + "literature": [ + 195 + ], + "presented": [ + 198 + ], + "in": [ + 199 + ], + "order": [ + 200 + ], + "identify": [ + 202 + ], + "future": [ + 203 + ], + "directions": [ + 204 + ], + "work": [ + 206 + ], + "field.": [ + 209 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 102 + }, + { + "year": 2025, + "cited_by_count": 348 + }, + { + "year": 2024, + "cited_by_count": 347 + }, + { + "year": 2023, + "cited_by_count": 324 + }, + { + "year": 2022, + "cited_by_count": 294 + }, + { + "year": 2021, + "cited_by_count": 226 + }, + { + "year": 2020, + "cited_by_count": 97 + }, + { + "year": 2019, + "cited_by_count": 4 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1563088657", + "doi": "https://doi.org/10.1017/cbo9780511801389", + "title": "An Introduction to Support Vector Machines and Other Kernel-based Learning Methods", + "display_name": "An Introduction to Support Vector Machines and Other Kernel-based Learning Methods", + "relevance_score": 2829.632, + "publication_year": 2000, + "publication_date": "2000-03-23", + "ids": { + "openalex": "https://openalex.org/W1563088657", + "doi": "https://doi.org/10.1017/cbo9780511801389", + "mag": "1563088657" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1017/cbo9780511801389", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511801389", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5083307694", + "display_name": "Nello Cristianini", + "orcid": "https://orcid.org/0000-0001-7740-0449" + }, + "institutions": [ + { + "id": "https://openalex.org/I36234482", + "display_name": "University of Bristol", + "ror": "https://ror.org/0524sp257", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I36234482" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Nello Cristianini", + "raw_affiliation_strings": [ + "University of Bristol" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Bristol", + "institution_ids": [ + "https://openalex.org/I36234482" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5047980012", + "display_name": "John Shawe‐Taylor", + "orcid": "https://orcid.org/0000-0002-2030-0073" + }, + "institutions": [ + { + "id": "https://openalex.org/I184558857", + "display_name": "Royal Holloway University of London", + "ror": "https://ror.org/04g2vpn86", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I124357947", + "https://openalex.org/I184558857" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "John Shawe-Taylor", + "raw_affiliation_strings": [ + "Royal Holloway, University of London", + "†Royal Holloway, University of London" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Royal Holloway, University of London", + "institution_ids": [ + "https://openalex.org/I184558857" + ] + }, + { + "raw_affiliation_string": "†Royal Holloway, University of London", + "institution_ids": [ + "https://openalex.org/I184558857" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5083307694" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I36234482" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 129.5763, + "has_fulltext": false, + "cited_by_count": 13869, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.5723999738693237, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.5723999738693237, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11550", + "display_name": "Text and Document Classification Technologies", + "score": 0.5425999760627747, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.4860999882221222, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7553318738937378 + }, + { + "id": "https://openalex.org/keywords/grasp", + "display_name": "GRASP", + "score": 0.6769353151321411 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.6746301651000977 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.6089456677436829 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5675321817398071 + }, + { + "id": "https://openalex.org/keywords/statistical-learning-theory", + "display_name": "Statistical learning theory", + "score": 0.5189080834388733 + }, + { + "id": "https://openalex.org/keywords/presentation", + "display_name": "Presentation (obstetrics)", + "score": 0.5127816796302795 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5107676982879639 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.45903491973876953 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.4535565972328186 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.3457496166229248 + }, + { + "id": "https://openalex.org/keywords/software-engineering", + "display_name": "Software engineering", + "score": 0.2609504163265228 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.09729310870170593 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7553318738937378 + }, + { + "id": "https://openalex.org/C171268870", + "wikidata": "https://www.wikidata.org/wiki/Q1486676", + "display_name": "GRASP", + "level": 2, + "score": 0.6769353151321411 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.6746301651000977 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.6089456677436829 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5675321817398071 + }, + { + "id": "https://openalex.org/C2779915298", + "wikidata": "https://www.wikidata.org/wiki/Q7604400", + "display_name": "Statistical learning theory", + "level": 3, + "score": 0.5189080834388733 + }, + { + "id": "https://openalex.org/C2777601897", + "wikidata": "https://www.wikidata.org/wiki/Q3409113", + "display_name": "Presentation (obstetrics)", + "level": 2, + "score": 0.5127816796302795 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5107676982879639 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.45903491973876953 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.4535565972328186 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.3457496166229248 + }, + { + "id": "https://openalex.org/C115903868", + "wikidata": "https://www.wikidata.org/wiki/Q80993", + "display_name": "Software engineering", + "level": 1, + "score": 0.2609504163265228 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.09729310870170593 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C126838900", + "wikidata": "https://www.wikidata.org/wiki/Q77604", + "display_name": "Radiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C114614502", + "wikidata": "https://www.wikidata.org/wiki/Q76592", + "display_name": "Combinatorics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 11, + "locations": [ + { + "id": "doi:10.1017/cbo9780511801389", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/cbo9780511801389", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306462995", + "display_name": "Cambridge University Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310311721", + "host_organization_name": "Cambridge University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311721", + "https://openalex.org/P4310311702" + ], + "host_organization_lineage_names": [ + "Cambridge University Press", + "University of Cambridge" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "monograph" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-008832996", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-014827826", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=014827826&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-018922583", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=018922583&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-019935426", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=019935426&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-028388686", + "is_oa": false, + "landing_page_url": "http://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&db=nlabk&AN=510940", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-029352050", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1017/CBO9780511801389", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:bibliotecavirtualdefensa.es:671734", + "is_oa": false, + "landing_page_url": "https://bibliotecavirtual.defensa.gob.es/BVMDefensa/es/consulta/registro.do?id=671734", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196928", + "display_name": "Virtual Defense Library (Ministerio de Defensa)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210162908", + "host_organization_name": "Ministerio de Defensa", + "host_organization_lineage": [ + "https://openalex.org/I4210162908" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Libros" + }, + { + "id": "pmh:oai:cds.cern.ch:735638", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/735638", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:eprints.ucl.ac.uk.OAI2:1377602", + "is_oa": false, + "landing_page_url": "http://discovery.ucl.ac.uk/1377602/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400024", + "display_name": "UCL Discovery (University College London)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I45129253", + "host_organization_name": "University College London", + "host_organization_lineage": [ + "https://openalex.org/I45129253" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": " Cambridge University Press (2010) ", + "raw_type": "Book" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:51488", + "is_oa": false, + "landing_page_url": "http://infoscience.epfl.ch/record/51488", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400488", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.7699999809265137 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2369526193", + "https://openalex.org/W2394142199", + "https://openalex.org/W2382810153", + "https://openalex.org/W3013091747", + "https://openalex.org/W2389264710", + "https://openalex.org/W2186819599", + "https://openalex.org/W2367955905", + "https://openalex.org/W2385435757", + "https://openalex.org/W2371052470", + "https://openalex.org/W2535735882" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "is": [ + 1, + 100 + ], + "the": [ + 2, + 49, + 61, + 74, + 82, + 98, + 125 + ], + "first": [ + 3 + ], + "comprehensive": [ + 4 + ], + "introduction": [ + 5 + ], + "to": [ + 6, + 105, + 135 + ], + "Support": [ + 7 + ], + "Vector": [ + 8 + ], + "Machines": [ + 9 + ], + "(SVMs),": [ + 10 + ], + "a": [ + 11, + 78 + ], + "generation": [ + 12 + ], + "learning": [ + 13, + 21, + 54 + ], + "system": [ + 14 + ], + "based": [ + 15 + ], + "on": [ + 16 + ], + "recent": [ + 17 + ], + "advances": [ + 18 + ], + "in": [ + 19, + 27, + 92 + ], + "statistical": [ + 20 + ], + "theory.": [ + 22 + ], + "SVMs": [ + 23 + ], + "deliver": [ + 24 + ], + "state-of-the-art": [ + 25 + ], + "performance": [ + 26 + ], + "real-world": [ + 28 + ], + "applications": [ + 29 + ], + "such": [ + 30 + ], + "as": [ + 31, + 46 + ], + "text": [ + 32 + ], + "categorisation,": [ + 33 + ], + "hand-written": [ + 34 + ], + "character": [ + 35 + ], + "recognition,": [ + 36 + ], + "image": [ + 37 + ], + "classification,": [ + 38 + ], + "biosequences": [ + 39 + ], + "analysis,": [ + 40 + ], + "etc.,": [ + 41 + ], + "and": [ + 42, + 55, + 65, + 84, + 94, + 102, + 108, + 127, + 140 + ], + "are": [ + 43, + 89 + ], + "now": [ + 44 + ], + "established": [ + 45 + ], + "one": [ + 47 + ], + "of": [ + 48, + 81 + ], + "standard": [ + 50 + ], + "tools": [ + 51 + ], + "for": [ + 52, + 77, + 121 + ], + "machine": [ + 53 + ], + "data": [ + 56 + ], + "mining.": [ + 57 + ], + "Students": [ + 58 + ], + "will": [ + 59, + 69, + 132 + ], + "find": [ + 60 + ], + "book": [ + 62, + 126 + ], + "both": [ + 63 + ], + "stimulating": [ + 64 + ], + "accessible,": [ + 66 + ], + "while": [ + 67, + 97 + ], + "practitioners": [ + 68, + 134 + ], + "be": [ + 70 + ], + "guided": [ + 71 + ], + "smoothly": [ + 72 + ], + "through": [ + 73 + ], + "material": [ + 75 + ], + "required": [ + 76 + ], + "good": [ + 79 + ], + "grasp": [ + 80 + ], + "theory": [ + 83 + ], + "its": [ + 85, + 128 + ], + "applications.": [ + 86 + ], + "The": [ + 87 + ], + "concepts": [ + 88 + ], + "introduced": [ + 90 + ], + "gradually": [ + 91 + ], + "accessible": [ + 93 + ], + "self-contained": [ + 95 + ], + "stages,": [ + 96 + ], + "presentation": [ + 99 + ], + "rigorous": [ + 101 + ], + "thorough.": [ + 103 + ], + "Pointers": [ + 104 + ], + "relevant": [ + 106 + ], + "literature": [ + 107 + ], + "web": [ + 109, + 130 + ], + "sites": [ + 110 + ], + "containing": [ + 111 + ], + "software": [ + 112 + ], + "ensure": [ + 113 + ], + "that": [ + 114 + ], + "it": [ + 115 + ], + "forms": [ + 116 + ], + "an": [ + 117 + ], + "ideal": [ + 118 + ], + "starting": [ + 119 + ], + "point": [ + 120 + ], + "further": [ + 122 + ], + "study.": [ + 123 + ], + "Equally,": [ + 124 + ], + "associated": [ + 129 + ], + "site": [ + 131 + ], + "guide": [ + 133 + ], + "updated": [ + 136 + ], + "literature,": [ + 137 + ], + "new": [ + 138 + ], + "applications,": [ + 139 + ], + "on-line": [ + 141 + ], + "software.": [ + 142 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 73 + }, + { + "year": 2025, + "cited_by_count": 254 + }, + { + "year": 2024, + "cited_by_count": 299 + }, + { + "year": 2023, + "cited_by_count": 361 + }, + { + "year": 2022, + "cited_by_count": 432 + }, + { + "year": 2021, + "cited_by_count": 589 + }, + { + "year": 2020, + "cited_by_count": 597 + }, + { + "year": 2019, + "cited_by_count": 618 + }, + { + "year": 2018, + "cited_by_count": 618 + }, + { + "year": 2017, + "cited_by_count": 622 + }, + { + "year": 2016, + "cited_by_count": 654 + }, + { + "year": 2015, + "cited_by_count": 750 + }, + { + "year": 2014, + "cited_by_count": 767 + }, + { + "year": 2013, + "cited_by_count": 738 + }, + { + "year": 2012, + "cited_by_count": 765 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2798701005", + "doi": "https://doi.org/10.1126/science.aat8084", + "title": "All-optical machine learning using diffractive deep neural networks", + "display_name": "All-optical machine learning using diffractive deep neural networks", + "relevance_score": 2813.5137, + "publication_year": 2018, + "publication_date": "2018-07-26", + "ids": { + "openalex": "https://openalex.org/W2798701005", + "doi": "https://doi.org/10.1126/science.aat8084", + "mag": "2798701005", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30049787" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1126/science.aat8084", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aat8084", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1804.08711", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Xing Lin", + "orcid": "https://orcid.org/0000-0002-5560-7286" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xing Lin", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-5560-7286", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5058629781", + "display_name": "Yair Rivenson", + "orcid": "https://orcid.org/0000-0003-1132-0715" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yair Rivenson", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5043009217", + "display_name": "Nezih Tolga Yardimci", + "orcid": "https://orcid.org/0000-0002-3623-5835" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Nezih T. Yardimci", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-3623-5835", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5107809600", + "display_name": "Muhammed Veli", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Muhammed Veli", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5069743536", + "display_name": "Yi Luo", + "orcid": "https://orcid.org/0000-0001-9442-547X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yi Luo", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003547576", + "display_name": "Mona Jarrahi", + "orcid": "https://orcid.org/0000-0001-9514-555X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Mona Jarrahi", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016207990", + "display_name": "Aydogan Özcan", + "orcid": "https://orcid.org/0000-0002-0717-683X" + }, + "institutions": [ + { + "id": "https://openalex.org/I142207940", + "display_name": "California NanoSystems Institute", + "ror": "https://ror.org/00q7fqf35", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I142207940", + "https://openalex.org/I154570441", + "https://openalex.org/I161318765" + ] + }, + { + "id": "https://openalex.org/I161318765", + "display_name": "University of California, Los Angeles", + "ror": "https://ror.org/046rm7j60", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I161318765" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Aydogan Ozcan", + "raw_affiliation_strings": [ + "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "Department of Surgery, David Geffen School of Medicine, University of California, Los Angeles, CA 90095, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0717-683X", + "affiliations": [ + { + "raw_affiliation_string": "California NanoSystems Institute (CNSI), University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Bioengineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, David Geffen School of Medicine, University of California, Los Angeles, CA 90095, USA", + "institution_ids": [ + "https://openalex.org/I161318765" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5016207990" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I142207940", + "https://openalex.org/I161318765" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 92.9115, + "has_fulltext": false, + "cited_by_count": 2399, + "citation_normalized_percentile": { + "value": 0.99953229, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "361", + "issue": "6406", + "first_page": "1004", + "last_page": "1008" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12611", + "display_name": "Neural Networks and Reservoir Computing", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12611", + "display_name": "Neural Networks and Reservoir Computing", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10299", + "display_name": "Photonic and Optical Devices", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10232", + "display_name": "Optical Network Technologies", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7860591411590576 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.7775610685348511 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6655349731445312 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5838559865951538 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.48495984077453613 + }, + { + "id": "https://openalex.org/keywords/lithography", + "display_name": "Lithography", + "score": 0.41517090797424316 + }, + { + "id": "https://openalex.org/keywords/deep-neural-networks", + "display_name": "Deep neural networks", + "score": 0.4102061092853546 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.3880327045917511 + }, + { + "id": "https://openalex.org/keywords/computer-architecture", + "display_name": "Computer architecture", + "score": 0.3523845970630646 + }, + { + "id": "https://openalex.org/keywords/computer-vision", + "display_name": "Computer vision", + "score": 0.330812931060791 + }, + { + "id": "https://openalex.org/keywords/materials-science", + "display_name": "Materials science", + "score": 0.10253027081489563 + }, + { + "id": "https://openalex.org/keywords/optoelectronics", + "display_name": "Optoelectronics", + "score": 0.09713014960289001 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7860591411590576 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.7775610685348511 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6655349731445312 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5838559865951538 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.48495984077453613 + }, + { + "id": "https://openalex.org/C204223013", + "wikidata": "https://www.wikidata.org/wiki/Q133036", + "display_name": "Lithography", + "level": 2, + "score": 0.41517090797424316 + }, + { + "id": "https://openalex.org/C2984842247", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep neural networks", + "level": 3, + "score": 0.4102061092853546 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.3880327045917511 + }, + { + "id": "https://openalex.org/C118524514", + "wikidata": "https://www.wikidata.org/wiki/Q173212", + "display_name": "Computer architecture", + "level": 1, + "score": 0.3523845970630646 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.330812931060791 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.10253027081489563 + }, + { + "id": "https://openalex.org/C49040817", + "wikidata": "https://www.wikidata.org/wiki/Q193091", + "display_name": "Optoelectronics", + "level": 1, + "score": 0.09713014960289001 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1126/science.aat8084", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1126/science.aat8084", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S3880285", + "display_name": "Science", + "issn_l": "0036-8075", + "issn": [ + "0036-8075", + "1095-9203" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315823", + "host_organization_name": "American Association for the Advancement of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315823" + ], + "host_organization_lineage_names": [ + "American Association for the Advancement of Science" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:30049787", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30049787", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Science (New York, N.Y.)", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1804.08711", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1804.08711", + "pdf_url": "https://arxiv.org/pdf/1804.08711", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1804.08711", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1804.08711", + "pdf_url": "https://arxiv.org/pdf/1804.08711", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320306082", + "display_name": "Howard Hughes Medical Institute", + "ror": "https://ror.org/006w34k90" + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 48, + "referenced_works": [ + "https://openalex.org/W1569530544", + "https://openalex.org/W1965702053", + "https://openalex.org/W1983348509", + "https://openalex.org/W1988583365", + "https://openalex.org/W1992642990", + "https://openalex.org/W1999001021", + "https://openalex.org/W2027029957", + "https://openalex.org/W2028891317", + "https://openalex.org/W2029316659", + "https://openalex.org/W2031557272", + "https://openalex.org/W2049431120", + "https://openalex.org/W2082093743", + "https://openalex.org/W2087322350", + "https://openalex.org/W2092056230", + "https://openalex.org/W2095705004", + "https://openalex.org/W2112796928", + "https://openalex.org/W2124188012", + "https://openalex.org/W2126442445", + "https://openalex.org/W2133665775", + "https://openalex.org/W2141125852", + "https://openalex.org/W2143612262", + "https://openalex.org/W2152537098", + "https://openalex.org/W2157331557", + "https://openalex.org/W2172174689", + "https://openalex.org/W2249493152", + "https://openalex.org/W2257979135", + "https://openalex.org/W2405496089", + "https://openalex.org/W2415475836", + "https://openalex.org/W2574952845", + "https://openalex.org/W2592929672", + "https://openalex.org/W2593966629", + "https://openalex.org/W2604272474", + "https://openalex.org/W2604388535", + "https://openalex.org/W2612688942", + "https://openalex.org/W2614949728", + "https://openalex.org/W2625634735", + "https://openalex.org/W2752849906", + "https://openalex.org/W2754141582", + "https://openalex.org/W2774993480", + "https://openalex.org/W2786808700", + "https://openalex.org/W2919115771", + "https://openalex.org/W3100115611", + "https://openalex.org/W3100420029", + "https://openalex.org/W3106459670", + "https://openalex.org/W3149029883", + "https://openalex.org/W4211228099", + "https://openalex.org/W4236965008", + "https://openalex.org/W4246799416" + ], + "related_works": [ + "https://openalex.org/W4375867731", + "https://openalex.org/W2611989081", + "https://openalex.org/W2731899572", + "https://openalex.org/W4377865163", + "https://openalex.org/W3193857078", + "https://openalex.org/W2888956734", + "https://openalex.org/W3000197790", + "https://openalex.org/W4315865067", + "https://openalex.org/W2979433843", + "https://openalex.org/W3208304128" + ], + "abstract_inverted_index": { + "All-optical": [ + 0 + ], + "deep": [ + 1 + ], + "learning": [ + 2, + 4, + 42 + ], + "Deep": [ + 3 + ], + "uses": [ + 5, + 44 + ], + "multilayered": [ + 6, + 27 + ], + "artificial": [ + 7, + 69 + ], + "neural": [ + 8, + 28, + 70 + ], + "networks": [ + 9, + 29 + ], + "to": [ + 10, + 67, + 76 + ], + "learn": [ + 11 + ], + "digitally": [ + 12 + ], + "from": [ + 13 + ], + "large": [ + 14 + ], + "datasets.": [ + 15 + ], + "It": [ + 16 + ], + "then": [ + 17 + ], + "performs": [ + 18 + ], + "advanced": [ + 19 + ], + "identification": [ + 20 + ], + "and": [ + 21, + 52 + ], + "classification": [ + 22 + ], + "tasks.": [ + 23 + ], + "To": [ + 24 + ], + "date,": [ + 25 + ], + "these": [ + 26 + ], + "have": [ + 30 + ], + "been": [ + 31 + ], + "implemented": [ + 32 + ], + "on": [ + 33 + ], + "a": [ + 34 + ], + "computer.": [ + 35 + ], + "Lin": [ + 36 + ], + "et": [ + 37 + ], + "al.": [ + 38 + ], + "demonstrate": [ + 39 + ], + "all-optical": [ + 40 + ], + "machine": [ + 41 + ], + "that": [ + 43, + 48, + 72 + ], + "passive": [ + 45 + ], + "optical": [ + 46, + 64 + ], + "components": [ + 47 + ], + "can": [ + 49, + 73 + ], + "be": [ + 50, + 74 + ], + "patterned": [ + 51 + ], + "fabricated": [ + 53 + ], + "with": [ + 54 + ], + "3D-printing.": [ + 55 + ], + "Their": [ + 56 + ], + "hardware": [ + 57 + ], + "approach": [ + 58 + ], + "comprises": [ + 59 + ], + "stacked": [ + 60 + ], + "layers": [ + 61 + ], + "of": [ + 62, + 83 + ], + "diffractive": [ + 63 + ], + "elements": [ + 65 + ], + "analogous": [ + 66 + ], + "an": [ + 68 + ], + "network": [ + 71 + ], + "trained": [ + 75 + ], + "execute": [ + 77 + ], + "complex": [ + 78 + ], + "functions": [ + 79 + ], + "at": [ + 80 + ], + "the": [ + 81 + ], + "speed": [ + 82 + ], + "light.": [ + 84 + ], + "Science": [ + 85 + ], + ",": [ + 86 + ], + "this": [ + 87 + ], + "issue": [ + 88 + ], + "p.": [ + 89 + ], + "1004": [ + 90 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 177 + }, + { + "year": 2025, + "cited_by_count": 519 + }, + { + "year": 2024, + "cited_by_count": 459 + }, + { + "year": 2023, + "cited_by_count": 367 + }, + { + "year": 2022, + "cited_by_count": 328 + }, + { + "year": 2021, + "cited_by_count": 253 + }, + { + "year": 2020, + "cited_by_count": 164 + }, + { + "year": 2019, + "cited_by_count": 113 + }, + { + "year": 2018, + "cited_by_count": 19 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2601810315", + "doi": "https://doi.org/10.1093/bioinformatics/btx180", + "title": "Trainable Weka Segmentation: a machine learning tool for microscopy pixel classification", + "display_name": "Trainable Weka Segmentation: a machine learning tool for microscopy pixel classification", + "relevance_score": 2796.275, + "publication_year": 2017, + "publication_date": "2017-03-28", + "ids": { + "openalex": "https://openalex.org/W2601810315", + "doi": "https://doi.org/10.1093/bioinformatics/btx180", + "mag": "2601810315", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28369169" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1093/bioinformatics/btx180", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1093/bioinformatics/btx180", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S52395412", + "display_name": "Bioinformatics", + "issn_l": "1367-4803", + "issn": [ + "1367-4803", + "1367-4811" + ], + "is_oa": false, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021284069", + "display_name": "Ignacio Arganda‐Carreras", + "orcid": "https://orcid.org/0000-0003-0229-5722" + }, + "institutions": [ + { + "id": "https://openalex.org/I110594554", + "display_name": "Ikerbasque", + "ror": "https://ror.org/01cc3fy72", + "country_code": "ES", + "type": "other", + "lineage": [ + "https://openalex.org/I110594554" + ] + }, + { + "id": "https://openalex.org/I169108374", + "display_name": "University of the Basque Country", + "ror": "https://ror.org/000xsnr85", + "country_code": "ES", + "type": "education", + "lineage": [ + "https://openalex.org/I169108374" + ] + }, + { + "id": "https://openalex.org/I47686490", + "display_name": "Donostia International Physics Center", + "ror": "https://ror.org/02e24yw40", + "country_code": "ES", + "type": "other", + "lineage": [ + "https://openalex.org/I47686490" + ] + } + ], + "countries": [ + "ES" + ], + "is_corresponding": true, + "raw_author_name": "Ignacio Arganda-Carreras", + "raw_affiliation_strings": [ + "Computer Science and Artificial Intelligence Department, Basque Country University, San Sebastian, Spain", + "Donostia International Physics Center, San Sebastian, Spain", + "Ikerbasque, Basque Foundation for Science, Bilbao, Spain" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Computer Science and Artificial Intelligence Department, Basque Country University, San Sebastian, Spain", + "institution_ids": [ + "https://openalex.org/I169108374" + ] + }, + { + "raw_affiliation_string": "Donostia International Physics Center, San Sebastian, Spain", + "institution_ids": [ + "https://openalex.org/I47686490" + ] + }, + { + "raw_affiliation_string": "Ikerbasque, Basque Foundation for Science, Bilbao, Spain", + "institution_ids": [ + "https://openalex.org/I110594554" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5055757900", + "display_name": "Verena Kaynig", + "orcid": "https://orcid.org/0000-0002-3520-0577" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Verena Kaynig", + "raw_affiliation_strings": [ + "Harvard John A. Paulson School of Engineering and Applied Sciences, Harvard University, Cambridge, MA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Harvard John A. Paulson School of Engineering and Applied Sciences, Harvard University, Cambridge, MA, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078540488", + "display_name": "Curtis Rueden", + "orcid": "https://orcid.org/0000-0001-7055-6707" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Curtis Rueden", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5010413374", + "display_name": "Kevin W. Eliceiri", + "orcid": "https://orcid.org/0000-0001-8678-670X" + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kevin W Eliceiri", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050085853", + "display_name": "Johannes Schindelin", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I135310074", + "display_name": "University of Wisconsin–Madison", + "ror": "https://ror.org/01y2jtd41", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I135310074" + ] + }, + { + "id": "https://openalex.org/I59499333", + "display_name": "Optica", + "ror": "https://ror.org/00jypd850", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I59499333" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Johannes Schindelin", + "raw_affiliation_strings": [ + "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Optical and Computational Instrumentation, University of Wisconsin, Madison, WI, USA", + "institution_ids": [ + "https://openalex.org/I135310074", + "https://openalex.org/I59499333" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5042603640", + "display_name": "Albert Cardona", + "orcid": "https://orcid.org/0000-0003-4941-6536" + }, + "institutions": [ + { + "id": "https://openalex.org/I1344073410", + "display_name": "Howard Hughes Medical Institute", + "ror": "https://ror.org/006w34k90", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1344073410" + ] + }, + { + "id": "https://openalex.org/I195573530", + "display_name": "Janelia Research Campus", + "ror": "https://ror.org/013sk6x84", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1344073410", + "https://openalex.org/I195573530" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Albert Cardona", + "raw_affiliation_strings": [ + "Howard Hughes Medical Institute, Janelia Research Campus, Ashburn, VA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Howard Hughes Medical Institute, Janelia Research Campus, Ashburn, VA, USA", + "institution_ids": [ + "https://openalex.org/I195573530", + "https://openalex.org/I1344073410" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5044273339", + "display_name": "H. Sebastian Seung", + "orcid": "https://orcid.org/0000-0002-8591-6733" + }, + "institutions": [ + { + "id": "https://openalex.org/I20089843", + "display_name": "Princeton University", + "ror": "https://ror.org/00hx57361", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I20089843" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "H Sebastian Seung", + "raw_affiliation_strings": [ + "Neuroscience Institute and Computer Science Department, Princeton University, NJ, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Neuroscience Institute and Computer Science Department, Princeton University, NJ, USA", + "institution_ids": [ + "https://openalex.org/I20089843" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 7, + "corresponding_author_ids": [ + "https://openalex.org/A5021284069" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I110594554", + "https://openalex.org/I169108374", + "https://openalex.org/I47686490" + ], + "apc_list": { + "value": 3618, + "currency": "USD", + "value_usd": 3618 + }, + "apc_paid": null, + "fwci": 95.3558, + "has_fulltext": false, + "cited_by_count": 2460, + "citation_normalized_percentile": { + "value": 0.99909297, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "33", + "issue": "15", + "first_page": "2424", + "last_page": "2426" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10857", + "display_name": "Advanced Electron Microscopy Techniques and Applications", + "score": 0.6383000016212463, + "subfield": { + "id": "https://openalex.org/subfields/1315", + "display_name": "Structural Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10857", + "display_name": "Advanced Electron Microscopy Techniques and Applications", + "score": 0.6383000016212463, + "subfield": { + "id": "https://openalex.org/subfields/1315", + "display_name": "Structural Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12859", + "display_name": "Cell Image Analysis Techniques", + "score": 0.22310000658035278, + "subfield": { + "id": "https://openalex.org/subfields/1304", + "display_name": "Biophysics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T13937", + "display_name": "Genetics, Bioinformatics, and Biomedical Research", + "score": 0.02419999986886978, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8189126253128052 + }, + { + "id": "https://openalex.org/keywords/segmentation", + "display_name": "Segmentation", + "score": 0.7295361757278442 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.678537905216217 + }, + { + "id": "https://openalex.org/keywords/pipeline", + "display_name": "Pipeline (software)", + "score": 0.6693797707557678 + }, + { + "id": "https://openalex.org/keywords/bottleneck", + "display_name": "Bottleneck", + "score": 0.6350745558738708 + }, + { + "id": "https://openalex.org/keywords/cluster-analysis", + "display_name": "Cluster analysis", + "score": 0.6211010813713074 + }, + { + "id": "https://openalex.org/keywords/classifier", + "display_name": "Classifier (UML)", + "score": 0.51936274766922 + }, + { + "id": "https://openalex.org/keywords/software", + "display_name": "Software", + "score": 0.5177275538444519 + }, + { + "id": "https://openalex.org/keywords/pixel", + "display_name": "Pixel", + "score": 0.5061234831809998 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.48226505517959595 + }, + { + "id": "https://openalex.org/keywords/image-segmentation", + "display_name": "Image segmentation", + "score": 0.480505108833313 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.4530463218688965 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3784646987915039 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3474346399307251 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8189126253128052 + }, + { + "id": "https://openalex.org/C89600930", + "wikidata": "https://www.wikidata.org/wiki/Q1423946", + "display_name": "Segmentation", + "level": 2, + "score": 0.7295361757278442 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.678537905216217 + }, + { + "id": "https://openalex.org/C43521106", + "wikidata": "https://www.wikidata.org/wiki/Q2165493", + "display_name": "Pipeline (software)", + "level": 2, + "score": 0.6693797707557678 + }, + { + "id": "https://openalex.org/C2780513914", + "wikidata": "https://www.wikidata.org/wiki/Q18210350", + "display_name": "Bottleneck", + "level": 2, + "score": 0.6350745558738708 + }, + { + "id": "https://openalex.org/C73555534", + "wikidata": "https://www.wikidata.org/wiki/Q622825", + "display_name": "Cluster analysis", + "level": 2, + "score": 0.6211010813713074 + }, + { + "id": "https://openalex.org/C95623464", + "wikidata": "https://www.wikidata.org/wiki/Q1096149", + "display_name": "Classifier (UML)", + "level": 2, + "score": 0.51936274766922 + }, + { + "id": "https://openalex.org/C2777904410", + "wikidata": "https://www.wikidata.org/wiki/Q7397", + "display_name": "Software", + "level": 2, + "score": 0.5177275538444519 + }, + { + "id": "https://openalex.org/C160633673", + "wikidata": "https://www.wikidata.org/wiki/Q355198", + "display_name": "Pixel", + "level": 2, + "score": 0.5061234831809998 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.48226505517959595 + }, + { + "id": "https://openalex.org/C124504099", + "wikidata": "https://www.wikidata.org/wiki/Q56933", + "display_name": "Image segmentation", + "level": 3, + "score": 0.480505108833313 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.4530463218688965 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3784646987915039 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3474346399307251 + }, + { + "id": "https://openalex.org/C149635348", + "wikidata": "https://www.wikidata.org/wiki/Q193040", + "display_name": "Embedded system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000818", + "descriptor_name": "Animals", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000033", + "qualifier_name": "anatomy & histology", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D004330", + "descriptor_name": "Drosophila", + "qualifier_ui": "Q000648", + "qualifier_name": "ultrastructure", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D007091", + "descriptor_name": "Image Processing, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D008853", + "descriptor_name": "Microscopy", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1093/bioinformatics/btx180", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1093/bioinformatics/btx180", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S52395412", + "display_name": "Bioinformatics", + "issn_l": "1367-4803", + "issn": [ + "1367-4803", + "1367-4811" + ], + "is_oa": false, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310311648", + "host_organization_name": "Oxford University Press", + "host_organization_lineage": [ + "https://openalex.org/P4310311648", + "https://openalex.org/P4310311647" + ], + "host_organization_lineage_names": [ + "Oxford University Press", + "University of Oxford" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics", + "raw_type": "journal-article" + }, + { + "id": "pmid:28369169", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28369169", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Bioinformatics (Oxford, England)", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 6, + "referenced_works": [ + "https://openalex.org/W2121469024", + "https://openalex.org/W2133990480", + "https://openalex.org/W2167279371", + "https://openalex.org/W2234666690", + "https://openalex.org/W2468870810", + "https://openalex.org/W2483966273" + ], + "related_works": [ + "https://openalex.org/W2595172197", + "https://openalex.org/W2084856301", + "https://openalex.org/W2127970246", + "https://openalex.org/W2885125400", + "https://openalex.org/W1989889224", + "https://openalex.org/W4382618745", + "https://openalex.org/W1973775000", + "https://openalex.org/W2748922771", + "https://openalex.org/W1987128138", + "https://openalex.org/W2743976221" + ], + "abstract_inverted_index": { + "SUMMARY:": [ + 0 + ], + "State-of-the-art": [ + 1 + ], + "light": [ + 2 + ], + "and": [ + 3, + 29, + 68, + 84 + ], + "electron": [ + 4 + ], + "microscopes": [ + 5 + ], + "are": [ + 6, + 123 + ], + "capable": [ + 7 + ], + "of": [ + 8, + 23, + 59, + 106, + 112 + ], + "acquiring": [ + 9 + ], + "large": [ + 10 + ], + "image": [ + 11, + 91, + 109 + ], + "datasets,": [ + 12 + ], + "but": [ + 13 + ], + "quantitatively": [ + 14 + ], + "evaluating": [ + 15 + ], + "the": [ + 16, + 35, + 45, + 70, + 107 + ], + "data": [ + 17, + 72, + 122 + ], + "often": [ + 18, + 30 + ], + "involves": [ + 19 + ], + "manually": [ + 20 + ], + "annotating": [ + 21 + ], + "structures": [ + 22 + ], + "interest.": [ + 24 + ], + "This": [ + 25 + ], + "process": [ + 26 + ], + "is": [ + 27, + 99 + ], + "time-consuming": [ + 28 + ], + "a": [ + 31, + 50, + 56, + 66 + ], + "major": [ + 32 + ], + "bottleneck": [ + 33 + ], + "in": [ + 34, + 62 + ], + "evaluation": [ + 36 + ], + "pipeline.": [ + 37 + ], + "To": [ + 38 + ], + "overcome": [ + 39 + ], + "this": [ + 40 + ], + "problem,": [ + 41 + ], + "we": [ + 42 + ], + "have": [ + 43 + ], + "introduced": [ + 44 + ], + "Trainable": [ + 46 + ], + "Weka": [ + 47 + ], + "Segmentation": [ + 48 + ], + "(TWS),": [ + 49 + ], + "machine": [ + 51 + ], + "learning": [ + 52, + 81 + ], + "tool": [ + 53 + ], + "that": [ + 54 + ], + "leverages": [ + 55 + ], + "limited": [ + 57 + ], + "number": [ + 58 + ], + "manual": [ + 60 + ], + "annotations": [ + 61 + ], + "order": [ + 63 + ], + "to": [ + 64, + 88 + ], + "train": [ + 65 + ], + "classifier": [ + 67 + ], + "segment": [ + 69 + ], + "remaining": [ + 71 + ], + "automatically.": [ + 73 + ], + "In": [ + 74 + ], + "addition,": [ + 75 + ], + "TWS": [ + 76, + 98 + ], + "can": [ + 77, + 85 + ], + "provide": [ + 78 + ], + "unsupervised": [ + 79 + ], + "segmentation": [ + 80 + ], + "schemes": [ + 82 + ], + "(clustering)": [ + 83 + ], + "be": [ + 86 + ], + "customized": [ + 87 + ], + "employ": [ + 89 + ], + "user-designed": [ + 90 + ], + "features": [ + 92 + ], + "or": [ + 93 + ], + "classifiers.": [ + 94 + ], + "AVAILABILITY": [ + 95 + ], + "AND": [ + 96 + ], + "IMPLEMENTATION:": [ + 97 + ], + "distributed": [ + 100 + ], + "as": [ + 101, + 104 + ], + "open-source": [ + 102 + ], + "software": [ + 103 + ], + "part": [ + 105 + ], + "Fiji": [ + 108 + ], + "processing": [ + 110 + ], + "distribution": [ + 111 + ], + "ImageJ": [ + 113 + ], + "at": [ + 114, + 125 + ], + "http://imagej.net/Trainable_Weka_Segmentation": [ + 115 + ], + ".": [ + 116 + ], + "CONTACT:": [ + 117 + ], + "ignacio.arganda@ehu.eus.": [ + 118 + ], + "SUPPLEMENTARY": [ + 119 + ], + "INFORMATION:": [ + 120 + ], + "Supplementary": [ + 121 + ], + "available": [ + 124 + ], + "Bioinformatics": [ + 126 + ], + "online.": [ + 127 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 133 + }, + { + "year": 2025, + "cited_by_count": 361 + }, + { + "year": 2024, + "cited_by_count": 372 + }, + { + "year": 2023, + "cited_by_count": 329 + }, + { + "year": 2022, + "cited_by_count": 363 + }, + { + "year": 2021, + "cited_by_count": 343 + }, + { + "year": 2020, + "cited_by_count": 238 + }, + { + "year": 2019, + "cited_by_count": 175 + }, + { + "year": 2018, + "cited_by_count": 106 + }, + { + "year": 2017, + "cited_by_count": 34 + }, + { + "year": 2016, + "cited_by_count": 3 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1994005439", + "doi": "https://doi.org/10.1142/s0129065704001899", + "title": "GAUSSIAN PROCESSES FOR MACHINE LEARNING", + "display_name": "GAUSSIAN PROCESSES FOR MACHINE LEARNING", + "relevance_score": 2793.3652, + "publication_year": 2004, + "publication_date": "2004-04-01", + "ids": { + "openalex": "https://openalex.org/W1994005439", + "doi": "https://doi.org/10.1142/s0129065704001899", + "mag": "1994005439", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/15112367" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1142/s0129065704001899", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/s0129065704001899", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S197665576", + "display_name": "International Journal of Neural Systems", + "issn_l": "0129-0657", + "issn": [ + "0129-0657", + "1793-6462" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Neural Systems", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "http://infoscience.epfl.ch/record/161301", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5110779848", + "display_name": "Matthias Seeger", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + }, + { + "id": "https://openalex.org/I98677209", + "display_name": "University of Edinburgh", + "ror": "https://ror.org/01nrxwf90", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I98677209" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "MATTHIAS SEEGER", + "raw_affiliation_strings": [ + "Department of EECS, University of California at Berkeley, 485 Soda Hall, Berkeley CA 94720-1776, USA", + "Previously at: Institute for Adaptive and Neural Computation,\r\nUniversity of Edinburgh, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of EECS, University of California at Berkeley, 485 Soda Hall, Berkeley CA 94720-1776, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Previously at: Institute for Adaptive and Neural Computation,\r\nUniversity of Edinburgh, UK", + "institution_ids": [ + "https://openalex.org/I98677209" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5110779848" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I95457486", + "https://openalex.org/I98677209" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 23.1235, + "has_fulltext": false, + "cited_by_count": 1401, + "citation_normalized_percentile": { + "value": 0.99493809, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "14", + "issue": "02", + "first_page": "69", + "last_page": "106" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10848", + "display_name": "Advanced Multi-Objective Optimization Algorithms", + "score": 0.9833999872207642, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9825999736785889, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7189816236495972 + }, + { + "id": "https://openalex.org/keywords/gaussian-process", + "display_name": "Gaussian process", + "score": 0.6900824308395386 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6533682346343994 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5732190608978271 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4565224051475525 + }, + { + "id": "https://openalex.org/keywords/smoothing", + "display_name": "Smoothing", + "score": 0.4471099376678467 + }, + { + "id": "https://openalex.org/keywords/gaussian", + "display_name": "Gaussian", + "score": 0.4403120279312134 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.43361324071884155 + }, + { + "id": "https://openalex.org/keywords/kriging", + "display_name": "Kriging", + "score": 0.4239123463630676 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.41445812582969666 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7189816236495972 + }, + { + "id": "https://openalex.org/C61326573", + "wikidata": "https://www.wikidata.org/wiki/Q1496376", + "display_name": "Gaussian process", + "level": 3, + "score": 0.6900824308395386 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6533682346343994 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5732190608978271 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4565224051475525 + }, + { + "id": "https://openalex.org/C3770464", + "wikidata": "https://www.wikidata.org/wiki/Q775963", + "display_name": "Smoothing", + "level": 2, + "score": 0.4471099376678467 + }, + { + "id": "https://openalex.org/C163716315", + "wikidata": "https://www.wikidata.org/wiki/Q901177", + "display_name": "Gaussian", + "level": 2, + "score": 0.4403120279312134 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.43361324071884155 + }, + { + "id": "https://openalex.org/C81692654", + "wikidata": "https://www.wikidata.org/wiki/Q225926", + "display_name": "Kriging", + "level": 2, + "score": 0.4239123463630676 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.41445812582969666 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001185", + "descriptor_name": "Artificial Intelligence", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012044", + "descriptor_name": "Regression Analysis", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D015233", + "descriptor_name": "Models, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016011", + "descriptor_name": "Normal Distribution", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016014", + "descriptor_name": "Linear Models", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018709", + "descriptor_name": "Statistics, Nonparametric", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D019277", + "descriptor_name": "Entropy", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 7, + "locations": [ + { + "id": "doi:10.1142/s0129065704001899", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1142/s0129065704001899", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S197665576", + "display_name": "International Journal of Neural Systems", + "issn_l": "0129-0657", + "issn": [ + "0129-0657", + "1793-6462" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319815", + "host_organization_name": "World Scientific", + "host_organization_lineage": [ + "https://openalex.org/P4310319815" + ], + "host_organization_lineage_names": [ + "World Scientific" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Neural Systems", + "raw_type": "journal-article" + }, + { + "id": "pmid:15112367", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/15112367", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International journal of neural systems", + "raw_type": null + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.330.2529", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.330.2529", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://math.iit.edu/pipermail/meshfree-methods-seminar/attachments/20061124/26d0a64a/attachment-0001.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.4.4097", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.4.4097", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/papers/upload_4618_bayesgp-tut.ps.gz", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.71.1079", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.71.1079", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kyb.tuebingen.mpg.de/bs/people/seeger/papers/bayesgp-tut.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:infoscience.epfl.ch:161301", + "is_oa": true, + "landing_page_url": "http://infoscience.epfl.ch/record/161301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:infoscience.tind.io:161301", + "is_oa": true, + "landing_page_url": "https://infoscience.epfl.ch/handle/20.500.14299/61727", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc-nd", + "license_id": "https://openalex.org/licenses/cc-by-nc-nd", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "research article" + } + ], + "best_oa_location": { + "id": "pmh:oai:infoscience.epfl.ch:161301", + "is_oa": true, + "landing_page_url": "http://infoscience.epfl.ch/record/161301", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400487", + "display_name": "Infoscience (Ecole Polytechnique Fédérale de Lausanne)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + "sustainable_development_goals": [ + { + "display_name": "Quality Education", + "id": "https://metadata.un.org/sdg/4", + "score": 0.6100000143051147 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 83, + "referenced_works": [ + "https://openalex.org/W55912154", + "https://openalex.org/W102828713", + "https://openalex.org/W174371023", + "https://openalex.org/W197497516", + "https://openalex.org/W1505937442", + "https://openalex.org/W1511160855", + "https://openalex.org/W1512098439", + "https://openalex.org/W1515272691", + "https://openalex.org/W1528905581", + "https://openalex.org/W1549656520", + "https://openalex.org/W1556890730", + "https://openalex.org/W1567512734", + "https://openalex.org/W1568586753", + "https://openalex.org/W1576213419", + "https://openalex.org/W1580334350", + "https://openalex.org/W1604938182", + "https://openalex.org/W1618905105", + "https://openalex.org/W1647250361", + "https://openalex.org/W1654787807", + "https://openalex.org/W1657213141", + "https://openalex.org/W1746680969", + "https://openalex.org/W1859781365", + "https://openalex.org/W1976625337", + "https://openalex.org/W1986280275", + "https://openalex.org/W2001141328", + "https://openalex.org/W2002355073", + "https://openalex.org/W2007154098", + "https://openalex.org/W2024697317", + "https://openalex.org/W2038610163", + "https://openalex.org/W2040870580", + "https://openalex.org/W2053186076", + "https://openalex.org/W2056099894", + "https://openalex.org/W2056894411", + "https://openalex.org/W2065540158", + "https://openalex.org/W2072555316", + "https://openalex.org/W2082100828", + "https://openalex.org/W2085877024", + "https://openalex.org/W2094435468", + "https://openalex.org/W2098626000", + "https://openalex.org/W2100136038", + "https://openalex.org/W2104533781", + "https://openalex.org/W2115438515", + "https://openalex.org/W2117063635", + "https://openalex.org/W2117670920", + "https://openalex.org/W2123152930", + "https://openalex.org/W2129564505", + "https://openalex.org/W2129869373", + "https://openalex.org/W2137956165", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139999468", + "https://openalex.org/W2141274633", + "https://openalex.org/W2141800987", + "https://openalex.org/W2143022286", + "https://openalex.org/W2143956139", + "https://openalex.org/W2146766088", + "https://openalex.org/W2158122241", + "https://openalex.org/W2161023163", + "https://openalex.org/W2161813919", + "https://openalex.org/W2168022998", + "https://openalex.org/W2168464387", + "https://openalex.org/W2169178495", + "https://openalex.org/W2170120409", + "https://openalex.org/W2293192529", + "https://openalex.org/W2296319761", + "https://openalex.org/W2330005588", + "https://openalex.org/W2331182131", + "https://openalex.org/W2408196097", + "https://openalex.org/W2492794003", + "https://openalex.org/W2496675188", + "https://openalex.org/W2579190672", + "https://openalex.org/W2801490189", + "https://openalex.org/W2890351024", + "https://openalex.org/W2904816695", + "https://openalex.org/W2999905431", + "https://openalex.org/W3023786531", + "https://openalex.org/W3148924112", + "https://openalex.org/W4210310779", + "https://openalex.org/W4245531751", + "https://openalex.org/W4285719527", + "https://openalex.org/W4298876635", + "https://openalex.org/W4299551157", + "https://openalex.org/W4302114916", + "https://openalex.org/W4388297583" + ], + "related_works": [ + "https://openalex.org/W3195168932", + "https://openalex.org/W1996541855", + "https://openalex.org/W2081545345", + "https://openalex.org/W2063381173", + "https://openalex.org/W4316658362", + "https://openalex.org/W2348223921", + "https://openalex.org/W2318821300", + "https://openalex.org/W4321260833", + "https://openalex.org/W2972324047", + "https://openalex.org/W2563155481" + ], + "abstract_inverted_index": { + "Gaussian": [ + 0, + 8, + 51, + 89 + ], + "processes": [ + 1, + 52 + ], + "(GPs)": [ + 2 + ], + "are": [ + 3, + 43, + 92, + 102, + 175, + 227 + ], + "natural": [ + 4 + ], + "generalisations": [ + 5 + ], + "of": [ + 6, + 26, + 32, + 40, + 105, + 129, + 147, + 158, + 194 + ], + "multivariate": [ + 7 + ], + "random": [ + 9 + ], + "variables": [ + 10 + ], + "to": [ + 11, + 28, + 50, + 71, + 95, + 178, + 191, + 197, + 201, + 206, + 223 + ], + "infinite": [ + 12 + ], + "(countably": [ + 13 + ], + "or": [ + 14 + ], + "continuous)": [ + 15 + ], + "index": [ + 16 + ], + "sets.": [ + 17 + ], + "GPs": [ + 18, + 166, + 195 + ], + "have": [ + 19, + 86 + ], + "been": [ + 20, + 87, + 153 + ], + "applied": [ + 21 + ], + "in": [ + 22, + 64, + 82, + 131, + 211 + ], + "a": [ + 23, + 29, + 54, + 115, + 218 + ], + "large": [ + 24, + 168 + ], + "number": [ + 25 + ], + "fields": [ + 27 + ], + "diverse": [ + 30 + ], + "range": [ + 31 + ], + "ends,": [ + 33 + ], + "and": [ + 34, + 78, + 110, + 134, + 169, + 200 + ], + "very": [ + 35, + 118 + ], + "many": [ + 36 + ], + "deep": [ + 37, + 172 + ], + "theoretical": [ + 38 + ], + "analyses": [ + 39 + ], + "various": [ + 41 + ], + "properties": [ + 42 + ], + "available.": [ + 44 + ], + "This": [ + 45 + ], + "paper": [ + 46 + ], + "gives": [ + 47 + ], + "an": [ + 48 + ], + "introduction": [ + 49, + 157 + ], + "on": [ + 53, + 61, + 165, + 217 + ], + "fairly": [ + 55 + ], + "elementary": [ + 56 + ], + "level": [ + 57 + ], + "with": [ + 58 + ], + "special": [ + 59 + ], + "emphasis": [ + 60 + ], + "characteristics": [ + 62, + 193 + ], + "relevant": [ + 63, + 196 + ], + "machine": [ + 65, + 98, + 182, + 198 + ], + "learning.": [ + 66 + ], + "It": [ + 67 + ], + "draws": [ + 68 + ], + "explicit": [ + 69 + ], + "connections": [ + 70, + 205 + ], + "branches": [ + 72 + ], + "such": [ + 73 + ], + "as": [ + 74, + 140 + ], + "spline": [ + 75 + ], + "smoothing": [ + 76 + ], + "models": [ + 77, + 91 + ], + "support": [ + 79 + ], + "vector": [ + 80 + ], + "machines": [ + 81 + ], + "which": [ + 83, + 125, + 174 + ], + "similar": [ + 84 + ], + "ideas": [ + 85 + ], + "investigated.": [ + 88 + ], + "process": [ + 90 + ], + "routinely": [ + 93 + ], + "used": [ + 94 + ], + "solve": [ + 96 + ], + "hard": [ + 97 + ], + "learning": [ + 99, + 183, + 199 + ], + "problems.": [ + 100, + 143 + ], + "They": [ + 101 + ], + "attractive": [ + 103 + ], + "because": [ + 104 + ], + "their": [ + 106 + ], + "flexible": [ + 107 + ], + "non-parametric": [ + 108 + ], + "nature": [ + 109 + ], + "computational": [ + 111, + 149 + ], + "simplicity.": [ + 112 + ], + "Treated": [ + 113 + ], + "within": [ + 114 + ], + "Bayesian": [ + 116 + ], + "framework,": [ + 117 + ], + "powerful": [ + 119 + ], + "statistical": [ + 120 + ], + "methods": [ + 121 + ], + "can": [ + 122 + ], + "be": [ + 123 + ], + "implemented": [ + 124 + ], + "offer": [ + 126 + ], + "valid": [ + 127 + ], + "estimates": [ + 128 + ], + "uncertainties": [ + 130 + ], + "our": [ + 132 + ], + "predictions": [ + 133 + ], + "generic": [ + 135, + 159 + ], + "model": [ + 136 + ], + "selection": [ + 137 + ], + "procedures": [ + 138 + ], + "cast": [ + 139 + ], + "nonlinear": [ + 141 + ], + "optimization": [ + 142 + ], + "Their": [ + 144 + ], + "main": [ + 145 + ], + "drawback": [ + 146 + ], + "heavy": [ + 148 + ], + "scaling": [ + 150 + ], + "has": [ + 151 + ], + "recently": [ + 152 + ], + "alleviated": [ + 154 + ], + "by": [ + 155 + ], + "the": [ + 156, + 212 + ], + "sparse": [ + 160 + ], + "approximations.13,78,31": [ + 161 + ], + "The": [ + 162 + ], + "mathematical": [ + 163 + ], + "literature": [ + 164 + ], + "is": [ + 167, + 216 + ], + "often": [ + 170 + ], + "uses": [ + 171 + ], + "concepts": [ + 173 + ], + "not": [ + 176 + ], + "required": [ + 177 + ], + "fully": [ + 179 + ], + "understand": [ + 180 + ], + "most": [ + 181 + ], + "applications.": [ + 184 + ], + "In": [ + 185 + ], + "this": [ + 186 + ], + "tutorial": [ + 187 + ], + "paper,": [ + 188 + ], + "we": [ + 189 + ], + "aim": [ + 190 + ], + "present": [ + 192 + ], + "show": [ + 202 + ], + "up": [ + 203 + ], + "precise": [ + 204 + ], + "other": [ + 207 + ], + "\"kernel": [ + 208 + ], + "machines\"": [ + 209 + ], + "popular": [ + 210 + ], + "community.": [ + 213 + ], + "Our": [ + 214 + ], + "focus": [ + 215 + ], + "simple": [ + 219 + ], + "presentation,": [ + 220 + ], + "but": [ + 221 + ], + "references": [ + 222 + ], + "more": [ + 224 + ], + "detailed": [ + 225 + ], + "sources": [ + 226 + ], + "provided.": [ + 228 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 88 + }, + { + "year": 2025, + "cited_by_count": 263 + }, + { + "year": 2024, + "cited_by_count": 218 + }, + { + "year": 2023, + "cited_by_count": 156 + }, + { + "year": 2022, + "cited_by_count": 104 + }, + { + "year": 2021, + "cited_by_count": 100 + }, + { + "year": 2020, + "cited_by_count": 85 + }, + { + "year": 2019, + "cited_by_count": 72 + }, + { + "year": 2018, + "cited_by_count": 44 + }, + { + "year": 2017, + "cited_by_count": 25 + }, + { + "year": 2016, + "cited_by_count": 29 + }, + { + "year": 2015, + "cited_by_count": 20 + }, + { + "year": 2014, + "cited_by_count": 25 + }, + { + "year": 2013, + "cited_by_count": 26 + }, + { + "year": 2012, + "cited_by_count": 18 + } + ], + "updated_date": "2026-05-27T09:02:27.158192", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2162651021", + "doi": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "title": "Dataset Shift in Machine Learning", + "display_name": "Dataset Shift in Machine Learning", + "relevance_score": 2784.3486, + "publication_year": 2008, + "publication_date": "2008-12-12", + "ids": { + "openalex": "https://openalex.org/W2162651021", + "doi": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "mag": "2162651021" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/9780262170055.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + }, + "type": "book", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 9.3591, + "has_fulltext": false, + "cited_by_count": 1510, + "citation_normalized_percentile": { + "value": 0.97485493, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T14470", + "display_name": "Advanced Data Processing Techniques", + "score": 0.7767999768257141, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T14470", + "display_name": "Advanced Data Processing Techniques", + "score": 0.7767999768257141, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.664900004863739, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.659500002861023, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7328447103500366 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7292178273200989 + }, + { + "id": "https://openalex.org/keywords/covariate", + "display_name": "Covariate", + "score": 0.7273201942443848 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5872174501419067 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.5522041320800781 + }, + { + "id": "https://openalex.org/keywords/paradigm-shift", + "display_name": "Paradigm shift", + "score": 0.4949187636375427 + }, + { + "id": "https://openalex.org/keywords/filter", + "display_name": "Filter (signal processing)", + "score": 0.4474133849143982 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7328447103500366 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7292178273200989 + }, + { + "id": "https://openalex.org/C119043178", + "wikidata": "https://www.wikidata.org/wiki/Q320723", + "display_name": "Covariate", + "level": 2, + "score": 0.7273201942443848 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5872174501419067 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.5522041320800781 + }, + { + "id": "https://openalex.org/C43540301", + "wikidata": "https://www.wikidata.org/wiki/Q689971", + "display_name": "Paradigm shift", + "level": 2, + "score": 0.4949187636375427 + }, + { + "id": "https://openalex.org/C106131492", + "wikidata": "https://www.wikidata.org/wiki/Q3072260", + "display_name": "Filter (signal processing)", + "level": 2, + "score": 0.4474133849143982 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.7551/mitpress/9780262170055.001.0001", + "is_oa": false, + "landing_page_url": "https://doi.org/10.7551/mitpress/9780262170055.001.0001", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": null, + "raw_type": "edited-book" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.6000000238418579 + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320315885", + "display_name": "Australian Government", + "ror": "https://ror.org/0314h5y94" + }, + { + "id": "https://openalex.org/F4320320879", + "display_name": "Deutsche Forschungsgemeinschaft", + "ror": "https://ror.org/018mejw64" + }, + { + "id": "https://openalex.org/F4320320912", + "display_name": "Ministry of Education, Culture, Sports, Science and Technology", + "ror": "https://ror.org/048rj2z13" + }, + { + "id": "https://openalex.org/F4320321114", + "display_name": "Bundesministerium für Bildung und Forschung", + "ror": "https://ror.org/04pz7b180" + }, + { + "id": "https://openalex.org/F4320321999", + "display_name": "Lundbeckfonden", + "ror": "https://ror.org/03hz8wd80" + }, + { + "id": "https://openalex.org/F4320327918", + "display_name": "H. Lundbeck A/S", + "ror": null + } + ], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 154, + "referenced_works": [ + "https://openalex.org/W3805906", + "https://openalex.org/W73527130", + "https://openalex.org/W167016754", + "https://openalex.org/W189742998", + "https://openalex.org/W335134183", + "https://openalex.org/W1493044792", + "https://openalex.org/W1506588750", + "https://openalex.org/W1512098439", + "https://openalex.org/W1513525398", + "https://openalex.org/W1519342765", + "https://openalex.org/W1520168181", + "https://openalex.org/W1523843467", + "https://openalex.org/W1548614216", + "https://openalex.org/W1551909886", + "https://openalex.org/W1563644419", + "https://openalex.org/W1564947197", + "https://openalex.org/W1571895365", + "https://openalex.org/W1571917377", + "https://openalex.org/W1574539612", + "https://openalex.org/W1594031697", + "https://openalex.org/W1601787291", + "https://openalex.org/W1603576850", + "https://openalex.org/W1605619629", + "https://openalex.org/W1618393386", + "https://openalex.org/W1667072054", + "https://openalex.org/W1941659294", + "https://openalex.org/W1963661053", + "https://openalex.org/W1977245551", + "https://openalex.org/W1981428463", + "https://openalex.org/W1983055206", + "https://openalex.org/W1986250339", + "https://openalex.org/W1990645294", + "https://openalex.org/W1991907403", + "https://openalex.org/W1998438337", + "https://openalex.org/W2002355073", + "https://openalex.org/W2005688170", + "https://openalex.org/W2007406620", + "https://openalex.org/W2010102461", + "https://openalex.org/W2012712694", + "https://openalex.org/W2015932775", + "https://openalex.org/W2018770010", + "https://openalex.org/W2023063828", + "https://openalex.org/W2024689521", + "https://openalex.org/W2029030476", + "https://openalex.org/W2032536435", + "https://openalex.org/W2034368206", + "https://openalex.org/W2036043322", + "https://openalex.org/W2036902495", + "https://openalex.org/W2054658115", + "https://openalex.org/W2059575958", + "https://openalex.org/W2070845047", + "https://openalex.org/W2073042726", + "https://openalex.org/W2076428552", + "https://openalex.org/W2081850149", + "https://openalex.org/W2093064776", + "https://openalex.org/W2097839764", + "https://openalex.org/W2098949458", + "https://openalex.org/W2100247797", + "https://openalex.org/W2100600008", + "https://openalex.org/W2101974476", + "https://openalex.org/W2103851188", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105842272", + "https://openalex.org/W2107996537", + "https://openalex.org/W2109033052", + "https://openalex.org/W2112081648", + "https://openalex.org/W2112483442", + "https://openalex.org/W2113530803", + "https://openalex.org/W2113679101", + "https://openalex.org/W2114338449", + "https://openalex.org/W2115305054", + "https://openalex.org/W2117063635", + "https://openalex.org/W2120217353", + "https://openalex.org/W2121909644", + "https://openalex.org/W2123157895", + "https://openalex.org/W2125865219", + "https://openalex.org/W2125993116", + "https://openalex.org/W2127816222", + "https://openalex.org/W2129851978", + "https://openalex.org/W2130031702", + "https://openalex.org/W2131479143", + "https://openalex.org/W2131953535", + "https://openalex.org/W2132870739", + "https://openalex.org/W2134169350", + "https://openalex.org/W2135498906", + "https://openalex.org/W2137346077", + "https://openalex.org/W2137557016", + "https://openalex.org/W2138805882", + "https://openalex.org/W2139122730", + "https://openalex.org/W2139823104", + "https://openalex.org/W2142992973", + "https://openalex.org/W2143033696", + "https://openalex.org/W2145295623", + "https://openalex.org/W2146395300", + "https://openalex.org/W2148143831", + "https://openalex.org/W2148603752", + "https://openalex.org/W2148924730", + "https://openalex.org/W2150388061", + "https://openalex.org/W2150884987", + "https://openalex.org/W2152859659", + "https://openalex.org/W2154455818", + "https://openalex.org/W2158108973", + "https://openalex.org/W2158754421", + "https://openalex.org/W2159400887", + "https://openalex.org/W2161920802", + "https://openalex.org/W2163194396", + "https://openalex.org/W2164161365", + "https://openalex.org/W2167328503", + "https://openalex.org/W2168175751", + "https://openalex.org/W2168561598", + "https://openalex.org/W2168639902", + "https://openalex.org/W2168741590", + "https://openalex.org/W2169075655", + "https://openalex.org/W2169338892", + "https://openalex.org/W2169384781", + "https://openalex.org/W2170580685", + "https://openalex.org/W2171033594", + "https://openalex.org/W2171343216", + "https://openalex.org/W2171388464", + "https://openalex.org/W2215815030", + "https://openalex.org/W2255883267", + "https://openalex.org/W2293768274", + "https://openalex.org/W2435251607", + "https://openalex.org/W2525109755", + "https://openalex.org/W2590957573", + "https://openalex.org/W2796372757", + "https://openalex.org/W2903718010", + "https://openalex.org/W2989661724", + "https://openalex.org/W3098372638", + "https://openalex.org/W3103871524", + "https://openalex.org/W3104240813", + "https://openalex.org/W4211049957", + "https://openalex.org/W4211204663", + "https://openalex.org/W4229633200", + "https://openalex.org/W4230946174", + "https://openalex.org/W4231510805", + "https://openalex.org/W4233216783", + "https://openalex.org/W4233413206", + "https://openalex.org/W4236188916", + "https://openalex.org/W4239047110", + "https://openalex.org/W4239390603", + "https://openalex.org/W4248721357", + "https://openalex.org/W4250182547", + "https://openalex.org/W4250224875", + "https://openalex.org/W4252262440", + "https://openalex.org/W4253064820", + "https://openalex.org/W4256544418", + "https://openalex.org/W4299515571", + "https://openalex.org/W4300093168", + "https://openalex.org/W4301436980", + "https://openalex.org/W4310299640", + "https://openalex.org/W4310738704", + "https://openalex.org/W4379510236", + "https://openalex.org/W4388297464" + ], + "related_works": [ + "https://openalex.org/W2985746494", + "https://openalex.org/W4206042385", + "https://openalex.org/W2511384863", + "https://openalex.org/W2080773131", + "https://openalex.org/W2096089271", + "https://openalex.org/W2923628599", + "https://openalex.org/W2014100433", + "https://openalex.org/W2051519658", + "https://openalex.org/W2002304499", + "https://openalex.org/W2994787386" + ], + "abstract_inverted_index": { + "An": [ + 0 + ], + "overview": [ + 1, + 159 + ], + "of": [ + 2, + 44, + 59, + 90, + 135, + 160, + 200 + ], + "recent": [ + 3 + ], + "efforts": [ + 4, + 162 + ], + "in": [ + 5, + 35, + 73, + 111, + 148, + 184 + ], + "the": [ + 6, + 41, + 65, + 81, + 88, + 91, + 114, + 116, + 127, + 131, + 149, + 179 + ], + "machine": [ + 7, + 150 + ], + "learning": [ + 8, + 137, + 151 + ], + "community": [ + 9, + 152 + ], + "to": [ + 10, + 87, + 106, + 130, + 163, + 178, + 186 + ], + "deal": [ + 11, + 164 + ], + "with": [ + 12, + 165 + ], + "dataset": [ + 13, + 60, + 141, + 166, + 182, + 201 + ], + "and": [ + 14, + 21, + 24, + 46, + 51, + 125, + 138, + 167, + 175, + 194, + 202, + 208, + 211 + ], + "covariate": [ + 15, + 168, + 203, + 215 + ], + "shift,": [ + 16, + 55, + 61 + ], + "which": [ + 17, + 103 + ], + "occurs": [ + 18, + 39, + 62 + ], + "when": [ + 19, + 40, + 63 + ], + "test": [ + 20, + 52 + ], + "training": [ + 22, + 50, + 95 + ], + "inputs": [ + 23, + 45 + ], + "outputs": [ + 25, + 47 + ], + "have": [ + 26 + ], + "different": [ + 27 + ], + "distributions.": [ + 28 + ], + "Dataset": [ + 29, + 69 + ], + "shift": [ + 30, + 70, + 142, + 183, + 204 + ], + "is": [ + 31, + 71, + 99 + ], + "a": [ + 32, + 56, + 173 + ], + "common": [ + 33 + ], + "problem": [ + 34 + ], + "predictive": [ + 36 + ], + "modeling": [ + 37 + ], + "that": [ + 38, + 109 + ], + "joint": [ + 42 + ], + "distribution": [ + 43, + 67 + ], + "differs": [ + 48, + 110 + ], + "between": [ + 49 + ], + "stages.": [ + 53 + ], + "Covariate": [ + 54 + ], + "particular": [ + 57 + ], + "case": [ + 58 + ], + "only": [ + 64 + ], + "input": [ + 66 + ], + "changes.": [ + 68 + ], + "present": [ + 72, + 212 + ], + "most": [ + 74 + ], + "practical": [ + 75 + ], + "applications,": [ + 76 + ], + "for": [ + 77, + 214 + ], + "reasons": [ + 78 + ], + "ranging": [ + 79 + ], + "from": [ + 80, + 113 + ], + "bias": [ + 82 + ], + "introduced": [ + 83 + ], + "by": [ + 84 + ], + "experimental": [ + 85 + ], + "design": [ + 86 + ], + "irreproducibility": [ + 89 + ], + "testing": [ + 92 + ], + "conditions": [ + 93 + ], + "at": [ + 94 + ], + "time.": [ + 96 + ], + "(An": [ + 97 + ], + "example": [ + 98 + ], + "-email": [ + 100 + ], + "spam": [ + 101, + 108, + 115 + ], + "filtering,": [ + 102 + ], + "may": [ + 104 + ], + "fail": [ + 105 + ], + "recognize": [ + 107 + ], + "form": [ + 112 + ], + "automatic": [ + 117 + ], + "filter": [ + 118 + ], + "has": [ + 119, + 143 + ], + "been": [ + 120 + ], + "built": [ + 121 + ], + "on.)": [ + 122 + ], + "Despite": [ + 123 + ], + "this,": [ + 124 + ], + "despite": [ + 126 + ], + "attention": [ + 128, + 147 + ], + "given": [ + 129 + ], + "apparently": [ + 132 + ], + "similar": [ + 133 + ], + "problems": [ + 134 + ], + "semi-supervised": [ + 136, + 195 + ], + "active": [ + 139, + 192 + ], + "learning,": [ + 140, + 188, + 191, + 193, + 196 + ], + "received": [ + 144 + ], + "relatively": [ + 145 + ], + "little": [ + 146 + ], + "until": [ + 153 + ], + "recently.": [ + 154 + ], + "This": [ + 155 + ], + "volume": [ + 156 + ], + "offers": [ + 157 + ], + "an": [ + 158 + ], + "current": [ + 161 + ], + "shift.": [ + 169, + 216 + ], + "The": [ + 170 + ], + "chapters": [ + 171 + ], + "offer": [ + 172 + ], + "mathematical": [ + 174 + ], + "philosophical": [ + 176 + ], + "introduction": [ + 177 + ], + "problem,": [ + 180 + ], + "place": [ + 181 + ], + "relationship": [ + 185 + ], + "transfer": [ + 187 + ], + "transduction,": [ + 189 + ], + "local": [ + 190 + ], + "provide": [ + 197 + ], + "theoretical": [ + 198 + ], + "views": [ + 199 + ], + "(including": [ + 205 + ], + "decision": [ + 206 + ], + "theoretic": [ + 207 + ], + "Bayesian": [ + 209 + ], + "perspectives),": [ + 210 + ], + "algorithms": [ + 213 + ], + "Contributors": [ + 217 + ], + "Shai": [ + 218 + ], + "Ben-David,": [ + 219 + ], + "Steffen": [ + 220 + ], + "Bickel,": [ + 221 + ], + "Karsten": [ + 222 + ], + "Borgwardt,": [ + 223 + ], + "Michael": [ + 224 + ], + "Brückner,": [ + 225 + ], + "David": [ + 226 + ], + "Corfield,": [ + 227 + ], + "Amir": [ + 228 + ], + "Globerson,": [ + 229 + ], + "Arthur": [ + 230 + ], + "Gretton,": [ + 231 + ], + "Lars": [ + 232 + ], + "Kai": [ + 233 + ], + "Hansen,": [ + 234 + ], + "Matthias": [ + 235 + ], + "Hein,": [ + 236 + ], + "Jiayuan": [ + 237 + ], + "Huang,": [ + 238 + ], + "Choon": [ + 239 + ], + "Hui": [ + 240 + ], + "Teo,": [ + 241 + ], + "Takafumi": [ + 242 + ], + "Kanamori,": [ + 243 + ], + "Klaus-Robert": [ + 244 + ], + "Müller,": [ + 245 + ], + "Sam": [ + 246 + ], + "Roweis,": [ + 247 + ], + "Neil": [ + 248 + ], + "Rubens,": [ + 249 + ], + "Tobias": [ + 250 + ], + "Scheffer,": [ + 251 + ], + "Marcel": [ + 252 + ], + "Schmittfull,": [ + 253 + ], + "Bernhard": [ + 254 + ], + "Schölkopf": [ + 255 + ], + "Hidetoshi": [ + 256 + ], + "Shimodaira,": [ + 257 + ], + "Alex": [ + 258 + ], + "Smola,": [ + 259 + ], + "Amos": [ + 260 + ], + "Storkey,": [ + 261 + ], + "Masashi": [ + 262 + ], + "Sugiyama": [ + 263 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 37 + }, + { + "year": 2025, + "cited_by_count": 109 + }, + { + "year": 2024, + "cited_by_count": 165 + }, + { + "year": 2023, + "cited_by_count": 146 + }, + { + "year": 2022, + "cited_by_count": 133 + }, + { + "year": 2021, + "cited_by_count": 231 + }, + { + "year": 2020, + "cited_by_count": 204 + }, + { + "year": 2019, + "cited_by_count": 127 + }, + { + "year": 2018, + "cited_by_count": 54 + }, + { + "year": 2017, + "cited_by_count": 33 + }, + { + "year": 2016, + "cited_by_count": 35 + }, + { + "year": 2015, + "cited_by_count": 55 + }, + { + "year": 2014, + "cited_by_count": 36 + }, + { + "year": 2013, + "cited_by_count": 44 + }, + { + "year": 2012, + "cited_by_count": 29 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2793927960", + "doi": "https://doi.org/10.1080/01431161.2018.1433343", + "title": "Implementation of machine-learning classification in remote sensing: an applied review", + "display_name": "Implementation of machine-learning classification in remote sensing: an applied review", + "relevance_score": 2761.8186, + "publication_year": 2018, + "publication_date": "2018-02-02", + "ids": { + "openalex": "https://openalex.org/W2793927960", + "doi": "https://doi.org/10.1080/01431161.2018.1433343", + "mag": "2793927960" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5085820343", + "display_name": "Aaron E. Maxwell", + "orcid": "https://orcid.org/0000-0002-4412-5599" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Aaron E. Maxwell", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5091637832", + "display_name": "Timothy A. Warner", + "orcid": "https://orcid.org/0000-0002-0414-9748" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Timothy A. Warner", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-0414-9748", + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100386844", + "display_name": "Fang Fang", + "orcid": "https://orcid.org/0000-0001-7541-189X" + }, + "institutions": [ + { + "id": "https://openalex.org/I12097938", + "display_name": "West Virginia University", + "ror": "https://ror.org/011vxgd24", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I12097938" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Fang Fang", + "raw_affiliation_strings": [ + "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA" + ], + "raw_orcid": "https://orcid.org/0000-0001-7541-189X", + "affiliations": [ + { + "raw_affiliation_string": "Department of Geology and Geography, West Virginia University, Morgantown, WV, USA", + "institution_ids": [ + "https://openalex.org/I12097938" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5085820343" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I12097938" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 113.7823, + "has_fulltext": false, + "cited_by_count": 1906, + "citation_normalized_percentile": { + "value": 0.99988623, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "39", + "issue": "9", + "first_page": "2784", + "last_page": "2817" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10689", + "display_name": "Remote-Sensing Image Classification", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10689", + "display_name": "Remote-Sensing Image Classification", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10111", + "display_name": "Remote Sensing in Agriculture", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/2303", + "display_name": "Ecology" + }, + "field": { + "id": "https://openalex.org/fields/23", + "display_name": "Environmental Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11659", + "display_name": "Advanced Image Fusion Techniques", + "score": 0.9749000072479248, + "subfield": { + "id": "https://openalex.org/subfields/2214", + "display_name": "Media Technology" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7877681255340576 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7791492342948914 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7248809337615967 + }, + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.5729610323905945 + }, + { + "id": "https://openalex.org/keywords/dimensionality-reduction", + "display_name": "Dimensionality reduction", + "score": 0.5524418354034424 + }, + { + "id": "https://openalex.org/keywords/decision-tree", + "display_name": "Decision tree", + "score": 0.5341089963912964 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5322451591491699 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.514393150806427 + }, + { + "id": "https://openalex.org/keywords/curse-of-dimensionality", + "display_name": "Curse of dimensionality", + "score": 0.5014984607696533 + }, + { + "id": "https://openalex.org/keywords/key", + "display_name": "Key (lock)", + "score": 0.4978461265563965 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.4418962001800537 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.41856345534324646 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.33177950978279114 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7877681255340576 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7791492342948914 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7248809337615967 + }, + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.5729610323905945 + }, + { + "id": "https://openalex.org/C70518039", + "wikidata": "https://www.wikidata.org/wiki/Q16000077", + "display_name": "Dimensionality reduction", + "level": 2, + "score": 0.5524418354034424 + }, + { + "id": "https://openalex.org/C84525736", + "wikidata": "https://www.wikidata.org/wiki/Q831366", + "display_name": "Decision tree", + "level": 2, + "score": 0.5341089963912964 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5322451591491699 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.514393150806427 + }, + { + "id": "https://openalex.org/C111030470", + "wikidata": "https://www.wikidata.org/wiki/Q1430460", + "display_name": "Curse of dimensionality", + "level": 2, + "score": 0.5014984607696533 + }, + { + "id": "https://openalex.org/C26517878", + "wikidata": "https://www.wikidata.org/wiki/Q228039", + "display_name": "Key (lock)", + "level": 2, + "score": 0.4978461265563965 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.4418962001800537 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.41856345534324646 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.33177950978279114 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + } + ], + "best_oa_location": { + "id": "doi:10.1080/01431161.2018.1433343", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1080/01431161.2018.1433343", + "pdf_url": "https://www.tandfonline.com/doi/pdf/10.1080/01431161.2018.1433343?needAccess=true", + "source": { + "id": "https://openalex.org/S117411352", + "display_name": "International Journal of Remote Sensing", + "issn_l": "0143-1161", + "issn": [ + "0143-1161", + "1366-5901" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "International Journal of Remote Sensing", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "display_name": "Life in Land", + "id": "https://metadata.un.org/sdg/15", + "score": 0.4000000059604645 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 118, + "referenced_works": [ + "https://openalex.org/W130347124", + "https://openalex.org/W1585128438", + "https://openalex.org/W1802207720", + "https://openalex.org/W1950365613", + "https://openalex.org/W1971271947", + "https://openalex.org/W1978034823", + "https://openalex.org/W1980547211", + "https://openalex.org/W1981755063", + "https://openalex.org/W1985258161", + "https://openalex.org/W1988790447", + "https://openalex.org/W1989344766", + "https://openalex.org/W1989428365", + "https://openalex.org/W1990653740", + "https://openalex.org/W1991856651", + "https://openalex.org/W1996777760", + "https://openalex.org/W1997478538", + "https://openalex.org/W1998351672", + "https://openalex.org/W2008469107", + "https://openalex.org/W2010479838", + "https://openalex.org/W2011287807", + "https://openalex.org/W2012136488", + "https://openalex.org/W2017212187", + "https://openalex.org/W2021314208", + "https://openalex.org/W2022156723", + "https://openalex.org/W2029316659", + "https://openalex.org/W2030025097", + "https://openalex.org/W2030825546", + "https://openalex.org/W2033388392", + "https://openalex.org/W2035419249", + "https://openalex.org/W2035466979", + "https://openalex.org/W2035549557", + "https://openalex.org/W2038951852", + "https://openalex.org/W2039067795", + "https://openalex.org/W2046113982", + "https://openalex.org/W2050830693", + "https://openalex.org/W2063907334", + "https://openalex.org/W2065800647", + "https://openalex.org/W2067983477", + "https://openalex.org/W2074112114", + "https://openalex.org/W2076656703", + "https://openalex.org/W2078619499", + "https://openalex.org/W2080401607", + "https://openalex.org/W2081620141", + "https://openalex.org/W2082081125", + "https://openalex.org/W2082874195", + "https://openalex.org/W2086567813", + "https://openalex.org/W2087016914", + "https://openalex.org/W2088891335", + "https://openalex.org/W2098057602", + "https://openalex.org/W2100711113", + "https://openalex.org/W2101051003", + "https://openalex.org/W2109826612", + "https://openalex.org/W2112076978", + "https://openalex.org/W2118978333", + "https://openalex.org/W2119479037", + "https://openalex.org/W2122111042", + "https://openalex.org/W2124624125", + "https://openalex.org/W2124706543", + "https://openalex.org/W2130269771", + "https://openalex.org/W2130695501", + "https://openalex.org/W2132424470", + "https://openalex.org/W2134721717", + "https://openalex.org/W2136251662", + "https://openalex.org/W2139086914", + "https://openalex.org/W2139211176", + "https://openalex.org/W2140181255", + "https://openalex.org/W2140950054", + "https://openalex.org/W2143481518", + "https://openalex.org/W2145862305", + "https://openalex.org/W2146884399", + "https://openalex.org/W2148143831", + "https://openalex.org/W2149706766", + "https://openalex.org/W2153534417", + "https://openalex.org/W2154506590", + "https://openalex.org/W2155632266", + "https://openalex.org/W2156665896", + "https://openalex.org/W2156909104", + "https://openalex.org/W2162421262", + "https://openalex.org/W2166307050", + "https://openalex.org/W2168809519", + "https://openalex.org/W2171058578", + "https://openalex.org/W2172009270", + "https://openalex.org/W2197595524", + "https://openalex.org/W2229291734", + "https://openalex.org/W2261059368", + "https://openalex.org/W2316813349", + "https://openalex.org/W2330853572", + "https://openalex.org/W2397914484", + "https://openalex.org/W2407655494", + "https://openalex.org/W2412588858", + "https://openalex.org/W2504658994", + "https://openalex.org/W2508058002", + "https://openalex.org/W2539651710", + "https://openalex.org/W2582743722", + "https://openalex.org/W2589780155", + "https://openalex.org/W2603834682", + "https://openalex.org/W2612451460", + "https://openalex.org/W2752696298", + "https://openalex.org/W2911964244", + "https://openalex.org/W3015384695", + "https://openalex.org/W3087967325", + "https://openalex.org/W3102027041", + "https://openalex.org/W3104925044", + "https://openalex.org/W3105578466", + "https://openalex.org/W3207342693", + "https://openalex.org/W4236137412", + "https://openalex.org/W4239510810", + "https://openalex.org/W4245066279", + "https://openalex.org/W4246090800", + "https://openalex.org/W4285719527", + "https://openalex.org/W4300402905", + "https://openalex.org/W4399569501", + "https://openalex.org/W4399570248", + "https://openalex.org/W4399575362", + "https://openalex.org/W6769764061", + "https://openalex.org/W6869234452", + "https://openalex.org/W6869284810", + "https://openalex.org/W6869666549" + ], + "related_works": [ + "https://openalex.org/W4321636153", + "https://openalex.org/W4377964522", + "https://openalex.org/W3195168932", + "https://openalex.org/W4386072274", + "https://openalex.org/W4386123260", + "https://openalex.org/W4383535405", + "https://openalex.org/W4381414210", + "https://openalex.org/W4384345534", + "https://openalex.org/W4308191010", + "https://openalex.org/W3034132578" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 18, + 62 + ], + "offers": [ + 2 + ], + "the": [ + 3, + 20, + 45, + 70, + 96 + ], + "potential": [ + 4 + ], + "for": [ + 5 + ], + "effective": [ + 6 + ], + "and": [ + 7, + 28, + 44, + 89, + 106, + 111, + 113 + ], + "efficient": [ + 8 + ], + "classification": [ + 9, + 40, + 123 + ], + "of": [ + 10, + 16, + 25, + 60, + 74, + 98 + ], + "remotely": [ + 11, + 128 + ], + "sensed": [ + 12, + 129 + ], + "imagery.": [ + 13 + ], + "The": [ + 14 + ], + "strengths": [ + 15 + ], + "machine": [ + 17, + 61 + ], + "include": [ + 19, + 95 + ], + "capacity": [ + 21 + ], + "to": [ + 22, + 29, + 124 + ], + "handle": [ + 23 + ], + "data": [ + 24, + 101, + 130 + ], + "high": [ + 26 + ], + "dimensionality": [ + 27 + ], + "map": [ + 30 + ], + "classes": [ + 31 + ], + "with": [ + 32 + ], + "very": [ + 33 + ], + "complex": [ + 34 + ], + "characteristics.": [ + 35 + ], + "Nevertheless,": [ + 36 + ], + "implementing": [ + 37 + ], + "a": [ + 38 + ], + "machine-learning": [ + 39, + 122 + ], + "is": [ + 41 + ], + "not": [ + 42 + ], + "straightforward,": [ + 43 + ], + "literature": [ + 46 + ], + "provides": [ + 47, + 57 + ], + "conflicting": [ + 48 + ], + "advice": [ + 49 + ], + "regarding": [ + 50 + ], + "many": [ + 51 + ], + "key": [ + 52 + ], + "issues.": [ + 53 + ], + "This": [ + 54 + ], + "article": [ + 55 + ], + "therefore": [ + 56 + ], + "an": [ + 58, + 64 + ], + "overview": [ + 59 + ], + "from": [ + 63 + ], + "applied": [ + 65 + ], + "perspective.": [ + 66 + ], + "We": [ + 67, + 116 + ], + "focus": [ + 68 + ], + "on": [ + 69 + ], + "relatively": [ + 71 + ], + "mature": [ + 72 + ], + "methods": [ + 73 + ], + "support": [ + 75 + ], + "vector": [ + 76 + ], + "machines,": [ + 77 + ], + "single": [ + 78 + ], + "decision": [ + 79 + ], + "trees": [ + 80 + ], + "(DTs),": [ + 81 + ], + "Random": [ + 82 + ], + "Forests,": [ + 83 + ], + "boosted": [ + 84 + ], + "DTs,": [ + 85 + ], + "artificial": [ + 86 + ], + "neural": [ + 87 + ], + "networks,": [ + 88 + ], + "k-nearest": [ + 90 + ], + "neighbours": [ + 91 + ], + "(k-NN).": [ + 92 + ], + "Issues": [ + 93 + ], + "considered": [ + 94 + ], + "choice": [ + 97 + ], + "algorithm,": [ + 99 + ], + "training": [ + 100 + ], + "requirements,": [ + 102 + ], + "user-defined": [ + 103 + ], + "parameter": [ + 104 + ], + "selection": [ + 105 + ], + "optimization,": [ + 107 + ], + "feature": [ + 108 + ], + "space": [ + 109 + ], + "impacts": [ + 110 + ], + "reduction,": [ + 112 + ], + "computational": [ + 114 + ], + "costs.": [ + 115 + ], + "illustrate": [ + 117 + ], + "these": [ + 118 + ], + "issues": [ + 119 + ], + "through": [ + 120 + ], + "applying": [ + 121 + ], + "two": [ + 125 + ], + "publically": [ + 126 + ], + "available": [ + 127 + ], + "sets.": [ + 131 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 129 + }, + { + "year": 2025, + "cited_by_count": 290 + }, + { + "year": 2024, + "cited_by_count": 312 + }, + { + "year": 2023, + "cited_by_count": 319 + }, + { + "year": 2022, + "cited_by_count": 312 + }, + { + "year": 2021, + "cited_by_count": 257 + }, + { + "year": 2020, + "cited_by_count": 168 + }, + { + "year": 2019, + "cited_by_count": 101 + }, + { + "year": 2018, + "cited_by_count": 18 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2095577883", + "doi": "https://doi.org/10.1145/2046684.2046692", + "title": "Adversarial machine learning", + "display_name": "Adversarial machine learning", + "relevance_score": 2752.6821, + "publication_year": 2011, + "publication_date": "2011-10-21", + "ids": { + "openalex": "https://openalex.org/W2095577883", + "doi": "https://doi.org/10.1145/2046684.2046692", + "mag": "2095577883" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/2046684.2046692", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2046684.2046692", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 4th ACM workshop on Security and artificial intelligence", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5082878554", + "display_name": "Ling Huang", + "orcid": "https://orcid.org/0000-0001-5089-4637" + }, + "institutions": [ + { + "id": "https://openalex.org/I1343180700", + "display_name": "Intel (United States)", + "ror": "https://ror.org/01ek73717", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1343180700" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Ling Huang", + "raw_affiliation_strings": [ + "Intel Labs Berkeley, Berkeley, CA, USA", + "Intel Labs. Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Intel Labs Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I1343180700" + ] + }, + { + "raw_affiliation_string": "Intel Labs. Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I1343180700" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017381278", + "display_name": "Anthony D. Joseph", + "orcid": "https://orcid.org/0000-0002-6798-9664" + }, + "institutions": [ + { + "id": "https://openalex.org/I134446601", + "display_name": "Berkeley College", + "ror": "https://ror.org/02xewxa75", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I134446601" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Anthony D. Joseph", + "raw_affiliation_strings": [ + "UC Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "UC Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I134446601", + "https://openalex.org/I95457486" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5108249434", + "display_name": "Blaine Nelson", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I8087733", + "display_name": "University of Tübingen", + "ror": "https://ror.org/03a1kwz48", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I8087733" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Blaine Nelson", + "raw_affiliation_strings": [ + "University of Tubingen, Tubingen, Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Tubingen, Tubingen, Germany", + "institution_ids": [ + "https://openalex.org/I8087733" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5078824132", + "display_name": "Benjamin I. P. Rubinstein", + "orcid": "https://orcid.org/0000-0002-2947-6980" + }, + "institutions": [ + { + "id": "https://openalex.org/I1290206253", + "display_name": "Microsoft (United States)", + "ror": "https://ror.org/00d0nc645", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1290206253" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Benjamin I.P. Rubinstein", + "raw_affiliation_strings": [ + "Microsoft, Mountain View, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Microsoft, Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1290206253" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5113907559", + "display_name": "J. D. Tygar", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + }, + { + "id": "https://openalex.org/I134446601", + "display_name": "Berkeley College", + "ror": "https://ror.org/02xewxa75", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I134446601" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "J. D. Tygar", + "raw_affiliation_strings": [ + "UC Berkeley, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "UC Berkeley, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I134446601", + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5082878554" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1343180700" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 21.0993, + "has_fulltext": false, + "cited_by_count": 1193, + "citation_normalized_percentile": { + "value": 0.99439489, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "43", + "last_page": "58" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9994000196456909, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11241", + "display_name": "Advanced Malware Detection Techniques", + "score": 0.9987000226974487, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/adversarial-system", + "display_name": "Adversarial system", + "score": 0.9305077195167542 + }, + { + "id": "https://openalex.org/keywords/adversary", + "display_name": "Adversary", + "score": 0.8575477004051208 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8086425065994263 + }, + { + "id": "https://openalex.org/keywords/adversarial-machine-learning", + "display_name": "Adversarial machine learning", + "score": 0.802598774433136 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6763424873352051 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6334288716316223 + }, + { + "id": "https://openalex.org/keywords/evasion", + "display_name": "Evasion (ethics)", + "score": 0.5196555852890015 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.451160728931427 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.28231871128082275 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C37736160", + "wikidata": "https://www.wikidata.org/wiki/Q1801315", + "display_name": "Adversarial system", + "level": 2, + "score": 0.9305077195167542 + }, + { + "id": "https://openalex.org/C41065033", + "wikidata": "https://www.wikidata.org/wiki/Q2825412", + "display_name": "Adversary", + "level": 2, + "score": 0.8575477004051208 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8086425065994263 + }, + { + "id": "https://openalex.org/C2778403875", + "wikidata": "https://www.wikidata.org/wiki/Q20312394", + "display_name": "Adversarial machine learning", + "level": 3, + "score": 0.802598774433136 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6763424873352051 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6334288716316223 + }, + { + "id": "https://openalex.org/C2781251061", + "wikidata": "https://www.wikidata.org/wiki/Q5416089", + "display_name": "Evasion (ethics)", + "level": 3, + "score": 0.5196555852890015 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.451160728931427 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.28231871128082275 + }, + { + "id": "https://openalex.org/C8891405", + "wikidata": "https://www.wikidata.org/wiki/Q1059", + "display_name": "Immune system", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C203014093", + "wikidata": "https://www.wikidata.org/wiki/Q101929", + "display_name": "Immunology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1145/2046684.2046692", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/2046684.2046692", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the 4th ACM workshop on Security and artificial intelligence", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.310.771", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.310.771", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.cs.berkeley.edu/~tygar/papers/SML2/Adversarial_AISEC.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.360.168", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.360.168", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://blaine-nelson.com/research/pubs/Huang-Joseph-AISec-2011.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "display_name": "Peace, Justice and strong institutions", + "id": "https://metadata.un.org/sdg/16", + "score": 0.7599999904632568 + } + ], + "awards": [], + "funders": [], + "has_content": { + "grobid_xml": false, + "pdf": false + }, + "content_urls": null, + "referenced_works_count": 203, + "referenced_works": [ + "https://openalex.org/W3805906", + "https://openalex.org/W10423024", + "https://openalex.org/W20093842", + "https://openalex.org/W34732858", + "https://openalex.org/W73527130", + "https://openalex.org/W83087001", + "https://openalex.org/W104201263", + "https://openalex.org/W114599062", + "https://openalex.org/W123634342", + "https://openalex.org/W149129625", + "https://openalex.org/W155995321", + "https://openalex.org/W162878246", + "https://openalex.org/W190013992", + "https://openalex.org/W301116043", + "https://openalex.org/W630188293", + "https://openalex.org/W1484507384", + "https://openalex.org/W1492810482", + "https://openalex.org/W1506806321", + "https://openalex.org/W1510073064", + "https://openalex.org/W1513231349", + "https://openalex.org/W1514940655", + "https://openalex.org/W1516506771", + "https://openalex.org/W1520723331", + "https://openalex.org/W1524581953", + "https://openalex.org/W1526402451", + "https://openalex.org/W1543155826", + "https://openalex.org/W1552056088", + "https://openalex.org/W1554944419", + "https://openalex.org/W1560724230", + "https://openalex.org/W1562491895", + "https://openalex.org/W1563088657", + "https://openalex.org/W1564947197", + "https://openalex.org/W1570425181", + "https://openalex.org/W1570963478", + "https://openalex.org/W1579838312", + "https://openalex.org/W1584516405", + "https://openalex.org/W1589713274", + "https://openalex.org/W1590452455", + "https://openalex.org/W1591480890", + "https://openalex.org/W1599976521", + "https://openalex.org/W1601740268", + "https://openalex.org/W1602011302", + "https://openalex.org/W1605925311", + "https://openalex.org/W1609770379", + "https://openalex.org/W1663973292", + "https://openalex.org/W1787843065", + "https://openalex.org/W1851403712", + "https://openalex.org/W1859580326", + "https://openalex.org/W1873763122", + "https://openalex.org/W1941427975", + "https://openalex.org/W1949459993", + "https://openalex.org/W1962340579", + "https://openalex.org/W1964964840", + "https://openalex.org/W1968439359", + "https://openalex.org/W1968998685", + "https://openalex.org/W1979486458", + "https://openalex.org/W1984068197", + "https://openalex.org/W1984350393", + "https://openalex.org/W1984643937", + "https://openalex.org/W1985987493", + "https://openalex.org/W1987845271", + "https://openalex.org/W1989499832", + "https://openalex.org/W1989702938", + "https://openalex.org/W1992244412", + "https://openalex.org/W1993116423", + "https://openalex.org/W1996360405", + "https://openalex.org/W1999935041", + "https://openalex.org/W2005299943", + "https://openalex.org/W2007562169", + "https://openalex.org/W2007657822", + "https://openalex.org/W2010523825", + "https://openalex.org/W2012712694", + "https://openalex.org/W2013936649", + "https://openalex.org/W2015904350", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020764470", + "https://openalex.org/W2022097286", + "https://openalex.org/W2031415694", + "https://openalex.org/W2032247543", + "https://openalex.org/W2040228409", + "https://openalex.org/W2044180609", + "https://openalex.org/W2045796390", + "https://openalex.org/W2046692379", + "https://openalex.org/W2052740976", + "https://openalex.org/W2056099894", + "https://openalex.org/W2058496912", + "https://openalex.org/W2076798318", + "https://openalex.org/W2077217970", + "https://openalex.org/W2078950386", + "https://openalex.org/W2081357650", + "https://openalex.org/W2086437504", + "https://openalex.org/W2088846575", + "https://openalex.org/W2091915792", + "https://openalex.org/W2093825590", + "https://openalex.org/W2096633407", + "https://openalex.org/W2097272254", + "https://openalex.org/W2097895487", + "https://openalex.org/W2099362736", + "https://openalex.org/W2100454174", + "https://openalex.org/W2100779981", + "https://openalex.org/W2106129384", + "https://openalex.org/W2106318612", + "https://openalex.org/W2107968098", + "https://openalex.org/W2108077794", + "https://openalex.org/W2108214308", + "https://openalex.org/W2108601876", + "https://openalex.org/W2108807072", + "https://openalex.org/W2109300365", + "https://openalex.org/W2109394932", + "https://openalex.org/W2110868467", + "https://openalex.org/W2112380340", + "https://openalex.org/W2113741278", + "https://openalex.org/W2114296159", + "https://openalex.org/W2116108199", + "https://openalex.org/W2118931532", + "https://openalex.org/W2119874464", + "https://openalex.org/W2120617515", + "https://openalex.org/W2120665430", + "https://openalex.org/W2120806354", + "https://openalex.org/W2122290076", + "https://openalex.org/W2123449924", + "https://openalex.org/W2123733729", + "https://openalex.org/W2123820077", + "https://openalex.org/W2124612670", + "https://openalex.org/W2124765629", + "https://openalex.org/W2125109784", + "https://openalex.org/W2125908420", + "https://openalex.org/W2127577941", + "https://openalex.org/W2129104108", + "https://openalex.org/W2129860818", + "https://openalex.org/W2130789388", + "https://openalex.org/W2134063365", + "https://openalex.org/W2134167315", + "https://openalex.org/W2135143063", + "https://openalex.org/W2135930857", + "https://openalex.org/W2136114025", + "https://openalex.org/W2137207609", + "https://openalex.org/W2137786570", + "https://openalex.org/W2138263042", + "https://openalex.org/W2138865266", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139709458", + "https://openalex.org/W2141902405", + "https://openalex.org/W2142069714", + "https://openalex.org/W2143521632", + "https://openalex.org/W2144902422", + "https://openalex.org/W2144936818", + "https://openalex.org/W2147487384", + "https://openalex.org/W2149721097", + "https://openalex.org/W2151238122", + "https://openalex.org/W2151298633", + "https://openalex.org/W2151773168", + "https://openalex.org/W2156186849", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157578436", + "https://openalex.org/W2159024459", + "https://openalex.org/W2159675343", + "https://openalex.org/W2160495867", + "https://openalex.org/W2162379889", + "https://openalex.org/W2162552722", + "https://openalex.org/W2162737890", + "https://openalex.org/W2164210932", + "https://openalex.org/W2165239860", + "https://openalex.org/W2166858086", + "https://openalex.org/W2167529272", + "https://openalex.org/W2169300738", + "https://openalex.org/W2169570643", + "https://openalex.org/W2169623711", + "https://openalex.org/W2170005069", + "https://openalex.org/W2170204206", + "https://openalex.org/W2171074980", + "https://openalex.org/W2171604933", + "https://openalex.org/W2293322640", + "https://openalex.org/W2293634425", + "https://openalex.org/W2293768274", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2296452361", + "https://openalex.org/W2341535507", + "https://openalex.org/W2489822048", + "https://openalex.org/W2791732920", + "https://openalex.org/W2898916015", + "https://openalex.org/W2911978475", + "https://openalex.org/W2949506549", + "https://openalex.org/W2951987509", + "https://openalex.org/W2953223940", + "https://openalex.org/W2962974509", + "https://openalex.org/W2963774574", + "https://openalex.org/W2964020133", + "https://openalex.org/W3013501781", + "https://openalex.org/W3124370832", + "https://openalex.org/W3136767761", + "https://openalex.org/W3145128584", + "https://openalex.org/W4212863985", + "https://openalex.org/W4285719527", + "https://openalex.org/W6629510986", + "https://openalex.org/W6636283022", + "https://openalex.org/W6674632866", + "https://openalex.org/W6676639149", + "https://openalex.org/W6684819249", + "https://openalex.org/W6738852829", + "https://openalex.org/W6766076356", + "https://openalex.org/W7052421801" + ], + "related_works": [ + "https://openalex.org/W4320018150", + "https://openalex.org/W4239582170", + "https://openalex.org/W3048732067", + "https://openalex.org/W2918664383", + "https://openalex.org/W106056076", + "https://openalex.org/W4320855730", + "https://openalex.org/W4383468834", + "https://openalex.org/W2135200719", + "https://openalex.org/W4283221438", + "https://openalex.org/W2900159906" + ], + "abstract_inverted_index": { + "In": [ + 0, + 31 + ], + "this": [ + 1, + 32 + ], + "paper": [ + 2 + ], + "(expanded": [ + 3 + ], + "from": [ + 4 + ], + "an": [ + 5, + 13, + 28, + 51, + 59, + 66 + ], + "invited": [ + 6 + ], + "talk": [ + 7 + ], + "at": [ + 8 + ], + "AISEC": [ + 9 + ], + "2010),": [ + 10 + ], + "we": [ + 11 + ], + "discuss": [ + 12, + 46, + 84, + 93 + ], + "emerging": [ + 14 + ], + "field": [ + 15 + ], + "of": [ + 16, + 22, + 65 + ], + "study:": [ + 17 + ], + "adversarial": [ + 18, + 29 + ], + "machine": [ + 19, + 24, + 43, + 81 + ], + "learning---the": [ + 20 + ], + "study": [ + 21 + ], + "effective": [ + 23 + ], + "learning": [ + 25, + 44, + 82, + 95 + ], + "techniques": [ + 26 + ], + "against": [ + 27, + 41, + 86 + ], + "opponent.": [ + 30 + ], + "paper,": [ + 33 + ], + "we:": [ + 34 + ], + "give": [ + 35 + ], + "a": [ + 36 + ], + "taxonomy": [ + 37 + ], + "for": [ + 38, + 57 + ], + "classifying": [ + 39 + ], + "attacks": [ + 40 + ], + "online": [ + 42 + ], + "algorithms;": [ + 45, + 83 + ], + "application-specific": [ + 47 + ], + "factors": [ + 48 + ], + "that": [ + 49 + ], + "limit": [ + 50 + ], + "adversary's": [ + 52, + 60, + 67 + ], + "capabilities;": [ + 53, + 61 + ], + "introduce": [ + 54, + 88 + ], + "two": [ + 55 + ], + "models": [ + 56 + ], + "modeling": [ + 58 + ], + "explore": [ + 62, + 78 + ], + "the": [ + 63, + 70, + 89 + ], + "limits": [ + 64 + ], + "knowledge": [ + 68 + ], + "about": [ + 69 + ], + "algorithm,": [ + 71 + ], + "feature": [ + 72 + ], + "space,": [ + 73 + ], + "training,": [ + 74 + ], + "and": [ + 75, + 92 + ], + "input": [ + 76 + ], + "data;": [ + 77 + ], + "vulnerabilities": [ + 79 + ], + "in": [ + 80 + ], + "countermeasures": [ + 85 + ], + "attacks;": [ + 87 + ], + "evasion": [ + 90 + ], + "challenge;": [ + 91 + ], + "privacy-preserving": [ + 94 + ], + "techniques.": [ + 96 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 17 + }, + { + "year": 2025, + "cited_by_count": 65 + }, + { + "year": 2024, + "cited_by_count": 82 + }, + { + "year": 2023, + "cited_by_count": 88 + }, + { + "year": 2022, + "cited_by_count": 92 + }, + { + "year": 2021, + "cited_by_count": 192 + }, + { + "year": 2020, + "cited_by_count": 173 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 138 + }, + { + "year": 2017, + "cited_by_count": 88 + }, + { + "year": 2016, + "cited_by_count": 42 + }, + { + "year": 2015, + "cited_by_count": 32 + }, + { + "year": 2014, + "cited_by_count": 32 + }, + { + "year": 2013, + "cited_by_count": 10 + }, + { + "year": 2012, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W3101749733", + "doi": null, + "title": "KERNEL METHODS IN MACHINE LEARNING", + "display_name": "KERNEL METHODS IN MACHINE LEARNING", + "relevance_score": 2733.9714, + "publication_year": 2008, + "publication_date": "2008-01-01", + "ids": { + "openalex": "https://openalex.org/W3101749733", + "mag": "3101749733" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.160.8616", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.160.8616", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/publications/pdfs/0701907.pdf", + "raw_type": "text" + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Hofmann, T.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Hofmann, T.", + "raw_affiliation_strings": [ + "Department Empirical Inference, Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia" + ], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Schölkopf, B.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Schölkopf, B.", + "raw_affiliation_strings": [ + "Department Empirical Inference, Max Planck Institute for Biological Cybernetics, Max Planck Society", + "Max Planck Institute for Biological Cybernetics, Max Planck Society", + "DARMSTADT UNIVERSITY OF TECHNOLOGY DEPARTMENT OF COMPUTER SCIENCE DARMSTADT GERMANY" + ], + "raw_orcid": null, + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Smola, A.", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Smola, A.", + "raw_affiliation_strings": [ + "Darmstadt University of Technology, Max Planck Institute for Biological Cybernetics and National ICT Australia", + "MAX PLANCK INSTITUTE FOR BIOLOGICAL CYBERNETICS TÜBINGEN GERMANY" + ], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 80.3261, + "has_fulltext": false, + "cited_by_count": 1404, + "citation_normalized_percentile": { + "value": 0.99968237, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11236", + "display_name": "Control Systems and Identification", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11236", + "display_name": "Control Systems and Identification", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/2207", + "display_name": "Control and Systems Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12814", + "display_name": "Gaussian Processes and Bayesian Inference", + "score": 0.9959999918937683, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.9235234260559082 + }, + { + "id": "https://openalex.org/keywords/kernel-embedding-of-distributions", + "display_name": "Kernel embedding of distributions", + "score": 0.661546528339386 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.6241254806518555 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.6204042434692383 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5763845443725586 + }, + { + "id": "https://openalex.org/keywords/tree-kernel", + "display_name": "Tree kernel", + "score": 0.5457028150558472 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5348400473594666 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5333948731422424 + }, + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.5198448300361633 + }, + { + "id": "https://openalex.org/keywords/binary-classification", + "display_name": "Binary classification", + "score": 0.5161064863204956 + }, + { + "id": "https://openalex.org/keywords/radial-basis-function-kernel", + "display_name": "Radial basis function kernel", + "score": 0.51426762342453 + }, + { + "id": "https://openalex.org/keywords/representer-theorem", + "display_name": "Representer theorem", + "score": 0.5071642398834229 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.46649500727653503 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.46594440937042236 + }, + { + "id": "https://openalex.org/keywords/polynomial-kernel", + "display_name": "Polynomial kernel", + "score": 0.41850125789642334 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.3844338357448578 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.2444586455821991 + }, + { + "id": "https://openalex.org/keywords/discrete-mathematics", + "display_name": "Discrete mathematics", + "score": 0.09967216849327087 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.9235234260559082 + }, + { + "id": "https://openalex.org/C134517425", + "wikidata": "https://www.wikidata.org/wiki/Q16000131", + "display_name": "Kernel embedding of distributions", + "level": 4, + "score": 0.661546528339386 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.6241254806518555 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.6204042434692383 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5763845443725586 + }, + { + "id": "https://openalex.org/C140417398", + "wikidata": "https://www.wikidata.org/wiki/Q16933942", + "display_name": "Tree kernel", + "level": 5, + "score": 0.5457028150558472 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5348400473594666 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5333948731422424 + }, + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.5198448300361633 + }, + { + "id": "https://openalex.org/C66905080", + "wikidata": "https://www.wikidata.org/wiki/Q17005494", + "display_name": "Binary classification", + "level": 3, + "score": 0.5161064863204956 + }, + { + "id": "https://openalex.org/C75866337", + "wikidata": "https://www.wikidata.org/wiki/Q7280263", + "display_name": "Radial basis function kernel", + "level": 4, + "score": 0.51426762342453 + }, + { + "id": "https://openalex.org/C172623408", + "wikidata": "https://www.wikidata.org/wiki/Q7314263", + "display_name": "Representer theorem", + "level": 5, + "score": 0.5071642398834229 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.46649500727653503 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.46594440937042236 + }, + { + "id": "https://openalex.org/C160446489", + "wikidata": "https://www.wikidata.org/wiki/Q7226642", + "display_name": "Polynomial kernel", + "level": 4, + "score": 0.41850125789642334 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.3844338357448578 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.2444586455821991 + }, + { + "id": "https://openalex.org/C118615104", + "wikidata": "https://www.wikidata.org/wiki/Q121416", + "display_name": "Discrete mathematics", + "level": 1, + "score": 0.09967216849327087 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.160.8616", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.160.8616", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.kernel-machines.org/publications/pdfs/0701907.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.680.2403", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.680.2403", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://alex.smola.org/papers/2008/HofSchSmo08.pdf", + "raw_type": "text" + }, + { + "id": "pmh:oai:edoc.mpg.de:419905", + "is_oa": false, + "landing_page_url": "http://edoc.mpg.de/419905", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922265", + "display_name": "Max Planck Institute for Plasma Physics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Annals of Statistics, v.36, 1171-1220 (2008)", + "raw_type": "Article" + }, + { + "id": "pmh:oai:pure.mpg.de:item_1789855", + "is_oa": false, + "landing_page_url": "http://hdl.handle.net/11858/00-001M-0000-0013-C8CF-6", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "The Annals of Statistics", + "raw_type": "info:eu-repo/semantics/article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 186, + "referenced_works": [ + "https://openalex.org/W14071851", + "https://openalex.org/W56743589", + "https://openalex.org/W100063776", + "https://openalex.org/W111380827", + "https://openalex.org/W147273232", + "https://openalex.org/W168447211", + "https://openalex.org/W179694669", + "https://openalex.org/W633772442", + "https://openalex.org/W854322902", + "https://openalex.org/W1486164486", + "https://openalex.org/W1490266132", + "https://openalex.org/W1496189301", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512098439", + "https://openalex.org/W1515020792", + "https://openalex.org/W1526146785", + "https://openalex.org/W1526729636", + "https://openalex.org/W1528905581", + "https://openalex.org/W1530699444", + "https://openalex.org/W1542652324", + "https://openalex.org/W1548802052", + "https://openalex.org/W1549656520", + "https://openalex.org/W1550988992", + "https://openalex.org/W1560729174", + "https://openalex.org/W1575431606", + "https://openalex.org/W1578255497", + "https://openalex.org/W1587744656", + "https://openalex.org/W1588401315", + "https://openalex.org/W1588424744", + "https://openalex.org/W1596052433", + "https://openalex.org/W1601740268", + "https://openalex.org/W1604293137", + "https://openalex.org/W1604792744", + "https://openalex.org/W1638081485", + "https://openalex.org/W1647376582", + "https://openalex.org/W1719651905", + "https://openalex.org/W1746819321", + "https://openalex.org/W1774304772", + "https://openalex.org/W1835509607", + "https://openalex.org/W1899157803", + "https://openalex.org/W1964724001", + "https://openalex.org/W1966347620", + "https://openalex.org/W1968934255", + "https://openalex.org/W1975077471", + "https://openalex.org/W1982032418", + "https://openalex.org/W1986280275", + "https://openalex.org/W1986931325", + "https://openalex.org/W1989408439", + "https://openalex.org/W1990534247", + "https://openalex.org/W1991200719", + "https://openalex.org/W1992236290", + "https://openalex.org/W1992666150", + "https://openalex.org/W1995558350", + "https://openalex.org/W1998438337", + "https://openalex.org/W1999486090", + "https://openalex.org/W2001792610", + "https://openalex.org/W2002806284", + "https://openalex.org/W2007154098", + "https://openalex.org/W2008400752", + "https://openalex.org/W2009511046", + "https://openalex.org/W2012383820", + "https://openalex.org/W2014158063", + "https://openalex.org/W2014902932", + "https://openalex.org/W2015904350", + "https://openalex.org/W2017753243", + "https://openalex.org/W2018582985", + "https://openalex.org/W2020816856", + "https://openalex.org/W2025341678", + "https://openalex.org/W2029538739", + "https://openalex.org/W2038798255", + "https://openalex.org/W2041797434", + "https://openalex.org/W2047028564", + "https://openalex.org/W2051381803", + "https://openalex.org/W2060591526", + "https://openalex.org/W2064976291", + "https://openalex.org/W2070771761", + "https://openalex.org/W2072640386", + "https://openalex.org/W2075887074", + "https://openalex.org/W2077658674", + "https://openalex.org/W2082100828", + "https://openalex.org/W2082612735", + "https://openalex.org/W2083780577", + "https://openalex.org/W2086404575", + "https://openalex.org/W2086726221", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092182929", + "https://openalex.org/W2094212611", + "https://openalex.org/W2098385651", + "https://openalex.org/W2101276256", + "https://openalex.org/W2103194807", + "https://openalex.org/W2103657184", + "https://openalex.org/W2104128541", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106353560", + "https://openalex.org/W2108153239", + "https://openalex.org/W2112076978", + "https://openalex.org/W2114281975", + "https://openalex.org/W2118712128", + "https://openalex.org/W2119647652", + "https://openalex.org/W2119821739", + "https://openalex.org/W2120340025", + "https://openalex.org/W2121921208", + "https://openalex.org/W2123606421", + "https://openalex.org/W2123737232", + "https://openalex.org/W2124101779", + "https://openalex.org/W2124225821", + "https://openalex.org/W2125053431", + "https://openalex.org/W2127713198", + "https://openalex.org/W2131479089", + "https://openalex.org/W2132637896", + "https://openalex.org/W2132870739", + "https://openalex.org/W2134407776", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135498906", + "https://openalex.org/W2139212933", + "https://openalex.org/W2139686264", + "https://openalex.org/W2140095548", + "https://openalex.org/W2141224867", + "https://openalex.org/W2141407058", + "https://openalex.org/W2142387771", + "https://openalex.org/W2143956139", + "https://openalex.org/W2144068644", + "https://openalex.org/W2146766088", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148018895", + "https://openalex.org/W2148603752", + "https://openalex.org/W2149166361", + "https://openalex.org/W2149607218", + "https://openalex.org/W2151949149", + "https://openalex.org/W2156515921", + "https://openalex.org/W2156909104", + "https://openalex.org/W2157791002", + "https://openalex.org/W2159737176", + "https://openalex.org/W2160842254", + "https://openalex.org/W2161920802", + "https://openalex.org/W2162836072", + "https://openalex.org/W2164943005", + "https://openalex.org/W2167826316", + "https://openalex.org/W2169945149", + "https://openalex.org/W2314709380", + "https://openalex.org/W2408196097", + "https://openalex.org/W2498775949", + "https://openalex.org/W2554813760", + "https://openalex.org/W2579923771", + "https://openalex.org/W2595056910", + "https://openalex.org/W2795528501", + "https://openalex.org/W2798510847", + "https://openalex.org/W2798766386", + "https://openalex.org/W2976840617", + "https://openalex.org/W2988119488", + "https://openalex.org/W2994982620", + "https://openalex.org/W3004533406", + "https://openalex.org/W3012317737", + "https://openalex.org/W3015736691", + "https://openalex.org/W3021452258", + "https://openalex.org/W3023786531", + "https://openalex.org/W3119651796", + "https://openalex.org/W3145143011", + "https://openalex.org/W4210636998", + "https://openalex.org/W4211049957", + "https://openalex.org/W4211083646", + "https://openalex.org/W4229758204", + "https://openalex.org/W4232576706", + "https://openalex.org/W4234698323", + "https://openalex.org/W4235236043", + "https://openalex.org/W4237723258", + "https://openalex.org/W4237951138", + "https://openalex.org/W4238284510", + "https://openalex.org/W4238957295", + "https://openalex.org/W4239510810", + "https://openalex.org/W4240579122", + "https://openalex.org/W4246066915", + "https://openalex.org/W4247545571", + "https://openalex.org/W4249925659", + "https://openalex.org/W4251085907", + "https://openalex.org/W4251115686", + "https://openalex.org/W4255455317", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293052541", + "https://openalex.org/W4298876635", + "https://openalex.org/W4302591315", + "https://openalex.org/W4376453320", + "https://openalex.org/W4396738453" + ], + "related_works": [ + "https://openalex.org/W3013206934", + "https://openalex.org/W3100948281", + "https://openalex.org/W4311138679", + "https://openalex.org/W3123056048", + "https://openalex.org/W1983263273", + "https://openalex.org/W4247446331", + "https://openalex.org/W1836142315", + "https://openalex.org/W4294351650", + "https://openalex.org/W4243330733", + "https://openalex.org/W177392165" + ], + "abstract_inverted_index": { + "We": [ + 0, + 77 + ], + "review": [ + 1 + ], + "machine": [ + 2 + ], + "learning": [ + 3, + 12, + 52 + ], + "methods": [ + 4, + 10, + 90 + ], + "employing": [ + 5 + ], + "positive": [ + 6 + ], + "definite": [ + 7 + ], + "kernels.": [ + 8 + ], + "These": [ + 9 + ], + "formulate": [ + 11 + ], + "and": [ + 13, + 49 + ], + "estimation": [ + 14, + 92 + ], + "problems": [ + 15 + ], + "in": [ + 16, + 31, + 37 + ], + "a": [ + 17, + 34, + 79 + ], + "reproducing": [ + 18 + ], + "kernel": [ + 19 + ], + "Hilbert": [ + 20 + ], + "space": [ + 21 + ], + "(RKHS)": [ + 22 + ], + "of": [ + 23, + 33, + 40, + 45, + 51, + 62, + 82 + ], + "functions": [ + 24, + 68, + 72 + ], + "defined": [ + 25, + 73 + ], + "on": [ + 26, + 74 + ], + "the": [ + 27, + 43, + 47, + 56 + ], + "data": [ + 28 + ], + "domain,": [ + 29 + ], + "expanded": [ + 30 + ], + "terms": [ + 32 + ], + "kernel.": [ + 35 + ], + "Working": [ + 36 + ], + "linear": [ + 38 + ], + "spaces": [ + 39 + ], + "function": [ + 41 + ], + "has": [ + 42 + ], + "benefit": [ + 44 + ], + "facilitating": [ + 46 + ], + "construction": [ + 48 + ], + "analysis": [ + 50 + ], + "algorithms": [ + 53 + ], + "while": [ + 54 + ], + "at": [ + 55 + ], + "same": [ + 57 + ], + "time": [ + 58 + ], + "allowing": [ + 59 + ], + "large": [ + 60 + ], + "classes": [ + 61 + ], + "functions.": [ + 63 + ], + "The": [ + 64 + ], + "latter": [ + 65 + ], + "include": [ + 66 + ], + "nonlinear": [ + 67 + ], + "as": [ + 69, + 71 + ], + "well": [ + 70 + ], + "nonvectorial": [ + 75 + ], + "data.": [ + 76, + 95 + ], + "cover": [ + 78 + ], + "wide": [ + 80 + ], + "range": [ + 81 + ], + "methods,": [ + 83 + ], + "ranging": [ + 84 + ], + "from": [ + 85 + ], + "binary": [ + 86 + ], + "classifiers": [ + 87 + ], + "to": [ + 88 + ], + "sophisticated": [ + 89 + ], + "for": [ + 91 + ], + "with": [ + 93 + ], + "structured": [ + 94 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 8 + }, + { + "year": 2024, + "cited_by_count": 22 + }, + { + "year": 2023, + "cited_by_count": 32 + }, + { + "year": 2022, + "cited_by_count": 53 + }, + { + "year": 2021, + "cited_by_count": 181 + }, + { + "year": 2020, + "cited_by_count": 192 + }, + { + "year": 2019, + "cited_by_count": 152 + }, + { + "year": 2018, + "cited_by_count": 126 + }, + { + "year": 2017, + "cited_by_count": 119 + }, + { + "year": 2016, + "cited_by_count": 94 + }, + { + "year": 2015, + "cited_by_count": 86 + }, + { + "year": 2014, + "cited_by_count": 101 + }, + { + "year": 2013, + "cited_by_count": 81 + }, + { + "year": 2012, + "cited_by_count": 57 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2701059868", + "doi": "https://doi.org/10.1109/sp.2017.12", + "title": "SecureML: A System for Scalable Privacy-Preserving Machine Learning", + "display_name": "SecureML: A System for Scalable Privacy-Preserving Machine Learning", + "relevance_score": 2683.66, + "publication_year": 2017, + "publication_date": "2017-05-01", + "ids": { + "openalex": "https://openalex.org/W2701059868", + "doi": "https://doi.org/10.1109/sp.2017.12", + "mag": "2701059868" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2017.12", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.12", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5001493977", + "display_name": "Payman Mohassel", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I164956901", + "display_name": "Visa (United Kingdom)", + "ror": "https://ror.org/05syhdw25", + "country_code": "GB", + "type": "company", + "lineage": [ + "https://openalex.org/I164956901", + "https://openalex.org/I4210148469" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Payman Mohassel", + "raw_affiliation_strings": [ + "Visa Research" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Visa Research", + "institution_ids": [ + "https://openalex.org/I164956901" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100434296", + "display_name": "Yupeng Zhang", + "orcid": "https://orcid.org/0000-0003-0378-3146" + }, + "institutions": [ + { + "id": "https://openalex.org/I66946132", + "display_name": "University of Maryland, College Park", + "ror": "https://ror.org/047s2c258", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I66946132" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Yupeng Zhang", + "raw_affiliation_strings": [ + "University of Maryland" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Maryland", + "institution_ids": [ + "https://openalex.org/I66946132" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5001493977" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I164956901" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 109.4959, + "has_fulltext": false, + "cited_by_count": 1840, + "citation_normalized_percentile": { + "value": 0.99954846, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "19", + "last_page": "38" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10764", + "display_name": "Privacy-Preserving Technologies in Data", + "score": 0.9998999834060669, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10237", + "display_name": "Cryptography and Data Security", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11612", + "display_name": "Stochastic Gradient Optimization Techniques", + "score": 0.9958999752998352, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.8628431558609009 + }, + { + "id": "https://openalex.org/keywords/softmax-function", + "display_name": "Softmax function", + "score": 0.6727948188781738 + }, + { + "id": "https://openalex.org/keywords/scalability", + "display_name": "Scalability", + "score": 0.639832079410553 + }, + { + "id": "https://openalex.org/keywords/server", + "display_name": "Server", + "score": 0.6201728582382202 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5722167491912842 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.5273305177688599 + }, + { + "id": "https://openalex.org/keywords/information-privacy", + "display_name": "Information privacy", + "score": 0.4981374740600586 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.49659615755081177 + }, + { + "id": "https://openalex.org/keywords/stochastic-gradient-descent", + "display_name": "Stochastic gradient descent", + "score": 0.4761010408401489 + }, + { + "id": "https://openalex.org/keywords/mnist-database", + "display_name": "MNIST database", + "score": 0.47118237614631653 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.4711809456348419 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.36041098833084106 + }, + { + "id": "https://openalex.org/keywords/computer-security", + "display_name": "Computer security", + "score": 0.1726815104484558 + }, + { + "id": "https://openalex.org/keywords/computer-network", + "display_name": "Computer network", + "score": 0.15583673119544983 + }, + { + "id": "https://openalex.org/keywords/database", + "display_name": "Database", + "score": 0.1493930220603943 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.8628431558609009 + }, + { + "id": "https://openalex.org/C188441871", + "wikidata": "https://www.wikidata.org/wiki/Q7554146", + "display_name": "Softmax function", + "level": 3, + "score": 0.6727948188781738 + }, + { + "id": "https://openalex.org/C48044578", + "wikidata": "https://www.wikidata.org/wiki/Q727490", + "display_name": "Scalability", + "level": 2, + "score": 0.639832079410553 + }, + { + "id": "https://openalex.org/C93996380", + "wikidata": "https://www.wikidata.org/wiki/Q44127", + "display_name": "Server", + "level": 2, + "score": 0.6201728582382202 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5722167491912842 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.5273305177688599 + }, + { + "id": "https://openalex.org/C123201435", + "wikidata": "https://www.wikidata.org/wiki/Q456632", + "display_name": "Information privacy", + "level": 2, + "score": 0.4981374740600586 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.49659615755081177 + }, + { + "id": "https://openalex.org/C206688291", + "wikidata": "https://www.wikidata.org/wiki/Q7617819", + "display_name": "Stochastic gradient descent", + "level": 3, + "score": 0.4761010408401489 + }, + { + "id": "https://openalex.org/C190502265", + "wikidata": "https://www.wikidata.org/wiki/Q17069496", + "display_name": "MNIST database", + "level": 3, + "score": 0.47118237614631653 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.4711809456348419 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.36041098833084106 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.1726815104484558 + }, + { + "id": "https://openalex.org/C31258907", + "wikidata": "https://www.wikidata.org/wiki/Q1301371", + "display_name": "Computer network", + "level": 1, + "score": 0.15583673119544983 + }, + { + "id": "https://openalex.org/C77088390", + "wikidata": "https://www.wikidata.org/wiki/Q8513", + "display_name": "Database", + "level": 1, + "score": 0.1493930220603943 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1109/sp.2017.12", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2017.12", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2017 IEEE Symposium on Security and Privacy (SP)", + "raw_type": "proceedings-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 49, + "referenced_works": [ + "https://openalex.org/W34785529", + "https://openalex.org/W173953576", + "https://openalex.org/W374828532", + "https://openalex.org/W1480225633", + "https://openalex.org/W1499934958", + "https://openalex.org/W1510952750", + "https://openalex.org/W1528076390", + "https://openalex.org/W1608459536", + "https://openalex.org/W1826277484", + "https://openalex.org/W1968265138", + "https://openalex.org/W1969009977", + "https://openalex.org/W1971991172", + "https://openalex.org/W1985511977", + "https://openalex.org/W2009733253", + "https://openalex.org/W2019891719", + "https://openalex.org/W2053637704", + "https://openalex.org/W2083026317", + "https://openalex.org/W2088339831", + "https://openalex.org/W2106217851", + "https://openalex.org/W2112340198", + "https://openalex.org/W2112380340", + "https://openalex.org/W2129548234", + "https://openalex.org/W2132172731", + "https://openalex.org/W2134340933", + "https://openalex.org/W2145029920", + "https://openalex.org/W2149603017", + "https://openalex.org/W2152799677", + "https://openalex.org/W2167094273", + "https://openalex.org/W2167236842", + "https://openalex.org/W2170696315", + "https://openalex.org/W2171033594", + "https://openalex.org/W2295292576", + "https://openalex.org/W2435473771", + "https://openalex.org/W2473418344", + "https://openalex.org/W2963759574", + "https://openalex.org/W3029558105", + "https://openalex.org/W3030849327", + "https://openalex.org/W3141585064", + "https://openalex.org/W3185488408", + "https://openalex.org/W4248358572", + "https://openalex.org/W6601427463", + "https://openalex.org/W6612902754", + "https://openalex.org/W6631628602", + "https://openalex.org/W6663928093", + "https://openalex.org/W6676639149", + "https://openalex.org/W6679568130", + "https://openalex.org/W6681017033", + "https://openalex.org/W6682557032", + "https://openalex.org/W6778583135" + ], + "related_works": [ + "https://openalex.org/W4386603768", + "https://openalex.org/W2950475743", + "https://openalex.org/W4283819496", + "https://openalex.org/W4315785049", + "https://openalex.org/W3015792155", + "https://openalex.org/W3021529903", + "https://openalex.org/W3118286710", + "https://openalex.org/W2937906318", + "https://openalex.org/W4225929918", + "https://openalex.org/W3095450733" + ], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 58 + ], + "is": [ + 2 + ], + "widely": [ + 3 + ], + "used": [ + 4 + ], + "in": [ + 5, + 77, + 140 + ], + "practice": [ + 6 + ], + "to": [ + 7, + 109, + 122, + 133, + 170 + ], + "produce": [ + 8 + ], + "predictive": [ + 9 + ], + "models": [ + 10, + 22, + 95 + ], + "for": [ + 11, + 54, + 59, + 161, + 187 + ], + "applications": [ + 12 + ], + "such": [ + 13, + 125 + ], + "as": [ + 14, + 126 + ], + "image": [ + 15 + ], + "processing,": [ + 16 + ], + "speech": [ + 17 + ], + "and": [ + 18, + 51, + 64, + 118, + 128, + 165, + 168 + ], + "text": [ + 19 + ], + "recognition.": [ + 20 + ], + "These": [ + 21 + ], + "are": [ + 23, + 131, + 148 + ], + "more": [ + 24 + ], + "accurate": [ + 25 + ], + "when": [ + 26 + ], + "trained": [ + 27 + ], + "on": [ + 28, + 96, + 114 + ], + "large": [ + 29 + ], + "amount": [ + 30 + ], + "of": [ + 31, + 151, + 157, + 172, + 177 + ], + "data": [ + 32, + 40, + 82, + 87, + 99, + 173 + ], + "collected": [ + 33 + ], + "from": [ + 34 + ], + "different": [ + 35 + ], + "sources.": [ + 36 + ], + "However,": [ + 37 + ], + "the": [ + 38, + 69, + 78, + 97, + 155, + 158, + 182 + ], + "massive": [ + 39 + ], + "collection": [ + 41 + ], + "raises": [ + 42 + ], + "privacy": [ + 43, + 55, + 162, + 184 + ], + "concerns.": [ + 44 + ], + "In": [ + 45 + ], + "this": [ + 46 + ], + "paper,": [ + 47 + ], + "we": [ + 48 + ], + "present": [ + 49 + ], + "new": [ + 50, + 107 + ], + "efficient": [ + 52 + ], + "protocols": [ + 53, + 75, + 147 + ], + "preserving": [ + 56, + 163, + 185 + ], + "machine": [ + 57 + ], + "linear": [ + 60, + 164 + ], + "regression,": [ + 61 + ], + "logistic": [ + 62, + 166 + ], + "regression": [ + 63 + ], + "neural": [ + 65, + 189 + ], + "network": [ + 66 + ], + "training": [ + 67, + 188 + ], + "using": [ + 68, + 100 + ], + "stochastic": [ + 70 + ], + "gradient": [ + 71 + ], + "descent": [ + 72 + ], + "method.": [ + 73 + ], + "Our": [ + 74, + 142 + ], + "fall": [ + 76 + ], + "two-server": [ + 79 + ], + "model": [ + 80 + ], + "where": [ + 81 + ], + "owners": [ + 83 + ], + "distribute": [ + 84 + ], + "their": [ + 85 + ], + "private": [ + 86 + ], + "among": [ + 88 + ], + "two": [ + 89 + ], + "non-colluding": [ + 90 + ], + "servers": [ + 91 + ], + "who": [ + 92 + ], + "train": [ + 93 + ], + "various": [ + 94 + ], + "joint": [ + 98 + ], + "secure": [ + 101, + 111 + ], + "two-party": [ + 102 + ], + "computation": [ + 103 + ], + "(2PC).": [ + 104 + ], + "We": [ + 105, + 136, + 179 + ], + "develop": [ + 106 + ], + "techniques": [ + 108 + ], + "support": [ + 110 + ], + "arithmetic": [ + 112 + ], + "operations": [ + 113 + ], + "shared": [ + 115 + ], + "decimal": [ + 116 + ], + "numbers,": [ + 117 + ], + "propose": [ + 119 + ], + "MPC-friendly": [ + 120 + ], + "alternatives": [ + 121 + ], + "non-linear": [ + 123 + ], + "functions": [ + 124 + ], + "sigmoid": [ + 127 + ], + "softmax": [ + 129 + ], + "that": [ + 130, + 145 + ], + "superior": [ + 132 + ], + "prior": [ + 134 + ], + "work.": [ + 135 + ], + "implement": [ + 137, + 181 + ], + "our": [ + 138, + 146 + ], + "system": [ + 139, + 186 + ], + "C++.": [ + 141 + ], + "experiments": [ + 143 + ], + "validate": [ + 144 + ], + "several": [ + 149 + ], + "orders": [ + 150 + ], + "magnitude": [ + 152 + ], + "faster": [ + 153 + ], + "than": [ + 154 + ], + "state": [ + 156 + ], + "art": [ + 159 + ], + "implementations": [ + 160 + ], + "regressions,": [ + 167 + ], + "scale": [ + 169 + ], + "millions": [ + 171 + ], + "samples": [ + 174 + ], + "with": [ + 175 + ], + "thousands": [ + 176 + ], + "features.": [ + 178 + ], + "also": [ + 180 + ], + "first": [ + 183 + ], + "networks.": [ + 190 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 32 + }, + { + "year": 2025, + "cited_by_count": 250 + }, + { + "year": 2024, + "cited_by_count": 273 + }, + { + "year": 2023, + "cited_by_count": 261 + }, + { + "year": 2022, + "cited_by_count": 233 + }, + { + "year": 2021, + "cited_by_count": 265 + }, + { + "year": 2020, + "cited_by_count": 274 + }, + { + "year": 2019, + "cited_by_count": 158 + }, + { + "year": 2018, + "cited_by_count": 85 + }, + { + "year": 2017, + "cited_by_count": 9 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1944672", + "doi": null, + "title": "Foundations of Machine Learning", + "display_name": "Foundations of Machine Learning", + "relevance_score": 2672.102, + "publication_year": 2012, + "publication_date": "2012-08-17", + "ids": { + "openalex": "https://openalex.org/W1944672", + "mag": "1944672" + }, + "language": "nl", + "primary_location": { + "id": "mag:1944672", + "is_oa": false, + "landing_page_url": "http://ci.nii.ac.jp/ncid/BB10313921", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210197683", + "display_name": "Medical Entomology and Zoology", + "issn_l": "0424-7086", + "issn": [ + "0424-7086", + "2185-5609" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319750", + "host_organization_name": "Japan Society of Medical Entomology and Zoology", + "host_organization_lineage": [ + "https://openalex.org/P4310319750" + ], + "host_organization_lineage_names": [ + "Japan Society of Medical Entomology and Zoology" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Nederlands tijdschrift voor geneeskunde", + "raw_type": null + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058849006", + "display_name": "Mehryar Mohri", + "orcid": "https://orcid.org/0000-0002-3987-9847" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Mehryar Mohri", + "raw_affiliation_strings": [], + "raw_orcid": "https://orcid.org/0000-0002-3987-9847", + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5089765894", + "display_name": "Afshin Rostamizadeh", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I57206974", + "display_name": "New York University", + "ror": "https://ror.org/0190ak572", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I57206974" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Afshin Rostamizadeh", + "raw_affiliation_strings": [ + "University of California at Berkeley", + "New York University" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of California at Berkeley", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "New York University", + "institution_ids": [ + "https://openalex.org/I57206974" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5029768722", + "display_name": "Ameet Talwalkar", + "orcid": "https://orcid.org/0000-0001-6650-1893" + }, + "institutions": [ + { + "id": "https://openalex.org/I57206974", + "display_name": "New York University", + "ror": "https://ror.org/0190ak572", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I57206974" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ameet Talwalkar", + "raw_affiliation_strings": [ + "New York University", + "University of California at Berkeley" + ], + "raw_orcid": "https://orcid.org/0000-0001-6650-1893", + "affiliations": [ + { + "raw_affiliation_string": "New York University", + "institution_ids": [ + "https://openalex.org/I57206974" + ] + }, + { + "raw_affiliation_string": "University of California at Berkeley", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5058849006" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 27.6943, + "has_fulltext": false, + "cited_by_count": 1162, + "citation_normalized_percentile": { + "value": 0.99691086, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 94, + "max": 100 + }, + "biblio": { + "volume": "135", + "issue": "43", + "first_page": "2040", + "last_page": "2040" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10057", + "display_name": "Face and Expression Recognition", + "score": 0.9980999827384949, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.9976999759674072, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/mathematical-proof", + "display_name": "Mathematical proof", + "score": 0.7428677678108215 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6456596851348877 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5522527098655701 + }, + { + "id": "https://openalex.org/keywords/class", + "display_name": "Class (philosophy)", + "score": 0.5323909521102905 + }, + { + "id": "https://openalex.org/keywords/ranking", + "display_name": "Ranking (information retrieval)", + "score": 0.5272710919380188 + }, + { + "id": "https://openalex.org/keywords/key", + "display_name": "Key (lock)", + "score": 0.45580342411994934 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4148377478122711 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.38723039627075195 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.22637265920639038 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.15077513456344604 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C108710211", + "wikidata": "https://www.wikidata.org/wiki/Q11538", + "display_name": "Mathematical proof", + "level": 2, + "score": 0.7428677678108215 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6456596851348877 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5522527098655701 + }, + { + "id": "https://openalex.org/C2777212361", + "wikidata": "https://www.wikidata.org/wiki/Q5127848", + "display_name": "Class (philosophy)", + "level": 2, + "score": 0.5323909521102905 + }, + { + "id": "https://openalex.org/C189430467", + "wikidata": "https://www.wikidata.org/wiki/Q7293293", + "display_name": "Ranking (information retrieval)", + "level": 2, + "score": 0.5272710919380188 + }, + { + "id": "https://openalex.org/C26517878", + "wikidata": "https://www.wikidata.org/wiki/Q228039", + "display_name": "Key (lock)", + "level": 2, + "score": 0.45580342411994934 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4148377478122711 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.38723039627075195 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.22637265920639038 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.15077513456344604 + }, + { + "id": "https://openalex.org/C38652104", + "wikidata": "https://www.wikidata.org/wiki/Q3510521", + "display_name": "Computer security", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "mag:1944672", + "is_oa": false, + "landing_page_url": "http://ci.nii.ac.jp/ncid/BB10313921", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4210197683", + "display_name": "Medical Entomology and Zoology", + "issn_l": "0424-7086", + "issn": [ + "0424-7086", + "2185-5609" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319750", + "host_organization_name": "Japan Society of Medical Entomology and Zoology", + "host_organization_lineage": [ + "https://openalex.org/P4310319750" + ], + "host_organization_lineage_names": [ + "Japan Society of Medical Entomology and Zoology" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Nederlands tijdschrift voor geneeskunde", + "raw_type": null + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-025293082", + "is_oa": false, + "landing_page_url": "https://bvbr.bib-bvb.de:443/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=025293082&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-030647834", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=030647834&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-033761252", + "is_oa": false, + "landing_page_url": null, + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:cds.cern.ch:2150131", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2150131", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402194", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2640216", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2640216", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.7599999904632568, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 208, + "referenced_works": [ + "https://openalex.org/W2169610", + "https://openalex.org/W29925583", + "https://openalex.org/W32198084", + "https://openalex.org/W82544137", + "https://openalex.org/W100063776", + "https://openalex.org/W180686687", + "https://openalex.org/W198244778", + "https://openalex.org/W214995755", + "https://openalex.org/W1034819515", + "https://openalex.org/W1502981577", + "https://openalex.org/W1504694836", + "https://openalex.org/W1510073064", + "https://openalex.org/W1512798900", + "https://openalex.org/W1514324498", + "https://openalex.org/W1515891729", + "https://openalex.org/W1520252399", + "https://openalex.org/W1526146785", + "https://openalex.org/W1527117384", + "https://openalex.org/W1527666879", + "https://openalex.org/W1528905581", + "https://openalex.org/W1532246502", + "https://openalex.org/W1532945940", + "https://openalex.org/W1534694010", + "https://openalex.org/W1535810436", + "https://openalex.org/W1536719366", + "https://openalex.org/W1538170657", + "https://openalex.org/W1538240903", + "https://openalex.org/W1539246860", + "https://openalex.org/W1539833865", + "https://openalex.org/W1540007258", + "https://openalex.org/W1540155273", + "https://openalex.org/W1542886316", + "https://openalex.org/W1544896713", + "https://openalex.org/W1545148916", + "https://openalex.org/W1546372806", + "https://openalex.org/W1546851689", + "https://openalex.org/W1546961578", + "https://openalex.org/W1553313034", + "https://openalex.org/W1563736811", + "https://openalex.org/W1569296262", + "https://openalex.org/W1570963478", + "https://openalex.org/W1575130722", + "https://openalex.org/W1576213419", + "https://openalex.org/W1579534531", + "https://openalex.org/W1584815367", + "https://openalex.org/W1605498412", + "https://openalex.org/W1605688901", + "https://openalex.org/W1606751204", + "https://openalex.org/W1608733719", + "https://openalex.org/W1614597761", + "https://openalex.org/W1629199664", + "https://openalex.org/W1676820704", + "https://openalex.org/W1678356000", + "https://openalex.org/W1755117326", + "https://openalex.org/W1848067327", + "https://openalex.org/W1892809886", + "https://openalex.org/W1918179283", + "https://openalex.org/W1963858753", + "https://openalex.org/W1966347620", + "https://openalex.org/W1967684610", + "https://openalex.org/W1969005071", + "https://openalex.org/W1971361630", + "https://openalex.org/W1979675141", + "https://openalex.org/W1979711143", + "https://openalex.org/W1983739894", + "https://openalex.org/W1984901446", + "https://openalex.org/W1985077192", + "https://openalex.org/W1985554184", + "https://openalex.org/W1985949731", + "https://openalex.org/W1986446408", + "https://openalex.org/W1988790447", + "https://openalex.org/W1990876436", + "https://openalex.org/W1994592916", + "https://openalex.org/W1994616650", + "https://openalex.org/W1998167411", + "https://openalex.org/W1999678910", + "https://openalex.org/W2001141328", + "https://openalex.org/W2002089154", + "https://openalex.org/W2002644653", + "https://openalex.org/W2003680476", + "https://openalex.org/W2005306124", + "https://openalex.org/W2008740515", + "https://openalex.org/W2009797711", + "https://openalex.org/W2010029425", + "https://openalex.org/W2015904350", + "https://openalex.org/W2017031328", + "https://openalex.org/W2017603160", + "https://openalex.org/W2018706164", + "https://openalex.org/W2019363670", + "https://openalex.org/W2020913456", + "https://openalex.org/W2024046085", + "https://openalex.org/W2029538739", + "https://openalex.org/W2030189596", + "https://openalex.org/W2032210760", + "https://openalex.org/W2033547792", + "https://openalex.org/W2040870580", + "https://openalex.org/W2041613709", + "https://openalex.org/W2041615247", + "https://openalex.org/W2044654734", + "https://openalex.org/W2045291344", + "https://openalex.org/W2047028564", + "https://openalex.org/W2047221353", + "https://openalex.org/W2047278710", + "https://openalex.org/W2050570613", + "https://openalex.org/W2051669046", + "https://openalex.org/W2051834357", + "https://openalex.org/W2053186076", + "https://openalex.org/W2053463056", + "https://openalex.org/W2055186664", + "https://openalex.org/W2058239479", + "https://openalex.org/W2063978378", + "https://openalex.org/W2068871408", + "https://openalex.org/W2070534370", + "https://openalex.org/W2073242866", + "https://openalex.org/W2074010768", + "https://openalex.org/W2075567596", + "https://openalex.org/W2081230843", + "https://openalex.org/W2081281113", + "https://openalex.org/W2084544490", + "https://openalex.org/W2086789740", + "https://openalex.org/W2087258353", + "https://openalex.org/W2087347434", + "https://openalex.org/W2088658556", + "https://openalex.org/W2092074494", + "https://openalex.org/W2092386826", + "https://openalex.org/W2093717447", + "https://openalex.org/W2093825590", + "https://openalex.org/W2097160297", + "https://openalex.org/W2097477220", + "https://openalex.org/W2099968818", + "https://openalex.org/W2101276256", + "https://openalex.org/W2102011767", + "https://openalex.org/W2103012681", + "https://openalex.org/W2104364170", + "https://openalex.org/W2105644991", + "https://openalex.org/W2105732805", + "https://openalex.org/W2105842272", + "https://openalex.org/W2106491486", + "https://openalex.org/W2106887613", + "https://openalex.org/W2107890099", + "https://openalex.org/W2108263314", + "https://openalex.org/W2109339818", + "https://openalex.org/W2111233787", + "https://openalex.org/W2111355007", + "https://openalex.org/W2111365067", + "https://openalex.org/W2117341272", + "https://openalex.org/W2118686230", + "https://openalex.org/W2119567691", + "https://openalex.org/W2120100126", + "https://openalex.org/W2120875792", + "https://openalex.org/W2121420451", + "https://openalex.org/W2123793406", + "https://openalex.org/W2125528794", + "https://openalex.org/W2128833328", + "https://openalex.org/W2129113961", + "https://openalex.org/W2131600418", + "https://openalex.org/W2133864802", + "https://openalex.org/W2135046866", + "https://openalex.org/W2135730283", + "https://openalex.org/W2135840513", + "https://openalex.org/W2137207609", + "https://openalex.org/W2137690105", + "https://openalex.org/W2138263042", + "https://openalex.org/W2139338362", + "https://openalex.org/W2142399242", + "https://openalex.org/W2143166796", + "https://openalex.org/W2147750403", + "https://openalex.org/W2147880316", + "https://openalex.org/W2148825261", + "https://openalex.org/W2149706766", + "https://openalex.org/W2154104389", + "https://openalex.org/W2154952480", + "https://openalex.org/W2156718197", + "https://openalex.org/W2157112198", + "https://openalex.org/W2157791002", + "https://openalex.org/W2157825442", + "https://openalex.org/W2160392347", + "https://openalex.org/W2161195767", + "https://openalex.org/W2162157640", + "https://openalex.org/W2165131254", + "https://openalex.org/W2165966284", + "https://openalex.org/W2166501286", + "https://openalex.org/W2168020168", + "https://openalex.org/W2169022337", + "https://openalex.org/W2169198425", + "https://openalex.org/W2169401877", + "https://openalex.org/W2171710336", + "https://openalex.org/W2171792531", + "https://openalex.org/W2172195373", + "https://openalex.org/W2294105907", + "https://openalex.org/W2294798173", + "https://openalex.org/W2296319761", + "https://openalex.org/W2312609093", + "https://openalex.org/W2322150470", + "https://openalex.org/W2330274477", + "https://openalex.org/W2490901831", + "https://openalex.org/W2554813760", + "https://openalex.org/W2554958826", + "https://openalex.org/W2579923771", + "https://openalex.org/W2611627047", + "https://openalex.org/W2798579099", + "https://openalex.org/W2798766386", + "https://openalex.org/W2979473749", + "https://openalex.org/W2989661724", + "https://openalex.org/W3011120880", + "https://openalex.org/W3022552533", + "https://openalex.org/W3085162807", + "https://openalex.org/W3119651796" + ], + "related_works": [ + "https://openalex.org/W607505555", + "https://openalex.org/W3118608800", + "https://openalex.org/W2964121744", + "https://openalex.org/W2963664410", + "https://openalex.org/W2919115771", + "https://openalex.org/W2911964244", + "https://openalex.org/W2899606262", + "https://openalex.org/W2579923771", + "https://openalex.org/W2194775991", + "https://openalex.org/W2163605009", + "https://openalex.org/W2156909104", + "https://openalex.org/W2153635508", + "https://openalex.org/W2148603752", + "https://openalex.org/W2119821739", + "https://openalex.org/W2112796928", + "https://openalex.org/W2099471712", + "https://openalex.org/W1663973292", + "https://openalex.org/W1480376833", + "https://openalex.org/W2165698076", + "https://openalex.org/W2121863487" + ], + "abstract_inverted_index": { + "Fundamental": [ + 0 + ], + "topics": [ + 1 + ], + "in": [ + 2 + ], + "machine": [ + 3 + ], + "learning": [ + 4 + ], + "are": [ + 5 + ], + "presented": [ + 6 + ], + "along": [ + 7 + ], + "with": [ + 8 + ], + "theoretical": [ + 9 + ], + "and": [ + 10, + 16 + ], + "conceptual": [ + 11 + ], + "tools": [ + 12 + ], + "for": [ + 13 + ], + "the": [ + 14 + ], + "discussion": [ + 15 + ], + "proof": [ + 17 + ], + "of": [ + 18 + ], + "algorithms.": [ + 19 + ] + }, + "counts_by_year": [ + { + "year": 2024, + "cited_by_count": 2 + }, + { + "year": 2023, + "cited_by_count": 10 + }, + { + "year": 2022, + "cited_by_count": 23 + }, + { + "year": 2021, + "cited_by_count": 260 + }, + { + "year": 2020, + "cited_by_count": 251 + }, + { + "year": 2019, + "cited_by_count": 183 + }, + { + "year": 2018, + "cited_by_count": 112 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 74 + }, + { + "year": 2015, + "cited_by_count": 103 + }, + { + "year": 2014, + "cited_by_count": 62 + }, + { + "year": 2013, + "cited_by_count": 15 + }, + { + "year": 2012, + "cited_by_count": 2 + } + ], + "updated_date": "2025-10-10T17:16:08.811792", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2792946961", + "doi": "https://doi.org/10.1103/physrevlett.122.040504", + "title": "Quantum Machine Learning in Feature Hilbert Spaces", + "display_name": "Quantum Machine Learning in Feature Hilbert Spaces", + "relevance_score": 2668.3115, + "publication_year": 2019, + "publication_date": "2019-02-01", + "ids": { + "openalex": "https://openalex.org/W2792946961", + "doi": "https://doi.org/10.1103/physrevlett.122.040504", + "mag": "2792946961", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30768345" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1103/physrevlett.122.040504", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.122.040504", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1803.07128", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5073832417", + "display_name": "Maria Schuld", + "orcid": "https://orcid.org/0000-0001-8626-168X" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210150097", + "display_name": "Xanadu Quantum Technologies (Canada)", + "ror": "https://ror.org/05qj0n416", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I4210150097" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": true, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada", + "institution_ids": [ + "https://openalex.org/I4210150097" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5073500091", + "display_name": "Nathan Killoran", + "orcid": "https://orcid.org/0009-0004-5021-7467" + }, + "institutions": [ + { + "id": "https://openalex.org/I4210150097", + "display_name": "Xanadu Quantum Technologies (Canada)", + "ror": "https://ror.org/05qj0n416", + "country_code": "CA", + "type": "company", + "lineage": [ + "https://openalex.org/I4210150097" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Nathan Killoran", + "raw_affiliation_strings": [ + "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Xanadu, 372 Richmond Street West, Toronto M5V 2L7, Canada", + "institution_ids": [ + "https://openalex.org/I4210150097" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5073832417" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I4210150097" + ], + "apc_list": { + "value": 3750, + "currency": "USD", + "value_usd": 3750 + }, + "apc_paid": null, + "fwci": 72.85, + "has_fulltext": false, + "cited_by_count": 1615, + "citation_normalized_percentile": { + "value": 0.99930244, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "122", + "issue": "4", + "first_page": "040504", + "last_page": "040504" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10020", + "display_name": "Quantum Information and Cryptography", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10622", + "display_name": "Quantum Mechanics and Applications", + "score": 0.9937000274658203, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/hilbert-space", + "display_name": "Hilbert space", + "score": 0.6511375904083252 + }, + { + "id": "https://openalex.org/keywords/kernel", + "display_name": "Kernel (algebra)", + "score": 0.6377810835838318 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6225951313972473 + }, + { + "id": "https://openalex.org/keywords/quantum-computer", + "display_name": "Quantum computer", + "score": 0.5806344747543335 + }, + { + "id": "https://openalex.org/keywords/reproducing-kernel-hilbert-space", + "display_name": "Reproducing kernel Hilbert space", + "score": 0.5536273717880249 + }, + { + "id": "https://openalex.org/keywords/quantum-machine-learning", + "display_name": "Quantum machine learning", + "score": 0.5515050888061523 + }, + { + "id": "https://openalex.org/keywords/quantum-state", + "display_name": "Quantum state", + "score": 0.5443233847618103 + }, + { + "id": "https://openalex.org/keywords/feature-vector", + "display_name": "Feature vector", + "score": 0.5191175937652588 + }, + { + "id": "https://openalex.org/keywords/kernel-method", + "display_name": "Kernel method", + "score": 0.5189794898033142 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5174089670181274 + }, + { + "id": "https://openalex.org/keywords/quantum-algorithm", + "display_name": "Quantum algorithm", + "score": 0.5012130737304688 + }, + { + "id": "https://openalex.org/keywords/quantum-information", + "display_name": "Quantum information", + "score": 0.49098876118659973 + }, + { + "id": "https://openalex.org/keywords/povm", + "display_name": "POVM", + "score": 0.48033323884010315 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.45647674798965454 + }, + { + "id": "https://openalex.org/keywords/quantum-process", + "display_name": "Quantum process", + "score": 0.4484074115753174 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.43805402517318726 + }, + { + "id": "https://openalex.org/keywords/quantum", + "display_name": "Quantum", + "score": 0.4299362897872925 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.4142104983329773 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4032990038394928 + }, + { + "id": "https://openalex.org/keywords/quantum-operation", + "display_name": "Quantum operation", + "score": 0.39918798208236694 + }, + { + "id": "https://openalex.org/keywords/open-quantum-system", + "display_name": "Open quantum system", + "score": 0.36664798855781555 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2376301884651184 + }, + { + "id": "https://openalex.org/keywords/quantum-mechanics", + "display_name": "Quantum mechanics", + "score": 0.23471912741661072 + }, + { + "id": "https://openalex.org/keywords/physics", + "display_name": "Physics", + "score": 0.20437106490135193 + }, + { + "id": "https://openalex.org/keywords/quantum-dynamics", + "display_name": "Quantum dynamics", + "score": 0.17022734880447388 + }, + { + "id": "https://openalex.org/keywords/pure-mathematics", + "display_name": "Pure mathematics", + "score": 0.16131508350372314 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C62799726", + "wikidata": "https://www.wikidata.org/wiki/Q190056", + "display_name": "Hilbert space", + "level": 2, + "score": 0.6511375904083252 + }, + { + "id": "https://openalex.org/C74193536", + "wikidata": "https://www.wikidata.org/wiki/Q574844", + "display_name": "Kernel (algebra)", + "level": 2, + "score": 0.6377810835838318 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6225951313972473 + }, + { + "id": "https://openalex.org/C58053490", + "wikidata": "https://www.wikidata.org/wiki/Q176555", + "display_name": "Quantum computer", + "level": 3, + "score": 0.5806344747543335 + }, + { + "id": "https://openalex.org/C80884492", + "wikidata": "https://www.wikidata.org/wiki/Q3345678", + "display_name": "Reproducing kernel Hilbert space", + "level": 3, + "score": 0.5536273717880249 + }, + { + "id": "https://openalex.org/C2779094486", + "wikidata": "https://www.wikidata.org/wiki/Q18811578", + "display_name": "Quantum machine learning", + "level": 4, + "score": 0.5515050888061523 + }, + { + "id": "https://openalex.org/C15706264", + "wikidata": "https://www.wikidata.org/wiki/Q230883", + "display_name": "Quantum state", + "level": 3, + "score": 0.5443233847618103 + }, + { + "id": "https://openalex.org/C83665646", + "wikidata": "https://www.wikidata.org/wiki/Q42139305", + "display_name": "Feature vector", + "level": 2, + "score": 0.5191175937652588 + }, + { + "id": "https://openalex.org/C122280245", + "wikidata": "https://www.wikidata.org/wiki/Q620622", + "display_name": "Kernel method", + "level": 3, + "score": 0.5189794898033142 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5174089670181274 + }, + { + "id": "https://openalex.org/C137019171", + "wikidata": "https://www.wikidata.org/wiki/Q2623817", + "display_name": "Quantum algorithm", + "level": 3, + "score": 0.5012130737304688 + }, + { + "id": "https://openalex.org/C169699857", + "wikidata": "https://www.wikidata.org/wiki/Q2122243", + "display_name": "Quantum information", + "level": 3, + "score": 0.49098876118659973 + }, + { + "id": "https://openalex.org/C179957908", + "wikidata": "https://www.wikidata.org/wiki/Q907206", + "display_name": "POVM", + "level": 5, + "score": 0.48033323884010315 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.45647674798965454 + }, + { + "id": "https://openalex.org/C11255438", + "wikidata": "https://www.wikidata.org/wiki/Q7269085", + "display_name": "Quantum process", + "level": 4, + "score": 0.4484074115753174 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.43805402517318726 + }, + { + "id": "https://openalex.org/C84114770", + "wikidata": "https://www.wikidata.org/wiki/Q46344", + "display_name": "Quantum", + "level": 2, + "score": 0.4299362897872925 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.4142104983329773 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4032990038394928 + }, + { + "id": "https://openalex.org/C43682372", + "wikidata": "https://www.wikidata.org/wiki/Q7269080", + "display_name": "Quantum operation", + "level": 4, + "score": 0.39918798208236694 + }, + { + "id": "https://openalex.org/C190474826", + "wikidata": "https://www.wikidata.org/wiki/Q2495111", + "display_name": "Open quantum system", + "level": 3, + "score": 0.36664798855781555 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2376301884651184 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.23471912741661072 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.20437106490135193 + }, + { + "id": "https://openalex.org/C15184713", + "wikidata": "https://www.wikidata.org/wiki/Q7269042", + "display_name": "Quantum dynamics", + "level": 3, + "score": 0.17022734880447388 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.16131508350372314 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1103/physrevlett.122.040504", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1103/physrevlett.122.040504", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S24807848", + "display_name": "Physical Review Letters", + "issn_l": "0031-9007", + "issn": [ + "0031-9007", + "1079-7114", + "1092-0145" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320261", + "host_organization_name": "American Physical Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320261" + ], + "host_organization_lineage_names": [ + "American Physical Society" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical Review Letters", + "raw_type": "journal-article" + }, + { + "id": "pmid:30768345", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30768345", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Physical review letters", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:1803.07128", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1803.07128", + "pdf_url": "https://arxiv.org/pdf/1803.07128", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1803.07128", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1803.07128", + "pdf_url": "https://arxiv.org/pdf/1803.07128", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "score": 0.5199999809265137, + "id": "https://metadata.un.org/sdg/8", + "display_name": "Decent work and economic growth" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 40, + "referenced_works": [ + "https://openalex.org/W1550321157", + "https://openalex.org/W1559984405", + "https://openalex.org/W1565176583", + "https://openalex.org/W1584661976", + "https://openalex.org/W1590419653", + "https://openalex.org/W1904238065", + "https://openalex.org/W1970948459", + "https://openalex.org/W1981783889", + "https://openalex.org/W1984125696", + "https://openalex.org/W1986280275", + "https://openalex.org/W2011527952", + "https://openalex.org/W2014158063", + "https://openalex.org/W2103956991", + "https://openalex.org/W2126887346", + "https://openalex.org/W2142739935", + "https://openalex.org/W2155728415", + "https://openalex.org/W2168029744", + "https://openalex.org/W2257937122", + "https://openalex.org/W2487141439", + "https://openalex.org/W2489886790", + "https://openalex.org/W2497224462", + "https://openalex.org/W2510588772", + "https://openalex.org/W2557392572", + "https://openalex.org/W2560386163", + "https://openalex.org/W2561176579", + "https://openalex.org/W2619100667", + "https://openalex.org/W2751668559", + "https://openalex.org/W2766183519", + "https://openalex.org/W2781738013", + "https://openalex.org/W3098232754", + "https://openalex.org/W3098965398", + "https://openalex.org/W3100075333", + "https://openalex.org/W3100931082", + "https://openalex.org/W3101749733", + "https://openalex.org/W3103574448", + "https://openalex.org/W3144619878", + "https://openalex.org/W4205925775", + "https://openalex.org/W4254920206", + "https://openalex.org/W4298427462", + "https://openalex.org/W4299828299" + ], + "related_works": [ + "https://openalex.org/W2042511210", + "https://openalex.org/W2985796920", + "https://openalex.org/W4382045128", + "https://openalex.org/W4378527878", + "https://openalex.org/W4387503624", + "https://openalex.org/W4387607445", + "https://openalex.org/W4210384976", + "https://openalex.org/W4324106941", + "https://openalex.org/W85458870", + "https://openalex.org/W2010001223" + ], + "abstract_inverted_index": { + "A": [ + 0, + 79 + ], + "basic": [ + 1 + ], + "idea": [ + 2 + ], + "of": [ + 3, + 11, + 36, + 51, + 60, + 117 + ], + "quantum": [ + 4, + 52, + 65, + 76, + 80, + 103, + 112, + 118, + 150 + ], + "computing": [ + 5 + ], + "is": [ + 6 + ], + "surprisingly": [ + 7 + ], + "similar": [ + 8 + ], + "to": [ + 9, + 18, + 75, + 120 + ], + "that": [ + 10, + 72, + 156 + ], + "kernel": [ + 12, + 127, + 134 + ], + "methods": [ + 13 + ], + "in": [ + 14, + 22, + 63, + 88, + 160, + 174 + ], + "machine": [ + 15, + 53 + ], + "learning,": [ + 16 + ], + "namely,": [ + 17 + ], + "efficiently": [ + 19 + ], + "perform": [ + 20 + ], + "computations": [ + 21 + ], + "an": [ + 23 + ], + "intractably": [ + 24 + ], + "large": [ + 25 + ], + "Hilbert": [ + 26, + 77, + 161 + ], + "space.": [ + 27, + 78, + 91, + 162 + ], + "In": [ + 28, + 107, + 142 + ], + "this": [ + 29, + 37, + 89, + 94 + ], + "Letter": [ + 30 + ], + "we": [ + 31, + 96, + 146 + ], + "explore": [ + 32 + ], + "some": [ + 33 + ], + "theoretical": [ + 34 + ], + "foundations": [ + 35 + ], + "link": [ + 38 + ], + "and": [ + 39, + 178 + ], + "show": [ + 40 + ], + "how": [ + 41 + ], + "it": [ + 42 + ], + "opens": [ + 43 + ], + "up": [ + 44 + ], + "a": [ + 45, + 64, + 68, + 102, + 122, + 138, + 148, + 153, + 168, + 175 + ], + "new": [ + 46 + ], + "avenue": [ + 47 + ], + "for": [ + 48, + 100, + 105 + ], + "the": [ + 49, + 58, + 85, + 108, + 111, + 143, + 180 + ], + "design": [ + 50 + ], + "learning": [ + 54 + ], + "algorithms.": [ + 55 + ], + "We": [ + 56, + 163 + ], + "interpret": [ + 57 + ], + "process": [ + 59 + ], + "encoding": [ + 61 + ], + "inputs": [ + 62 + ], + "state": [ + 66 + ], + "as": [ + 67, + 137, + 152 + ], + "nonlinear": [ + 69 + ], + "feature": [ + 70, + 90, + 169 + ], + "map": [ + 71, + 170 + ], + "maps": [ + 73 + ], + "data": [ + 74, + 87, + 158 + ], + "computer": [ + 81 + ], + "can": [ + 82, + 128 + ], + "now": [ + 83 + ], + "analyze": [ + 84 + ], + "input": [ + 86 + ], + "Based": [ + 92 + ], + "on": [ + 93, + 172 + ], + "link,": [ + 95 + ], + "discuss": [ + 97 + ], + "two": [ + 98 + ], + "approaches": [ + 99 + ], + "building": [ + 101 + ], + "model": [ + 104, + 155 + ], + "classification.": [ + 106 + ], + "first": [ + 109 + ], + "approach,": [ + 110, + 145 + ], + "device": [ + 113 + ], + "estimates": [ + 114 + ], + "inner": [ + 115 + ], + "products": [ + 116 + ], + "states": [ + 119 + ], + "compute": [ + 121 + ], + "classically": [ + 123 + ], + "intractable": [ + 124 + ], + "kernel.": [ + 125 + ], + "The": [ + 126 + ], + "be": [ + 129 + ], + "fed": [ + 130 + ], + "into": [ + 131 + ], + "any": [ + 132 + ], + "classical": [ + 133 + ], + "method": [ + 135 + ], + "such": [ + 136 + ], + "support": [ + 139 + ], + "vector": [ + 140 + ], + "machine.": [ + 141 + ], + "second": [ + 144 + ], + "use": [ + 147 + ], + "variational": [ + 149 + ], + "circuit": [ + 151 + ], + "linear": [ + 154 + ], + "classifies": [ + 157 + ], + "explicitly": [ + 159 + ], + "illustrate": [ + 164 + ], + "these": [ + 165 + ], + "ideas": [ + 166 + ], + "with": [ + 167, + 183 + ], + "based": [ + 171 + ], + "squeezing": [ + 173 + ], + "continuous-variable": [ + 176 + ], + "system,": [ + 177 + ], + "visualize": [ + 179 + ], + "working": [ + 181 + ], + "principle": [ + 182 + ], + "two-dimensional": [ + 184 + ], + "minibenchmark": [ + 185 + ], + "datasets.": [ + 186 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 195 + }, + { + "year": 2025, + "cited_by_count": 352 + }, + { + "year": 2024, + "cited_by_count": 267 + }, + { + "year": 2023, + "cited_by_count": 290 + }, + { + "year": 2022, + "cited_by_count": 173 + }, + { + "year": 2021, + "cited_by_count": 195 + }, + { + "year": 2020, + "cited_by_count": 89 + }, + { + "year": 2019, + "cited_by_count": 45 + }, + { + "year": 2018, + "cited_by_count": 8 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2170282673", + "doi": "https://doi.org/10.1109/tpami.2008.275", + "title": "Faster and Better: A Machine Learning Approach to Corner Detection", + "display_name": "Faster and Better: A Machine Learning Approach to Corner Detection", + "relevance_score": 2664.8843, + "publication_year": 2008, + "publication_date": "2008-12-03", + "ids": { + "openalex": "https://openalex.org/W2170282673", + "doi": "https://doi.org/10.1109/tpami.2008.275", + "mag": "2170282673", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/19926902" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tpami.2008.275", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2008.275", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/0810.2434", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5076168268", + "display_name": "Edward Rosten", + "orcid": "https://orcid.org/0000-0001-8675-4230" + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "E. Rosten", + "raw_affiliation_strings": [ + "Department of Engineering, Cambridge University, Cambridge, UK. er258@cam.ac.uk" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, Cambridge University, Cambridge, UK. er258@cam.ac.uk", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004732139", + "display_name": "Reid Porter", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "R. Porter", + "raw_affiliation_strings": [ + "Los Alamos National Laboratory, ISR2 Space and Remote Sensing, Los Alamos, NM, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Los Alamos National Laboratory, ISR2 Space and Remote Sensing, Los Alamos, NM, USA", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5017469047", + "display_name": "Tom Drummond", + "orcid": "https://orcid.org/0000-0001-8204-5904" + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "T. Drummond", + "raw_affiliation_strings": [ + "Department of Engineering, University of Cambridge, Cambridge, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, University of Cambridge, Cambridge, UK", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5076168268" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I241749" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 657.9673, + "has_fulltext": false, + "cited_by_count": 1833, + "citation_normalized_percentile": { + "value": 0.99997119, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "32", + "issue": "1", + "first_page": "105", + "last_page": "119" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10191", + "display_name": "Robotics and Sensor-Based Localization", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2202", + "display_name": "Aerospace Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10191", + "display_name": "Robotics and Sensor-Based Localization", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2202", + "display_name": "Aerospace Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10627", + "display_name": "Advanced Image and Video Retrieval Techniques", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10531", + "display_name": "Advanced Vision and Imaging", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/detector", + "display_name": "Detector", + "score": 0.889086127281189 + }, + { + "id": "https://openalex.org/keywords/repeatability", + "display_name": "Repeatability", + "score": 0.7754774689674377 + }, + { + "id": "https://openalex.org/keywords/frame-rate", + "display_name": "Frame rate", + "score": 0.7121055126190186 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6925737857818604 + }, + { + "id": "https://openalex.org/keywords/heuristic", + "display_name": "Heuristic", + "score": 0.6610417366027832 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6580203771591187 + }, + { + "id": "https://openalex.org/keywords/scale-invariant-feature-transform", + "display_name": "Scale-invariant feature transform", + "score": 0.580880343914032 + }, + { + "id": "https://openalex.org/keywords/computer-vision", + "display_name": "Computer vision", + "score": 0.5632566809654236 + }, + { + "id": "https://openalex.org/keywords/corner-detection", + "display_name": "Corner detection", + "score": 0.5312818288803101 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5021579265594482 + }, + { + "id": "https://openalex.org/keywords/feature-extraction", + "display_name": "Feature extraction", + "score": 0.48669177293777466 + }, + { + "id": "https://openalex.org/keywords/frame", + "display_name": "Frame (networking)", + "score": 0.47642096877098083 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.41832929849624634 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.24135944247245789 + }, + { + "id": "https://openalex.org/keywords/image", + "display_name": "Image (mathematics)", + "score": 0.16702711582183838 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.15768682956695557 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C94915269", + "wikidata": "https://www.wikidata.org/wiki/Q1834857", + "display_name": "Detector", + "level": 2, + "score": 0.889086127281189 + }, + { + "id": "https://openalex.org/C154020017", + "wikidata": "https://www.wikidata.org/wiki/Q520171", + "display_name": "Repeatability", + "level": 2, + "score": 0.7754774689674377 + }, + { + "id": "https://openalex.org/C3261483", + "wikidata": "https://www.wikidata.org/wiki/Q119565", + "display_name": "Frame rate", + "level": 2, + "score": 0.7121055126190186 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6925737857818604 + }, + { + "id": "https://openalex.org/C173801870", + "wikidata": "https://www.wikidata.org/wiki/Q201413", + "display_name": "Heuristic", + "level": 2, + "score": 0.6610417366027832 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6580203771591187 + }, + { + "id": "https://openalex.org/C61265191", + "wikidata": "https://www.wikidata.org/wiki/Q767770", + "display_name": "Scale-invariant feature transform", + "level": 3, + "score": 0.580880343914032 + }, + { + "id": "https://openalex.org/C31972630", + "wikidata": "https://www.wikidata.org/wiki/Q844240", + "display_name": "Computer vision", + "level": 1, + "score": 0.5632566809654236 + }, + { + "id": "https://openalex.org/C39499422", + "wikidata": "https://www.wikidata.org/wiki/Q697320", + "display_name": "Corner detection", + "level": 3, + "score": 0.5312818288803101 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5021579265594482 + }, + { + "id": "https://openalex.org/C52622490", + "wikidata": "https://www.wikidata.org/wiki/Q1026626", + "display_name": "Feature extraction", + "level": 2, + "score": 0.48669177293777466 + }, + { + "id": "https://openalex.org/C126042441", + "wikidata": "https://www.wikidata.org/wiki/Q1324888", + "display_name": "Frame (networking)", + "level": 2, + "score": 0.47642096877098083 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.41832929849624634 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.24135944247245789 + }, + { + "id": "https://openalex.org/C115961682", + "wikidata": "https://www.wikidata.org/wiki/Q860623", + "display_name": "Image (mathematics)", + "level": 2, + "score": 0.16702711582183838 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.15768682956695557 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1109/tpami.2008.275", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tpami.2008.275", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S199944782", + "display_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "issn_l": "0162-8828", + "issn": [ + "0162-8828", + "1939-3539", + "2160-9292" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320439", + "host_organization_name": "IEEE Computer Society", + "host_organization_lineage": [ + "https://openalex.org/P4310320439", + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "IEEE Computer Society", + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Pattern Analysis and Machine Intelligence", + "raw_type": "journal-article" + }, + { + "id": "pmid:19926902", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/19926902", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE transactions on pattern analysis and machine intelligence", + "raw_type": null + }, + { + "id": "pmh:oai:arXiv.org:0810.2434", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/0810.2434", + "pdf_url": "https://arxiv.org/pdf/0810.2434", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:generic.eprints.org:332870", + "is_oa": false, + "landing_page_url": "http://publications.eng.cam.ac.uk/332870/", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4406922847", + "display_name": "Cambridge University Engineering Department Publications Database", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:0810.2434", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/0810.2434", + "pdf_url": "https://arxiv.org/pdf/0810.2434", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 103, + "referenced_works": [ + "https://openalex.org/W22745672", + "https://openalex.org/W1505641881", + "https://openalex.org/W1532362218", + "https://openalex.org/W1541642243", + "https://openalex.org/W1564419782", + "https://openalex.org/W1573635437", + "https://openalex.org/W1580529010", + "https://openalex.org/W1639227073", + "https://openalex.org/W1676552347", + "https://openalex.org/W1773272891", + "https://openalex.org/W1831051511", + "https://openalex.org/W1911904603", + "https://openalex.org/W1926270821", + "https://openalex.org/W1966683117", + "https://openalex.org/W1967129518", + "https://openalex.org/W1970393892", + "https://openalex.org/W1974104694", + "https://openalex.org/W1980633381", + "https://openalex.org/W1981626707", + "https://openalex.org/W1981787154", + "https://openalex.org/W1983503034", + "https://openalex.org/W1985444400", + "https://openalex.org/W1992047056", + "https://openalex.org/W1994069847", + "https://openalex.org/W1994513823", + "https://openalex.org/W2000701155", + "https://openalex.org/W2003262222", + "https://openalex.org/W2012778485", + "https://openalex.org/W2014161456", + "https://openalex.org/W2015206503", + "https://openalex.org/W2017284398", + "https://openalex.org/W2020187819", + "https://openalex.org/W2022486878", + "https://openalex.org/W2027874846", + "https://openalex.org/W2028721671", + "https://openalex.org/W2038691774", + "https://openalex.org/W2045888618", + "https://openalex.org/W2046269998", + "https://openalex.org/W2052408227", + "https://openalex.org/W2054511520", + "https://openalex.org/W2059389571", + "https://openalex.org/W2062758634", + "https://openalex.org/W2065884509", + "https://openalex.org/W2067718526", + "https://openalex.org/W2069295011", + "https://openalex.org/W2072029938", + "https://openalex.org/W2075144239", + "https://openalex.org/W2075746031", + "https://openalex.org/W2075747175", + "https://openalex.org/W2076343824", + "https://openalex.org/W2090736344", + "https://openalex.org/W2091841488", + "https://openalex.org/W2091912813", + "https://openalex.org/W2093808735", + "https://openalex.org/W2095905764", + "https://openalex.org/W2099046646", + "https://openalex.org/W2102586630", + "https://openalex.org/W2105364438", + "https://openalex.org/W2111125604", + "https://openalex.org/W2111308925", + "https://openalex.org/W2111589119", + "https://openalex.org/W2114785422", + "https://openalex.org/W2115168188", + "https://openalex.org/W2117274643", + "https://openalex.org/W2119747362", + "https://openalex.org/W2129146260", + "https://openalex.org/W2130103520", + "https://openalex.org/W2135273733", + "https://openalex.org/W2138342591", + "https://openalex.org/W2141859096", + "https://openalex.org/W2142458388", + "https://openalex.org/W2144540462", + "https://openalex.org/W2145023731", + "https://openalex.org/W2145665593", + "https://openalex.org/W2148278638", + "https://openalex.org/W2149706766", + "https://openalex.org/W2151103935", + "https://openalex.org/W2155625202", + "https://openalex.org/W2156460770", + "https://openalex.org/W2158148005", + "https://openalex.org/W2162430761", + "https://openalex.org/W2163205713", + "https://openalex.org/W2165239264", + "https://openalex.org/W2168861291", + "https://openalex.org/W2169741726", + "https://openalex.org/W2170120409", + "https://openalex.org/W2170419248", + "https://openalex.org/W2170628770", + "https://openalex.org/W2172263315", + "https://openalex.org/W2177274842", + "https://openalex.org/W2791807800", + "https://openalex.org/W2911835288", + "https://openalex.org/W2914011225", + "https://openalex.org/W2999811158", + "https://openalex.org/W3040777582", + "https://openalex.org/W4236137412", + "https://openalex.org/W4250453583", + "https://openalex.org/W6631707545", + "https://openalex.org/W6634737366", + "https://openalex.org/W6637324600", + "https://openalex.org/W6677385351", + "https://openalex.org/W6679388247", + "https://openalex.org/W6680873466" + ], + "related_works": [ + "https://openalex.org/W2054654791", + "https://openalex.org/W2039361535", + "https://openalex.org/W1985861440", + "https://openalex.org/W2344562887", + "https://openalex.org/W1566379417", + "https://openalex.org/W4232672640", + "https://openalex.org/W2102080789", + "https://openalex.org/W2350376800", + "https://openalex.org/W2122784802", + "https://openalex.org/W2372805521" + ], + "abstract_inverted_index": { + "The": [ + 0, + 20, + 43 + ], + "repeatability": [ + 1, + 21, + 155 + ], + "and": [ + 2, + 203 + ], + "efficiency": [ + 3, + 44 + ], + "of": [ + 4, + 101, + 139, + 148, + 204 + ], + "a": [ + 5, + 17, + 72, + 84, + 145, + 196 + ], + "corner": [ + 6, + 149 + ], + "detector": [ + 7, + 52, + 86, + 118, + 176, + 197 + ], + "determines": [ + 8, + 49 + ], + "how": [ + 9 + ], + "likely": [ + 10 + ], + "it": [ + 11, + 130 + ], + "is": [ + 12, + 22, + 45, + 199 + ], + "to": [ + 13, + 37, + 131, + 158 + ], + "be": [ + 14, + 132 + ], + "useful": [ + 15 + ], + "in": [ + 16, + 66, + 193 + ], + "real-world": [ + 18, + 40 + ], + "application.": [ + 19 + ], + "important": [ + 23, + 46 + ], + "because": [ + 24, + 47 + ], + "the": [ + 25, + 38, + 51, + 102, + 127, + 153, + 183 + ], + "same": [ + 26, + 39 + ], + "scene": [ + 27 + ], + "viewed": [ + 28 + ], + "from": [ + 29, + 87 + ], + "different": [ + 30 + ], + "positions": [ + 31 + ], + "should": [ + 32 + ], + "yield": [ + 33 + ], + "features": [ + 34 + ], + "which": [ + 35, + 89 + ], + "correspond": [ + 36 + ], + "3D": [ + 41, + 159 + ], + "locations.": [ + 42 + ], + "this": [ + 48, + 67, + 88 + ], + "whether": [ + 50 + ], + "combined": [ + 53 + ], + "with": [ + 54, + 136 + ], + "further": [ + 55 + ], + "processing": [ + 56, + 104 + ], + "can": [ + 57, + 90 + ], + "operate": [ + 58, + 113 + ], + "at": [ + 59, + 114 + ], + "frame": [ + 60, + 115 + ], + "rate.": [ + 61 + ], + "Three": [ + 62 + ], + "advances": [ + 63 + ], + "are": [ + 64 + ], + "described": [ + 65 + ], + "paper.": [ + 68 + ], + "First,": [ + 69 + ], + "we": [ + 70, + 82, + 125, + 142 + ], + "present": [ + 71 + ], + "new": [ + 73 + ], + "heuristic": [ + 74, + 175 + ], + "for": [ + 75, + 134, + 168 + ], + "feature": [ + 76, + 85, + 180 + ], + "detection": [ + 77 + ], + "and,": [ + 78 + ], + "using": [ + 79, + 96, + 187 + ], + "machine": [ + 80, + 188 + ], + "learning,": [ + 81 + ], + "derive": [ + 83 + ], + "fully": [ + 91 + ], + "process": [ + 92 + ], + "live": [ + 93 + ], + "PAL": [ + 94 + ], + "video": [ + 95 + ], + "less": [ + 97 + ], + "than": [ + 98 + ], + "5": [ + 99 + ], + "percent": [ + 100 + ], + "available": [ + 103 + ], + "time.": [ + 105 + ], + "By": [ + 106 + ], + "comparison,": [ + 107 + ], + "most": [ + 108 + ], + "other": [ + 109 + ], + "detectors": [ + 110, + 150 + ], + "cannot": [ + 111 + ], + "even": [ + 112 + ], + "rate": [ + 116 + ], + "(Harris": [ + 117 + ], + "115": [ + 119 + ], + "percent,": [ + 120 + ], + "SIFT": [ + 121 + ], + "195": [ + 122 + ], + "percent).": [ + 123 + ], + "Second,": [ + 124 + ], + "generalize": [ + 126 + ], + "detector,": [ + 128 + ], + "allowing": [ + 129 + ], + "optimized": [ + 133 + ], + "repeatability,": [ + 135, + 194 + ], + "little": [ + 137 + ], + "loss": [ + 138 + ], + "efficiency.": [ + 140 + ], + "Third,": [ + 141 + ], + "carry": [ + 143 + ], + "out": [ + 144 + ], + "rigorous": [ + 146 + ], + "comparison": [ + 147, + 184 + ], + "based": [ + 151 + ], + "on": [ + 152, + 170 + ], + "above": [ + 154 + ], + "criterion": [ + 156 + ], + "applied": [ + 157 + ], + "scenes.": [ + 160 + ], + "We": [ + 161 + ], + "show": [ + 162 + ], + "that,": [ + 163 + ], + "despite": [ + 164 + ], + "being": [ + 165 + ], + "principally": [ + 166 + ], + "constructed": [ + 167 + ], + "speed,": [ + 169 + ], + "these": [ + 171 + ], + "stringent": [ + 172 + ], + "tests,": [ + 173 + ], + "our": [ + 174 + ], + "significantly": [ + 177 + ], + "outperforms": [ + 178 + ], + "existing": [ + 179 + ], + "detectors.": [ + 181 + ], + "Finally,": [ + 182 + ], + "demonstrates": [ + 185 + ], + "that": [ + 186, + 198 + ], + "learning": [ + 189 + ], + "produces": [ + 190 + ], + "significant": [ + 191 + ], + "improvements": [ + 192 + ], + "yielding": [ + 195 + ], + "both": [ + 200 + ], + "very": [ + 201, + 205 + ], + "fast": [ + 202 + ], + "high": [ + 206 + ], + "quality.": [ + 207 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 15 + }, + { + "year": 2025, + "cited_by_count": 77 + }, + { + "year": 2024, + "cited_by_count": 90 + }, + { + "year": 2023, + "cited_by_count": 105 + }, + { + "year": 2022, + "cited_by_count": 124 + }, + { + "year": 2021, + "cited_by_count": 125 + }, + { + "year": 2020, + "cited_by_count": 145 + }, + { + "year": 2019, + "cited_by_count": 149 + }, + { + "year": 2018, + "cited_by_count": 159 + }, + { + "year": 2017, + "cited_by_count": 165 + }, + { + "year": 2016, + "cited_by_count": 141 + }, + { + "year": 2015, + "cited_by_count": 153 + }, + { + "year": 2014, + "cited_by_count": 129 + }, + { + "year": 2013, + "cited_by_count": 118 + }, + { + "year": 2012, + "cited_by_count": 68 + } + ], + "updated_date": "2026-05-25T08:39:21.599409", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2015811642", + "doi": "https://doi.org/10.1080/00107514.2014.964942", + "title": "An introduction to quantum machine learning", + "display_name": "An introduction to quantum machine learning", + "relevance_score": 2622.9817, + "publication_year": 2014, + "publication_date": "2014-10-15", + "ids": { + "openalex": "https://openalex.org/W2015811642", + "doi": "https://doi.org/10.1080/00107514.2014.964942", + "mag": "2015811642" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1080/00107514.2014.964942", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1080/00107514.2014.964942", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S161902083", + "display_name": "Contemporary Physics", + "issn_l": "0010-7514", + "issn": [ + "0010-7514", + "1366-5812" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Contemporary Physics", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1409.3097", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": null, + "display_name": "Maria Schuld", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I95023434", + "display_name": "University of KwaZulu-Natal", + "ror": "https://ror.org/04qzfn040", + "country_code": "ZA", + "type": "education", + "lineage": [ + "https://openalex.org/I95023434" + ] + } + ], + "countries": [ + "ZA" + ], + "is_corresponding": true, + "raw_author_name": "Maria Schuld", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa", + "institution_ids": [ + "https://openalex.org/I95023434" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": null, + "display_name": "Ilya Sinayskiy", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Ilya Sinayskiy", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa", + "institution_ids": [] + } + ] + }, + { + "author_position": "last", + "author": { + "id": null, + "display_name": "Francesco Petruccione", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Francesco Petruccione", + "raw_affiliation_strings": [ + "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Quantum Research Group, School of Chemistry and Physics, University of KwaZulu-Natal, Durban 4001, South Africa.; National Institute for Theoretical Physics (NITheP), KwaZulu-Natal, South Africa", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [], + "corresponding_institution_ids": [ + "https://openalex.org/I95023434" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 19.4531, + "has_fulltext": false, + "cited_by_count": 1227, + "citation_normalized_percentile": { + "value": 0.99357972, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "56", + "issue": "2", + "first_page": "172", + "last_page": "185" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.817799985408783, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10682", + "display_name": "Quantum Computing Algorithms and Architecture", + "score": 0.817799985408783, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10622", + "display_name": "Quantum Mechanics and Applications", + "score": 0.01489999983459711, + "subfield": { + "id": "https://openalex.org/subfields/3107", + "display_name": "Atomic and Molecular Physics, and Optics" + }, + "field": { + "id": "https://openalex.org/fields/31", + "display_name": "Physics and Astronomy" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10020", + "display_name": "Quantum Information and Cryptography", + "score": 0.011599999852478504, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/quantum-machine-learning", + "display_name": "Quantum machine learning", + "score": 0.6427000164985657 + }, + { + "id": "https://openalex.org/keywords/subroutine", + "display_name": "Subroutine", + "score": 0.6392999887466431 + }, + { + "id": "https://openalex.org/keywords/machine-translation", + "display_name": "Machine translation", + "score": 0.5587000250816345 + }, + { + "id": "https://openalex.org/keywords/quantum-computer", + "display_name": "Quantum computer", + "score": 0.5418000221252441 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.5389000177383423 + }, + { + "id": "https://openalex.org/keywords/quantum", + "display_name": "Quantum", + "score": 0.49810001254081726 + }, + { + "id": "https://openalex.org/keywords/relation", + "display_name": "Relation (database)", + "score": 0.492000013589859 + }, + { + "id": "https://openalex.org/keywords/computational-learning-theory", + "display_name": "Computational learning theory", + "score": 0.38510000705718994 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.37560001015663147 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7555999755859375 + }, + { + "id": "https://openalex.org/C2779094486", + "wikidata": "https://www.wikidata.org/wiki/Q18811578", + "display_name": "Quantum machine learning", + "level": 4, + "score": 0.6427000164985657 + }, + { + "id": "https://openalex.org/C96147967", + "wikidata": "https://www.wikidata.org/wiki/Q190686", + "display_name": "Subroutine", + "level": 2, + "score": 0.6392999887466431 + }, + { + "id": "https://openalex.org/C203005215", + "wikidata": "https://www.wikidata.org/wiki/Q79798", + "display_name": "Machine translation", + "level": 2, + "score": 0.5587000250816345 + }, + { + "id": "https://openalex.org/C58053490", + "wikidata": "https://www.wikidata.org/wiki/Q176555", + "display_name": "Quantum computer", + "level": 3, + "score": 0.5418000221252441 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.5389000177383423 + }, + { + "id": "https://openalex.org/C84114770", + "wikidata": "https://www.wikidata.org/wiki/Q46344", + "display_name": "Quantum", + "level": 2, + "score": 0.49810001254081726 + }, + { + "id": "https://openalex.org/C25343380", + "wikidata": "https://www.wikidata.org/wiki/Q277521", + "display_name": "Relation (database)", + "level": 2, + "score": 0.492000013589859 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4293999969959259 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.38679999113082886 + }, + { + "id": "https://openalex.org/C50292564", + "wikidata": "https://www.wikidata.org/wiki/Q2462783", + "display_name": "Computational learning theory", + "level": 3, + "score": 0.38510000705718994 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.37560001015663147 + }, + { + "id": "https://openalex.org/C131671149", + "wikidata": "https://www.wikidata.org/wiki/Q2703890", + "display_name": "Universal Turing machine", + "level": 4, + "score": 0.36239999532699585 + }, + { + "id": "https://openalex.org/C149364088", + "wikidata": "https://www.wikidata.org/wiki/Q185917", + "display_name": "Translation (biology)", + "level": 4, + "score": 0.3573000133037567 + }, + { + "id": "https://openalex.org/C137019171", + "wikidata": "https://www.wikidata.org/wiki/Q2623817", + "display_name": "Quantum algorithm", + "level": 3, + "score": 0.35510000586509705 + }, + { + "id": "https://openalex.org/C169699857", + "wikidata": "https://www.wikidata.org/wiki/Q2122243", + "display_name": "Quantum information", + "level": 3, + "score": 0.34360000491142273 + }, + { + "id": "https://openalex.org/C192061203", + "wikidata": "https://www.wikidata.org/wiki/Q765620", + "display_name": "Quantum Turing machine", + "level": 5, + "score": 0.33169999718666077 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.31439998745918274 + }, + { + "id": "https://openalex.org/C62641251", + "wikidata": "https://www.wikidata.org/wiki/Q7269097", + "display_name": "Quantum sort", + "level": 5, + "score": 0.31119999289512634 + }, + { + "id": "https://openalex.org/C190463098", + "wikidata": "https://www.wikidata.org/wiki/Q2081419", + "display_name": "Quantum technology", + "level": 4, + "score": 0.3100999891757965 + }, + { + "id": "https://openalex.org/C5320026", + "wikidata": "https://www.wikidata.org/wiki/Q2122216", + "display_name": "Quantum information science", + "level": 4, + "score": 0.30160000920295715 + }, + { + "id": "https://openalex.org/C32254414", + "wikidata": "https://www.wikidata.org/wiki/Q4724364", + "display_name": "Algorithmic learning theory", + "level": 3, + "score": 0.28349998593330383 + }, + { + "id": "https://openalex.org/C182306322", + "wikidata": "https://www.wikidata.org/wiki/Q1779371", + "display_name": "Order (exchange)", + "level": 2, + "score": 0.2777999937534332 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.2728999853134155 + }, + { + "id": "https://openalex.org/C2982832238", + "wikidata": "https://www.wikidata.org/wiki/Q5531640", + "display_name": "General purpose", + "level": 2, + "score": 0.2621999979019165 + }, + { + "id": "https://openalex.org/C2986862884", + "wikidata": "https://www.wikidata.org/wiki/Q7553", + "display_name": "Language translation", + "level": 3, + "score": 0.25360000133514404 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1080/00107514.2014.964942", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1080/00107514.2014.964942", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S161902083", + "display_name": "Contemporary Physics", + "issn_l": "0010-7514", + "issn": [ + "0010-7514", + "1366-5812" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320547", + "host_organization_name": "Taylor & Francis", + "host_organization_lineage": [ + "https://openalex.org/P4310320547" + ], + "host_organization_lineage_names": [ + "Taylor & Francis" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Contemporary Physics", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1409.3097", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1409.3097", + "pdf_url": "https://arxiv.org/pdf/1409.3097", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1409.3097", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1409.3097", + "pdf_url": "https://arxiv.org/pdf/1409.3097", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 44, + "referenced_works": [ + "https://openalex.org/W1485920032", + "https://openalex.org/W1490115964", + "https://openalex.org/W1492999010", + "https://openalex.org/W1498436455", + "https://openalex.org/W1514004320", + "https://openalex.org/W1581516671", + "https://openalex.org/W1804957150", + "https://openalex.org/W1942423339", + "https://openalex.org/W1968561119", + "https://openalex.org/W1971567680", + "https://openalex.org/W1979692035", + "https://openalex.org/W1980073965", + "https://openalex.org/W1987915183", + "https://openalex.org/W1990514347", + "https://openalex.org/W2008355848", + "https://openalex.org/W2010505240", + "https://openalex.org/W2019112050", + "https://openalex.org/W2020783771", + "https://openalex.org/W2030545386", + "https://openalex.org/W2031056773", + "https://openalex.org/W2034539720", + "https://openalex.org/W2037645123", + "https://openalex.org/W2038713182", + "https://openalex.org/W2040870580", + "https://openalex.org/W2044799191", + "https://openalex.org/W2055784634", + "https://openalex.org/W2061422883", + "https://openalex.org/W2064268005", + "https://openalex.org/W2076257979", + "https://openalex.org/W2089365259", + "https://openalex.org/W2095984596", + "https://openalex.org/W2103956991", + "https://openalex.org/W2111084110", + "https://openalex.org/W2121062711", + "https://openalex.org/W2122964527", + "https://openalex.org/W2124269824", + "https://openalex.org/W2125838338", + "https://openalex.org/W2133892930", + "https://openalex.org/W2136922672", + "https://openalex.org/W2138178898", + "https://openalex.org/W2990961515", + "https://openalex.org/W3022578515", + "https://openalex.org/W3037443854", + "https://openalex.org/W3037687232" + ], + "related_works": [], + "abstract_inverted_index": { + "Machine": [ + 0 + ], + "learning": [ + 1, + 54 + ], + "algorithms": [ + 2, + 62 + ], + "learn": [ + 3 + ], + "a": [ + 4, + 68, + 86, + 115 + ], + "desired": [ + 5 + ], + "input-output": [ + 6 + ], + "relation": [ + 7 + ], + "from": [ + 8, + 58 + ], + "examples": [ + 9 + ], + "in": [ + 10, + 33, + 106 + ], + "order": [ + 11 + ], + "to": [ + 12, + 50, + 71 + ], + "interpret": [ + 13 + ], + "new": [ + 14 + ], + "inputs.": [ + 15 + ], + "This": [ + 16, + 83 + ], + "is": [ + 17 + ], + "important": [ + 18 + ], + "for": [ + 19 + ], + "tasks": [ + 20 + ], + "such": [ + 21 + ], + "as": [ + 22, + 101, + 103 + ], + "image": [ + 23 + ], + "and": [ + 24, + 110 + ], + "speech": [ + 25 + ], + "recognition": [ + 26 + ], + "or": [ + 27, + 63 + ], + "strategy": [ + 28 + ], + "optimisation,": [ + 29 + ], + "with": [ + 30 + ], + "growing": [ + 31 + ], + "applications": [ + 32 + ], + "the": [ + 34, + 38, + 72, + 78, + 90, + 99, + 112 + ], + "IT": [ + 35 + ], + "industry.": [ + 36 + ], + "In": [ + 37 + ], + "last": [ + 39 + ], + "couple": [ + 40 + ], + "of": [ + 41, + 74, + 80, + 89, + 93, + 114, + 118 + ], + "years,": [ + 42 + ], + "researchers": [ + 43 + ], + "investigated": [ + 44 + ], + "if": [ + 45 + ], + "quantum": [ + 46, + 69, + 81, + 94, + 119 + ], + "computing": [ + 47 + ], + "can": [ + 48 + ], + "help": [ + 49 + ], + "improve": [ + 51 + ], + "classical": [ + 52 + ], + "machine": [ + 53, + 95 + ], + "algorithms.": [ + 55 + ], + "Ideas": [ + 56 + ], + "range": [ + 57 + ], + "running": [ + 59 + ], + "computationally": [ + 60 + ], + "costly": [ + 61 + ], + "their": [ + 64 + ], + "subroutines": [ + 65 + ], + "efficiently": [ + 66 + ], + "on": [ + 67 + ], + "computer": [ + 70 + ], + "translation": [ + 73 + ], + "stochastic": [ + 75 + ], + "methods": [ + 76 + ], + "into": [ + 77 + ], + "language": [ + 79 + ], + "theory.": [ + 82 + ], + "contribution": [ + 84 + ], + "gives": [ + 85 + ], + "systematic": [ + 87 + ], + "overview": [ + 88 + ], + "emerging": [ + 91 + ], + "field": [ + 92 + ], + "learning.": [ + 96, + 120 + ], + "It": [ + 97 + ], + "presents": [ + 98 + ], + "approaches": [ + 100 + ], + "well": [ + 102 + ], + "technical": [ + 104 + ], + "details": [ + 105 + ], + "an": [ + 107 + ], + "accessible": [ + 108 + ], + "way,": [ + 109 + ], + "discusses": [ + 111 + ], + "potential": [ + 113 + ], + "future": [ + 116 + ], + "theory": [ + 117 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 127 + }, + { + "year": 2025, + "cited_by_count": 267 + }, + { + "year": 2024, + "cited_by_count": 218 + }, + { + "year": 2023, + "cited_by_count": 168 + }, + { + "year": 2022, + "cited_by_count": 128 + }, + { + "year": 2021, + "cited_by_count": 94 + }, + { + "year": 2020, + "cited_by_count": 82 + }, + { + "year": 2019, + "cited_by_count": 57 + }, + { + "year": 2018, + "cited_by_count": 40 + }, + { + "year": 2017, + "cited_by_count": 31 + }, + { + "year": 2016, + "cited_by_count": 11 + }, + { + "year": 2015, + "cited_by_count": 3 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W2789894922", + "doi": "https://doi.org/10.1001/jama.2017.18391", + "title": "Big Data and Machine Learning in Health Care", + "display_name": "Big Data and Machine Learning in Health Care", + "relevance_score": 2616.3196, + "publication_year": 2018, + "publication_date": "2018-03-12", + "ids": { + "openalex": "https://openalex.org/W2789894922", + "doi": "https://doi.org/10.1001/jama.2017.18391", + "mag": "2789894922", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/29532063" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1001/jama.2017.18391", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1001/jama.2017.18391", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S172573765", + "display_name": "JAMA", + "issn_l": "0098-7484", + "issn": [ + "0098-7484", + "1538-3598" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320259", + "host_organization_name": "American Medical Association", + "host_organization_lineage": [ + "https://openalex.org/P4310320259" + ], + "host_organization_lineage_names": [ + "American Medical Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5077007622", + "display_name": "Andrew L. Beam", + "orcid": "https://orcid.org/0000-0002-6657-2787" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Andrew L. Beam", + "raw_affiliation_strings": [ + "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5088509061", + "display_name": "Isaac S. Kohane", + "orcid": "https://orcid.org/0000-0003-2192-5160" + }, + "institutions": [ + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Isaac S. Kohane", + "raw_affiliation_strings": [ + "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5077007622" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I136199984" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 125.0749, + "has_fulltext": false, + "cited_by_count": 2107, + "citation_normalized_percentile": { + "value": 0.99976569, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "319", + "issue": "13", + "first_page": "1317", + "last_page": "1317" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10261", + "display_name": "Genetic Associations and Epidemiology", + "score": 0.9894000291824341, + "subfield": { + "id": "https://openalex.org/subfields/1311", + "display_name": "Genetics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10261", + "display_name": "Genetic Associations and Epidemiology", + "score": 0.9894000291824341, + "subfield": { + "id": "https://openalex.org/subfields/1311", + "display_name": "Genetics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.9599000215530396, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9545000195503235, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.9493777751922607 + }, + { + "id": "https://openalex.org/keywords/otorhinolaryngology", + "display_name": "Otorhinolaryngology", + "score": 0.5338343977928162 + }, + { + "id": "https://openalex.org/keywords/family-medicine", + "display_name": "Family medicine", + "score": 0.5010433197021484 + }, + { + "id": "https://openalex.org/keywords/sign", + "display_name": "Sign (mathematics)", + "score": 0.4248647093772888 + }, + { + "id": "https://openalex.org/keywords/psychiatry", + "display_name": "Psychiatry", + "score": 0.32425233721733093 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.9493777751922607 + }, + { + "id": "https://openalex.org/C108516343", + "wikidata": "https://www.wikidata.org/wiki/Q189553", + "display_name": "Otorhinolaryngology", + "level": 2, + "score": 0.5338343977928162 + }, + { + "id": "https://openalex.org/C512399662", + "wikidata": "https://www.wikidata.org/wiki/Q3505712", + "display_name": "Family medicine", + "level": 1, + "score": 0.5010433197021484 + }, + { + "id": "https://openalex.org/C139676723", + "wikidata": "https://www.wikidata.org/wiki/Q1193832", + "display_name": "Sign (mathematics)", + "level": 2, + "score": 0.4248647093772888 + }, + { + "id": "https://openalex.org/C118552586", + "wikidata": "https://www.wikidata.org/wiki/Q7867", + "display_name": "Psychiatry", + "level": 1, + "score": 0.32425233721733093 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D066264", + "descriptor_name": "Datasets as Topic", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1001/jama.2017.18391", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1001/jama.2017.18391", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S172573765", + "display_name": "JAMA", + "issn_l": "0098-7484", + "issn": [ + "0098-7484", + "1538-3598" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320259", + "host_organization_name": "American Medical Association", + "host_organization_lineage": [ + "https://openalex.org/P4310320259" + ], + "host_organization_lineage_names": [ + "American Medical Association" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": "journal-article" + }, + { + "id": "pmid:29532063", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/29532063", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "JAMA", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W1984116324", + "https://openalex.org/W2076652359", + "https://openalex.org/W2257979135", + "https://openalex.org/W2557738935", + "https://openalex.org/W2766447205" + ], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W3031052312", + "https://openalex.org/W3032375762", + "https://openalex.org/W1995515455", + "https://openalex.org/W2080531066", + "https://openalex.org/W3108674512", + "https://openalex.org/W1506200166", + "https://openalex.org/W2048182022", + "https://openalex.org/W2604872355" + ], + "abstract_inverted_index": { + "Our": [ + 0 + ], + "website": [ + 1 + ], + "uses": [ + 2 + ], + "cookies": [ + 3 + ], + "to": [ + 4, + 10, + 20, + 171 + ], + "enhance": [ + 5 + ], + "your": [ + 6, + 158 + ], + "experience.": [ + 7 + ], + "By": [ + 8 + ], + "continuing": [ + 9 + ], + "use": [ + 11 + ], + "our": [ + 12, + 21 + ], + "site,": [ + 13 + ], + "or": [ + 14 + ], + "clicking": [ + 15 + ], + "\"Continue,\"": [ + 16 + ], + "you": [ + 17 + ], + "are": [ + 18 + ], + "agreeing": [ + 19 + ], + "Cookie": [ + 22 + ], + "Policy": [ + 23, + 92 + ], + "|": [ + 24, + 90, + 93 + ], + "Continue": [ + 25 + ], + "JAMA": [ + 26, + 32, + 33, + 36, + 38, + 40, + 43, + 46, + 48, + 50, + 52, + 57, + 59, + 61, + 105, + 106, + 109, + 111, + 113, + 116, + 119, + 122, + 124, + 126, + 128, + 133, + 135, + 137, + 173 + ], + "HomeNew": [ + 27 + ], + "OnlineCurrent": [ + 28 + ], + "IssueFor": [ + 29 + ], + "Authors": [ + 30 + ], + "Publications": [ + 31 + ], + "Network": [ + 34, + 107 + ], + "Open": [ + 35, + 108 + ], + "Cardiology": [ + 37, + 110 + ], + "Dermatology": [ + 39, + 112 + ], + "Health": [ + 41, + 117 + ], + "Forum": [ + 42, + 114, + 118 + ], + "Internal": [ + 44, + 120 + ], + "Medicine": [ + 45, + 121 + ], + "Neurology": [ + 47, + 65, + 123, + 141 + ], + "Oncology": [ + 49, + 125 + ], + "Ophthalmology": [ + 51, + 127 + ], + "Otolaryngology–Head": [ + 53, + 129 + ], + "&": [ + 54, + 66, + 85, + 130, + 142 + ], + "Neck": [ + 55, + 131 + ], + "Surgery": [ + 56, + 62, + 132, + 138 + ], + "Pediatrics": [ + 58, + 134 + ], + "Psychiatry": [ + 60, + 67, + 136, + 143 + ], + "Archives": [ + 63, + 139 + ], + "of": [ + 64, + 88, + 140 + ], + "(1919-1959)": [ + 68 + ], + "Podcasts": [ + 69 + ], + "Clinical": [ + 70 + ], + "Reviews": [ + 71 + ], + "Editors'": [ + 72 + ], + "Summary": [ + 73 + ], + "Medical": [ + 74, + 98 + ], + "News": [ + 75 + ], + "Author": [ + 76 + ], + "Interviews": [ + 77 + ], + "More": [ + 78 + ], + "JN": [ + 79 + ], + "Learning": [ + 80 + ], + "/": [ + 81, + 83 + ], + "CMESubscribeJobsInstitutions": [ + 82 + ], + "LibrariansReprints": [ + 84 + ], + "Permissions": [ + 86 + ], + "Terms": [ + 87 + ], + "Use": [ + 89 + ], + "Privacy": [ + 91 + ], + "Accessibility": [ + 94 + ], + "Statement": [ + 95 + ], + "2023": [ + 96 + ], + "American": [ + 97 + ], + "Association.": [ + 99 + ], + "All": [ + 100, + 104 + ], + "Rights": [ + 101 + ], + "Reserved": [ + 102 + ], + "Search": [ + 103, + 145 + ], + "Archive": [ + 115 + ], + "Input": [ + 144 + ], + "Term": [ + 146 + ], + "Sign": [ + 147, + 150, + 152, + 160 + ], + "In": [ + 148, + 151, + 161 + ], + "Individual": [ + 149 + ], + "inCreate": [ + 153 + ], + "an": [ + 154 + ], + "Account": [ + 155 + ], + "Access": [ + 156 + ], + "through": [ + 157 + ], + "institution": [ + 159 + ], + "Purchase": [ + 162 + ], + "Options:": [ + 163 + ], + "Buy": [ + 164 + ], + "this": [ + 165, + 168 + ], + "article": [ + 166, + 169 + ], + "Rent": [ + 167 + ], + "Subscribe": [ + 170 + ], + "the": [ + 172 + ], + "journal": [ + 174 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 207 + }, + { + "year": 2025, + "cited_by_count": 376 + }, + { + "year": 2024, + "cited_by_count": 311 + }, + { + "year": 2023, + "cited_by_count": 274 + }, + { + "year": 2022, + "cited_by_count": 237 + }, + { + "year": 2021, + "cited_by_count": 279 + }, + { + "year": 2020, + "cited_by_count": 230 + }, + { + "year": 2019, + "cited_by_count": 133 + }, + { + "year": 2018, + "cited_by_count": 56 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2996061341", + "doi": "https://doi.org/10.1145/3359786", + "title": "Techniques for interpretable machine learning", + "display_name": "Techniques for interpretable machine learning", + "relevance_score": 2609.185, + "publication_year": 2019, + "publication_date": "2019-12-20", + "ids": { + "openalex": "https://openalex.org/W2996061341", + "doi": "https://doi.org/10.1145/3359786", + "mag": "2996061341" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1145/3359786", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3359786", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5072191151", + "display_name": "Mengnan Du", + "orcid": "https://orcid.org/0000-0002-1614-6069" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Mengnan Du", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5007489034", + "display_name": "Ninghao Liu", + "orcid": "https://orcid.org/0000-0002-9170-2424" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ninghao Liu", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5068477431", + "display_name": "Xia Hu", + "orcid": "https://orcid.org/0000-0003-2234-3226" + }, + "institutions": [ + { + "id": "https://openalex.org/I91045830", + "display_name": "Texas A&M University", + "ror": "https://ror.org/01f5ytq51", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I91045830" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xia Hu", + "raw_affiliation_strings": [ + "Texas A&M University, College Station, TX" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Texas A&M University, College Station, TX", + "institution_ids": [ + "https://openalex.org/I91045830" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5072191151" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I91045830" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 84.3145, + "has_fulltext": false, + "cited_by_count": 1231, + "citation_normalized_percentile": { + "value": 0.99944809, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "63", + "issue": "1", + "first_page": "68", + "last_page": "77" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12026", + "display_name": "Explainable Artificial Intelligence (XAI)", + "score": 0.9997000098228455, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11689", + "display_name": "Adversarial Robustness in Machine Learning", + "score": 0.9957000017166138, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9952999949455261, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6890396475791931 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6587886810302734 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.590798556804657 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6890396475791931 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6587886810302734 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.590798556804657 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1145/3359786", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1145/3359786", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S103482838", + "display_name": "Communications of the ACM", + "issn_l": "0001-0782", + "issn": [ + "0001-0782", + "1557-7317" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319798", + "host_organization_name": "Association for Computing Machinery", + "host_organization_lineage": [ + "https://openalex.org/P4310319798" + ], + "host_organization_lineage_names": [ + "Association for Computing Machinery" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Communications of the ACM", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 41, + "referenced_works": [ + "https://openalex.org/W1514535095", + "https://openalex.org/W1787224781", + "https://openalex.org/W1932198206", + "https://openalex.org/W1945616565", + "https://openalex.org/W1951216520", + "https://openalex.org/W1996796871", + "https://openalex.org/W2026905436", + "https://openalex.org/W2102636708", + "https://openalex.org/W2123045220", + "https://openalex.org/W2128420091", + "https://openalex.org/W2133564696", + "https://openalex.org/W2169393322", + "https://openalex.org/W2253993278", + "https://openalex.org/W2292919134", + "https://openalex.org/W2295598076", + "https://openalex.org/W2418098761", + "https://openalex.org/W2516809705", + "https://openalex.org/W2559655401", + "https://openalex.org/W2594475271", + "https://openalex.org/W2606462007", + "https://openalex.org/W2612690371", + "https://openalex.org/W2764024122", + "https://openalex.org/W2765204106", + "https://openalex.org/W2785760873", + "https://openalex.org/W2788403449", + "https://openalex.org/W2796096336", + "https://openalex.org/W2809002738", + "https://openalex.org/W2809376420", + "https://openalex.org/W2810511505", + "https://openalex.org/W2907174776", + "https://openalex.org/W2914018283", + "https://openalex.org/W2963125461", + "https://openalex.org/W2963615251", + "https://openalex.org/W3101609372", + "https://openalex.org/W3102476541", + "https://openalex.org/W3128452405", + "https://openalex.org/W4301861531", + "https://openalex.org/W6639927594", + "https://openalex.org/W6740789180", + "https://openalex.org/W6743446608", + "https://openalex.org/W6748634344" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4313488044", + "https://openalex.org/W3209574120", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Uncovering": [ + 0 + ], + "the": [ + 1 + ], + "mysterious": [ + 2 + ], + "ways": [ + 3 + ], + "machine": [ + 4 + ], + "learning": [ + 5 + ], + "models": [ + 6 + ], + "make": [ + 7 + ], + "decisions.": [ + 8 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 40 + }, + { + "year": 2025, + "cited_by_count": 162 + }, + { + "year": 2024, + "cited_by_count": 221 + }, + { + "year": 2023, + "cited_by_count": 223 + }, + { + "year": 2022, + "cited_by_count": 221 + }, + { + "year": 2021, + "cited_by_count": 187 + }, + { + "year": 2020, + "cited_by_count": 139 + }, + { + "year": 2019, + "cited_by_count": 34 + }, + { + "year": 2018, + "cited_by_count": 3 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2284729062", + "doi": "https://doi.org/10.1177/1745691617693393", + "title": "Choosing Prediction Over Explanation in Psychology: Lessons From Machine Learning", + "display_name": "Choosing Prediction Over Explanation in Psychology: Lessons From Machine Learning", + "relevance_score": 2585.2322, + "publication_year": 2017, + "publication_date": "2017-08-25", + "ids": { + "openalex": "https://openalex.org/W2284729062", + "doi": "https://doi.org/10.1177/1745691617693393", + "mag": "2284729062", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28841086" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1177/1745691617693393", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1177/1745691617693393", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S27228949", + "display_name": "Perspectives on Psychological Science", + "issn_l": "1745-6916", + "issn": [ + "1745-6916", + "1745-6924" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on Psychological Science", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "datacite", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5089396175", + "display_name": "Tal Yarkoni", + "orcid": "https://orcid.org/0000-0002-6558-5113" + }, + "institutions": [ + { + "id": "https://openalex.org/I86519309", + "display_name": "The University of Texas at Austin", + "ror": "https://ror.org/00hj54h04", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86519309" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Tal Yarkoni", + "raw_affiliation_strings": [ + "University of Texas at Austin" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Texas at Austin", + "institution_ids": [ + "https://openalex.org/I86519309" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5011718072", + "display_name": "Jacob Westfall", + "orcid": "https://orcid.org/0000-0001-7566-3544" + }, + "institutions": [ + { + "id": "https://openalex.org/I86519309", + "display_name": "The University of Texas at Austin", + "ror": "https://ror.org/00hj54h04", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I86519309" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Jacob Westfall", + "raw_affiliation_strings": [ + "University of Texas at Austin" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "University of Texas at Austin", + "institution_ids": [ + "https://openalex.org/I86519309" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5089396175" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I86519309" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 142.2309, + "has_fulltext": false, + "cited_by_count": 1985, + "citation_normalized_percentile": { + "value": 0.99990782, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "12", + "issue": "6", + "first_page": "1100", + "last_page": "1122" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T13283", + "display_name": "Mental Health Research Topics", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/3205", + "display_name": "Experimental and Cognitive Psychology" + }, + "field": { + "id": "https://openalex.org/fields/32", + "display_name": "Psychology" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T13283", + "display_name": "Mental Health Research Topics", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/3205", + "display_name": "Experimental and Cognitive Psychology" + }, + "field": { + "id": "https://openalex.org/fields/32", + "display_name": "Psychology" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10315", + "display_name": "Decision-Making and Behavioral Economics", + "score": 0.987500011920929, + "subfield": { + "id": "https://openalex.org/subfields/1800", + "display_name": "General Decision Sciences" + }, + "field": { + "id": "https://openalex.org/fields/18", + "display_name": "Decision Sciences" + }, + "domain": { + "id": "https://openalex.org/domains/2", + "display_name": "Social Sciences" + } + }, + { + "id": "https://openalex.org/T10241", + "display_name": "Functional Brain Connectivity Studies", + "score": 0.9757999777793884, + "subfield": { + "id": "https://openalex.org/subfields/2805", + "display_name": "Cognitive Neuroscience" + }, + "field": { + "id": "https://openalex.org/fields/28", + "display_name": "Neuroscience" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/psychology", + "display_name": "Psychology", + "score": 0.6357313990592957 + }, + { + "id": "https://openalex.org/keywords/field", + "display_name": "Field (mathematics)", + "score": 0.6339761018753052 + }, + { + "id": "https://openalex.org/keywords/psychological-research", + "display_name": "Psychological research", + "score": 0.623198390007019 + }, + { + "id": "https://openalex.org/keywords/mechanism", + "display_name": "Mechanism (biology)", + "score": 0.5662316679954529 + }, + { + "id": "https://openalex.org/keywords/focus", + "display_name": "Focus (optics)", + "score": 0.5525527000427246 + }, + { + "id": "https://openalex.org/keywords/psychological-science", + "display_name": "Psychological science", + "score": 0.5363956689834595 + }, + { + "id": "https://openalex.org/keywords/cognitive-psychology", + "display_name": "Cognitive psychology", + "score": 0.4831187427043915 + }, + { + "id": "https://openalex.org/keywords/basic-science", + "display_name": "Basic science", + "score": 0.44798544049263 + }, + { + "id": "https://openalex.org/keywords/experimental-psychology", + "display_name": "Experimental psychology", + "score": 0.4426892101764679 + }, + { + "id": "https://openalex.org/keywords/contrast", + "display_name": "Contrast (vision)", + "score": 0.4320238530635834 + }, + { + "id": "https://openalex.org/keywords/point", + "display_name": "Point (geometry)", + "score": 0.4234526753425598 + }, + { + "id": "https://openalex.org/keywords/cognitive-science", + "display_name": "Cognitive science", + "score": 0.4131108522415161 + }, + { + "id": "https://openalex.org/keywords/epistemology", + "display_name": "Epistemology", + "score": 0.39459776878356934 + }, + { + "id": "https://openalex.org/keywords/social-psychology", + "display_name": "Social psychology", + "score": 0.30900537967681885 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.2976836562156677 + }, + { + "id": "https://openalex.org/keywords/cognition", + "display_name": "Cognition", + "score": 0.22188469767570496 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.21790143847465515 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C15744967", + "wikidata": "https://www.wikidata.org/wiki/Q9418", + "display_name": "Psychology", + "level": 0, + "score": 0.6357313990592957 + }, + { + "id": "https://openalex.org/C9652623", + "wikidata": "https://www.wikidata.org/wiki/Q190109", + "display_name": "Field (mathematics)", + "level": 2, + "score": 0.6339761018753052 + }, + { + "id": "https://openalex.org/C188255311", + "wikidata": "https://www.wikidata.org/wiki/Q7256388", + "display_name": "Psychological research", + "level": 2, + "score": 0.623198390007019 + }, + { + "id": "https://openalex.org/C89611455", + "wikidata": "https://www.wikidata.org/wiki/Q6804646", + "display_name": "Mechanism (biology)", + "level": 2, + "score": 0.5662316679954529 + }, + { + "id": "https://openalex.org/C192209626", + "wikidata": "https://www.wikidata.org/wiki/Q190909", + "display_name": "Focus (optics)", + "level": 2, + "score": 0.5525527000427246 + }, + { + "id": "https://openalex.org/C2992048920", + "wikidata": "https://www.wikidata.org/wiki/Q7256367", + "display_name": "Psychological science", + "level": 2, + "score": 0.5363956689834595 + }, + { + "id": "https://openalex.org/C180747234", + "wikidata": "https://www.wikidata.org/wiki/Q23373", + "display_name": "Cognitive psychology", + "level": 1, + "score": 0.4831187427043915 + }, + { + "id": "https://openalex.org/C96526673", + "wikidata": "https://www.wikidata.org/wiki/Q4867047", + "display_name": "Basic science", + "level": 2, + "score": 0.44798544049263 + }, + { + "id": "https://openalex.org/C101068787", + "wikidata": "https://www.wikidata.org/wiki/Q475042", + "display_name": "Experimental psychology", + "level": 3, + "score": 0.4426892101764679 + }, + { + "id": "https://openalex.org/C2776502983", + "wikidata": "https://www.wikidata.org/wiki/Q690182", + "display_name": "Contrast (vision)", + "level": 2, + "score": 0.4320238530635834 + }, + { + "id": "https://openalex.org/C28719098", + "wikidata": "https://www.wikidata.org/wiki/Q44946", + "display_name": "Point (geometry)", + "level": 2, + "score": 0.4234526753425598 + }, + { + "id": "https://openalex.org/C188147891", + "wikidata": "https://www.wikidata.org/wiki/Q147638", + "display_name": "Cognitive science", + "level": 1, + "score": 0.4131108522415161 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.39459776878356934 + }, + { + "id": "https://openalex.org/C77805123", + "wikidata": "https://www.wikidata.org/wiki/Q161272", + "display_name": "Social psychology", + "level": 1, + "score": 0.30900537967681885 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.2976836562156677 + }, + { + "id": "https://openalex.org/C169900460", + "wikidata": "https://www.wikidata.org/wiki/Q2200417", + "display_name": "Cognition", + "level": 2, + "score": 0.22188469767570496 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.21790143847465515 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C120665830", + "wikidata": "https://www.wikidata.org/wiki/Q14620", + "display_name": "Optics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C169760540", + "wikidata": "https://www.wikidata.org/wiki/Q207011", + "display_name": "Neuroscience", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C2524010", + "wikidata": "https://www.wikidata.org/wiki/Q8087", + "display_name": "Geometry", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D011584", + "descriptor_name": "Psychology", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + } + ], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1177/1745691617693393", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1177/1745691617693393", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S27228949", + "display_name": "Perspectives on Psychological Science", + "issn_l": "1745-6916", + "issn": [ + "1745-6916", + "1745-6924" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310320017", + "host_organization_name": "SAGE Publishing", + "host_organization_lineage": [ + "https://openalex.org/P4310320017" + ], + "host_organization_lineage_names": [ + "SAGE Publishing" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on Psychological Science", + "raw_type": "journal-article" + }, + { + "id": "pmid:28841086", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28841086", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Perspectives on psychological science : a journal of the Association for Psychological Science", + "raw_type": null + }, + { + "id": "pmh:oai:figshare.com:article/2441878", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6603289", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6603289", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Perspect Psychol Sci", + "raw_type": "Text" + }, + { + "id": "doi:10.6084/m9.figshare.2441878.v1", + "is_oa": true, + "landing_page_url": "https://doi.org/10.6084/m9.figshare.2441878.v1", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article-journal" + } + ], + "best_oa_location": { + "id": "pmh:oai:figshare.com:article/2441878", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/journal_contribution/Choosing_prediction_over_explanation_in_psychology_Lessons_from_machine_learning/2441878", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Text" + }, + "sustainable_development_goals": [ + { + "score": 0.4300000071525574, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [ + { + "id": "https://openalex.org/G6072193115", + "display_name": null, + "funder_award_id": "R01MH096906", + "funder_id": "https://openalex.org/F4320337346", + "funder_display_name": "National Institute of Mental Health" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320337346", + "display_name": "National Institute of Mental Health", + "ror": "https://ror.org/04xeg9z08" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 117, + "referenced_works": [ + "https://openalex.org/W832971097", + "https://openalex.org/W1480376833", + "https://openalex.org/W1529288103", + "https://openalex.org/W1587094587", + "https://openalex.org/W1650809201", + "https://openalex.org/W1678356000", + "https://openalex.org/W1849277567", + "https://openalex.org/W1897139626", + "https://openalex.org/W1928997582", + "https://openalex.org/W1940090105", + "https://openalex.org/W1941783251", + "https://openalex.org/W1965803289", + "https://openalex.org/W1966023201", + "https://openalex.org/W1966797434", + "https://openalex.org/W1972820248", + "https://openalex.org/W1973871257", + "https://openalex.org/W1974829123", + "https://openalex.org/W1975494033", + "https://openalex.org/W1980331490", + "https://openalex.org/W1981457167", + "https://openalex.org/W1985898303", + "https://openalex.org/W1987997380", + "https://openalex.org/W1989462718", + "https://openalex.org/W1993193779", + "https://openalex.org/W1997161938", + "https://openalex.org/W2007178835", + "https://openalex.org/W2007307305", + "https://openalex.org/W2008607322", + "https://openalex.org/W2019448438", + "https://openalex.org/W2020769785", + "https://openalex.org/W2024729467", + "https://openalex.org/W2028171536", + "https://openalex.org/W2028966152", + "https://openalex.org/W2033198212", + "https://openalex.org/W2033872649", + "https://openalex.org/W2036231449", + "https://openalex.org/W2037557484", + "https://openalex.org/W2045573770", + "https://openalex.org/W2046281162", + "https://openalex.org/W2046398551", + "https://openalex.org/W2047104567", + "https://openalex.org/W2054106228", + "https://openalex.org/W2054251181", + "https://openalex.org/W2056418346", + "https://openalex.org/W2059246838", + "https://openalex.org/W2062787021", + "https://openalex.org/W2065692954", + "https://openalex.org/W2075046656", + "https://openalex.org/W2076063813", + "https://openalex.org/W2077088203", + "https://openalex.org/W2080581973", + "https://openalex.org/W2081156723", + "https://openalex.org/W2084341220", + "https://openalex.org/W2091959199", + "https://openalex.org/W2100267603", + "https://openalex.org/W2101645095", + "https://openalex.org/W2106095564", + "https://openalex.org/W2108598243", + "https://openalex.org/W2110223897", + "https://openalex.org/W2111621157", + "https://openalex.org/W2113085067", + "https://openalex.org/W2117350000", + "https://openalex.org/W2119472994", + "https://openalex.org/W2119862467", + "https://openalex.org/W2121880170", + "https://openalex.org/W2122572782", + "https://openalex.org/W2123263696", + "https://openalex.org/W2128431628", + "https://openalex.org/W2132193240", + "https://openalex.org/W2135046866", + "https://openalex.org/W2137351972", + "https://openalex.org/W2137739415", + "https://openalex.org/W2139394602", + "https://openalex.org/W2139852278", + "https://openalex.org/W2141007997", + "https://openalex.org/W2144345994", + "https://openalex.org/W2144710514", + "https://openalex.org/W2150215887", + "https://openalex.org/W2150833190", + "https://openalex.org/W2151554678", + "https://openalex.org/W2153803020", + "https://openalex.org/W2154290668", + "https://openalex.org/W2154776925", + "https://openalex.org/W2155449866", + "https://openalex.org/W2157668596", + "https://openalex.org/W2158196600", + "https://openalex.org/W2158647686", + "https://openalex.org/W2159401492", + "https://openalex.org/W2160455305", + "https://openalex.org/W2161336914", + "https://openalex.org/W2161498332", + "https://openalex.org/W2162148411", + "https://openalex.org/W2166154125", + "https://openalex.org/W2166823678", + "https://openalex.org/W2168979204", + "https://openalex.org/W2169214811", + "https://openalex.org/W2183510664", + "https://openalex.org/W2329873939", + "https://openalex.org/W2333692357", + "https://openalex.org/W2345613236", + "https://openalex.org/W2520456228", + "https://openalex.org/W2781367932", + "https://openalex.org/W2787894218", + "https://openalex.org/W2911964244", + "https://openalex.org/W2919115771", + "https://openalex.org/W2951936974", + "https://openalex.org/W2951964571", + "https://openalex.org/W3121452939", + "https://openalex.org/W3124333825", + "https://openalex.org/W4206439534", + "https://openalex.org/W4239677523", + "https://openalex.org/W4243177274", + "https://openalex.org/W4245648902", + "https://openalex.org/W4250304879", + "https://openalex.org/W4250528183", + "https://openalex.org/W4253418570", + "https://openalex.org/W4298870098" + ], + "related_works": [ + "https://openalex.org/W2967614692", + "https://openalex.org/W3162937339", + "https://openalex.org/W2811220869", + "https://openalex.org/W4390171572", + "https://openalex.org/W4205565064", + "https://openalex.org/W3104930238", + "https://openalex.org/W2792663123", + "https://openalex.org/W2178719713", + "https://openalex.org/W4248643446", + "https://openalex.org/W2330276990" + ], + "abstract_inverted_index": { + "Psychology": [ + 0 + ], + "has": [ + 1, + 59 + ], + "historically": [ + 2 + ], + "been": [ + 3, + 133 + ], + "concerned,": [ + 4 + ], + "first": [ + 5 + ], + "and": [ + 6, + 31, + 40, + 97, + 120, + 125, + 138 + ], + "foremost,": [ + 7 + ], + "with": [ + 8, + 89 + ], + "explaining": [ + 9, + 54 + ], + "the": [ + 10, + 25, + 37, + 55, + 63, + 100, + 117 + ], + "causal": [ + 11 + ], + "mechanisms": [ + 12 + ], + "that": [ + 13, + 43, + 49, + 71, + 79, + 95, + 142, + 150 + ], + "give": [ + 14 + ], + "rise": [ + 15 + ], + "to": [ + 16, + 65, + 85, + 135, + 163 + ], + "behavior.": [ + 17, + 167 + ], + "Randomized,": [ + 18 + ], + "tightly": [ + 19 + ], + "controlled": [ + 20 + ], + "experiments": [ + 21 + ], + "are": [ + 22, + 33 + ], + "enshrined": [ + 23 + ], + "as": [ + 24 + ], + "gold": [ + 26 + ], + "standard": [ + 27 + ], + "of": [ + 28, + 36, + 57, + 62, + 75, + 102, + 116, + 122, + 166 + ], + "psychological": [ + 29, + 76, + 140 + ], + "research,": [ + 30 + ], + "there": [ + 32 + ], + "endless": [ + 34 + ], + "investigations": [ + 35 + ], + "various": [ + 38, + 45 + ], + "mediating": [ + 39 + ], + "moderating": [ + 41 + ], + "variables": [ + 42 + ], + "govern": [ + 44 + ], + "behaviors.": [ + 46 + ], + "We": [ + 47, + 93, + 113, + 148 + ], + "argue": [ + 48 + ], + "psychology's": [ + 50 + ], + "near-total": [ + 51 + ], + "focus": [ + 52, + 153 + ], + "on": [ + 53, + 144, + 154 + ], + "causes": [ + 56 + ], + "behavior": [ + 58 + ], + "led": [ + 60 + ], + "much": [ + 61 + ], + "field": [ + 64, + 101 + ], + "be": [ + 66 + ], + "populated": [ + 67 + ], + "by": [ + 68 + ], + "research": [ + 69, + 141, + 146 + ], + "programs": [ + 70 + ], + "provide": [ + 72 + ], + "intricate": [ + 73 + ], + "theories": [ + 74 + ], + "mechanism": [ + 77 + ], + "but": [ + 78 + ], + "have": [ + 80, + 132 + ], + "little": [ + 81 + ], + "(or": [ + 82 + ], + "unknown)": [ + 83 + ], + "ability": [ + 84 + ], + "predict": [ + 86 + ], + "future": [ + 87 + ], + "behaviors": [ + 88 + ], + "any": [ + 90 + ], + "appreciable": [ + 91 + ], + "accuracy.": [ + 92 + ], + "propose": [ + 94 + ], + "principles": [ + 96 + ], + "techniques": [ + 98 + ], + "from": [ + 99 + ], + "machine": [ + 103, + 123 + ], + "learning": [ + 104, + 124 + ], + "can": [ + 105, + 159 + ], + "help": [ + 106 + ], + "psychology": [ + 107 + ], + "become": [ + 108 + ], + "a": [ + 109 + ], + "more": [ + 110 + ], + "predictive": [ + 111, + 145 + ], + "science.": [ + 112 + ], + "review": [ + 114 + ], + "some": [ + 115 + ], + "fundamental": [ + 118 + ], + "concepts": [ + 119, + 131 + ], + "tools": [ + 121 + ], + "point": [ + 126 + ], + "out": [ + 127 + ], + "examples": [ + 128 + ], + "where": [ + 129 + ], + "these": [ + 130 + ], + "used": [ + 134 + ], + "conduct": [ + 136 + ], + "interesting": [ + 137 + ], + "important": [ + 139 + ], + "focuses": [ + 143 + ], + "questions.": [ + 147 + ], + "suggest": [ + 149 + ], + "an": [ + 151 + ], + "increased": [ + 152 + ], + "prediction,": [ + 155 + ], + "rather": [ + 156 + ], + "than": [ + 157 + ], + "explanation,": [ + 158 + ], + "ultimately": [ + 160 + ], + "lead": [ + 161 + ], + "us": [ + 162 + ], + "greater": [ + 164 + ], + "understanding": [ + 165 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 100 + }, + { + "year": 2025, + "cited_by_count": 252 + }, + { + "year": 2024, + "cited_by_count": 244 + }, + { + "year": 2023, + "cited_by_count": 243 + }, + { + "year": 2022, + "cited_by_count": 252 + }, + { + "year": 2021, + "cited_by_count": 274 + }, + { + "year": 2020, + "cited_by_count": 290 + }, + { + "year": 2019, + "cited_by_count": 180 + }, + { + "year": 2018, + "cited_by_count": 107 + }, + { + "year": 2017, + "cited_by_count": 28 + }, + { + "year": 2016, + "cited_by_count": 13 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2013, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2469230926", + "doi": "https://doi.org/10.1109/tsp.2017.2690524", + "title": "Tensor Decomposition for Signal Processing and Machine Learning", + "display_name": "Tensor Decomposition for Signal Processing and Machine Learning", + "relevance_score": 2578.0544, + "publication_year": 2017, + "publication_date": "2017-04-03", + "ids": { + "openalex": "https://openalex.org/W2469230926", + "doi": "https://doi.org/10.1109/tsp.2017.2690524", + "mag": "2469230926" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/tsp.2017.2690524", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tsp.2017.2690524", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S168680287", + "display_name": "IEEE Transactions on Signal Processing", + "issn_l": "1053-587X", + "issn": [ + "1053-587X", + "1941-0476" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Signal Processing", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1607.01668", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5050186120", + "display_name": "Nicholas D. Sidiropoulos", + "orcid": "https://orcid.org/0000-0002-3385-7911" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Nicholas D. Sidiropoulos", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5009006026", + "display_name": "Lieven De Lathauwer", + "orcid": "https://orcid.org/0000-0001-5562-5014" + }, + "institutions": [ + { + "id": "https://openalex.org/I99464096", + "display_name": "KU Leuven", + "ror": "https://ror.org/05f950310", + "country_code": "BE", + "type": "education", + "lineage": [ + "https://openalex.org/I99464096" + ] + } + ], + "countries": [ + "BE" + ], + "is_corresponding": false, + "raw_author_name": "Lieven De Lathauwer", + "raw_affiliation_strings": [ + "KU Leuven, Leuven, Belgium" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "KU Leuven, Leuven, Belgium", + "institution_ids": [ + "https://openalex.org/I99464096" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5015075381", + "display_name": "Xiao Fu", + "orcid": "https://orcid.org/0000-0003-4847-9586" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Xiao Fu", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002695199", + "display_name": "Kejun Huang", + "orcid": "https://orcid.org/0000-0002-6460-6365" + }, + "institutions": [ + { + "id": "https://openalex.org/I130238516", + "display_name": "University of Minnesota", + "ror": "https://ror.org/017zqws13", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I130238516" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kejun Huang", + "raw_affiliation_strings": [ + "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical and Computer Engineering, University of Minnesota, Minneapolis, MN, USA", + "institution_ids": [ + "https://openalex.org/I130238516" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5054849323", + "display_name": "Evangelos E. Papalexakis", + "orcid": "https://orcid.org/0000-0002-3411-8483" + }, + "institutions": [ + { + "id": "https://openalex.org/I103635307", + "display_name": "University of California, Riverside", + "ror": "https://ror.org/03nawhv43", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I103635307" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evangelos E. Papalexakis", + "raw_affiliation_strings": [ + "Department of Computer Science, University of California, Riverside, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, University of California, Riverside, CA, USA", + "institution_ids": [ + "https://openalex.org/I103635307" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5035605036", + "display_name": "Christos Faloutsos", + "orcid": "https://orcid.org/0000-0003-2996-9790" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christos Faloutsos", + "raw_affiliation_strings": [ + "Department of Computer Science, Carnegie Mellon University, Pittsburgh, PA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science, Carnegie Mellon University, Pittsburgh, PA, USA", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5050186120" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I130238516" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 70.6888, + "has_fulltext": true, + "cited_by_count": 1593, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "65", + "issue": "13", + "first_page": "3551", + "last_page": "3582" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12303", + "display_name": "Tensor decomposition and applications", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2605", + "display_name": "Computational Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12303", + "display_name": "Tensor decomposition and applications", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2605", + "display_name": "Computational Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/26", + "display_name": "Mathematics" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11269", + "display_name": "Algorithms and Data Compression", + "score": 0.967199981212616, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11447", + "display_name": "Blind Source Separation Techniques", + "score": 0.925000011920929, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/tensor", + "display_name": "Tensor (intrinsic definition)", + "score": 0.6821173429489136 + }, + { + "id": "https://openalex.org/keywords/identifiability", + "display_name": "Identifiability", + "score": 0.6632334589958191 + }, + { + "id": "https://openalex.org/keywords/multilinear-algebra", + "display_name": "Multilinear algebra", + "score": 0.6560895442962646 + }, + { + "id": "https://openalex.org/keywords/multilinear-map", + "display_name": "Multilinear map", + "score": 0.6472100615501404 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6300849318504333 + }, + { + "id": "https://openalex.org/keywords/matrix-decomposition", + "display_name": "Matrix decomposition", + "score": 0.5968412160873413 + }, + { + "id": "https://openalex.org/keywords/signal-processing", + "display_name": "Signal processing", + "score": 0.5858262777328491 + }, + { + "id": "https://openalex.org/keywords/rank", + "display_name": "Rank (graph theory)", + "score": 0.4913288652896881 + }, + { + "id": "https://openalex.org/keywords/ranging", + "display_name": "Ranging", + "score": 0.4827932119369507 + }, + { + "id": "https://openalex.org/keywords/subspace-topology", + "display_name": "Subspace topology", + "score": 0.46624651551246643 + }, + { + "id": "https://openalex.org/keywords/statistical-signal-processing", + "display_name": "Statistical signal processing", + "score": 0.45162856578826904 + }, + { + "id": "https://openalex.org/keywords/analytics", + "display_name": "Analytics", + "score": 0.4217430055141449 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.41538673639297485 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.38948237895965576 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3768589496612549 + }, + { + "id": "https://openalex.org/keywords/algebra-over-a-field", + "display_name": "Algebra over a field", + "score": 0.29181069135665894 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.2590547800064087 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.2379186749458313 + }, + { + "id": "https://openalex.org/keywords/digital-signal-processing", + "display_name": "Digital signal processing", + "score": 0.20643731951713562 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C155281189", + "wikidata": "https://www.wikidata.org/wiki/Q3518150", + "display_name": "Tensor (intrinsic definition)", + "level": 2, + "score": 0.6821173429489136 + }, + { + "id": "https://openalex.org/C122770356", + "wikidata": "https://www.wikidata.org/wiki/Q1656753", + "display_name": "Identifiability", + "level": 2, + "score": 0.6632334589958191 + }, + { + "id": "https://openalex.org/C60321788", + "wikidata": "https://www.wikidata.org/wiki/Q1197190", + "display_name": "Multilinear algebra", + "level": 5, + "score": 0.6560895442962646 + }, + { + "id": "https://openalex.org/C84392682", + "wikidata": "https://www.wikidata.org/wiki/Q1952404", + "display_name": "Multilinear map", + "level": 2, + "score": 0.6472100615501404 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6300849318504333 + }, + { + "id": "https://openalex.org/C42355184", + "wikidata": "https://www.wikidata.org/wiki/Q1361088", + "display_name": "Matrix decomposition", + "level": 3, + "score": 0.5968412160873413 + }, + { + "id": "https://openalex.org/C104267543", + "wikidata": "https://www.wikidata.org/wiki/Q208163", + "display_name": "Signal processing", + "level": 3, + "score": 0.5858262777328491 + }, + { + "id": "https://openalex.org/C164226766", + "wikidata": "https://www.wikidata.org/wiki/Q7293202", + "display_name": "Rank (graph theory)", + "level": 2, + "score": 0.4913288652896881 + }, + { + "id": "https://openalex.org/C115051666", + "wikidata": "https://www.wikidata.org/wiki/Q6522493", + "display_name": "Ranging", + "level": 2, + "score": 0.4827932119369507 + }, + { + "id": "https://openalex.org/C32834561", + "wikidata": "https://www.wikidata.org/wiki/Q660730", + "display_name": "Subspace topology", + "level": 2, + "score": 0.46624651551246643 + }, + { + "id": "https://openalex.org/C105125183", + "wikidata": "https://www.wikidata.org/wiki/Q208163", + "display_name": "Statistical signal processing", + "level": 4, + "score": 0.45162856578826904 + }, + { + "id": "https://openalex.org/C79158427", + "wikidata": "https://www.wikidata.org/wiki/Q485396", + "display_name": "Analytics", + "level": 2, + "score": 0.4217430055141449 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.41538673639297485 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.38948237895965576 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3768589496612549 + }, + { + "id": "https://openalex.org/C136119220", + "wikidata": "https://www.wikidata.org/wiki/Q1000660", + "display_name": "Algebra over a field", + "level": 2, + "score": 0.29181069135665894 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.2590547800064087 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.2379186749458313 + }, + { + "id": "https://openalex.org/C84462506", + "wikidata": "https://www.wikidata.org/wiki/Q173142", + "display_name": "Digital signal processing", + "level": 2, + "score": 0.20643731951713562 + }, + { + "id": "https://openalex.org/C114614502", + "wikidata": "https://www.wikidata.org/wiki/Q76592", + "display_name": "Combinatorics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C76155785", + "wikidata": "https://www.wikidata.org/wiki/Q418", + "display_name": "Telecommunications", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138354692", + "wikidata": "https://www.wikidata.org/wiki/Q1231309", + "display_name": "Division algebra", + "level": 4, + "score": 0.0 + }, + { + "id": "https://openalex.org/C169171071", + "wikidata": "https://www.wikidata.org/wiki/Q5449241", + "display_name": "Filtered algebra", + "level": 3, + "score": 0.0 + }, + { + "id": "https://openalex.org/C202444582", + "wikidata": "https://www.wikidata.org/wiki/Q837863", + "display_name": "Pure mathematics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C158693339", + "wikidata": "https://www.wikidata.org/wiki/Q190524", + "display_name": "Eigenvalues and eigenvectors", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C9390403", + "wikidata": "https://www.wikidata.org/wiki/Q3966", + "display_name": "Computer hardware", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1109/tsp.2017.2690524", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/tsp.2017.2690524", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S168680287", + "display_name": "IEEE Transactions on Signal Processing", + "issn_l": "1053-587X", + "issn": [ + "1053-587X", + "1941-0476" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Transactions on Signal Processing", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1607.01668", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1607.01668", + "pdf_url": "https://arxiv.org/pdf/1607.01668", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:lirias2repo.kuleuven.be:123456789/577591", + "is_oa": true, + "landing_page_url": "https://lirias.kuleuven.be/bitstream/123456789/577591/3/sidiropoulos2016tensor.pdf", + "pdf_url": "https://lirias.kuleuven.be/retrieve/eb8ab0fd-a4ff-419b-9ba1-24b97d90fb22", + "source": { + "id": "https://openalex.org/S4306401954", + "display_name": "Lirias (KU Leuven)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I99464096", + "host_organization_name": "KU Leuven", + "host_organization_lineage": [ + "https://openalex.org/I99464096" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "other-oa", + "license_id": "https://openalex.org/licenses/other-oa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "IEEE Transactions on Signal Processing, vol. 65 (13), (3551-3582)", + "raw_type": "info:eu-repo/semantics/publishedVersion" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1607.01668", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1607.01668", + "pdf_url": "https://arxiv.org/pdf/1607.01668", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "score": 0.4300000071525574, + "id": "https://metadata.un.org/sdg/9", + "display_name": "Industry, innovation and infrastructure" + } + ], + "awards": [ + { + "id": "https://openalex.org/G1371775621", + "display_name": null, + "funder_award_id": "C16/15/059", + "funder_id": "https://openalex.org/F4320322308", + "funder_display_name": "KU Leuven" + }, + { + "id": "https://openalex.org/G1676009052", + "display_name": null, + "funder_award_id": "CoE EF/05/006", + "funder_id": "https://openalex.org/F4320322308", + "funder_display_name": "KU Leuven" + }, + { + "id": "https://openalex.org/G2832174611", + "display_name": null, + "funder_award_id": "IIS-1247632", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4104599821", + "display_name": null, + "funder_award_id": "FP7/2007-2013", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4967211227", + "display_name": "BIGDATA: Mid-Scale: DA: Collaborative Research: Big Tensor Mining: Theory, Scalable Algorithms and Applications", + "funder_award_id": "1247489", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G5519121898", + "display_name": "BIGDATA: Mid-Scale: DA: Collaborative Research: Big Tensor Mining: Theory, Scalable Algorithms and Applications", + "funder_award_id": "1247632", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G5946195615", + "display_name": null, + "funder_award_id": "IIS-1447788", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6685711771", + "display_name": null, + "funder_award_id": "IIS-1247489", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G6734414162", + "display_name": null, + "funder_award_id": "IUAP P7", + "funder_id": "https://openalex.org/F4320321454", + "funder_display_name": "Belgian Federal Science Policy Office" + }, + { + "id": "https://openalex.org/G8796945004", + "display_name": null, + "funder_award_id": "FP7/2007-2013", + "funder_id": "https://openalex.org/F4320334960", + "funder_display_name": "Seventh Framework Programme" + }, + { + "id": "https://openalex.org/G8907058826", + "display_name": null, + "funder_award_id": "1447788", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320321454", + "display_name": "Belgian Federal Science Policy Office", + "ror": "https://ror.org/01fapfv42" + }, + { + "id": "https://openalex.org/F4320322308", + "display_name": "KU Leuven", + "ror": "https://ror.org/05f950310" + }, + { + "id": "https://openalex.org/F4320334678", + "display_name": "European Research Council", + "ror": "https://ror.org/0472cxd90" + }, + { + "id": "https://openalex.org/F4320334960", + "display_name": "Seventh Framework Programme", + "ror": "https://ror.org/00k4n6c32" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 174, + "referenced_works": [ + "https://openalex.org/W40848148", + "https://openalex.org/W49160414", + "https://openalex.org/W50417968", + "https://openalex.org/W94565353", + "https://openalex.org/W104065991", + "https://openalex.org/W111803032", + "https://openalex.org/W182499956", + "https://openalex.org/W227277429", + "https://openalex.org/W303777154", + "https://openalex.org/W343638764", + "https://openalex.org/W1500188831", + "https://openalex.org/W1511885491", + "https://openalex.org/W1525270046", + "https://openalex.org/W1539811621", + "https://openalex.org/W1562564874", + "https://openalex.org/W1590929617", + "https://openalex.org/W1632866817", + "https://openalex.org/W1682665945", + "https://openalex.org/W1755563775", + "https://openalex.org/W1850275953", + "https://openalex.org/W1852495720", + "https://openalex.org/W1870083876", + "https://openalex.org/W1964650132", + "https://openalex.org/W1965392255", + "https://openalex.org/W1966845080", + "https://openalex.org/W1967077133", + "https://openalex.org/W1969082792", + "https://openalex.org/W1970195563", + "https://openalex.org/W1973246170", + "https://openalex.org/W1974785908", + "https://openalex.org/W1978259121", + "https://openalex.org/W1980906180", + "https://openalex.org/W1982725637", + "https://openalex.org/W1989811026", + "https://openalex.org/W1993482030", + "https://openalex.org/W2000045479", + "https://openalex.org/W2000215628", + "https://openalex.org/W2008560788", + "https://openalex.org/W2008751154", + "https://openalex.org/W2008972618", + "https://openalex.org/W2009235538", + "https://openalex.org/W2009685860", + "https://openalex.org/W2010417247", + "https://openalex.org/W2011179711", + "https://openalex.org/W2013912476", + "https://openalex.org/W2014565165", + "https://openalex.org/W2014617517", + "https://openalex.org/W2017948584", + "https://openalex.org/W2018282388", + "https://openalex.org/W2019219605", + "https://openalex.org/W2024165284", + "https://openalex.org/W2024166170", + "https://openalex.org/W2027559251", + "https://openalex.org/W2030790903", + "https://openalex.org/W2033332370", + "https://openalex.org/W2033393326", + "https://openalex.org/W2038920431", + "https://openalex.org/W2042901969", + "https://openalex.org/W2043034352", + "https://openalex.org/W2044777402", + "https://openalex.org/W2044901395", + "https://openalex.org/W2047680880", + "https://openalex.org/W2049063033", + "https://openalex.org/W2049878767", + "https://openalex.org/W2050968963", + "https://openalex.org/W2057503509", + "https://openalex.org/W2058236771", + "https://openalex.org/W2066392792", + "https://openalex.org/W2068425868", + "https://openalex.org/W2070013413", + "https://openalex.org/W2070135644", + "https://openalex.org/W2072139290", + "https://openalex.org/W2072509929", + "https://openalex.org/W2076214866", + "https://openalex.org/W2076603483", + "https://openalex.org/W2078314058", + "https://openalex.org/W2078465266", + "https://openalex.org/W2079705627", + "https://openalex.org/W2081106919", + "https://openalex.org/W2081504597", + "https://openalex.org/W2084313768", + "https://openalex.org/W2086261631", + "https://openalex.org/W2090705694", + "https://openalex.org/W2098171862", + "https://openalex.org/W2101641981", + "https://openalex.org/W2102892751", + "https://openalex.org/W2102937240", + "https://openalex.org/W2103392911", + "https://openalex.org/W2103537693", + "https://openalex.org/W2105186495", + "https://openalex.org/W2105724942", + "https://openalex.org/W2106221905", + "https://openalex.org/W2108138101", + "https://openalex.org/W2110322013", + "https://openalex.org/W2111885075", + "https://openalex.org/W2112487361", + "https://openalex.org/W2113055885", + "https://openalex.org/W2118550318", + "https://openalex.org/W2119412403", + "https://openalex.org/W2119741678", + "https://openalex.org/W2120186527", + "https://openalex.org/W2121739212", + "https://openalex.org/W2128203095", + "https://openalex.org/W2129914124", + "https://openalex.org/W2130026668", + "https://openalex.org/W2130629120", + "https://openalex.org/W2131746221", + "https://openalex.org/W2132639093", + "https://openalex.org/W2136023375", + "https://openalex.org/W2136559714", + "https://openalex.org/W2138996475", + "https://openalex.org/W2140862024", + "https://openalex.org/W2141280932", + "https://openalex.org/W2142486198", + "https://openalex.org/W2142638745", + "https://openalex.org/W2144070955", + "https://openalex.org/W2148507357", + "https://openalex.org/W2150059498", + "https://openalex.org/W2150204240", + "https://openalex.org/W2150273584", + "https://openalex.org/W2151139595", + "https://openalex.org/W2152044198", + "https://openalex.org/W2157615762", + "https://openalex.org/W2158218920", + "https://openalex.org/W2158670239", + "https://openalex.org/W2164278908", + "https://openalex.org/W2167083368", + "https://openalex.org/W2167430018", + "https://openalex.org/W2170668800", + "https://openalex.org/W2172195418", + "https://openalex.org/W2181680249", + "https://openalex.org/W2191558661", + "https://openalex.org/W2195165862", + "https://openalex.org/W2237941226", + "https://openalex.org/W2258054274", + "https://openalex.org/W2264065105", + "https://openalex.org/W2282347063", + "https://openalex.org/W2294755503", + "https://openalex.org/W2295739661", + "https://openalex.org/W2296319761", + "https://openalex.org/W2298042388", + "https://openalex.org/W2322520062", + "https://openalex.org/W2328976642", + "https://openalex.org/W2396803706", + "https://openalex.org/W2404578340", + "https://openalex.org/W2490308495", + "https://openalex.org/W2528907418", + "https://openalex.org/W2592422147", + "https://openalex.org/W2595142274", + "https://openalex.org/W2614404377", + "https://openalex.org/W2949940479", + "https://openalex.org/W2964313686", + "https://openalex.org/W3011953977", + "https://openalex.org/W3098973674", + "https://openalex.org/W3104141160", + "https://openalex.org/W3104226882", + "https://openalex.org/W3118552534", + "https://openalex.org/W4236462140", + "https://openalex.org/W4242209908", + "https://openalex.org/W4244393449", + "https://openalex.org/W4250589301", + "https://openalex.org/W4251986282", + "https://openalex.org/W4285719527", + "https://openalex.org/W4292363360", + "https://openalex.org/W4295910354", + "https://openalex.org/W4301014524", + "https://openalex.org/W6603861661", + "https://openalex.org/W6636705969", + "https://openalex.org/W6676039487", + "https://openalex.org/W6676820125", + "https://openalex.org/W6681015807", + "https://openalex.org/W6681780477", + "https://openalex.org/W6687535707", + "https://openalex.org/W6787650870" + ], + "related_works": [ + "https://openalex.org/W2071105597", + "https://openalex.org/W2242909499", + "https://openalex.org/W2405717268", + "https://openalex.org/W2946637708", + "https://openalex.org/W4235893778", + "https://openalex.org/W2100779717", + "https://openalex.org/W2901391673", + "https://openalex.org/W4376274937", + "https://openalex.org/W3189506985", + "https://openalex.org/W3022422766" + ], + "abstract_inverted_index": { + "Tensors": [ + 0, + 33 + ], + "or": [ + 1, + 8 + ], + "multiway": [ + 2 + ], + "arrays": [ + 3 + ], + "are": [ + 4, + 23 + ], + "functions": [ + 5, + 24 + ], + "of": [ + 6, + 25, + 63, + 112, + 174, + 178 + ], + "three": [ + 7 + ], + "more": [ + 9 + ], + "indices": [ + 10, + 27 + ], + "(i,": [ + 11 + ], + "j,": [ + 12 + ], + "k,": [ + 13 + ], + ".": [ + 14, + 15, + 16 + ], + ")-similar": [ + 17 + ], + "to": [ + 18, + 76, + 107, + 130, + 184, + 196 + ], + "matrices": [ + 19 + ], + "(two-way": [ + 20 + ], + "arrays),": [ + 21 + ], + "which": [ + 22 + ], + "two": [ + 26 + ], + "(r,": [ + 28 + ], + "c)": [ + 29 + ], + "for": [ + 30, + 82 + ], + "(row,": [ + 31 + ], + "column).": [ + 32 + ], + "have": [ + 34, + 50 + ], + "a": [ + 35, + 41, + 78 + ], + "rich": [ + 36 + ], + "history,": [ + 37 + ], + "stretching": [ + 38 + ], + "over": [ + 39 + ], + "almost": [ + 40 + ], + "century,": [ + 42 + ], + "and": [ + 43, + 57, + 69, + 84, + 90, + 100, + 114, + 128, + 139, + 158, + 165, + 168, + 190, + 200, + 204 + ], + "touching": [ + 44 + ], + "upon": [ + 45 + ], + "numerous": [ + 46 + ], + "disciplines;": [ + 47 + ], + "but": [ + 48, + 148 + ], + "they": [ + 49 + ], + "only": [ + 51 + ], + "recently": [ + 52 + ], + "become": [ + 53 + ], + "ubiquitous": [ + 54 + ], + "in": [ + 55, + 87, + 125, + 143 + ], + "signal": [ + 56, + 64 + ], + "data": [ + 58, + 67 + ], + "analytics": [ + 59 + ], + "at": [ + 60 + ], + "the": [ + 61 + ], + "confluence": [ + 62 + ], + "processing,": [ + 65 + ], + "statistics,": [ + 66 + ], + "mining,": [ + 68 + ], + "machine": [ + 70 + ], + "learning.": [ + 71, + 207 + ], + "This": [ + 72 + ], + "overview": [ + 73 + ], + "article": [ + 74 + ], + "aims": [ + 75 + ], + "provide": [ + 77 + ], + "good": [ + 79, + 172 + ], + "starting": [ + 80 + ], + "point": [ + 81 + ], + "researchers": [ + 83 + ], + "practitioners": [ + 85 + ], + "interested": [ + 86 + ], + "learning": [ + 88 + ], + "about": [ + 89 + ], + "working": [ + 91 + ], + "with": [ + 92 + ], + "tensors.": [ + 93 + ], + "As": [ + 94 + ], + "such,": [ + 95 + ], + "it": [ + 96 + ], + "focuses": [ + 97 + ], + "on": [ + 98 + ], + "fundamentals": [ + 99 + ], + "motivation": [ + 101 + ], + "(using": [ + 102 + ], + "various": [ + 103 + ], + "application": [ + 104 + ], + "examples),": [ + 105 + ], + "aiming": [ + 106 + ], + "strike": [ + 108 + ], + "an": [ + 109 + ], + "appropriate": [ + 110 + ], + "balance": [ + 111 + ], + "breadth": [ + 113 + ], + "depth": [ + 115 + ], + "that": [ + 116 + ], + "will": [ + 117 + ], + "enable": [ + 118 + ], + "someone": [ + 119 + ], + "having": [ + 120 + ], + "taken": [ + 121 + ], + "first": [ + 122 + ], + "graduate": [ + 123 + ], + "courses": [ + 124 + ], + "matrix": [ + 126 + ], + "algebra": [ + 127 + ], + "probability": [ + 129 + ], + "get": [ + 131 + ], + "started": [ + 132 + ], + "doing": [ + 133 + ], + "research": [ + 134 + ], + "and/or": [ + 135 + ], + "developing": [ + 136 + ], + "tensor": [ + 137, + 156, + 162 + ], + "algorithms": [ + 138, + 179 + ], + "software.": [ + 140 + ], + "Some": [ + 141 + ], + "background": [ + 142 + ], + "applied": [ + 144 + ], + "optimization": [ + 145, + 183 + ], + "is": [ + 146 + ], + "useful": [ + 147 + ], + "not": [ + 149 + ], + "strictly": [ + 150 + ], + "required.": [ + 151 + ], + "The": [ + 152 + ], + "material": [ + 153 + ], + "covered": [ + 154 + ], + "includes": [ + 155 + ], + "rank": [ + 157, + 159 + ], + "decomposition;": [ + 160 + ], + "basic": [ + 161 + ], + "factorization": [ + 163 + ], + "models": [ + 164 + ], + "their": [ + 166 + ], + "relationships": [ + 167 + ], + "properties": [ + 169 + ], + "(including": [ + 170 + ], + "fairly": [ + 171 + ], + "coverage": [ + 173, + 177 + ], + "identifiability);": [ + 175 + ], + "broad": [ + 176 + ], + "ranging": [ + 180, + 192 + ], + "from": [ + 181, + 193 + ], + "alternating": [ + 182 + ], + "stochastic": [ + 185 + ], + "gradient;": [ + 186 + ], + "statistical": [ + 187 + ], + "performance": [ + 188 + ], + "analysis;": [ + 189 + ], + "applications": [ + 191 + ], + "source": [ + 194 + ], + "separation": [ + 195 + ], + "collaborative": [ + 197 + ], + "filtering,": [ + 198 + ], + "mixture": [ + 199 + ], + "topic": [ + 201 + ], + "modeling,": [ + 202 + ], + "classification,": [ + 203 + ], + "multilinear": [ + 205 + ], + "subspace": [ + 206 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 51 + }, + { + "year": 2025, + "cited_by_count": 180 + }, + { + "year": 2024, + "cited_by_count": 149 + }, + { + "year": 2023, + "cited_by_count": 151 + }, + { + "year": 2022, + "cited_by_count": 216 + }, + { + "year": 2021, + "cited_by_count": 245 + }, + { + "year": 2020, + "cited_by_count": 223 + }, + { + "year": 2019, + "cited_by_count": 200 + }, + { + "year": 2018, + "cited_by_count": 129 + }, + { + "year": 2017, + "cited_by_count": 43 + }, + { + "year": 2016, + "cited_by_count": 6 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2588978745", + "doi": "https://doi.org/10.1148/rg.2017160130", + "title": "Machine Learning for Medical Imaging", + "display_name": "Machine Learning for Medical Imaging", + "relevance_score": 2574.9812, + "publication_year": 2017, + "publication_date": "2017-02-17", + "ids": { + "openalex": "https://openalex.org/W2588978745", + "doi": "https://doi.org/10.1148/rg.2017160130", + "mag": "2588978745", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/28212054" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1148/rg.2017160130", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1148/rg.2017160130", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S26381749", + "display_name": "Radiographics", + "issn_l": "0271-5333", + "issn": [ + "0271-5333", + "1527-1323" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315931", + "host_organization_name": "Radiological Society of North America", + "host_organization_lineage": [ + "https://openalex.org/P4310315931" + ], + "host_organization_lineage_names": [ + "Radiological Society of North America" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "RadioGraphics", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "crossref", + "pubmed" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5008832314", + "display_name": "Bradley J. Erickson", + "orcid": "https://orcid.org/0000-0001-7926-6095" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Bradley J. Erickson", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5053303391", + "display_name": "Panagiotis Korfiatis", + "orcid": "https://orcid.org/0000-0003-2516-1751" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Panagiotis Korfiatis", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5052077725", + "display_name": "Zeynettin Akkus", + "orcid": "https://orcid.org/0000-0003-3920-1515" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Zeynettin Akkus", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5016336723", + "display_name": "Timothy L. Kline", + "orcid": "https://orcid.org/0000-0002-7917-9853" + }, + "institutions": [ + { + "id": "https://openalex.org/I1330342723", + "display_name": "Mayo Clinic", + "ror": "https://ror.org/02qp3tb03", + "country_code": "US", + "type": "funder", + "lineage": [ + "https://openalex.org/I1330342723" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Timothy L. Kline", + "raw_affiliation_strings": [ + "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "From the Department of Radiology, Mayo Clinic, 200 First St SW, Rochester, MN 55905", + "institution_ids": [ + "https://openalex.org/I1330342723" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5008832314" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1330342723" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 85.7828, + "has_fulltext": false, + "cited_by_count": 1624, + "citation_normalized_percentile": { + "value": 0.99931379, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "37", + "issue": "2", + "first_page": "505", + "last_page": "515" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12422", + "display_name": "Radiomics and Machine Learning in Medical Imaging", + "score": 0.9991000294685364, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11775", + "display_name": "COVID-19 diagnosis using AI", + "score": 0.994700014591217, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7838993072509766 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7787308096885681 + }, + { + "id": "https://openalex.org/keywords/medical-diagnosis", + "display_name": "Medical diagnosis", + "score": 0.6961835026741028 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.5870267152786255 + }, + { + "id": "https://openalex.org/keywords/medical-imaging", + "display_name": "Medical imaging", + "score": 0.5376978516578674 + }, + { + "id": "https://openalex.org/keywords/rendering", + "display_name": "Rendering (computer graphics)", + "score": 0.5225207805633545 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.4827798902988434 + }, + { + "id": "https://openalex.org/keywords/process", + "display_name": "Process (computing)", + "score": 0.46324601769447327 + }, + { + "id": "https://openalex.org/keywords/identification", + "display_name": "Identification (biology)", + "score": 0.4527209401130676 + }, + { + "id": "https://openalex.org/keywords/deep-learning", + "display_name": "Deep learning", + "score": 0.4446392059326172 + }, + { + "id": "https://openalex.org/keywords/metric", + "display_name": "Metric (unit)", + "score": 0.4362000823020935 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2772611975669861 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7838993072509766 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7787308096885681 + }, + { + "id": "https://openalex.org/C534262118", + "wikidata": "https://www.wikidata.org/wiki/Q177719", + "display_name": "Medical diagnosis", + "level": 2, + "score": 0.6961835026741028 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.5870267152786255 + }, + { + "id": "https://openalex.org/C31601959", + "wikidata": "https://www.wikidata.org/wiki/Q931309", + "display_name": "Medical imaging", + "level": 2, + "score": 0.5376978516578674 + }, + { + "id": "https://openalex.org/C205711294", + "wikidata": "https://www.wikidata.org/wiki/Q176953", + "display_name": "Rendering (computer graphics)", + "level": 2, + "score": 0.5225207805633545 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.4827798902988434 + }, + { + "id": "https://openalex.org/C98045186", + "wikidata": "https://www.wikidata.org/wiki/Q205663", + "display_name": "Process (computing)", + "level": 2, + "score": 0.46324601769447327 + }, + { + "id": "https://openalex.org/C116834253", + "wikidata": "https://www.wikidata.org/wiki/Q2039217", + "display_name": "Identification (biology)", + "level": 2, + "score": 0.4527209401130676 + }, + { + "id": "https://openalex.org/C108583219", + "wikidata": "https://www.wikidata.org/wiki/Q197536", + "display_name": "Deep learning", + "level": 2, + "score": 0.4446392059326172 + }, + { + "id": "https://openalex.org/C176217482", + "wikidata": "https://www.wikidata.org/wiki/Q860554", + "display_name": "Metric (unit)", + "level": 2, + "score": 0.4362000823020935 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2772611975669861 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C59822182", + "wikidata": "https://www.wikidata.org/wiki/Q441", + "display_name": "Botany", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C162324750", + "wikidata": "https://www.wikidata.org/wiki/Q8134", + "display_name": "Economics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C86803240", + "wikidata": "https://www.wikidata.org/wiki/Q420", + "display_name": "Biology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C21547014", + "wikidata": "https://www.wikidata.org/wiki/Q1423657", + "display_name": "Operations management", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111919701", + "wikidata": "https://www.wikidata.org/wiki/Q9135", + "display_name": "Operating system", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003952", + "descriptor_name": "Diagnostic Imaging", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D007090", + "descriptor_name": "Image Interpretation, Computer-Assisted", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1148/rg.2017160130", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1148/rg.2017160130", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S26381749", + "display_name": "Radiographics", + "issn_l": "0271-5333", + "issn": [ + "0271-5333", + "1527-1323" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310315931", + "host_organization_name": "Radiological Society of North America", + "host_organization_lineage": [ + "https://openalex.org/P4310315931" + ], + "host_organization_lineage_names": [ + "Radiological Society of North America" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "RadioGraphics", + "raw_type": "journal-article" + }, + { + "id": "pmid:28212054", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/28212054", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Radiographics : a review publication of the Radiological Society of North America, Inc", + "raw_type": null + }, + { + "id": "pmh:oai:europepmc.org:4343850", + "is_oa": false, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/5375621", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [ + { + "score": 0.49000000953674316, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [ + { + "id": "https://openalex.org/G392204494", + "display_name": null, + "funder_award_id": "DK90728", + "funder_id": "https://openalex.org/F4320337351", + "funder_display_name": "National Cancer Institute" + }, + { + "id": "https://openalex.org/G7637728122", + "display_name": null, + "funder_award_id": "206g16a", + "funder_id": "https://openalex.org/F4320306478", + "funder_display_name": "PKD Foundation" + }, + { + "id": "https://openalex.org/G7783623847", + "display_name": null, + "funder_award_id": "CA160045", + "funder_id": "https://openalex.org/F4320337351", + "funder_display_name": "National Cancer Institute" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306478", + "display_name": "PKD Foundation", + "ror": "https://ror.org/05g0xkn45" + }, + { + "id": "https://openalex.org/F4320337351", + "display_name": "National Cancer Institute", + "ror": "https://ror.org/040gcmg81" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 59, + "referenced_works": [ + "https://openalex.org/W56743589", + "https://openalex.org/W1481460540", + "https://openalex.org/W1485026097", + "https://openalex.org/W1539741229", + "https://openalex.org/W1563088657", + "https://openalex.org/W1597405158", + "https://openalex.org/W1632778076", + "https://openalex.org/W1945544474", + "https://openalex.org/W1971022913", + "https://openalex.org/W1972070393", + "https://openalex.org/W1977513632", + "https://openalex.org/W1981552604", + "https://openalex.org/W1984992673", + "https://openalex.org/W1990368529", + "https://openalex.org/W1995450389", + "https://openalex.org/W1998871699", + "https://openalex.org/W2014711341", + "https://openalex.org/W2028053538", + "https://openalex.org/W2032026767", + "https://openalex.org/W2050997943", + "https://openalex.org/W2052604140", + "https://openalex.org/W2062227835", + "https://openalex.org/W2067191022", + "https://openalex.org/W2080915836", + "https://openalex.org/W2083780116", + "https://openalex.org/W2095705004", + "https://openalex.org/W2096798358", + "https://openalex.org/W2097117768", + "https://openalex.org/W2100736366", + "https://openalex.org/W2103868202", + "https://openalex.org/W2112525988", + "https://openalex.org/W2112796928", + "https://openalex.org/W2117539524", + "https://openalex.org/W2119387367", + "https://openalex.org/W2120111102", + "https://openalex.org/W2122111042", + "https://openalex.org/W2123498585", + "https://openalex.org/W2130623086", + "https://openalex.org/W2137983211", + "https://openalex.org/W2142730785", + "https://openalex.org/W2144412017", + "https://openalex.org/W2145343783", + "https://openalex.org/W2165428595", + "https://openalex.org/W2168217710", + "https://openalex.org/W2248644291", + "https://openalex.org/W2271840356", + "https://openalex.org/W2573231840", + "https://openalex.org/W2604272474", + "https://openalex.org/W2911964244", + "https://openalex.org/W3017143921", + "https://openalex.org/W3022861191", + "https://openalex.org/W3104887532", + "https://openalex.org/W4212883601", + "https://openalex.org/W4234556776", + "https://openalex.org/W4236137412", + "https://openalex.org/W4246484440", + "https://openalex.org/W4299689471", + "https://openalex.org/W6636708973", + "https://openalex.org/W6674914833" + ], + "related_works": [ + "https://openalex.org/W4249377076", + "https://openalex.org/W4210389441", + "https://openalex.org/W4375867731", + "https://openalex.org/W2395241803", + "https://openalex.org/W2003211637", + "https://openalex.org/W2021488205", + "https://openalex.org/W3024479225", + "https://openalex.org/W3171371563", + "https://openalex.org/W2995680918", + "https://openalex.org/W3003847115" + ], + "abstract_inverted_index": { + "RSNA,": [ + 0 + ], + "2017.": [ + 1 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 52 + }, + { + "year": 2025, + "cited_by_count": 189 + }, + { + "year": 2024, + "cited_by_count": 209 + }, + { + "year": 2023, + "cited_by_count": 278 + }, + { + "year": 2022, + "cited_by_count": 212 + }, + { + "year": 2021, + "cited_by_count": 266 + }, + { + "year": 2020, + "cited_by_count": 186 + }, + { + "year": 2019, + "cited_by_count": 140 + }, + { + "year": 2018, + "cited_by_count": 63 + }, + { + "year": 2017, + "cited_by_count": 23 + }, + { + "year": 2015, + "cited_by_count": 2 + }, + { + "year": 2014, + "cited_by_count": 1 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1985987493", + "doi": "https://doi.org/10.1109/sp.2010.25", + "title": "Outside the Closed World: On Using Machine Learning for Network Intrusion Detection", + "display_name": "Outside the Closed World: On Using Machine Learning for Network Intrusion Detection", + "relevance_score": 2572.306, + "publication_year": 2010, + "publication_date": "2010-01-01", + "ids": { + "openalex": "https://openalex.org/W1985987493", + "doi": "https://doi.org/10.1109/sp.2010.25", + "mag": "1985987493" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/sp.2010.25", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2010.25", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2010 IEEE Symposium on Security and Privacy", + "raw_type": "proceedings-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5015612893", + "display_name": "Robin Sommer", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1297971548", + "display_name": "International Computer Science Institute", + "ror": "https://ror.org/01ewh7m12", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I1297971548" + ] + }, + { + "id": "https://openalex.org/I148283060", + "display_name": "Lawrence Berkeley National Laboratory", + "ror": "https://ror.org/02jbv0t02", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I148283060", + "https://openalex.org/I39565521" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Robin Sommer", + "raw_affiliation_strings": [ + "Lawrence Berkeley National Laboratory, International Computer Science Institute, USA", + "Int. Comput. Sci. Inst., Lawrence Berkeley Nat. Lab., Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Lawrence Berkeley National Laboratory, International Computer Science Institute, USA", + "institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I148283060" + ] + }, + { + "raw_affiliation_string": "Int. Comput. Sci. Inst., Lawrence Berkeley Nat. Lab., Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I148283060" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5002219113", + "display_name": "Vern Paxson", + "orcid": "https://orcid.org/0009-0005-2673-543X" + }, + "institutions": [ + { + "id": "https://openalex.org/I1297971548", + "display_name": "International Computer Science Institute", + "ror": "https://ror.org/01ewh7m12", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I1297971548" + ] + }, + { + "id": "https://openalex.org/I95457486", + "display_name": "University of California, Berkeley", + "ror": "https://ror.org/01an7q238", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I95457486" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Vern Paxson", + "raw_affiliation_strings": [ + "International Computer Science Institute, University of California, Berkeley, USA", + "Int. Comput. Sci. Inst., Univ. of California, Berkeley, CA, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "International Computer Science Institute, University of California, Berkeley, USA", + "institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I95457486" + ] + }, + { + "raw_affiliation_string": "Int. Comput. Sci. Inst., Univ. of California, Berkeley, CA, USA", + "institution_ids": [ + "https://openalex.org/I95457486" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5015612893" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1297971548", + "https://openalex.org/I148283060" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 53.6749, + "has_fulltext": false, + "cited_by_count": 1827, + "citation_normalized_percentile": { + "value": 0.99950798, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "305", + "last_page": "316" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10400", + "display_name": "Network Security and Intrusion Detection", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11598", + "display_name": "Internet Traffic Analysis and Secure E-voting", + "score": 0.9998000264167786, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9995999932289124, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/intrusion-detection-system", + "display_name": "Intrusion detection system", + "score": 0.8441348075866699 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7383659482002258 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6644471883773804 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6305571794509888 + }, + { + "id": "https://openalex.org/keywords/anomaly-detection", + "display_name": "Anomaly detection", + "score": 0.6277502179145813 + }, + { + "id": "https://openalex.org/keywords/anomaly-based-intrusion-detection-system", + "display_name": "Anomaly-based intrusion detection system", + "score": 0.5756117701530457 + }, + { + "id": "https://openalex.org/keywords/task", + "display_name": "Task (project management)", + "score": 0.4769274592399597 + }, + { + "id": "https://openalex.org/keywords/intrusion", + "display_name": "Intrusion", + "score": 0.4673961102962494 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4657863676548004 + }, + { + "id": "https://openalex.org/keywords/intrusion-prevention-system", + "display_name": "Intrusion prevention system", + "score": 0.45944297313690186 + }, + { + "id": "https://openalex.org/keywords/learning-network", + "display_name": "Learning network", + "score": 0.4306923449039459 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.339436411857605 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.18274590373039246 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C35525427", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion detection system", + "level": 2, + "score": 0.8441348075866699 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7383659482002258 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6644471883773804 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6305571794509888 + }, + { + "id": "https://openalex.org/C739882", + "wikidata": "https://www.wikidata.org/wiki/Q3560506", + "display_name": "Anomaly detection", + "level": 2, + "score": 0.6277502179145813 + }, + { + "id": "https://openalex.org/C137524506", + "wikidata": "https://www.wikidata.org/wiki/Q2247688", + "display_name": "Anomaly-based intrusion detection system", + "level": 3, + "score": 0.5756117701530457 + }, + { + "id": "https://openalex.org/C2780451532", + "wikidata": "https://www.wikidata.org/wiki/Q759676", + "display_name": "Task (project management)", + "level": 2, + "score": 0.4769274592399597 + }, + { + "id": "https://openalex.org/C158251709", + "wikidata": "https://www.wikidata.org/wiki/Q354025", + "display_name": "Intrusion", + "level": 2, + "score": 0.4673961102962494 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4657863676548004 + }, + { + "id": "https://openalex.org/C27061796", + "wikidata": "https://www.wikidata.org/wiki/Q745881", + "display_name": "Intrusion prevention system", + "level": 3, + "score": 0.45944297313690186 + }, + { + "id": "https://openalex.org/C2987015589", + "wikidata": "https://www.wikidata.org/wiki/Q1040098", + "display_name": "Learning network", + "level": 2, + "score": 0.4306923449039459 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.339436411857605 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.18274590373039246 + }, + { + "id": "https://openalex.org/C127313418", + "wikidata": "https://www.wikidata.org/wiki/Q1069", + "display_name": "Geology", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C17409809", + "wikidata": "https://www.wikidata.org/wiki/Q161764", + "display_name": "Geochemistry", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C201995342", + "wikidata": "https://www.wikidata.org/wiki/Q682496", + "display_name": "Systems engineering", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/sp.2010.25", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/sp.2010.25", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "2010 IEEE Symposium on Security and Privacy", + "raw_type": "proceedings-article" + }, + { + "id": "pmh:oai:CiteSeerX.psu:10.1.1.212.1482", + "is_oa": false, + "landing_page_url": "http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.212.1482", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "http://www.icir.org/robin/papers/oakland10-ml.pdf", + "raw_type": "text" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 73, + "referenced_works": [ + "https://openalex.org/W6091113", + "https://openalex.org/W105475431", + "https://openalex.org/W191098608", + "https://openalex.org/W1490025813", + "https://openalex.org/W1490760466", + "https://openalex.org/W1510508184", + "https://openalex.org/W1512586648", + "https://openalex.org/W1516506771", + "https://openalex.org/W1545904932", + "https://openalex.org/W1570448133", + "https://openalex.org/W1573594453", + "https://openalex.org/W1582482241", + "https://openalex.org/W1590936031", + "https://openalex.org/W1591480890", + "https://openalex.org/W1602011302", + "https://openalex.org/W1805704774", + "https://openalex.org/W1986697120", + "https://openalex.org/W1988918299", + "https://openalex.org/W1989121667", + "https://openalex.org/W1999427165", + "https://openalex.org/W2001642682", + "https://openalex.org/W2021795960", + "https://openalex.org/W2032247543", + "https://openalex.org/W2048465382", + "https://openalex.org/W2058737869", + "https://openalex.org/W2069734023", + "https://openalex.org/W2087922528", + "https://openalex.org/W2096431803", + "https://openalex.org/W2096847629", + "https://openalex.org/W2102101901", + "https://openalex.org/W2102399005", + "https://openalex.org/W2103018059", + "https://openalex.org/W2103042216", + "https://openalex.org/W2103378897", + "https://openalex.org/W2108638430", + "https://openalex.org/W2117646649", + "https://openalex.org/W2119168550", + "https://openalex.org/W2122646361", + "https://openalex.org/W2125735062", + "https://openalex.org/W2130087897", + "https://openalex.org/W2130523241", + "https://openalex.org/W2135930857", + "https://openalex.org/W2147215426", + "https://openalex.org/W2149544709", + "https://openalex.org/W2150847526", + "https://openalex.org/W2151298633", + "https://openalex.org/W2155409100", + "https://openalex.org/W2156916299", + "https://openalex.org/W2159094788", + "https://openalex.org/W2168761028", + "https://openalex.org/W2171873915", + "https://openalex.org/W2275675895", + "https://openalex.org/W2341535507", + "https://openalex.org/W2404193357", + "https://openalex.org/W2966207845", + "https://openalex.org/W3005635621", + "https://openalex.org/W3208688400", + "https://openalex.org/W3216912485", + "https://openalex.org/W4230513520", + "https://openalex.org/W4230946174", + "https://openalex.org/W4253289766", + "https://openalex.org/W6604348779", + "https://openalex.org/W6607784307", + "https://openalex.org/W6630637722", + "https://openalex.org/W6630758996", + "https://openalex.org/W6635150131", + "https://openalex.org/W6638227319", + "https://openalex.org/W6650820226", + "https://openalex.org/W6674805939", + "https://openalex.org/W6679027663", + "https://openalex.org/W6680267248", + "https://openalex.org/W6694748896", + "https://openalex.org/W6713347195" + ], + "related_works": [ + "https://openalex.org/W2357468538", + "https://openalex.org/W2362800560", + "https://openalex.org/W4300599821", + "https://openalex.org/W2355007334", + "https://openalex.org/W1496376327", + "https://openalex.org/W2133389611", + "https://openalex.org/W2383127772", + "https://openalex.org/W2348767155", + "https://openalex.org/W2374614522", + "https://openalex.org/W1937493481" + ], + "abstract_inverted_index": { + "In": [ + 0 + ], + "network": [ + 1, + 78, + 133 + ], + "intrusion": [ + 2, + 59, + 79, + 116, + 134 + ], + "detection": [ + 3, + 60, + 80, + 117 + ], + "research,": [ + 4 + ], + "one": [ + 5, + 43 + ], + "popular": [ + 6 + ], + "strategy": [ + 7 + ], + "for": [ + 8, + 16, + 114 + ], + "finding": [ + 9, + 101 + ], + "attacks": [ + 10, + 102 + ], + "is": [ + 11, + 64, + 96, + 103 + ], + "monitoring": [ + 12 + ], + "a": [ + 13, + 45, + 138 + ], + "network's": [ + 14 + ], + "activity": [ + 15 + ], + "anomalies:": [ + 17 + ], + "deviations": [ + 18 + ], + "from": [ + 19, + 25, + 33, + 106 + ], + "profiles": [ + 20 + ], + "of": [ + 21, + 50, + 53, + 100, + 140 + ], + "normality": [ + 22 + ], + "previously": [ + 23 + ], + "learned": [ + 24 + ], + "benign": [ + 26 + ], + "traffic,": [ + 27 + ], + "typically": [ + 28 + ], + "identified": [ + 29 + ], + "using": [ + 30 + ], + "tools": [ + 31 + ], + "borrowed": [ + 32 + ], + "the": [ + 34, + 74, + 77, + 98, + 115 + ], + "machine": [ + 35, + 62, + 86, + 121 + ], + "learning": [ + 36, + 63, + 87, + 122 + ], + "community.": [ + 37 + ], + "However,": [ + 38 + ], + "despite": [ + 39 + ], + "extensive": [ + 40 + ], + "academic": [ + 41 + ], + "research": [ + 42, + 146 + ], + "finds": [ + 44, + 89 + ], + "striking": [ + 46 + ], + "gap": [ + 47 + ], + "in": [ + 48, + 67 + ], + "terms": [ + 49 + ], + "actual": [ + 51 + ], + "deployments": [ + 52 + ], + "such": [ + 54 + ], + "systems:": [ + 55 + ], + "compared": [ + 56 + ], + "with": [ + 57 + ], + "other": [ + 58, + 83, + 108 + ], + "approaches,": [ + 61 + ], + "rarely": [ + 65 + ], + "employed": [ + 66 + ], + "operational": [ + 68 + ], + "\"real": [ + 69 + ], + "world\"": [ + 70 + ], + "settings.": [ + 71 + ], + "We": [ + 72, + 124 + ], + "examine": [ + 73 + ], + "differences": [ + 75 + ], + "between": [ + 76 + ], + "problem": [ + 81 + ], + "and": [ + 82, + 136 + ], + "areas": [ + 84 + ], + "where": [ + 85 + ], + "regularly": [ + 88 + ], + "much": [ + 90 + ], + "more": [ + 91 + ], + "success.": [ + 92 + ], + "Our": [ + 93 + ], + "main": [ + 94 + ], + "claim": [ + 95, + 127 + ], + "that": [ + 97 + ], + "task": [ + 99 + ], + "fundamentally": [ + 104 + ], + "different": [ + 105 + ], + "these": [ + 107 + ], + "applications,": [ + 109 + ], + "making": [ + 110 + ], + "it": [ + 111 + ], + "significantly": [ + 112 + ], + "harder": [ + 113 + ], + "community": [ + 118 + ], + "to": [ + 119, + 132, + 143 + ], + "employ": [ + 120 + ], + "effectively.": [ + 123 + ], + "support": [ + 125 + ], + "this": [ + 126 + ], + "by": [ + 128 + ], + "identifying": [ + 129 + ], + "challenges": [ + 130 + ], + "particular": [ + 131 + ], + "detection,": [ + 135 + ], + "provide": [ + 137 + ], + "set": [ + 139 + ], + "guidelines": [ + 141 + ], + "meant": [ + 142 + ], + "strengthen": [ + 144 + ], + "future": [ + 145 + ], + "on": [ + 147 + ], + "anomaly": [ + 148 + ], + "detection.": [ + 149 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 92 + }, + { + "year": 2025, + "cited_by_count": 271 + }, + { + "year": 2024, + "cited_by_count": 159 + }, + { + "year": 2023, + "cited_by_count": 98 + }, + { + "year": 2022, + "cited_by_count": 109 + }, + { + "year": 2021, + "cited_by_count": 127 + }, + { + "year": 2020, + "cited_by_count": 162 + }, + { + "year": 2019, + "cited_by_count": 195 + }, + { + "year": 2018, + "cited_by_count": 136 + }, + { + "year": 2017, + "cited_by_count": 113 + }, + { + "year": 2016, + "cited_by_count": 98 + }, + { + "year": 2015, + "cited_by_count": 65 + }, + { + "year": 2014, + "cited_by_count": 58 + }, + { + "year": 2013, + "cited_by_count": 60 + }, + { + "year": 2012, + "cited_by_count": 43 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1529533208", + "doi": "https://doi.org/10.1109/jproc.2015.2483592", + "title": "A Review of Relational Machine Learning for Knowledge Graphs", + "display_name": "A Review of Relational Machine Learning for Knowledge Graphs", + "relevance_score": 2569.3381, + "publication_year": 2015, + "publication_date": "2015-12-17", + "ids": { + "openalex": "https://openalex.org/W1529533208", + "doi": "https://doi.org/10.1109/jproc.2015.2483592", + "mag": "1529533208" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/jproc.2015.2483592", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/jproc.2015.2483592", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S68686220", + "display_name": "Proceedings of the IEEE", + "issn_l": "0018-9219", + "issn": [ + "0018-9219", + "1558-2256" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the IEEE", + "raw_type": "journal-article" + }, + "type": "review", + "indexed_in": [ + "arxiv", + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1503.00759", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5000667901", + "display_name": "Maximilian Nickel", + "orcid": "https://orcid.org/0000-0001-5006-0827" + }, + "institutions": [ + { + "id": "https://openalex.org/I63966007", + "display_name": "Massachusetts Institute of Technology", + "ror": "https://ror.org/042nb2s44", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I63966007" + ] + }, + { + "id": "https://openalex.org/I30771326", + "display_name": "Italian Institute of Technology", + "ror": "https://ror.org/042t93s57", + "country_code": "IT", + "type": "facility", + "lineage": [ + "https://openalex.org/I30771326" + ] + } + ], + "countries": [ + "IT", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Maximilian Nickel", + "raw_affiliation_strings": [ + "Laboratory for Computational and Statistical Learning (LCSL), Istituto Italiano di Tecnologia, Genova, MA, Italy", + "[Laboratory for Computational and Statistical Learning (LCSL), Massachusetts Institute of Technology, Cambridge, MA, USA]" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Laboratory for Computational and Statistical Learning (LCSL), Istituto Italiano di Tecnologia, Genova, MA, Italy", + "institution_ids": [ + "https://openalex.org/I30771326" + ] + }, + { + "raw_affiliation_string": "[Laboratory for Computational and Statistical Learning (LCSL), Massachusetts Institute of Technology, Cambridge, MA, USA]", + "institution_ids": [ + "https://openalex.org/I63966007" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5002713363", + "display_name": "Kevin Murphy", + "orcid": "https://orcid.org/0000-0001-5196-7236" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Kevin Murphy", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA", + "Google Inc., Mountain View, CA USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google Inc., Mountain View, CA USA", + "institution_ids": [] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074808403", + "display_name": "Volker Tresp", + "orcid": "https://orcid.org/0000-0001-9428-3686" + }, + "institutions": [ + { + "id": "https://openalex.org/I8204097", + "display_name": "Ludwig-Maximilians-Universität München", + "ror": "https://ror.org/05591te55", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I8204097" + ] + }, + { + "id": "https://openalex.org/I1325886976", + "display_name": "Siemens (Germany)", + "ror": "https://ror.org/059mq0909", + "country_code": "DE", + "type": "company", + "lineage": [ + "https://openalex.org/I1325886976" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Volker Tresp", + "raw_affiliation_strings": [ + "Siemens AG, Corporate Technology, Ludwig Maximilian University of Munich, Munich, Germany", + "Siemens AG, Corporate Technology, Munich, Germany#TAB#" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Siemens AG, Corporate Technology, Ludwig Maximilian University of Munich, Munich, Germany", + "institution_ids": [ + "https://openalex.org/I1325886976", + "https://openalex.org/I8204097" + ] + }, + { + "raw_affiliation_string": "Siemens AG, Corporate Technology, Munich, Germany#TAB#", + "institution_ids": [ + "https://openalex.org/I1325886976" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5013932834", + "display_name": "Evgeniy Gabrilovich", + "orcid": "https://orcid.org/0000-0001-7933-1926" + }, + "institutions": [ + { + "id": "https://openalex.org/I1291425158", + "display_name": "Google (United States)", + "ror": "https://ror.org/00njsd438", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I1291425158", + "https://openalex.org/I4210128969" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Evgeniy Gabrilovich", + "raw_affiliation_strings": [ + "Google Inc., Mountain View, CA, USA", + "Google Inc., Mountain View, CA USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Google Inc., Mountain View, CA, USA", + "institution_ids": [ + "https://openalex.org/I1291425158" + ] + }, + { + "raw_affiliation_string": "Google Inc., Mountain View, CA USA", + "institution_ids": [] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 3, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5000667901" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I30771326", + "https://openalex.org/I63966007" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 124.23, + "has_fulltext": false, + "cited_by_count": 1637, + "citation_normalized_percentile": { + "value": 0.99972151, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "104", + "issue": "1", + "first_page": "11", + "last_page": "33" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11273", + "display_name": "Advanced Graph Neural Networks", + "score": 0.916700005531311, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11273", + "display_name": "Advanced Graph Neural Networks", + "score": 0.916700005531311, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11303", + "display_name": "Bayesian Modeling and Causal Inference", + "score": 0.00989999994635582, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12292", + "display_name": "Graph Theory and Algorithms", + "score": 0.007799999788403511, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/statistical-relational-learning", + "display_name": "Statistical relational learning", + "score": 0.7889400720596313 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7375805377960205 + }, + { + "id": "https://openalex.org/keywords/knowledge-graph", + "display_name": "Knowledge graph", + "score": 0.5366183519363403 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5131645798683167 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.5024473667144775 + }, + { + "id": "https://openalex.org/keywords/graph", + "display_name": "Graph", + "score": 0.451494425535202 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.43196582794189453 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.42936253547668457 + }, + { + "id": "https://openalex.org/keywords/observable", + "display_name": "Observable", + "score": 0.4168981909751892 + }, + { + "id": "https://openalex.org/keywords/relational-model", + "display_name": "Relational model", + "score": 0.4146842658519745 + }, + { + "id": "https://openalex.org/keywords/relational-database", + "display_name": "Relational database", + "score": 0.414201021194458 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C177877439", + "wikidata": "https://www.wikidata.org/wiki/Q7604413", + "display_name": "Statistical relational learning", + "level": 3, + "score": 0.7889400720596313 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7375805377960205 + }, + { + "id": "https://openalex.org/C2987255567", + "wikidata": "https://www.wikidata.org/wiki/Q33002955", + "display_name": "Knowledge graph", + "level": 2, + "score": 0.5366183519363403 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5131645798683167 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.5024473667144775 + }, + { + "id": "https://openalex.org/C132525143", + "wikidata": "https://www.wikidata.org/wiki/Q141488", + "display_name": "Graph", + "level": 2, + "score": 0.451494425535202 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.43196582794189453 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.42936253547668457 + }, + { + "id": "https://openalex.org/C32848918", + "wikidata": "https://www.wikidata.org/wiki/Q845789", + "display_name": "Observable", + "level": 2, + "score": 0.4168981909751892 + }, + { + "id": "https://openalex.org/C40207289", + "wikidata": "https://www.wikidata.org/wiki/Q755662", + "display_name": "Relational model", + "level": 3, + "score": 0.4146842658519745 + }, + { + "id": "https://openalex.org/C5655090", + "wikidata": "https://www.wikidata.org/wiki/Q192588", + "display_name": "Relational database", + "level": 2, + "score": 0.414201021194458 + }, + { + "id": "https://openalex.org/C121332964", + "wikidata": "https://www.wikidata.org/wiki/Q413", + "display_name": "Physics", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C62520636", + "wikidata": "https://www.wikidata.org/wiki/Q944", + "display_name": "Quantum mechanics", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1109/jproc.2015.2483592", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1109/jproc.2015.2483592", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S68686220", + "display_name": "Proceedings of the IEEE", + "issn_l": "0018-9219", + "issn": [ + "0018-9219", + "1558-2256" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Proceedings of the IEEE", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1503.00759", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1503.00759", + "pdf_url": "https://arxiv.org/pdf/1503.00759", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:dspace.mit.edu:1721.1/100193", + "is_oa": true, + "landing_page_url": "http://hdl.handle.net/1721.1/100193", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400425", + "display_name": "DSpace@MIT (Massachusetts Institute of Technology)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I63966007", + "host_organization_name": "Massachusetts Institute of Technology", + "host_organization_lineage": [ + "https://openalex.org/I63966007" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-nc", + "license_id": "https://openalex.org/licenses/cc-by-nc", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Other" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1503.00759", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1503.00759", + "pdf_url": "https://arxiv.org/pdf/1503.00759", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + "sustainable_development_goals": [ + { + "score": 0.5400000214576721, + "id": "https://metadata.un.org/sdg/4", + "display_name": "Quality Education" + } + ], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 213, + "referenced_works": [ + "https://openalex.org/W28412257", + "https://openalex.org/W92973652", + "https://openalex.org/W94565353", + "https://openalex.org/W102708294", + "https://openalex.org/W109245773", + "https://openalex.org/W114517082", + "https://openalex.org/W156542065", + "https://openalex.org/W200741916", + "https://openalex.org/W203049729", + "https://openalex.org/W204615560", + "https://openalex.org/W205829674", + "https://openalex.org/W340632675", + "https://openalex.org/W1483236033", + "https://openalex.org/W1487060125", + "https://openalex.org/W1497523460", + "https://openalex.org/W1503398984", + "https://openalex.org/W1510675600", + "https://openalex.org/W1511986666", + "https://openalex.org/W1512387364", + "https://openalex.org/W1516346799", + "https://openalex.org/W1521736627", + "https://openalex.org/W1533230146", + "https://openalex.org/W1565102206", + "https://openalex.org/W1585529040", + "https://openalex.org/W1614298861", + "https://openalex.org/W1666347389", + "https://openalex.org/W1756422141", + "https://openalex.org/W1782550378", + "https://openalex.org/W1835243625", + "https://openalex.org/W1841189810", + "https://openalex.org/W1852412531", + "https://openalex.org/W1884516485", + "https://openalex.org/W1910578190", + "https://openalex.org/W1913703133", + "https://openalex.org/W1930472418", + "https://openalex.org/W1975346989", + "https://openalex.org/W1975563293", + "https://openalex.org/W1976526581", + "https://openalex.org/W1977970897", + "https://openalex.org/W1979104937", + "https://openalex.org/W1979629649", + "https://openalex.org/W1984179398", + "https://openalex.org/W1985009003", + "https://openalex.org/W1986380628", + "https://openalex.org/W1993500013", + "https://openalex.org/W1994389483", + "https://openalex.org/W1999138184", + "https://openalex.org/W2008620264", + "https://openalex.org/W2008896880", + "https://openalex.org/W2009937976", + "https://openalex.org/W2013494846", + "https://openalex.org/W2015191210", + "https://openalex.org/W2016753842", + "https://openalex.org/W2017102965", + "https://openalex.org/W2018758196", + "https://openalex.org/W2022166150", + "https://openalex.org/W2024165284", + "https://openalex.org/W2026417691", + "https://openalex.org/W2027324989", + "https://openalex.org/W2029249040", + "https://openalex.org/W2037705937", + "https://openalex.org/W2037933327", + "https://openalex.org/W2039688703", + "https://openalex.org/W2045495924", + "https://openalex.org/W2052390074", + "https://openalex.org/W2054141820", + "https://openalex.org/W2055317074", + "https://openalex.org/W2065758089", + "https://openalex.org/W2066459332", + "https://openalex.org/W2066636486", + "https://openalex.org/W2080133951", + "https://openalex.org/W2081210343", + "https://openalex.org/W2081580037", + "https://openalex.org/W2089349245", + "https://openalex.org/W2094286023", + "https://openalex.org/W2094728533", + "https://openalex.org/W2097266862", + "https://openalex.org/W2099752825", + "https://openalex.org/W2101705355", + "https://openalex.org/W2101802482", + "https://openalex.org/W2102363952", + "https://openalex.org/W2102907934", + "https://openalex.org/W2107306718", + "https://openalex.org/W2107658650", + "https://openalex.org/W2108044891", + "https://openalex.org/W2108177663", + "https://openalex.org/W2111488410", + "https://openalex.org/W2114157818", + "https://openalex.org/W2117373207", + "https://openalex.org/W2119831128", + "https://openalex.org/W2121773050", + "https://openalex.org/W2121906195", + "https://openalex.org/W2122865749", + "https://openalex.org/W2123228027", + "https://openalex.org/W2125027602", + "https://openalex.org/W2125315567", + "https://openalex.org/W2127048411", + "https://openalex.org/W2127345773", + "https://openalex.org/W2127426251", + "https://openalex.org/W2127795553", + "https://openalex.org/W2128407051", + "https://openalex.org/W2129207602", + "https://openalex.org/W2129842875", + "https://openalex.org/W2131844696", + "https://openalex.org/W2133134975", + "https://openalex.org/W2138204945", + "https://openalex.org/W2140141795", + "https://openalex.org/W2141312052", + "https://openalex.org/W2148019918", + "https://openalex.org/W2148507357", + "https://openalex.org/W2149474573", + "https://openalex.org/W2151502664", + "https://openalex.org/W2153595771", + "https://openalex.org/W2154454189", + "https://openalex.org/W2158781217", + "https://openalex.org/W2159203990", + "https://openalex.org/W2159583324", + "https://openalex.org/W2160605923", + "https://openalex.org/W2161371014", + "https://openalex.org/W2165428180", + "https://openalex.org/W2167187514", + "https://openalex.org/W2170902582", + "https://openalex.org/W2171278097", + "https://openalex.org/W2171472464", + "https://openalex.org/W2175268987", + "https://openalex.org/W2187164964", + "https://openalex.org/W2244992438", + "https://openalex.org/W2247119764", + "https://openalex.org/W2247380138", + "https://openalex.org/W2250184916", + "https://openalex.org/W2288526505", + "https://openalex.org/W2293485652", + "https://openalex.org/W2295240344", + "https://openalex.org/W2338322935", + "https://openalex.org/W2396685807", + "https://openalex.org/W2471366537", + "https://openalex.org/W2487770199", + "https://openalex.org/W2520858206", + "https://openalex.org/W2536888436", + "https://openalex.org/W2548695521", + "https://openalex.org/W2785884112", + "https://openalex.org/W2911581497", + "https://openalex.org/W2940690142", + "https://openalex.org/W2951166049", + "https://openalex.org/W2952738808", + "https://openalex.org/W2954527143", + "https://openalex.org/W2963572185", + "https://openalex.org/W2963587356", + "https://openalex.org/W2999525678", + "https://openalex.org/W3102641634", + "https://openalex.org/W3125520394", + "https://openalex.org/W3149838063", + "https://openalex.org/W3192290435", + "https://openalex.org/W4206727053", + "https://openalex.org/W4211035117", + "https://openalex.org/W4212943651", + "https://openalex.org/W4230553559", + "https://openalex.org/W4232932184", + "https://openalex.org/W4234117503", + "https://openalex.org/W4235345084", + "https://openalex.org/W4235469532", + "https://openalex.org/W4239231974", + "https://openalex.org/W4250809414", + "https://openalex.org/W4285719527", + "https://openalex.org/W4293249558", + "https://openalex.org/W4297732326", + "https://openalex.org/W4300062145", + "https://openalex.org/W4300564796", + "https://openalex.org/W4386506836", + "https://openalex.org/W6603669155", + "https://openalex.org/W6604452468", + "https://openalex.org/W6604653223", + "https://openalex.org/W6608338930", + "https://openalex.org/W6608344535", + "https://openalex.org/W6628965601", + "https://openalex.org/W6629025635", + "https://openalex.org/W6630579473", + "https://openalex.org/W6631964550", + "https://openalex.org/W6633947679", + "https://openalex.org/W6636510571", + "https://openalex.org/W6637194779", + "https://openalex.org/W6637805884", + "https://openalex.org/W6638051237", + "https://openalex.org/W6638588478", + "https://openalex.org/W6638754787", + "https://openalex.org/W6639281467", + "https://openalex.org/W6639731090", + "https://openalex.org/W6652957868", + "https://openalex.org/W6674413621", + "https://openalex.org/W6675204935", + "https://openalex.org/W6675255137", + "https://openalex.org/W6675925752", + "https://openalex.org/W6676581672", + "https://openalex.org/W6678067405", + "https://openalex.org/W6678347102", + "https://openalex.org/W6678830454", + "https://openalex.org/W6678846912", + "https://openalex.org/W6679197216", + "https://openalex.org/W6679243379", + "https://openalex.org/W6682467843", + "https://openalex.org/W6682619722", + "https://openalex.org/W6683404736", + "https://openalex.org/W6683461794", + "https://openalex.org/W6683612810", + "https://openalex.org/W6683773206", + "https://openalex.org/W6683861112", + "https://openalex.org/W6684350123", + "https://openalex.org/W6685018051", + "https://openalex.org/W6696035201", + "https://openalex.org/W6696966448", + "https://openalex.org/W6720922435", + "https://openalex.org/W6729382431", + "https://openalex.org/W6764731963" + ], + "related_works": [ + "https://openalex.org/W2267077731", + "https://openalex.org/W2386578196", + "https://openalex.org/W3091612633", + "https://openalex.org/W2483382562", + "https://openalex.org/W1549959306", + "https://openalex.org/W2085988990", + "https://openalex.org/W1528519853", + "https://openalex.org/W1510134535", + "https://openalex.org/W3181676408", + "https://openalex.org/W2389834944" + ], + "abstract_inverted_index": { + "Relational": [ + 0 + ], + "machine": [ + 1 + ], + "learning": [ + 2 + ], + "studies": [ + 3 + ], + "methods": [ + 4, + 137 + ], + "for": [ + 5, + 138 + ], + "the": [ + 6, + 41, + 51, + 99, + 144 + ], + "statistical": [ + 7, + 24, + 62, + 126 + ], + "analysis": [ + 8 + ], + "of": [ + 9, + 21, + 61, + 66, + 128, + 159 + ], + "relational,": [ + 10 + ], + "or": [ + 11 + ], + "graph-structured,": [ + 12 + ], + "data.": [ + 13 + ], + "In": [ + 14, + 53 + ], + "this": [ + 15, + 147 + ], + "paper,": [ + 16 + ], + "we": [ + 17, + 55, + 122, + 149 + ], + "provide": [ + 18 + ], + "a": [ + 19 + ], + "review": [ + 20 + ], + "how": [ + 22, + 104, + 124 + ], + "such": [ + 23, + 82, + 125, + 160 + ], + "models": [ + 25, + 81, + 111, + 127 + ], + "can": [ + 26, + 68, + 130 + ], + "be": [ + 27, + 131 + ], + "“trained”": [ + 28 + ], + "on": [ + 29, + 78, + 94 + ], + "large": [ + 30 + ], + "knowledge": [ + 31, + 141, + 153 + ], + "graphs,": [ + 32 + ], + "and": [ + 33, + 86, + 109 + ], + "then": [ + 34 + ], + "used": [ + 35 + ], + "to": [ + 36, + 46, + 70, + 105, + 112 + ], + "predict": [ + 37 + ], + "new": [ + 38, + 48 + ], + "facts": [ + 39 + ], + "about": [ + 40 + ], + "world": [ + 42 + ], + "(which": [ + 43 + ], + "is": [ + 44, + 76, + 92 + ], + "equivalent": [ + 45 + ], + "predicting": [ + 47 + ], + "edges": [ + 49 + ], + "in": [ + 50, + 98 + ], + "graph).": [ + 52 + ], + "particular,": [ + 54 + ], + "discuss": [ + 56, + 123, + 151 + ], + "two": [ + 57 + ], + "fundamentally": [ + 58 + ], + "different": [ + 59 + ], + "kinds": [ + 60 + ], + "relational": [ + 63 + ], + "models,": [ + 64 + ], + "both": [ + 65 + ], + "which": [ + 67 + ], + "scale": [ + 69 + ], + "massive": [ + 71 + ], + "data": [ + 72 + ], + "sets.": [ + 73 + ], + "The": [ + 74, + 90 + ], + "first": [ + 75 + ], + "based": [ + 77, + 93 + ], + "latent": [ + 79, + 108 + ], + "feature": [ + 80 + ], + "as": [ + 83, + 156 + ], + "tensor": [ + 84 + ], + "factorization": [ + 85 + ], + "multiway": [ + 87 + ], + "neural": [ + 88 + ], + "networks.": [ + 89 + ], + "second": [ + 91 + ], + "mining": [ + 95 + ], + "observable": [ + 96, + 110 + ], + "patterns": [ + 97 + ], + "graph.": [ + 100 + ], + "We": [ + 101 + ], + "also": [ + 102, + 150 + ], + "show": [ + 103 + ], + "combine": [ + 106 + ], + "these": [ + 107 + ], + "get": [ + 113 + ], + "improved": [ + 114 + ], + "modeling": [ + 115 + ], + "power": [ + 116 + ], + "at": [ + 117 + ], + "decreased": [ + 118 + ], + "computational": [ + 119 + ], + "cost.": [ + 120 + ], + "Finally,": [ + 121 + ], + "graphs": [ + 129, + 142 + ], + "combined": [ + 132 + ], + "with": [ + 133 + ], + "text-based": [ + 134 + ], + "information": [ + 135 + ], + "extraction": [ + 136 + ], + "automatically": [ + 139 + ], + "constructing": [ + 140 + ], + "from": [ + 143 + ], + "Web.": [ + 145 + ], + "To": [ + 146 + ], + "end,": [ + 148 + ], + "Google's": [ + 152 + ], + "vault": [ + 154 + ], + "project": [ + 155 + ], + "an": [ + 157 + ], + "example": [ + 158 + ], + "combination.": [ + 161 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 36 + }, + { + "year": 2025, + "cited_by_count": 115 + }, + { + "year": 2024, + "cited_by_count": 121 + }, + { + "year": 2023, + "cited_by_count": 180 + }, + { + "year": 2022, + "cited_by_count": 158 + }, + { + "year": 2021, + "cited_by_count": 263 + }, + { + "year": 2020, + "cited_by_count": 286 + }, + { + "year": 2019, + "cited_by_count": 199 + }, + { + "year": 2018, + "cited_by_count": 127 + }, + { + "year": 2017, + "cited_by_count": 107 + }, + { + "year": 2016, + "cited_by_count": 40 + }, + { + "year": 2015, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2963784900", + "doi": "https://doi.org/10.1038/s41524-017-0056-5", + "title": "Machine learning in materials informatics: recent applications and prospects", + "display_name": "Machine learning in materials informatics: recent applications and prospects", + "relevance_score": 2568.6206, + "publication_year": 2017, + "publication_date": "2017-12-07", + "ids": { + "openalex": "https://openalex.org/W2963784900", + "doi": "https://doi.org/10.1038/s41524-017-0056-5", + "mag": "2963784900" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5031952600", + "display_name": "Rampi Ramprasad", + "orcid": "https://orcid.org/0000-0003-4630-1565" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Rampi Ramprasad", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003850818", + "display_name": "Rohit Batra", + "orcid": "https://orcid.org/0000-0002-1098-7035" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Rohit Batra", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5075051974", + "display_name": "Ghanshyam Pilania", + "orcid": "https://orcid.org/0000-0003-4460-1572" + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + }, + { + "id": "https://openalex.org/I2800875726", + "display_name": "Fritz Haber Institute of the Max Planck Society", + "ror": "https://ror.org/03k9qs827", + "country_code": "DE", + "type": "facility", + "lineage": [ + "https://openalex.org/I149899117", + "https://openalex.org/I2800875726" + ] + } + ], + "countries": [ + "DE", + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ghanshyam Pilania", + "raw_affiliation_strings": [ + "Fritz-Haber-Institut der Max-Planck-Gesellschaft, Faradayweg 4-6, 14195, Berlin, Germany", + "Materials Science and Technology Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Fritz-Haber-Institut der Max-Planck-Gesellschaft, Faradayweg 4-6, 14195, Berlin, Germany", + "institution_ids": [ + "https://openalex.org/I2800875726" + ] + }, + { + "raw_affiliation_string": "Materials Science and Technology Division, Los Alamos National Laboratory, Los Alamos, NM, 87545, USA", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5032715041", + "display_name": "Arun Mannodi‐Kanakkithodi", + "orcid": "https://orcid.org/0000-0003-0780-1583" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + }, + { + "id": "https://openalex.org/I4210164505", + "display_name": "NanoScale Corporation (United States)", + "ror": "https://ror.org/05rtsja45", + "country_code": "US", + "type": "company", + "lineage": [ + "https://openalex.org/I4210164505" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Arun Mannodi-Kanakkithodi", + "raw_affiliation_strings": [ + "Center for Nanoscale Materials, Lamont National Laboratory, 9700 S. Cass Ave., Lemont, IL, 60439, USA", + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Center for Nanoscale Materials, Lamont National Laboratory, 9700 S. Cass Ave., Lemont, IL, 60439, USA", + "institution_ids": [ + "https://openalex.org/I4210164505" + ] + }, + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5018939520", + "display_name": "Chiho Kim", + "orcid": "https://orcid.org/0000-0002-1814-4980" + }, + "institutions": [ + { + "id": "https://openalex.org/I140172145", + "display_name": "University of Connecticut", + "ror": "https://ror.org/02der9h97", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I140172145" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Chiho Kim", + "raw_affiliation_strings": [ + "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science & Engineering and Institute of Materials Science, University of Connecticut, 97 North Eagleville Rd., Unit 3136, Storrs, CT, 06269-3136, USA", + "institution_ids": [ + "https://openalex.org/I140172145" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 5, + "corresponding_author_ids": [ + "https://openalex.org/A5031952600" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I140172145" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 50.7176, + "has_fulltext": true, + "cited_by_count": 1745, + "citation_normalized_percentile": { + "value": 0.99974343, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "3", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.9908999800682068, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10211", + "display_name": "Computational Drug Discovery Methods", + "score": 0.9868999719619751, + "subfield": { + "id": "https://openalex.org/subfields/1703", + "display_name": "Computational Theory and Mathematics" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6980394721031189 + }, + { + "id": "https://openalex.org/keywords/informatics", + "display_name": "Informatics", + "score": 0.6778385639190674 + }, + { + "id": "https://openalex.org/keywords/data-science", + "display_name": "Data science", + "score": 0.6716209650039673 + }, + { + "id": "https://openalex.org/keywords/domain", + "display_name": "Domain (mathematical analysis)", + "score": 0.5613667368888855 + }, + { + "id": "https://openalex.org/keywords/fingerprint", + "display_name": "Fingerprint (computing)", + "score": 0.5255624055862427 + }, + { + "id": "https://openalex.org/keywords/property", + "display_name": "Property (philosophy)", + "score": 0.5245295166969299 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4813131093978882 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.47415369749069214 + }, + { + "id": "https://openalex.org/keywords/materials-informatics", + "display_name": "Materials informatics", + "score": 0.4402523338794708 + }, + { + "id": "https://openalex.org/keywords/computation", + "display_name": "Computation", + "score": 0.42585843801498413 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.364216685295105 + }, + { + "id": "https://openalex.org/keywords/management-science", + "display_name": "Management science", + "score": 0.34198737144470215 + }, + { + "id": "https://openalex.org/keywords/health-informatics", + "display_name": "Health informatics", + "score": 0.2691514790058136 + }, + { + "id": "https://openalex.org/keywords/engineering-informatics", + "display_name": "Engineering informatics", + "score": 0.2533683776855469 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.1932530701160431 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.12165293097496033 + }, + { + "id": "https://openalex.org/keywords/engineering", + "display_name": "Engineering", + "score": 0.11709535121917725 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6980394721031189 + }, + { + "id": "https://openalex.org/C191630685", + "wikidata": "https://www.wikidata.org/wiki/Q4027615", + "display_name": "Informatics", + "level": 2, + "score": 0.6778385639190674 + }, + { + "id": "https://openalex.org/C2522767166", + "wikidata": "https://www.wikidata.org/wiki/Q2374463", + "display_name": "Data science", + "level": 1, + "score": 0.6716209650039673 + }, + { + "id": "https://openalex.org/C36503486", + "wikidata": "https://www.wikidata.org/wiki/Q11235244", + "display_name": "Domain (mathematical analysis)", + "level": 2, + "score": 0.5613667368888855 + }, + { + "id": "https://openalex.org/C2777826928", + "wikidata": "https://www.wikidata.org/wiki/Q3745713", + "display_name": "Fingerprint (computing)", + "level": 2, + "score": 0.5255624055862427 + }, + { + "id": "https://openalex.org/C189950617", + "wikidata": "https://www.wikidata.org/wiki/Q937228", + "display_name": "Property (philosophy)", + "level": 2, + "score": 0.5245295166969299 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4813131093978882 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.47415369749069214 + }, + { + "id": "https://openalex.org/C62085286", + "wikidata": "https://www.wikidata.org/wiki/Q6786605", + "display_name": "Materials informatics", + "level": 5, + "score": 0.4402523338794708 + }, + { + "id": "https://openalex.org/C45374587", + "wikidata": "https://www.wikidata.org/wiki/Q12525525", + "display_name": "Computation", + "level": 2, + "score": 0.42585843801498413 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.364216685295105 + }, + { + "id": "https://openalex.org/C539667460", + "wikidata": "https://www.wikidata.org/wiki/Q2414942", + "display_name": "Management science", + "level": 1, + "score": 0.34198737144470215 + }, + { + "id": "https://openalex.org/C145642194", + "wikidata": "https://www.wikidata.org/wiki/Q870895", + "display_name": "Health informatics", + "level": 3, + "score": 0.2691514790058136 + }, + { + "id": "https://openalex.org/C158518442", + "wikidata": "https://www.wikidata.org/wiki/Q2843902", + "display_name": "Engineering informatics", + "level": 4, + "score": 0.2533683776855469 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.1932530701160431 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.12165293097496033 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.11709535121917725 + }, + { + "id": "https://openalex.org/C119599485", + "wikidata": "https://www.wikidata.org/wiki/Q43035", + "display_name": "Electrical engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C111472728", + "wikidata": "https://www.wikidata.org/wiki/Q9471", + "display_name": "Epistemology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C134306372", + "wikidata": "https://www.wikidata.org/wiki/Q7754", + "display_name": "Mathematical analysis", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138816342", + "wikidata": "https://www.wikidata.org/wiki/Q189603", + "display_name": "Public health", + "level": 2, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159110408", + "wikidata": "https://www.wikidata.org/wiki/Q121176", + "display_name": "Nursing", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:osti.gov:1416298", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1416298", + "pdf_url": "https://www.osti.gov/servlets/purl/1416298", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + }, + { + "id": "pmh:oai:pure.mpg.de:item_2567070", + "is_oa": true, + "landing_page_url": "https://hdl.handle.net/21.11116/0000-0001-1CC3-4", + "pdf_url": "http://hdl.handle.net/21.11116/0000-0001-1CC3-4", + "source": { + "id": "https://openalex.org/S4306400654", + "display_name": "MPG.PuRe (Max Planck Society)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I149899117", + "host_organization_name": "Max Planck Society", + "host_organization_lineage": [ + "https://openalex.org/I149899117" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials", + "raw_type": "info:eu-repo/semantics/article" + }, + { + "id": "pmh:oai:doaj.org/article:b5673072856d4e9fb243f09ce3ef9ed8", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/b5673072856d4e9fb243f09ce3ef9ed8", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "npj Computational Materials, Vol 3, Iss 1, Pp 1-13 (2017)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1038/s41524-017-0056-5", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/s41524-017-0056-5", + "pdf_url": "https://www.nature.com/articles/s41524-017-0056-5.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G3448238085", + "display_name": null, + "funder_award_id": "N00014-14-1-0098", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G5295348260", + "display_name": null, + "funder_award_id": "N00014-16-1-2580", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G8627259979", + "display_name": null, + "funder_award_id": "N00014-10-1-0944", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + }, + { + "id": "https://openalex.org/G8876996369", + "display_name": null, + "funder_award_id": "N00014", + "funder_id": "https://openalex.org/F4320337345", + "funder_display_name": "Office of Naval Research" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320308269", + "display_name": "Alexander von Humboldt-Stiftung", + "ror": "https://ror.org/012kf4317" + }, + { + "id": "https://openalex.org/F4320337345", + "display_name": "Office of Naval Research", + "ror": "https://ror.org/00rk2pe57" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": false + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2963784900.pdf" + }, + "referenced_works_count": 127, + "referenced_works": [ + "https://openalex.org/W26088913", + "https://openalex.org/W73132726", + "https://openalex.org/W214291446", + "https://openalex.org/W654619586", + "https://openalex.org/W1505168701", + "https://openalex.org/W1513260206", + "https://openalex.org/W1542208167", + "https://openalex.org/W1545048062", + "https://openalex.org/W1568537411", + "https://openalex.org/W1584846110", + "https://openalex.org/W1597841398", + "https://openalex.org/W1678620623", + "https://openalex.org/W1747451850", + "https://openalex.org/W1772299910", + "https://openalex.org/W1800437104", + "https://openalex.org/W1865667476", + "https://openalex.org/W1901616594", + "https://openalex.org/W1965192594", + "https://openalex.org/W1972135189", + "https://openalex.org/W1977739742", + "https://openalex.org/W1978183953", + "https://openalex.org/W1979769287", + "https://openalex.org/W1982598895", + "https://openalex.org/W1982886636", + "https://openalex.org/W1984087004", + "https://openalex.org/W1986575501", + "https://openalex.org/W1988887547", + "https://openalex.org/W1989885311", + "https://openalex.org/W1993765343", + "https://openalex.org/W2000957843", + "https://openalex.org/W2005543043", + "https://openalex.org/W2010785223", + "https://openalex.org/W2019903457", + "https://openalex.org/W2020786104", + "https://openalex.org/W2025444507", + "https://openalex.org/W2025882616", + "https://openalex.org/W2029413789", + "https://openalex.org/W2037566781", + "https://openalex.org/W2046505730", + "https://openalex.org/W2051801258", + "https://openalex.org/W2055974394", + "https://openalex.org/W2057858097", + "https://openalex.org/W2061333371", + "https://openalex.org/W2068123181", + "https://openalex.org/W2068456806", + "https://openalex.org/W2069034916", + "https://openalex.org/W2073357703", + "https://openalex.org/W2074616700", + "https://openalex.org/W2083415705", + "https://openalex.org/W2085607286", + "https://openalex.org/W2087292325", + "https://openalex.org/W2089843324", + "https://openalex.org/W2097489306", + "https://openalex.org/W2097968133", + "https://openalex.org/W2104489082", + "https://openalex.org/W2115003579", + "https://openalex.org/W2115096312", + "https://openalex.org/W2128873947", + "https://openalex.org/W2146611938", + "https://openalex.org/W2161262329", + "https://openalex.org/W2163272368", + "https://openalex.org/W2164524421", + "https://openalex.org/W2215223440", + "https://openalex.org/W2225949634", + "https://openalex.org/W2229902564", + "https://openalex.org/W2258702411", + "https://openalex.org/W2261108203", + "https://openalex.org/W2281127889", + "https://openalex.org/W2291908932", + "https://openalex.org/W2313966941", + "https://openalex.org/W2315793378", + "https://openalex.org/W2329258563", + "https://openalex.org/W2336382837", + "https://openalex.org/W2337110853", + "https://openalex.org/W2337496963", + "https://openalex.org/W2337529739", + "https://openalex.org/W2343462019", + "https://openalex.org/W2344188443", + "https://openalex.org/W2345653852", + "https://openalex.org/W2346778841", + "https://openalex.org/W2352719088", + "https://openalex.org/W2356584815", + "https://openalex.org/W2372859909", + "https://openalex.org/W2396196938", + "https://openalex.org/W2415372084", + "https://openalex.org/W2460314483", + "https://openalex.org/W2464725281", + "https://openalex.org/W2471982001", + "https://openalex.org/W2475256989", + "https://openalex.org/W2476592117", + "https://openalex.org/W2486570794", + "https://openalex.org/W2490507458", + "https://openalex.org/W2490901606", + "https://openalex.org/W2498941985", + "https://openalex.org/W2499226730", + "https://openalex.org/W2503343131", + "https://openalex.org/W2504731129", + "https://openalex.org/W2510431877", + "https://openalex.org/W2520500207", + "https://openalex.org/W2522125346", + "https://openalex.org/W2527749992", + "https://openalex.org/W2529958128", + "https://openalex.org/W2530960271", + "https://openalex.org/W2555683692", + "https://openalex.org/W2560817727", + "https://openalex.org/W2563751252", + "https://openalex.org/W2564078846", + "https://openalex.org/W2566573083", + "https://openalex.org/W2566642125", + "https://openalex.org/W2567115595", + "https://openalex.org/W2585152223", + "https://openalex.org/W2592939032", + "https://openalex.org/W2593838212", + "https://openalex.org/W2594250440", + "https://openalex.org/W2600236415", + "https://openalex.org/W2603482245", + "https://openalex.org/W2608722029", + "https://openalex.org/W2616136793", + "https://openalex.org/W2617604238", + "https://openalex.org/W2762836614", + "https://openalex.org/W3022711947", + "https://openalex.org/W3098539674", + "https://openalex.org/W3100710928", + "https://openalex.org/W3104005636", + "https://openalex.org/W4230031267", + "https://openalex.org/W4240060230", + "https://openalex.org/W4300789312" + ], + "related_works": [ + "https://openalex.org/W4375957285", + "https://openalex.org/W4206469383", + "https://openalex.org/W2359548422", + "https://openalex.org/W2083600684", + "https://openalex.org/W2373478723", + "https://openalex.org/W2118804853", + "https://openalex.org/W4376271842", + "https://openalex.org/W2754122850", + "https://openalex.org/W2162773262", + "https://openalex.org/W2901223208" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "Propelled": [ + 1 + ], + "partly": [ + 2, + 9 + ], + "by": [ + 3, + 10, + 53, + 57, + 156 + ], + "the": [ + 4, + 11, + 15, + 87, + 110, + 134, + 137, + 157, + 188, + 197, + 204, + 215, + 226 + ], + "Materials": [ + 5 + ], + "Genome": [ + 6 + ], + "Initiative,": [ + 7 + ], + "and": [ + 8, + 14, + 123, + 136, + 152, + 160, + 219 + ], + "algorithmic": [ + 12 + ], + "developments": [ + 13 + ], + "resounding": [ + 16 + ], + "successes": [ + 17 + ], + "of": [ + 18, + 109, + 139, + 149, + 185, + 187 + ], + "data-driven": [ + 19, + 191 + ], + "efforts": [ + 20 + ], + "in": [ + 21, + 59, + 196, + 225 + ], + "other": [ + 22 + ], + "domains,": [ + 23 + ], + "informatics": [ + 24, + 67 + ], + "strategies": [ + 25, + 194 + ], + "are": [ + 26, + 63, + 69, + 77, + 114, + 173 + ], + "beginning": [ + 27 + ], + "to": [ + 28, + 37, + 72, + 79, + 86, + 144, + 181 + ], + "take": [ + 29 + ], + "shape": [ + 30 + ], + "within": [ + 31 + ], + "materials": [ + 32, + 169 + ], + "science.": [ + 33 + ], + "These": [ + 34 + ], + "approaches": [ + 35 + ], + "lead": [ + 36 + ], + "surrogate": [ + 38 + ], + "machine": [ + 39 + ], + "learning": [ + 40, + 131 + ], + "models": [ + 41 + ], + "that": [ + 42, + 76, + 221 + ], + "enable": [ + 43 + ], + "rapid": [ + 44 + ], + "predictions": [ + 45 + ], + "based": [ + 46 + ], + "purely": [ + 47 + ], + "on": [ + 48, + 203 + ], + "past": [ + 49 + ], + "data": [ + 50, + 96 + ], + "rather": [ + 51 + ], + "than": [ + 52 + ], + "direct": [ + 54 + ], + "experimentation": [ + 55 + ], + "or": [ + 56, + 81, + 90, + 100, + 206 + ], + "computations/simulations": [ + 58 + ], + "which": [ + 60, + 94 + ], + "fundamental": [ + 61 + ], + "equations": [ + 62 + ], + "explicitly": [ + 64 + ], + "solved.": [ + 65 + ], + "Data-centric": [ + 66 + ], + "methods": [ + 68 + ], + "becoming": [ + 70 + ], + "useful": [ + 71 + ], + "determine": [ + 73 + ], + "material": [ + 74, + 120 + ], + "properties": [ + 75 + ], + "hard": [ + 78 + ], + "measure": [ + 80 + ], + "compute": [ + 82 + ], + "using": [ + 83 + ], + "traditional": [ + 84 + ], + "methods—due": [ + 85 + ], + "cost,": [ + 88 + ], + "time": [ + 89 + ], + "effort": [ + 91 + ], + "involved—but": [ + 92 + ], + "for": [ + 93, + 104 + ], + "reliable": [ + 95 + ], + "either": [ + 97 + ], + "already": [ + 98 + ], + "exists": [ + 99 + ], + "can": [ + 101 + ], + "be": [ + 102, + 148, + 165, + 223 + ], + "generated": [ + 103 + ], + "at": [ + 105 + ], + "least": [ + 106 + ], + "a": [ + 107, + 119, + 126, + 130 + ], + "subset": [ + 108 + ], + "critical": [ + 111 + ], + "cases.": [ + 112 + ], + "Predictions": [ + 113, + 162 + ], + "typically": [ + 115 + ], + "interpolative,": [ + 116 + ], + "involving": [ + 117 + ], + "fingerprinting": [ + 118 + ], + "numerically": [ + 121 + ], + "first,": [ + 122 + ], + "then": [ + 124 + ], + "following": [ + 125 + ], + "mapping": [ + 127 + ], + "(established": [ + 128 + ], + "via": [ + 129 + ], + "algorithm)": [ + 132 + ], + "between": [ + 133 + ], + "fingerprint": [ + 135, + 205 + ], + "property": [ + 138 + ], + "interest.": [ + 140 + ], + "Fingerprints,": [ + 141 + ], + "also": [ + 142, + 164, + 211 + ], + "referred": [ + 143 + ], + "as": [ + 145, + 154 + ], + "“descriptors”,": [ + 146 + ], + "may": [ + 147, + 163 + ], + "many": [ + 150 + ], + "types": [ + 151 + ], + "scales,": [ + 153 + ], + "dictated": [ + 155 + ], + "application": [ + 158 + ], + "domain": [ + 159 + ], + "needs.": [ + 161 + ], + "extrapolative—extending": [ + 166 + ], + "into": [ + 167, + 176 + ], + "new": [ + 168 + ], + "spaces—provided": [ + 170 + ], + "prediction": [ + 171 + ], + "uncertainties": [ + 172 + ], + "properly": [ + 174 + ], + "taken": [ + 175 + ], + "account.": [ + 177 + ], + "This": [ + 178 + ], + "article": [ + 179 + ], + "attempts": [ + 180 + ], + "provide": [ + 182 + ], + "an": [ + 183 + ], + "overview": [ + 184 + ], + "some": [ + 186, + 213 + ], + "recent": [ + 189 + ], + "successful": [ + 190 + ], + "“materials": [ + 192 + ], + "informatics”": [ + 193 + ], + "undertaken": [ + 195 + ], + "last": [ + 198 + ], + "decade,": [ + 199 + ], + "with": [ + 200 + ], + "particular": [ + 201 + ], + "emphasis": [ + 202 + ], + "descriptor": [ + 207 + ], + "choices.": [ + 208 + ], + "The": [ + 209 + ], + "review": [ + 210 + ], + "identifies": [ + 212 + ], + "challenges": [ + 214 + ], + "community": [ + 216 + ], + "is": [ + 217 + ], + "facing": [ + 218 + ], + "those": [ + 220 + ], + "should": [ + 222 + ], + "overcome": [ + 224 + ], + "near": [ + 227 + ], + "future.": [ + 228 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 111 + }, + { + "year": 2025, + "cited_by_count": 279 + }, + { + "year": 2024, + "cited_by_count": 235 + }, + { + "year": 2023, + "cited_by_count": 226 + }, + { + "year": 2022, + "cited_by_count": 224 + }, + { + "year": 2021, + "cited_by_count": 231 + }, + { + "year": 2020, + "cited_by_count": 217 + }, + { + "year": 2019, + "cited_by_count": 171 + }, + { + "year": 2018, + "cited_by_count": 48 + }, + { + "year": 2017, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2949767632", + "doi": "https://doi.org/10.1109/access.2019.2923707", + "title": "Effective Heart Disease Prediction Using Hybrid Machine Learning Techniques", + "display_name": "Effective Heart Disease Prediction Using Hybrid Machine Learning Techniques", + "relevance_score": 2562.3347, + "publication_year": 2019, + "publication_date": "2019-01-01", + "ids": { + "openalex": "https://openalex.org/W2949767632", + "doi": "https://doi.org/10.1109/access.2019.2923707", + "mag": "2949767632" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5013635040", + "display_name": "Senthilkumar Mohan", + "orcid": "https://orcid.org/0000-0002-8114-3147" + }, + "institutions": [ + { + "id": "https://openalex.org/I876193797", + "display_name": "Vellore Institute of Technology University", + "ror": "https://ror.org/00qzypv28", + "country_code": "IN", + "type": "education", + "lineage": [ + "https://openalex.org/I876193797" + ] + } + ], + "countries": [ + "IN" + ], + "is_corresponding": true, + "raw_author_name": "Senthilkumar Mohan", + "raw_affiliation_strings": [ + "School of Information Technology and Engineering, VIT University, Vellore, India" + ], + "raw_orcid": "https://orcid.org/0000-0002-8114-3147", + "affiliations": [ + { + "raw_affiliation_string": "School of Information Technology and Engineering, VIT University, Vellore, India", + "institution_ids": [ + "https://openalex.org/I876193797" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5012000651", + "display_name": "Chandrasegar Thirumalai", + "orcid": "https://orcid.org/0000-0001-5171-946X" + }, + "institutions": [ + { + "id": "https://openalex.org/I876193797", + "display_name": "Vellore Institute of Technology University", + "ror": "https://ror.org/00qzypv28", + "country_code": "IN", + "type": "education", + "lineage": [ + "https://openalex.org/I876193797" + ] + } + ], + "countries": [ + "IN" + ], + "is_corresponding": false, + "raw_author_name": "Chandrasegar Thirumalai", + "raw_affiliation_strings": [ + "School of Information Technology and Engineering, VIT University, Vellore, India" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Information Technology and Engineering, VIT University, Vellore, India", + "institution_ids": [ + "https://openalex.org/I876193797" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5041541232", + "display_name": "Gautam Srivastava", + "orcid": "https://orcid.org/0000-0001-9851-4103" + }, + "institutions": [ + { + "id": "https://openalex.org/I48890080", + "display_name": "Brandon University", + "ror": "https://ror.org/02qp25a50", + "country_code": "CA", + "type": "education", + "lineage": [ + "https://openalex.org/I48890080" + ] + } + ], + "countries": [ + "CA" + ], + "is_corresponding": false, + "raw_author_name": "Gautam Srivastava", + "raw_affiliation_strings": [ + "Department of Mathematics and Computer Science, Brandon University, Brandon, MB, Canada" + ], + "raw_orcid": "https://orcid.org/0000-0001-9851-4103", + "affiliations": [ + { + "raw_affiliation_string": "Department of Mathematics and Computer Science, Brandon University, Brandon, MB, Canada", + "institution_ids": [ + "https://openalex.org/I48890080" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 3, + "corresponding_author_ids": [ + "https://openalex.org/A5013635040" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I876193797" + ], + "apc_list": { + "value": 1850, + "currency": "USD", + "value_usd": 1850 + }, + "apc_paid": { + "value": 1850, + "currency": "USD", + "value_usd": 1850 + }, + "fwci": 215.0425, + "has_fulltext": true, + "cited_by_count": 1857, + "citation_normalized_percentile": { + "value": 1.0, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "7", + "issue": null, + "first_page": "81542", + "last_page": "81554" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9962000250816345, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.9962000250816345, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T11021", + "display_name": "ECG Monitoring and Analysis", + "score": 0.991100013256073, + "subfield": { + "id": "https://openalex.org/subfields/2705", + "display_name": "Cardiology and Cardiovascular Medicine" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13038", + "display_name": "Internet of Things and AI", + "score": 0.9423999786376953, + "subfield": { + "id": "https://openalex.org/subfields/1710", + "display_name": "Information Systems" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7656811475753784 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7299566864967346 + }, + { + "id": "https://openalex.org/keywords/random-forest", + "display_name": "Random forest", + "score": 0.6608107089996338 + }, + { + "id": "https://openalex.org/keywords/heart-disease", + "display_name": "Heart disease", + "score": 0.6548975110054016 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.6171836853027344 + }, + { + "id": "https://openalex.org/keywords/predictive-modelling", + "display_name": "Predictive modelling", + "score": 0.49283671379089355 + }, + { + "id": "https://openalex.org/keywords/disease", + "display_name": "Disease", + "score": 0.48001474142074585 + }, + { + "id": "https://openalex.org/keywords/internet-of-things", + "display_name": "Internet of Things", + "score": 0.4755784571170807 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.4480767250061035 + }, + { + "id": "https://openalex.org/keywords/the-internet", + "display_name": "The Internet", + "score": 0.41082069277763367 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.3668927550315857 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.10342156887054443 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7656811475753784 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7299566864967346 + }, + { + "id": "https://openalex.org/C169258074", + "wikidata": "https://www.wikidata.org/wiki/Q245748", + "display_name": "Random forest", + "level": 2, + "score": 0.6608107089996338 + }, + { + "id": "https://openalex.org/C2780074459", + "wikidata": "https://www.wikidata.org/wiki/Q389735", + "display_name": "Heart disease", + "level": 2, + "score": 0.6548975110054016 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.6171836853027344 + }, + { + "id": "https://openalex.org/C45804977", + "wikidata": "https://www.wikidata.org/wiki/Q7239673", + "display_name": "Predictive modelling", + "level": 2, + "score": 0.49283671379089355 + }, + { + "id": "https://openalex.org/C2779134260", + "wikidata": "https://www.wikidata.org/wiki/Q12136", + "display_name": "Disease", + "level": 2, + "score": 0.48001474142074585 + }, + { + "id": "https://openalex.org/C81860439", + "wikidata": "https://www.wikidata.org/wiki/Q251212", + "display_name": "Internet of Things", + "level": 2, + "score": 0.4755784571170807 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.4480767250061035 + }, + { + "id": "https://openalex.org/C110875604", + "wikidata": "https://www.wikidata.org/wiki/Q75", + "display_name": "The Internet", + "level": 2, + "score": 0.41082069277763367 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.3668927550315857 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.10342156887054443 + }, + { + "id": "https://openalex.org/C136764020", + "wikidata": "https://www.wikidata.org/wiki/Q466", + "display_name": "World Wide Web", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C164705383", + "wikidata": "https://www.wikidata.org/wiki/Q10379", + "display_name": "Cardiology", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C149635348", + "wikidata": "https://www.wikidata.org/wiki/Q193040", + "display_name": "Embedded system", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C142724271", + "wikidata": "https://www.wikidata.org/wiki/Q7208", + "display_name": "Pathology", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:doaj.org/article:fe87ff1a239645a0979c257a4dea4864", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/fe87ff1a239645a0979c257a4dea4864", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "IEEE Access, Vol 7, Pp 81542-81554 (2019)", + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "doi:10.1109/access.2019.2923707", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1109/access.2019.2923707", + "pdf_url": "https://ieeexplore.ieee.org/ielx7/6287639/8600701/08740989.pdf", + "source": { + "id": "https://openalex.org/S2485537415", + "display_name": "IEEE Access", + "issn_l": "2169-3536", + "issn": [ + "2169-3536" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319808", + "host_organization_name": "Institute of Electrical and Electronics Engineers", + "host_organization_lineage": [ + "https://openalex.org/P4310319808" + ], + "host_organization_lineage_names": [ + "Institute of Electrical and Electronics Engineers" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "IEEE Access", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "score": 0.4000000059604645, + "id": "https://metadata.un.org/sdg/3", + "display_name": "Good health and well-being" + } + ], + "awards": [], + "funders": [ + { + "id": "https://openalex.org/F4320324301", + "display_name": "China Medical University", + "ror": "https://ror.org/032d4f246" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 51, + "referenced_works": [ + "https://openalex.org/W1202595205", + "https://openalex.org/W1532110920", + "https://openalex.org/W1965587486", + "https://openalex.org/W1991788616", + "https://openalex.org/W2003552981", + "https://openalex.org/W2062302861", + "https://openalex.org/W2068677783", + "https://openalex.org/W2080084655", + "https://openalex.org/W2103773860", + "https://openalex.org/W2178875556", + "https://openalex.org/W2250033699", + "https://openalex.org/W2291481687", + "https://openalex.org/W2293583529", + "https://openalex.org/W2350016386", + "https://openalex.org/W2485540933", + "https://openalex.org/W2531733772", + "https://openalex.org/W2545758574", + "https://openalex.org/W2548815743", + "https://openalex.org/W2608803612", + "https://openalex.org/W2611268076", + "https://openalex.org/W2621148797", + "https://openalex.org/W2654097460", + "https://openalex.org/W2735054537", + "https://openalex.org/W2754167666", + "https://openalex.org/W2755200181", + "https://openalex.org/W2755582817", + "https://openalex.org/W2766387270", + "https://openalex.org/W2767227735", + "https://openalex.org/W2769429260", + "https://openalex.org/W2774583472", + "https://openalex.org/W2784051633", + "https://openalex.org/W2786070938", + "https://openalex.org/W2790256058", + "https://openalex.org/W2790718901", + "https://openalex.org/W2793130752", + "https://openalex.org/W2795204643", + "https://openalex.org/W2795328221", + "https://openalex.org/W2795595258", + "https://openalex.org/W2808560727", + "https://openalex.org/W2885492729", + "https://openalex.org/W2890070546", + "https://openalex.org/W2891931318", + "https://openalex.org/W2895999059", + "https://openalex.org/W2900794383", + "https://openalex.org/W2901917857", + "https://openalex.org/W2993696341", + "https://openalex.org/W6675712684", + "https://openalex.org/W6729093307", + "https://openalex.org/W6749585949", + "https://openalex.org/W6771454245", + "https://openalex.org/W6986592312" + ], + "related_works": [ + "https://openalex.org/W4245926026", + "https://openalex.org/W3193043704", + "https://openalex.org/W4386259002", + "https://openalex.org/W1546989560", + "https://openalex.org/W4396689146", + "https://openalex.org/W4200112873", + "https://openalex.org/W2955796858", + "https://openalex.org/W2004826645", + "https://openalex.org/W3191198889", + "https://openalex.org/W4399767560" + ], + "abstract_inverted_index": { + "Heart": [ + 0 + ], + "disease": [ + 1, + 18, + 86, + 153 + ], + "is": [ + 2, + 19, + 123 + ], + "one": [ + 3 + ], + "of": [ + 4, + 9, + 16, + 26, + 50, + 71, + 74, + 117, + 128, + 145 + ], + "the": [ + 5, + 12, + 24, + 47, + 54, + 72, + 112, + 115, + 148, + 155 + ], + "most": [ + 6 + ], + "significant": [ + 7, + 102 + ], + "causes": [ + 8 + ], + "mortality": [ + 10 + ], + "in": [ + 11, + 23, + 39, + 41, + 65, + 68, + 110, + 114 + ], + "world": [ + 13 + ], + "today.": [ + 14 + ], + "Prediction": [ + 15 + ], + "cardiovascular": [ + 17, + 118 + ], + "a": [ + 20, + 81, + 95, + 160 + ], + "critical": [ + 21 + ], + "challenge": [ + 22 + ], + "area": [ + 25 + ], + "clinical": [ + 27 + ], + "data": [ + 28, + 51 + ], + "analysis.": [ + 29 + ], + "Machine": [ + 30 + ], + "learning": [ + 31, + 107 + ], + "(ML)": [ + 32 + ], + "has": [ + 33 + ], + "been": [ + 34 + ], + "shown": [ + 35 + ], + "to": [ + 36 + ], + "be": [ + 37 + ], + "effective": [ + 38 + ], + "assisting": [ + 40 + ], + "making": [ + 42 + ], + "decisions": [ + 43 + ], + "and": [ + 44, + 130 + ], + "predictions": [ + 45 + ], + "from": [ + 46 + ], + "large": [ + 48 + ], + "quantity": [ + 49 + ], + "produced": [ + 52 + ], + "by": [ + 53, + 104 + ], + "healthcare": [ + 55 + ], + "industry.": [ + 56 + ], + "We": [ + 57, + 135 + ], + "have": [ + 58 + ], + "also": [ + 59 + ], + "seen": [ + 60 + ], + "ML": [ + 61, + 88 + ], + "techniques": [ + 62, + 108 + ], + "being": [ + 63 + ], + "used": [ + 64 + ], + "recent": [ + 66 + ], + "developments": [ + 67 + ], + "different": [ + 69, + 126 + ], + "areas": [ + 70 + ], + "Internet": [ + 73 + ], + "Things": [ + 75 + ], + "(IoT).": [ + 76 + ], + "Various": [ + 77 + ], + "studies": [ + 78 + ], + "give": [ + 79 + ], + "only": [ + 80 + ], + "glimpse": [ + 82 + ], + "into": [ + 83 + ], + "predicting": [ + 84 + ], + "heart": [ + 85, + 152 + ], + "with": [ + 87, + 125, + 141, + 154, + 159 + ], + "techniques.": [ + 89, + 134 + ], + "In": [ + 90 + ], + "this": [ + 91 + ], + "paper,": [ + 92 + ], + "we": [ + 93 + ], + "propose": [ + 94 + ], + "novel": [ + 96 + ], + "method": [ + 97 + ], + "that": [ + 98 + ], + "aims": [ + 99 + ], + "at": [ + 100 + ], + "finding": [ + 101 + ], + "features": [ + 103, + 129 + ], + "applying": [ + 105 + ], + "machine": [ + 106 + ], + "resulting": [ + 109 + ], + "improving": [ + 111 + ], + "accuracy": [ + 113, + 143 + ], + "prediction": [ + 116, + 121, + 149 + ], + "disease.": [ + 119 + ], + "The": [ + 120 + ], + "model": [ + 122, + 150, + 162 + ], + "introduced": [ + 124 + ], + "combinations": [ + 127 + ], + "several": [ + 131 + ], + "known": [ + 132 + ], + "classification": [ + 133 + ], + "produce": [ + 136 + ], + "an": [ + 137, + 142 + ], + "enhanced": [ + 138 + ], + "performance": [ + 139 + ], + "level": [ + 140, + 144 + ], + "88.7%": [ + 146 + ], + "through": [ + 147 + ], + "for": [ + 151 + ], + "hybrid": [ + 156 + ], + "random": [ + 157 + ], + "forest": [ + 158 + ], + "linear": [ + 161 + ], + "(HRFLM).": [ + 163 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 83 + }, + { + "year": 2025, + "cited_by_count": 299 + }, + { + "year": 2024, + "cited_by_count": 376 + }, + { + "year": 2023, + "cited_by_count": 443 + }, + { + "year": 2022, + "cited_by_count": 335 + }, + { + "year": 2021, + "cited_by_count": 221 + }, + { + "year": 2020, + "cited_by_count": 90 + }, + { + "year": 2019, + "cited_by_count": 9 + }, + { + "year": 2012, + "cited_by_count": 1 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2995098893", + "doi": "https://doi.org/10.1186/s12911-019-1004-8", + "title": "Comparing different supervised machine learning algorithms for disease prediction", + "display_name": "Comparing different supervised machine learning algorithms for disease prediction", + "relevance_score": 2537.2148, + "publication_year": 2019, + "publication_date": "2019-12-01", + "ids": { + "openalex": "https://openalex.org/W2995098893", + "doi": "https://doi.org/10.1186/s12911-019-1004-8", + "mag": "2995098893", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31864346" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5073472514", + "display_name": "Shahadat Uddin", + "orcid": "https://orcid.org/0000-0003-0091-6919" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": true, + "raw_author_name": "Shahadat Uddin", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia. shahadat.uddin@sydney.edu.au", + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia" + ], + "raw_orcid": "https://orcid.org/0000-0003-0091-6919", + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia. shahadat.uddin@sydney.edu.au", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + }, + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5050771060", + "display_name": "Arif Khan", + "orcid": "https://orcid.org/0000-0002-5793-933X" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + }, + { + "id": "https://openalex.org/I4210117369", + "display_name": "RoZetta Institute", + "ror": "https://ror.org/02ex29a12", + "country_code": "AU", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I4210117369" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Arif Khan", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "Health Market Quality Research Stream, Capital Markets CRC, Level 3, 55 Harrington Street, Sydney, NSW, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + }, + { + "raw_affiliation_string": "Health Market Quality Research Stream, Capital Markets CRC, Level 3, 55 Harrington Street, Sydney, NSW, Australia", + "institution_ids": [ + "https://openalex.org/I4210117369" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5027942770", + "display_name": "Md Ekramul Hossain", + "orcid": "https://orcid.org/0000-0001-6913-8313" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Md Ekramul Hossain", + "raw_affiliation_strings": [ + "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Complex Systems Research Group, Faculty of Engineering, The University of Sydney, Room 524, SIT Building (J12), Darlington, NSW, 2008, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5034828056", + "display_name": "Mohammad Ali Moni", + "orcid": "https://orcid.org/0000-0003-0756-1006" + }, + "institutions": [ + { + "id": "https://openalex.org/I129604602", + "display_name": "The University of Sydney", + "ror": "https://ror.org/0384j8v12", + "country_code": "AU", + "type": "education", + "lineage": [ + "https://openalex.org/I129604602" + ] + } + ], + "countries": [ + "AU" + ], + "is_corresponding": false, + "raw_author_name": "Mohammad Ali Moni", + "raw_affiliation_strings": [ + "Faculty of Medicine and Health, School of Medical Sciences, The University of Sydney, Camperdown, NSW, 2006, Australia" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Faculty of Medicine and Health, School of Medical Sciences, The University of Sydney, Camperdown, NSW, 2006, Australia", + "institution_ids": [ + "https://openalex.org/I129604602" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5073472514" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I129604602" + ], + "apc_list": { + "value": 1570, + "currency": "GBP", + "value_usd": 1925 + }, + "apc_paid": { + "value": 1570, + "currency": "GBP", + "value_usd": 1925 + }, + "fwci": 163.4979, + "has_fulltext": false, + "cited_by_count": 1620, + "citation_normalized_percentile": { + "value": 0.99985261, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": "19", + "issue": "1", + "first_page": "281", + "last_page": "281" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.8751999735832214, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11396", + "display_name": "Artificial Intelligence in Healthcare", + "score": 0.8751999735832214, + "subfield": { + "id": "https://openalex.org/subfields/3605", + "display_name": "Health Information Management" + }, + "field": { + "id": "https://openalex.org/fields/36", + "display_name": "Health Professions" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T13702", + "display_name": "Machine Learning in Healthcare", + "score": 0.008799999952316284, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.0066999997943639755, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/health-informatics", + "display_name": "Health informatics", + "score": 0.7566148042678833 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6764706373214722 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6419437527656555 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5513378381729126 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.41022202372550964 + }, + { + "id": "https://openalex.org/keywords/public-health", + "display_name": "Public health", + "score": 0.221120685338974 + }, + { + "id": "https://openalex.org/keywords/medicine", + "display_name": "Medicine", + "score": 0.2029423713684082 + }, + { + "id": "https://openalex.org/keywords/nursing", + "display_name": "Nursing", + "score": 0.09734433889389038 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C145642194", + "wikidata": "https://www.wikidata.org/wiki/Q870895", + "display_name": "Health informatics", + "level": 3, + "score": 0.7566148042678833 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6764706373214722 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6419437527656555 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5513378381729126 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.41022202372550964 + }, + { + "id": "https://openalex.org/C138816342", + "wikidata": "https://www.wikidata.org/wiki/Q189603", + "display_name": "Public health", + "level": 2, + "score": 0.221120685338974 + }, + { + "id": "https://openalex.org/C71924100", + "wikidata": "https://www.wikidata.org/wiki/Q11190", + "display_name": "Medicine", + "level": 0, + "score": 0.2029423713684082 + }, + { + "id": "https://openalex.org/C159110408", + "wikidata": "https://www.wikidata.org/wiki/Q121176", + "display_name": "Nursing", + "level": 1, + "score": 0.09734433889389038 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000081415", + "descriptor_name": "Clinical Decision Rules", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D001499", + "descriptor_name": "Bayes Theorem", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012307", + "descriptor_name": "Risk Factors", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D057225", + "descriptor_name": "Data Mining", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + } + ], + "locations_count": 5, + "locations": [ + { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + { + "id": "pmid:31864346", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31864346", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC medical informatics and decision making", + "raw_type": null + }, + { + "id": "pmh:oai:pure.atira.dk:publications/17d2b406-1692-4f37-9f49-13ef0305ae3b", + "is_oa": true, + "landing_page_url": "https://researchoutput.csu.edu.au/en/publications/17d2b406-1692-4f37-9f49-13ef0305ae3b", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S7407055442", + "display_name": "Charles Sturt University Research Output (CRO)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Uddin, S, Khan, A, Hossain, M E & Moni, M A 2019, 'Comparing different supervised machine learning algorithms for disease prediction', BMC Medical Informatics and Decision Making, vol. 19, no. 1, 281. https://doi.org/10.1186/s12911-019-1004-8", + "raw_type": "info:eu-repo/semantics/publishedVersion" + }, + { + "id": "pmh:oai:doaj.org/article:9563bebece94495291af01cd287627a5", + "is_oa": false, + "landing_page_url": "https://doaj.org/article/9563bebece94495291af01cd287627a5", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Medical Informatics and Decision Making, Vol 19, Iss 1, Pp 1-16 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6925840", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6925840", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Med Inform Decis Mak", + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1186/s12911-019-1004-8", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12911-019-1004-8", + "pdf_url": "https://bmcmedinformdecismak.biomedcentral.com/track/pdf/10.1186/s12911-019-1004-8", + "source": { + "id": "https://openalex.org/S107516304", + "display_name": "BMC Medical Informatics and Decision Making", + "issn_l": "1472-6947", + "issn": [ + "1472-6947" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Informatics and Decision Making", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 87, + "referenced_works": [ + "https://openalex.org/W51263609", + "https://openalex.org/W101938375", + "https://openalex.org/W129507607", + "https://openalex.org/W166622706", + "https://openalex.org/W179179905", + "https://openalex.org/W1130077638", + "https://openalex.org/W1171616665", + "https://openalex.org/W1498436455", + "https://openalex.org/W1565746575", + "https://openalex.org/W1590675038", + "https://openalex.org/W1596324102", + "https://openalex.org/W1615991656", + "https://openalex.org/W1648885110", + "https://openalex.org/W1651586605", + "https://openalex.org/W1756788811", + "https://openalex.org/W1968571599", + "https://openalex.org/W1972404374", + "https://openalex.org/W1972588194", + "https://openalex.org/W1973448749", + "https://openalex.org/W1973948212", + "https://openalex.org/W1983024255", + "https://openalex.org/W1995341919", + "https://openalex.org/W1996856743", + "https://openalex.org/W2005501262", + "https://openalex.org/W2012316318", + "https://openalex.org/W2017993392", + "https://openalex.org/W2049623605", + "https://openalex.org/W2052655222", + "https://openalex.org/W2063130532", + "https://openalex.org/W2065831478", + "https://openalex.org/W2066525392", + "https://openalex.org/W2083866813", + "https://openalex.org/W2101234009", + "https://openalex.org/W2103069675", + "https://openalex.org/W2103441516", + "https://openalex.org/W2104890527", + "https://openalex.org/W2111974630", + "https://openalex.org/W2117646649", + "https://openalex.org/W2118020653", + "https://openalex.org/W2120109270", + "https://openalex.org/W2122111042", + "https://openalex.org/W2149706766", + "https://openalex.org/W2156098321", + "https://openalex.org/W2157784421", + "https://openalex.org/W2158698691", + "https://openalex.org/W2184248488", + "https://openalex.org/W2187651840", + "https://openalex.org/W2242827712", + "https://openalex.org/W2256130358", + "https://openalex.org/W2259337669", + "https://openalex.org/W2270635011", + "https://openalex.org/W2277317151", + "https://openalex.org/W2285678238", + "https://openalex.org/W2324845196", + "https://openalex.org/W2339549526", + "https://openalex.org/W2394922069", + "https://openalex.org/W2407129890", + "https://openalex.org/W2478337590", + "https://openalex.org/W2498119267", + "https://openalex.org/W2504629029", + "https://openalex.org/W2511048274", + "https://openalex.org/W2548466742", + "https://openalex.org/W2569214105", + "https://openalex.org/W2604503416", + "https://openalex.org/W2610135452", + "https://openalex.org/W2614141400", + "https://openalex.org/W2754510604", + "https://openalex.org/W2755895186", + "https://openalex.org/W2757722543", + "https://openalex.org/W2764175852", + "https://openalex.org/W2773413394", + "https://openalex.org/W2784168210", + "https://openalex.org/W2791504809", + "https://openalex.org/W2796884049", + "https://openalex.org/W2799071577", + "https://openalex.org/W2800253831", + "https://openalex.org/W2807027008", + "https://openalex.org/W2807992546", + "https://openalex.org/W2885479215", + "https://openalex.org/W2904579171", + "https://openalex.org/W2911495555", + "https://openalex.org/W2911964244", + "https://openalex.org/W2963873275", + "https://openalex.org/W2991792334", + "https://openalex.org/W4285719527", + "https://openalex.org/W6607259140", + "https://openalex.org/W6675354045" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W4394896187", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3107602296", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347" + ], + "abstract_inverted_index": { + "BACKGROUND:": [ + 0 + ], + "Supervised": [ + 1 + ], + "machine": [ + 2, + 43, + 74, + 108, + 200, + 225 + ], + "learning": [ + 3, + 44, + 75, + 109, + 201, + 226 + ], + "algorithms": [ + 4, + 110, + 202 + ], + "have": [ + 5 + ], + "been": [ + 6 + ], + "a": [ + 7, + 23, + 188 + ], + "dominant": [ + 8 + ], + "method": [ + 9 + ], + "in": [ + 10, + 100, + 163, + 176, + 218 + ], + "the": [ + 11, + 35, + 103, + 118, + 133, + 141, + 151, + 160, + 179, + 192, + 219 + ], + "data": [ + 12, + 19 + ], + "mining": [ + 13 + ], + "field.": [ + 14 + ], + "Disease": [ + 15 + ], + "prediction": [ + 16 + ], + "using": [ + 17 + ], + "health": [ + 18 + ], + "has": [ + 20 + ], + "recently": [ + 21 + ], + "shown": [ + 22 + ], + "potential": [ + 24 + ], + "application": [ + 25 + ], + "area": [ + 26 + ], + "for": [ + 27, + 51, + 89, + 102, + 111, + 203, + 228 + ], + "these": [ + 28 + ], + "methods.": [ + 29 + ], + "This": [ + 30, + 169, + 185, + 206 + ], + "study": [ + 31, + 186 + ], + "ai7ms": [ + 32 + ], + "to": [ + 33, + 64, + 215 + ], + "identify": [ + 34, + 65 + ], + "key": [ + 36 + ], + "trends": [ + 37 + ], + "among": [ + 38, + 105 + ], + "different": [ + 39, + 90, + 196 + ], + "types": [ + 40, + 91 + ], + "of": [ + 41, + 92, + 165, + 178, + 191, + 195, + 198, + 209, + 221 + ], + "supervised": [ + 42, + 73, + 107, + 199, + 224 + ], + "algorithms,": [ + 45 + ], + "and": [ + 46, + 49, + 85 + ], + "their": [ + 47, + 229 + ], + "performance": [ + 48, + 194, + 211 + ], + "usage": [ + 50 + ], + "disease": [ + 52, + 79, + 112, + 204 + ], + "risk": [ + 53 + ], + "prediction.": [ + 54, + 80, + 113, + 205 + ], + "METHODS:": [ + 55 + ], + "In": [ + 56 + ], + "this": [ + 57 + ], + "study,": [ + 58 + ], + "extensive": [ + 59 + ], + "research": [ + 60 + ], + "efforts": [ + 61 + ], + "were": [ + 62, + 87 + ], + "made": [ + 63 + ], + "those": [ + 66 + ], + "studies": [ + 67, + 153, + 180 + ], + "that": [ + 68, + 117 + ], + "applied": [ + 69, + 125 + ], + "more": [ + 70 + ], + "than": [ + 71 + ], + "one": [ + 72 + ], + "algorithm": [ + 76, + 123, + 136, + 145, + 227 + ], + "on": [ + 77 + ], + "single": [ + 78 + ], + "Two": [ + 81 + ], + "databases": [ + 82 + ], + "(i.e.,": [ + 83 + ], + "Scopus": [ + 84 + ], + "PubMed)": [ + 86 + ], + "searched": [ + 88 + ], + "search": [ + 93 + ], + "items.": [ + 94 + ], + "Thus,": [ + 95 + ], + "we": [ + 96 + ], + "selected": [ + 97 + ], + "48": [ + 98 + ], + "articles": [ + 99 + ], + "total": [ + 101 + ], + "comparison": [ + 104 + ], + "variants": [ + 106, + 197 + ], + "RESULTS:": [ + 114 + ], + "We": [ + 115 + ], + "found": [ + 116 + ], + "Support": [ + 119 + ], + "Vector": [ + 120 + ], + "Machine": [ + 121 + ], + "(SVM)": [ + 122 + ], + "is": [ + 124 + ], + "most": [ + 126 + ], + "frequently": [ + 127 + ], + "(in": [ + 128, + 137 + ], + "29": [ + 129 + ], + "studies)": [ + 130 + ], + "followed": [ + 131, + 171 + ], + "by": [ + 132, + 172 + ], + "Naïve": [ + 134 + ], + "Bayes": [ + 135 + ], + "23": [ + 138 + ], + "studies).": [ + 139 + ], + "However,": [ + 140 + ], + "Random": [ + 142 + ], + "Forest": [ + 143 + ], + "(RF)": [ + 144 + ], + "showed": [ + 146, + 159 + ], + "superior": [ + 147 + ], + "accuracy": [ + 148, + 162 + ], + "comparatively.": [ + 149 + ], + "Of": [ + 150 + ], + "17": [ + 152 + ], + "where": [ + 154 + ], + "it": [ + 155, + 181 + ], + "was": [ + 156, + 170, + 182 + ], + "applied,": [ + 157 + ], + "RF": [ + 158 + ], + "highest": [ + 161 + ], + "9": [ + 164 + ], + "them,": [ + 166 + ], + "i.e.,": [ + 167 + ], + "53%.": [ + 168 + ], + "SVM": [ + 173 + ], + "which": [ + 174 + ], + "topped": [ + 175 + ], + "41%": [ + 177 + ], + "considered.": [ + 183 + ], + "CONCLUSION:": [ + 184 + ], + "provides": [ + 187 + ], + "wide": [ + 189 + ], + "overview": [ + 190 + ], + "relative": [ + 193, + 210 + ], + "important": [ + 207 + ], + "information": [ + 208 + ], + "can": [ + 212 + ], + "be": [ + 213 + ], + "used": [ + 214 + ], + "aid": [ + 216 + ], + "researchers": [ + 217 + ], + "selection": [ + 220 + ], + "an": [ + 222 + ], + "appropriate": [ + 223 + ], + "studies.": [ + 230 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 74 + }, + { + "year": 2025, + "cited_by_count": 313 + }, + { + "year": 2024, + "cited_by_count": 370 + }, + { + "year": 2023, + "cited_by_count": 368 + }, + { + "year": 2022, + "cited_by_count": 289 + }, + { + "year": 2021, + "cited_by_count": 168 + }, + { + "year": 2020, + "cited_by_count": 37 + } + ], + "updated_date": "2026-06-01T08:46:32.239190", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2936573766", + "doi": "https://doi.org/10.1186/s12874-019-0681-4", + "title": "Machine learning in medicine: a practical introduction", + "display_name": "Machine learning in medicine: a practical introduction", + "relevance_score": 2525.034, + "publication_year": 2019, + "publication_date": "2019-03-19", + "ids": { + "openalex": "https://openalex.org/W2936573766", + "doi": "https://doi.org/10.1186/s12874-019-0681-4", + "mag": "2936573766", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/30890124" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5011988336", + "display_name": "Jenni A. M. Sidey-Gibbons", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Jenni A. M. Sidey-Gibbons", + "raw_affiliation_strings": [ + "Department of Engineering, University of Cambridge, Trumpington Street, Cambridge, CB2 1PZ, UK" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Engineering, University of Cambridge, Trumpington Street, Cambridge, CB2 1PZ, UK", + "institution_ids": [ + "https://openalex.org/I241749" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5038685423", + "display_name": "Chris Sidey‐Gibbons", + "orcid": "https://orcid.org/0000-0002-4732-7305" + }, + "institutions": [ + { + "id": "https://openalex.org/I1283280774", + "display_name": "Brigham and Women's Hospital", + "ror": "https://ror.org/04b6nzv94", + "country_code": "US", + "type": "healthcare", + "lineage": [ + "https://openalex.org/I1283280774", + "https://openalex.org/I48633490" + ] + }, + { + "id": "https://openalex.org/I136199984", + "display_name": "Harvard University", + "ror": "https://ror.org/03vek6s52", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I136199984" + ] + }, + { + "id": "https://openalex.org/I241749", + "display_name": "University of Cambridge", + "ror": "https://ror.org/013meh722", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I241749" + ] + } + ], + "countries": [ + "GB", + "US" + ], + "is_corresponding": true, + "raw_author_name": "Chris J. Sidey-Gibbons", + "raw_affiliation_strings": [ + "Department of Surgery, Brigham and Women's Hospital, 75 Francis Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "University of Cambridge Psychometrics Centre, Trumpington Street, Cambridge, CB2 1AG, UK. cgibbons2@bwh.harvard.edu", + "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-4732-7305", + "affiliations": [ + { + "raw_affiliation_string": "Department of Surgery, Brigham and Women's Hospital, 75 Francis Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I1283280774" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + }, + { + "raw_affiliation_string": "University of Cambridge Psychometrics Centre, Trumpington Street, Cambridge, CB2 1AG, UK. cgibbons2@bwh.harvard.edu", + "institution_ids": [ + "https://openalex.org/I241749" + ] + }, + { + "raw_affiliation_string": "Department of Surgery, Harvard Medical School, 25 Shattuck Street, Boston, 01225, Massachusetts, USA", + "institution_ids": [ + "https://openalex.org/I136199984" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 2, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5038685423" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1283280774", + "https://openalex.org/I136199984", + "https://openalex.org/I241749" + ], + "apc_list": { + "value": 1790, + "currency": "GBP", + "value_usd": 2195 + }, + "apc_paid": { + "value": 1790, + "currency": "GBP", + "value_usd": 2195 + }, + "fwci": 68.7809, + "has_fulltext": true, + "cited_by_count": 1263, + "citation_normalized_percentile": { + "value": 0.99923339, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "19", + "issue": "1", + "first_page": "64", + "last_page": "64" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9581000208854675, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10862", + "display_name": "AI in cancer detection", + "score": 0.9581000208854675, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12422", + "display_name": "Radiomics and Machine Learning in Medical Imaging", + "score": 0.003700000001117587, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + }, + { + "id": "https://openalex.org/T12994", + "display_name": "Infrared Thermography in Medicine", + "score": 0.0031999999191612005, + "subfield": { + "id": "https://openalex.org/subfields/2741", + "display_name": "Radiology, Nuclear Medicine and Imaging" + }, + "field": { + "id": "https://openalex.org/fields/27", + "display_name": "Medicine" + }, + "domain": { + "id": "https://openalex.org/domains/4", + "display_name": "Health Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.8439639806747437 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.762427806854248 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7216744422912598 + }, + { + "id": "https://openalex.org/keywords/support-vector-machine", + "display_name": "Support vector machine", + "score": 0.7101428508758545 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.48576977849006653 + }, + { + "id": "https://openalex.org/keywords/cross-validation", + "display_name": "Cross-validation", + "score": 0.4503832459449768 + }, + { + "id": "https://openalex.org/keywords/sensitivity", + "display_name": "Sensitivity (control systems)", + "score": 0.4276343286037445 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.39164337515830994 + }, + { + "id": "https://openalex.org/keywords/algorithm", + "display_name": "Algorithm", + "score": 0.33824363350868225 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.8439639806747437 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.762427806854248 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7216744422912598 + }, + { + "id": "https://openalex.org/C12267149", + "wikidata": "https://www.wikidata.org/wiki/Q282453", + "display_name": "Support vector machine", + "level": 2, + "score": 0.7101428508758545 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.48576977849006653 + }, + { + "id": "https://openalex.org/C27181475", + "wikidata": "https://www.wikidata.org/wiki/Q541014", + "display_name": "Cross-validation", + "level": 2, + "score": 0.4503832459449768 + }, + { + "id": "https://openalex.org/C21200559", + "wikidata": "https://www.wikidata.org/wiki/Q7451068", + "display_name": "Sensitivity (control systems)", + "level": 2, + "score": 0.4276343286037445 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.39164337515830994 + }, + { + "id": "https://openalex.org/C11413529", + "wikidata": "https://www.wikidata.org/wiki/Q8366", + "display_name": "Algorithm", + "level": 1, + "score": 0.33824363350868225 + }, + { + "id": "https://openalex.org/C24326235", + "wikidata": "https://www.wikidata.org/wiki/Q126095", + "display_name": "Electronic engineering", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C127413603", + "wikidata": "https://www.wikidata.org/wiki/Q11023", + "display_name": "Engineering", + "level": 0, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D001943", + "descriptor_name": "Breast Neoplasms", + "qualifier_ui": "Q000175", + "qualifier_name": "diagnosis", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D003936", + "descriptor_name": "Diagnosis, Computer-Assisted", + "qualifier_ui": "Q000379", + "qualifier_name": "methods", + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D005260", + "descriptor_name": "Female", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012680", + "descriptor_name": "Sensitivity and Specificity", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D012984", + "descriptor_name": "Software", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D016571", + "descriptor_name": "Neural Networks, Computer", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D060388", + "descriptor_name": "Support Vector Machine", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + } + ], + "locations_count": 4, + "locations": [ + { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + { + "id": "pmid:30890124", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/30890124", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC medical research methodology", + "raw_type": null + }, + { + "id": "pmh:oai:doaj.org/article:5bab4056aa204fd895ccd0806796ea31", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/5bab4056aa204fd895ccd0806796ea31", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "BMC Medical Research Methodology, Vol 19, Iss 1, Pp 1-18 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:europepmc.org:5418903", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6425557", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400806", + "display_name": "Europe PMC (PubMed Central)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1303153112", + "host_organization_name": "European Bioinformatics Institute", + "host_organization_lineage": [ + "https://openalex.org/I1303153112" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "Text" + } + ], + "best_oa_location": { + "id": "doi:10.1186/s12874-019-0681-4", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1186/s12874-019-0681-4", + "pdf_url": "https://bmcmedresmethodol.biomedcentral.com/track/pdf/10.1186/s12874-019-0681-4", + "source": { + "id": "https://openalex.org/S185874209", + "display_name": "BMC Medical Research Methodology", + "issn_l": "1471-2288", + "issn": [ + "1471-2288" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310320256", + "host_organization_name": "BioMed Central", + "host_organization_lineage": [ + "https://openalex.org/P4310320256", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "BioMed Central", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "BMC Medical Research Methodology", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G3027281633", + "display_name": null, + "funder_award_id": "PDF-2014-07-28", + "funder_id": "https://openalex.org/F4320334659", + "funder_display_name": "Research Trainees Coordinating Centre" + }, + { + "id": "https://openalex.org/G5017041387", + "display_name": null, + "funder_award_id": "PDF-2014-07-028", + "funder_id": "https://openalex.org/F4320319990", + "funder_display_name": "National Institute for Health and Care Research" + }, + { + "id": "https://openalex.org/G6065741097", + "display_name": null, + "funder_award_id": "CDF-2017-10-019", + "funder_id": "https://openalex.org/F4320334659", + "funder_display_name": "Research Trainees Coordinating Centre" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320319990", + "display_name": "National Institute for Health and Care Research", + "ror": "https://ror.org/0187kwz08" + }, + { + "id": "https://openalex.org/F4320334659", + "display_name": "Research Trainees Coordinating Centre", + "ror": "https://ror.org/0187kwz08" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2936573766.pdf", + "grobid_xml": "https://content.openalex.org/works/W2936573766.grobid-xml" + }, + "referenced_works_count": 40, + "referenced_works": [ + "https://openalex.org/W85009029", + "https://openalex.org/W1267646904", + "https://openalex.org/W1880262756", + "https://openalex.org/W1901616594", + "https://openalex.org/W1955303603", + "https://openalex.org/W1969557815", + "https://openalex.org/W1979744342", + "https://openalex.org/W2015795623", + "https://openalex.org/W2039708501", + "https://openalex.org/W2054290230", + "https://openalex.org/W2062227835", + "https://openalex.org/W2068181924", + "https://openalex.org/W2105034425", + "https://openalex.org/W2119821739", + "https://openalex.org/W2122825543", + "https://openalex.org/W2148554370", + "https://openalex.org/W2153803020", + "https://openalex.org/W2157825442", + "https://openalex.org/W2161793142", + "https://openalex.org/W2163605009", + "https://openalex.org/W2180737626", + "https://openalex.org/W2187089797", + "https://openalex.org/W2236731268", + "https://openalex.org/W2254050631", + "https://openalex.org/W2263224247", + "https://openalex.org/W2282821441", + "https://openalex.org/W2440159969", + "https://openalex.org/W2581082771", + "https://openalex.org/W2598641350", + "https://openalex.org/W2599379579", + "https://openalex.org/W2788588291", + "https://openalex.org/W2789894922", + "https://openalex.org/W3023058184", + "https://openalex.org/W3048797457", + "https://openalex.org/W4235011515", + "https://openalex.org/W4235051201", + "https://openalex.org/W4239510810", + "https://openalex.org/W4288077072", + "https://openalex.org/W6632445771", + "https://openalex.org/W6639619044" + ], + "related_works": [ + "https://openalex.org/W2090763504", + "https://openalex.org/W816105089", + "https://openalex.org/W148178222", + "https://openalex.org/W2104657898", + "https://openalex.org/W1948992892", + "https://openalex.org/W1886884218", + "https://openalex.org/W2550904580", + "https://openalex.org/W2963653239", + "https://openalex.org/W4241378172", + "https://openalex.org/W2144801536" + ], + "abstract_inverted_index": { + "BACKGROUND:": [ + 0 + ], + "Following": [ + 1 + ], + "visible": [ + 2 + ], + "successes": [ + 3 + ], + "on": [ + 4, + 131, + 155 + ], + "a": [ + 5, + 35, + 42, + 99, + 190, + 255, + 261 + ], + "wide": [ + 6 + ], + "range": [ + 7 + ], + "of": [ + 8, + 65, + 79, + 171, + 179, + 270 + ], + "predictive": [ + 9, + 49, + 72, + 186 + ], + "tasks,": [ + 10 + ], + "machine": [ + 11, + 39, + 66, + 271 + ], + "learning": [ + 12, + 40, + 67, + 272 + ], + "techniques": [ + 13, + 68 + ], + "are": [ + 14 + ], + "attracting": [ + 15 + ], + "substantial": [ + 16 + ], + "interest": [ + 17 + ], + "from": [ + 18, + 82, + 133 + ], + "medical": [ + 19, + 276 + ], + "researchers": [ + 20 + ], + "and": [ + 21, + 47, + 56, + 104, + 124, + 169, + 181, + 221, + 228, + 268, + 275, + 296 + ], + "clinicians.": [ + 22 + ], + "We": [ + 23, + 61, + 128, + 150, + 175, + 188, + 259 + ], + "address": [ + 24 + ], + "the": [ + 25, + 63, + 113, + 134, + 143, + 147, + 152, + 156, + 160, + 166, + 172, + 177, + 197, + 231, + 237, + 266 + ], + "need": [ + 26 + ], + "for": [ + 27, + 74, + 273 + ], + "capacity": [ + 28 + ], + "development": [ + 29 + ], + "in": [ + 30, + 146 + ], + "this": [ + 31 + ], + "area": [ + 32, + 229 + ], + "by": [ + 33, + 69 + ], + "providing": [ + 34 + ], + "conceptual": [ + 36 + ], + "introduction": [ + 37 + ], + "to": [ + 38, + 45, + 141, + 164, + 184, + 193, + 209, + 264, + 288 + ], + "alongside": [ + 41 + ], + "practical": [ + 43 + ], + "guide": [ + 44, + 192 + ], + "developing": [ + 46, + 70, + 194 + ], + "evaluating": [ + 48 + ], + "algorithms": [ + 50, + 86, + 130, + 195, + 206, + 251 + ], + "using": [ + 51, + 77, + 196, + 236 + ], + "freely-available": [ + 52 + ], + "open": [ + 53 + ], + "source": [ + 54 + ], + "software": [ + 55 + ], + "public": [ + 57 + ], + "domain": [ + 58 + ], + "data.": [ + 59 + ], + "METHODS:": [ + 60 + ], + "demonstrate": [ + 62, + 265, + 282 + ], + "use": [ + 64, + 178, + 260 + ], + "three": [ + 71, + 173 + ], + "models": [ + 73 + ], + "cancer": [ + 75 + ], + "diagnosis": [ + 76 + ], + "descriptions": [ + 78 + ], + "nuclei": [ + 80, + 212 + ], + "sampled": [ + 81 + ], + "breast": [ + 83, + 114 + ], + "masses.": [ + 84 + ], + "These": [ + 85 + ], + "include": [ + 87 + ], + "regularized": [ + 88 + ], + "General": [ + 89 + ], + "Linear": [ + 90 + ], + "Model": [ + 91 + ], + "regression": [ + 92 + ], + "(GLMs),": [ + 93 + ], + "Support": [ + 94 + ], + "Vector": [ + 95 + ], + "Machines": [ + 96 + ], + "(SVMs)": [ + 97 + ], + "with": [ + 98, + 159, + 213 + ], + "radial": [ + 100 + ], + "basis": [ + 101 + ], + "function": [ + 102 + ], + "kernel,": [ + 103 + ], + "single-layer": [ + 105 + ], + "Artificial": [ + 106 + ], + "Neural": [ + 107 + ], + "Networks.": [ + 108 + ], + "The": [ + 109, + 204, + 278 + ], + "publicly-available": [ + 110 + ], + "dataset": [ + 111 + ], + "describing": [ + 112 + ], + "mass": [ + 115 + ], + "samples": [ + 116 + ], + "(N=683)": [ + 117 + ], + "was": [ + 118, + 234 + ], + "randomly": [ + 119 + ], + "split": [ + 120 + ], + "into": [ + 121, + 254 + ], + "evaluation": [ + 122, + 135 + ], + "(n=456)": [ + 123 + ], + "validation": [ + 125, + 148, + 157 + ], + "(n=227)": [ + 126 + ], + "samples.": [ + 127 + ], + "trained": [ + 129, + 205 + ], + "data": [ + 132 + ], + "sample": [ + 136 + ], + "before": [ + 137 + ], + "they": [ + 138 + ], + "were": [ + 139, + 207, + 252 + ], + "used": [ + 140 + ], + "predict": [ + 142 + ], + "diagnostic": [ + 144, + 162 + ], + "outcome": [ + 145 + ], + "dataset.": [ + 149 + ], + "compared": [ + 151 + ], + "predictions": [ + 153 + ], + "made": [ + 154 + ], + "datasets": [ + 158 + ], + "real-world": [ + 161 + ], + "decisions": [ + 163 + ], + "calculate": [ + 165 + ], + "accuracy,": [ + 167 + ], + "sensitivity,": [ + 168 + ], + "specificity": [ + 170, + 222, + 248 + ], + "models.": [ + 174 + ], + "explored": [ + 176 + ], + "averaging": [ + 180 + ], + "voting": [ + 182, + 256 + ], + "ensembles": [ + 183 + ], + "improve": [ + 185 + ], + "performance.": [ + 187 + ], + "provide": [ + 189 + ], + "step-by-step": [ + 191 + ], + "open-source": [ + 198 + ], + "R": [ + 199 + ], + "statistical": [ + 200 + ], + "programming": [ + 201 + ], + "environment.": [ + 202 + ], + "RESULTS:": [ + 203 + ], + "able": [ + 208 + ], + "classify": [ + 210 + ], + "cell": [ + 211 + ], + "high": [ + 214 + ], + "accuracy": [ + 215, + 226 + ], + "(.94": [ + 216 + ], + "-.96),": [ + 217 + ], + "sensitivity": [ + 218, + 246 + ], + "(.97": [ + 219 + ], + "-.99),": [ + 220 + ], + "(.85": [ + 223 + ], + "-.94).": [ + 224 + ], + "Maximum": [ + 225 + ], + "(.96)": [ + 227 + ], + "under": [ + 230 + ], + "curve": [ + 232 + ], + "(.97)": [ + 233 + ], + "achieved": [ + 235 + ], + "SVM": [ + 238 + ], + "algorithm.": [ + 239 + ], + "Prediction": [ + 240 + ], + "performance": [ + 241 + ], + "increased": [ + 242 + ], + "marginally": [ + 243 + ], + "(accuracy": [ + 244 + ], + "=.97,": [ + 245 + ], + "=.99,": [ + 247 + ], + "=.95)": [ + 249 + ], + "when": [ + 250 + ], + "arranged": [ + 253 + ], + "ensemble.": [ + 257 + ], + "CONCLUSIONS:": [ + 258 + ], + "straightforward": [ + 262 + ], + "example": [ + 263 + ], + "theory": [ + 267 + ], + "practice": [ + 269 + ], + "clinicians": [ + 274 + ], + "researchers.": [ + 277 + ], + "principals": [ + 279 + ], + "which": [ + 280 + ], + "we": [ + 281 + ], + "here": [ + 283 + ], + "can": [ + 284 + ], + "be": [ + 285 + ], + "readily": [ + 286 + ], + "applied": [ + 287 + ], + "other": [ + 289 + ], + "complex": [ + 290 + ], + "tasks": [ + 291 + ], + "including": [ + 292 + ], + "natural": [ + 293 + ], + "language": [ + 294 + ], + "processing": [ + 295 + ], + "image": [ + 297 + ], + "recognition.": [ + 298 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 54 + }, + { + "year": 2025, + "cited_by_count": 223 + }, + { + "year": 2024, + "cited_by_count": 252 + }, + { + "year": 2023, + "cited_by_count": 259 + }, + { + "year": 2022, + "cited_by_count": 213 + }, + { + "year": 2021, + "cited_by_count": 167 + }, + { + "year": 2020, + "cited_by_count": 89 + }, + { + "year": 2019, + "cited_by_count": 5 + } + ], + "updated_date": "2026-05-29T09:21:14.243279", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2540093921", + "doi": "https://doi.org/10.7551/mitpress/8291.003.0006", + "title": "Foundations of Machine Learning", + "display_name": "Foundations of Machine Learning", + "relevance_score": 2524.9668, + "publication_year": 2012, + "publication_date": "2012-05-18", + "ids": { + "openalex": "https://openalex.org/W2540093921", + "doi": "https://doi.org/10.7551/mitpress/8291.003.0006", + "mag": "2540093921" + }, + "language": "en", + "primary_location": { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + }, + "type": "book-chapter", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": true, + "oa_status": "bronze", + "oa_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "any_repository_has_fulltext": false + }, + "authorships": [], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 0, + "corresponding_author_ids": [], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 46.8615, + "has_fulltext": false, + "cited_by_count": 1088, + "citation_normalized_percentile": { + "value": 0.99935275, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": "23", + "last_page": "52" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.056299999356269836, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.056299999356269836, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12874", + "display_name": "Digital Imaging for Blood Diseases", + "score": 0.05420000106096268, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.47987475991249084 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.347138911485672 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.47987475991249084 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.347138911485672 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + } + ], + "best_oa_location": { + "id": "doi:10.7551/mitpress/8291.003.0006", + "is_oa": true, + "landing_page_url": "https://doi.org/10.7551/mitpress/8291.003.0006", + "pdf_url": "https://direct.mit.edu/books/oa-monograph/chapter-pdf/2025421/c000700_9780262301183.pdf", + "source": { + "id": "https://openalex.org/S4306463997", + "display_name": "The MIT Press eBooks", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/P4310315718", + "host_organization_name": "The MIT Press", + "host_organization_lineage": [ + "https://openalex.org/P4310315718" + ], + "host_organization_lineage_names": [ + "The MIT Press" + ], + "type": "ebook platform" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Boosting", + "raw_type": "book-chapter" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2540093921.pdf", + "grobid_xml": "https://content.openalex.org/works/W2540093921.grobid-xml" + }, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2899084033", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2382290278", + "https://openalex.org/W2350741829", + "https://openalex.org/W2130043461", + "https://openalex.org/W2530322880", + "https://openalex.org/W1596801655" + ], + "abstract_inverted_index": { + "Foundations": [ + 0 + ], + "of": [ + 1, + 11, + 63, + 78, + 84, + 89, + 114, + 146, + 154, + 165, + 179, + 187, + 247, + 297, + 311, + 319, + 322 + ], + "Machine": [ + 2 + ], + "LearningSoon": [ + 3 + ], + "we": [ + 4, + 171, + 202, + 207, + 255 + ], + "will": [ + 5, + 41, + 46, + 72, + 172, + 203, + 231, + 256 + ], + "embark": [ + 6 + ], + "on": [ + 7, + 34, + 100, + 239, + 262 + ], + "a": [ + 8, + 23, + 51, + 87, + 92, + 142, + 150, + 210, + 284, + 294 + ], + "theoretical": [ + 9 + ], + "study": [ + 10, + 80 + ], + "AdaBoost": [ + 12 + ], + "in": [ + 13, + 75, + 168, + 183, + 232, + 251, + 270, + 281, + 292, + 332 + ], + "order": [ + 14 + ], + "to": [ + 15, + 26, + 30, + 49, + 54, + 58, + 139, + 149, + 192, + 267 + ], + "understand": [ + 16 + ], + "its": [ + 17, + 20 + ], + "properties,": [ + 18 + ], + "particularly": [ + 19 + ], + "ability": [ + 21 + ], + "as": [ + 22 + ], + "learning": [ + 24, + 115, + 188, + 276 + ], + "algorithm": [ + 25 + ], + "generalize,": [ + 27 + ], + "that": [ + 28, + 71, + 205, + 213 + ], + "is,": [ + 29 + ], + "make": [ + 31 + ], + "accurate": [ + 32, + 99, + 237 + ], + "predictions": [ + 33, + 96, + 238 + ], + "data": [ + 35, + 217 + ], + "not": [ + 36, + 225 + ], + "seen": [ + 37 + ], + "during": [ + 38 + ], + "training.Before": [ + 39 + ], + "this": [ + 40, + 112, + 169, + 185, + 229, + 252, + 282, + 314 + ], + "be": [ + 42, + 47, + 73, + 118, + 124, + 137, + 190, + 193, + 302 + ], + "possible,": [ + 43 + ], + "however,": [ + 44 + ], + "it": [ + 45, + 107, + 136, + 264 + ], + "necessary": [ + 48 + ], + "take": [ + 50 + ], + "step": [ + 52 + ], + "back": [ + 53 + ], + "outline": [ + 55, + 280 + ], + "our": [ + 56, + 76 + ], + "approach": [ + 57, + 249 + ], + "the": [ + 59, + 81, + 128, + 163, + 180, + 215, + 221, + 245, + 248, + 259, + 298, + 309, + 312, + 320, + 323 + ], + "more": [ + 60 + ], + "general": [ + 61, + 260 + ], + "problem": [ + 62, + 83, + 182, + 300 + ], + "machine": [ + 64, + 289 + ], + "learning,": [ + 65, + 290 + ], + "including": [ + 66 + ], + "some": [ + 67 + ], + "fundamental": [ + 68 + ], + "general-purpose": [ + 69 + ], + "tools": [ + 70 + ], + "invaluable": [ + 74 + ], + "analysis": [ + 77, + 261 + ], + "AdaBoost.We": [ + 79 + ], + "basic": [ + 82 + ], + "inferring": [ + 85 + ], + "from": [ + 86, + 141 + ], + "set": [ + 88, + 223 + ], + "training": [ + 90, + 129, + 147, + 216, + 222 + ], + "examples": [ + 91, + 148 + ], + "classification": [ + 93 + ], + "rule": [ + 94, + 212, + 230 + ], + "whose": [ + 95 + ], + "are": [ + 97, + 199 + ], + "highly": [ + 98 + ], + "freshly": [ + 101 + ], + "observed": [ + 102 + ], + "test": [ + 103, + 131, + 155, + 242 + ], + "data.On": [ + 104 + ], + "first": [ + 105 + ], + "encounter,": [ + 106 + ], + "may": [ + 108 + ], + "seem": [ + 109 + ], + "questionable": [ + 110 + ], + "whether": [ + 111 + ], + "kind": [ + 113, + 186 + ], + "should": [ + 116, + 122, + 135 + ], + "even": [ + 117 + ], + "possible.After": [ + 119 + ], + "all,": [ + 120 + ], + "why": [ + 121, + 134 + ], + "there": [ + 123 + ], + "any": [ + 125 + ], + "connection": [ + 126 + ], + "between": [ + 127 + ], + "and": [ + 130, + 133, + 219, + 254, + 274, + 304, + 335 + ], + "examples,": [ + 132 + ], + "possible": [ + 138 + ], + "generalize": [ + 140, + 234 + ], + "relatively": [ + 143 + ], + "small": [ + 144 + ], + "number": [ + 145 + ], + "potentially": [ + 151 + ], + "vast": [ + 152 + ], + "universe": [ + 153 + ], + "examples?Although": [ + 156 + ], + "such": [ + 157 + ], + "objections": [ + 158 + ], + "have": [ + 159, + 328 + ], + "indeed": [ + 160 + ], + "often": [ + 161, + 257 + ], + "been": [ + 162 + ], + "subject": [ + 164 + ], + "philosophical": [ + 166 + ], + "debate,": [ + 167 + ], + "chapter": [ + 170, + 283, + 315 + ], + "identify": [ + 173 + ], + "an": [ + 174 + ], + "idealized": [ + 175 + ], + "but": [ + 176 + ], + "realistic": [ + 177 + ], + "model": [ + 178 + ], + "inference": [ + 181 + ], + "which": [ + 184, + 263, + 293 + ], + "can": [ + 189, + 208, + 301 + ], + "proved": [ + 191 + ], + "entirely": [ + 194 + ], + "feasible": [ + 195 + ], + "when": [ + 196, + 275 + ], + "certain": [ + 197 + ], + "conditions": [ + 198 + ], + "satisfied.In": [ + 200 + ], + "particular,": [ + 201 + ], + "see": [ + 204 + ], + "if": [ + 206, + 220 + ], + "find": [ + 209 + ], + "simple": [ + 211 + ], + "fits": [ + 214 + ], + "well,": [ + 218, + 235 + ], + "is": [ + 224, + 244, + 265, + 277 + ], + "too": [ + 226 + ], + "small,": [ + 227 + ], + "then": [ + 228 + ], + "fact": [ + 233 + ], + "providing": [ + 236 + ], + "previously": [ + 240 + ], + "unseen": [ + 241 + ], + "examples.This": [ + 243 + ], + "basis": [ + 246 + ], + "presented": [ + 250 + ], + "chapter,": [ + 253 + ], + "use": [ + 258 + ], + "founded": [ + 266 + ], + "guide": [ + 268 + ], + "us": [ + 269 + ], + "understanding": [ + 271 + ], + "how,": [ + 272 + ], + "why,": [ + 273 + ], + "possible.We": [ + 278 + ], + "also": [ + 279 + ], + "mathematical": [ + 285 + ], + "framework": [ + 286 + ], + "for": [ + 287 + ], + "studying": [ + 288 + ], + "one": [ + 291 + ], + "precise": [ + 295 + ], + "formulation": [ + 296 + ], + "boosting": [ + 299 + ], + "clearly": [ + 303 + ], + "naturally": [ + 305 + ], + "expressed.Note": [ + 306 + ], + "that,": [ + 307 + ], + "unlike": [ + 308 + ], + "rest": [ + 310 + ], + "book,": [ + 313 + ], + "omits": [ + 316 + ], + "nearly": [ + 317 + ], + "all": [ + 318, + 330 + ], + "proofs": [ + 321 + ], + "main": [ + 324 + ], + "results": [ + 325 + ], + "since": [ + 326 + ], + "these": [ + 327 + ], + "largely": [ + 329 + ], + "appeared": [ + 331 + ], + "various": [ + 333 + ], + "texts": [ + 334 + ], + "articles.": [ + 336 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 33 + }, + { + "year": 2024, + "cited_by_count": 57 + }, + { + "year": 2023, + "cited_by_count": 75 + }, + { + "year": 2022, + "cited_by_count": 93 + }, + { + "year": 2021, + "cited_by_count": 111 + }, + { + "year": 2020, + "cited_by_count": 113 + }, + { + "year": 2019, + "cited_by_count": 136 + }, + { + "year": 2018, + "cited_by_count": 116 + }, + { + "year": 2017, + "cited_by_count": 104 + }, + { + "year": 2016, + "cited_by_count": 99 + }, + { + "year": 2015, + "cited_by_count": 73 + }, + { + "year": 2014, + "cited_by_count": 57 + }, + { + "year": 2013, + "cited_by_count": 18 + } + ], + "updated_date": "2026-04-04T16:13:02.066488", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2186615578", + "doi": "https://doi.org/10.48550/arxiv.1512.01274", + "title": "MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems", + "display_name": "MXNet: A Flexible and Efficient Machine Learning Library for Heterogeneous Distributed Systems", + "relevance_score": 2496.3748, + "publication_year": 2015, + "publication_date": "2015-12-03", + "ids": { + "openalex": "https://openalex.org/W2186615578", + "doi": "https://doi.org/10.48550/arxiv.1512.01274", + "mag": "2186615578" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1512.01274", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5101471082", + "display_name": "Tianqi Chen", + "orcid": "https://orcid.org/0000-0002-0277-5163" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Chen, Tianqi", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100399457", + "display_name": "Mu Li", + "orcid": "https://orcid.org/0000-0001-9871-7488" + }, + "institutions": [ + { + "id": "https://openalex.org/I74973139", + "display_name": "Carnegie Mellon University", + "ror": "https://ror.org/05x2bcf33", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I74973139" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Li, Mu", + "raw_affiliation_strings": [ + "Carnegie Mellon University" + ], + "affiliations": [ + { + "raw_affiliation_string": "Carnegie Mellon University", + "institution_ids": [ + "https://openalex.org/I74973139" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5085236897", + "display_name": "Yutian Li", + "orcid": "https://orcid.org/0000-0003-1810-3000" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Li, Yutian", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100697981", + "display_name": "Min Lin", + "orcid": "https://orcid.org/0000-0002-0296-436X" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Lin, Min", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5100742122", + "display_name": "Naiyan Wang", + "orcid": "https://orcid.org/0000-0002-0526-3331" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wang, Naiyan", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5101452217", + "display_name": "Minjie Wang", + "orcid": "https://orcid.org/0000-0001-8830-6079" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Wang, Minjie", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5020757657", + "display_name": "Tianjun Xiao", + "orcid": "https://orcid.org/0000-0003-4705-1545" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Xiao, Tianjun", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5003333136", + "display_name": "Bing Xu", + "orcid": "https://orcid.org/0000-0003-3677-1109" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Xu, Bing", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5016054994", + "display_name": "Chiyuan Zhang", + "orcid": null + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhang, Chiyuan", + "raw_affiliation_strings": [], + "affiliations": [] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5100459107", + "display_name": "Zheng Zhang", + "orcid": "https://orcid.org/0000-0002-2292-0030" + }, + "institutions": [], + "countries": [], + "is_corresponding": false, + "raw_author_name": "Zhang, Zheng", + "raw_affiliation_strings": [], + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 10, + "corresponding_author_ids": [ + "https://openalex.org/A5101471082" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 1922, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9966999888420105, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10502", + "display_name": "Advanced Memory and Neural Computing", + "score": 0.9966999888420105, + "subfield": { + "id": "https://openalex.org/subfields/2208", + "display_name": "Electrical and Electronic Engineering" + }, + "field": { + "id": "https://openalex.org/fields/22", + "display_name": "Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10036", + "display_name": "Advanced Neural Network Applications", + "score": 0.9911999702453613, + "subfield": { + "id": "https://openalex.org/subfields/1707", + "display_name": "Computer Vision and Pattern Recognition" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10273", + "display_name": "IoT and Edge/Fog Computing", + "score": 0.9869999885559082, + "subfield": { + "id": "https://openalex.org/subfields/1705", + "display_name": "Computer Networks and Communications" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6740605235099792 + }, + { + "id": "https://openalex.org/keywords/distributed-computing", + "display_name": "Distributed computing", + "score": 0.47939276695251465 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.4228232204914093 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6740605235099792 + }, + { + "id": "https://openalex.org/C120314980", + "wikidata": "https://www.wikidata.org/wiki/Q180634", + "display_name": "Distributed computing", + "level": 1, + "score": 0.47939276695251465 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.4228232204914093 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1512.01274", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1512.01274", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1512.01274", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1512.01274", + "pdf_url": "https://arxiv.org/pdf/1512.01274", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 9, + "referenced_works": [ + "https://openalex.org/W753012316", + "https://openalex.org/W1606347560", + "https://openalex.org/W1863582480", + "https://openalex.org/W2083842231", + "https://openalex.org/W2117539524", + "https://openalex.org/W2127941149", + "https://openalex.org/W2155893237", + "https://openalex.org/W2168231600", + "https://openalex.org/W2949117887" + ], + "related_works": [ + "https://openalex.org/W4391375266", + "https://openalex.org/W2748952813", + "https://openalex.org/W2390279801", + "https://openalex.org/W2358668433", + "https://openalex.org/W2376932109", + "https://openalex.org/W2001405890", + "https://openalex.org/W2382290278", + "https://openalex.org/W2478288626", + "https://openalex.org/W4391913857", + "https://openalex.org/W2350741829" + ], + "abstract_inverted_index": { + "MXNet": [ + 0, + 41 + ], + "is": [ + 1, + 42, + 85 + ], + "a": [ + 2, + 88 + ], + "multi-language": [ + 3 + ], + "machine": [ + 4 + ], + "learning": [ + 5 + ], + "(ML)": [ + 6 + ], + "library": [ + 7 + ], + "to": [ + 8, + 38, + 57 + ], + "ease": [ + 9 + ], + "the": [ + 10, + 22, + 65, + 69 + ], + "development": [ + 11 + ], + "of": [ + 12, + 72, + 78 + ], + "ML": [ + 13 + ], + "algorithms,": [ + 14 + ], + "especially": [ + 15 + ], + "for": [ + 16 + ], + "deep": [ + 17, + 100 + ], + "neural": [ + 18, + 101 + ], + "networks.": [ + 19 + ], + "Embedded": [ + 20 + ], + "in": [ + 21, + 87 + ], + "host": [ + 23 + ], + "language,": [ + 24 + ], + "it": [ + 25 + ], + "blends": [ + 26 + ], + "declarative": [ + 27 + ], + "symbolic": [ + 28, + 80 + ], + "expression": [ + 29, + 81 + ], + "with": [ + 30 + ], + "imperative": [ + 31 + ], + "tensor": [ + 32, + 83 + ], + "computation.": [ + 33 + ], + "It": [ + 34 + ], + "offers": [ + 35 + ], + "auto": [ + 36 + ], + "differentiation": [ + 37 + ], + "derive": [ + 39 + ], + "gradients.": [ + 40 + ], + "computation": [ + 43 + ], + "and": [ + 44, + 47, + 68, + 74, + 82 + ], + "memory": [ + 45 + ], + "efficient": [ + 46 + ], + "runs": [ + 48 + ], + "on": [ + 49, + 97 + ], + "various": [ + 50 + ], + "heterogeneous": [ + 51 + ], + "systems,": [ + 52 + ], + "ranging": [ + 53 + ], + "from": [ + 54 + ], + "mobile": [ + 55 + ], + "devices": [ + 56 + ], + "distributed": [ + 58 + ], + "GPU": [ + 59, + 106 + ], + "clusters.": [ + 60 + ], + "This": [ + 61 + ], + "paper": [ + 62 + ], + "describes": [ + 63 + ], + "both": [ + 64, + 79 + ], + "API": [ + 66 + ], + "design": [ + 67 + ], + "system": [ + 70 + ], + "implementation": [ + 71 + ], + "MXNet,": [ + 73 + ], + "explains": [ + 75 + ], + "how": [ + 76 + ], + "embedding": [ + 77 + ], + "operation": [ + 84 + ], + "handled": [ + 86 + ], + "unified": [ + 89 + ], + "fashion.": [ + 90 + ], + "Our": [ + 91 + ], + "preliminary": [ + 92 + ], + "experiments": [ + 93 + ], + "reveal": [ + 94 + ], + "promising": [ + 95 + ], + "results": [ + 96 + ], + "large": [ + 98 + ], + "scale": [ + 99 + ], + "network": [ + 102 + ], + "applications": [ + 103 + ], + "using": [ + 104 + ], + "multiple": [ + 105 + ], + "machines.": [ + 107 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 1 + }, + { + "year": 2025, + "cited_by_count": 23 + }, + { + "year": 2024, + "cited_by_count": 66 + }, + { + "year": 2023, + "cited_by_count": 119 + }, + { + "year": 2022, + "cited_by_count": 116 + }, + { + "year": 2021, + "cited_by_count": 272 + }, + { + "year": 2020, + "cited_by_count": 344 + }, + { + "year": 2019, + "cited_by_count": 425 + }, + { + "year": 2018, + "cited_by_count": 328 + }, + { + "year": 2017, + "cited_by_count": 163 + }, + { + "year": 2016, + "cited_by_count": 63 + }, + { + "year": 2015, + "cited_by_count": 1 + }, + { + "year": 2014, + "cited_by_count": 1 + } + ], + "updated_date": "2026-04-15T08:11:43.952461", + "created_date": "2016-06-24T00:00:00" + }, + { + "id": "https://openalex.org/W1549998098", + "doi": "https://doi.org/10.1201/b17476", + "title": "Machine Learning: An Algorithmic Perspective", + "display_name": "Machine Learning: An Algorithmic Perspective", + "relevance_score": 2493.1604, + "publication_year": 2009, + "publication_date": "2009-04-01", + "ids": { + "openalex": "https://openalex.org/W1549998098", + "doi": "https://doi.org/10.1201/b17476", + "mag": "1549998098" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-017552574", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017552574&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "book", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5062355849", + "display_name": "Stephen Marsland", + "orcid": "https://orcid.org/0000-0002-9568-848X" + }, + "institutions": [], + "countries": [], + "is_corresponding": true, + "raw_author_name": "Stephen Marsland", + "raw_affiliation_strings": [], + "raw_orcid": null, + "affiliations": [] + } + ], + "institutions": [], + "countries_distinct_count": 0, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5062355849" + ], + "corresponding_institution_ids": [], + "apc_list": null, + "apc_paid": null, + "fwci": 7.7283, + "has_fulltext": false, + "cited_by_count": 1082, + "citation_normalized_percentile": { + "value": 0.97590361, + "is_in_top_1_percent": false, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 99, + "max": 100 + }, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.9527999758720398, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10100", + "display_name": "Metaheuristic Optimization Algorithms Research", + "score": 0.9527999758720398, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T10320", + "display_name": "Neural Networks and Applications", + "score": 0.9485999941825867, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11975", + "display_name": "Evolutionary Algorithms and Applications", + "score": 0.9290000200271606, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/python", + "display_name": "Python (programming language)", + "score": 0.8247708678245544 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6978603005409241 + }, + { + "id": "https://openalex.org/keywords/implementation", + "display_name": "Implementation", + "score": 0.6065407991409302 + }, + { + "id": "https://openalex.org/keywords/perspective", + "display_name": "Perspective (graphical)", + "score": 0.5084995031356812 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.485168993473053 + }, + { + "id": "https://openalex.org/keywords/reinforcement-learning", + "display_name": "Reinforcement learning", + "score": 0.46519267559051514 + }, + { + "id": "https://openalex.org/keywords/dimensionality-reduction", + "display_name": "Dimensionality reduction", + "score": 0.4341639578342438 + }, + { + "id": "https://openalex.org/keywords/theoretical-computer-science", + "display_name": "Theoretical computer science", + "score": 0.40039053559303284 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.3699588179588318 + }, + { + "id": "https://openalex.org/keywords/programming-language", + "display_name": "Programming language", + "score": 0.27868103981018066 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C519991488", + "wikidata": "https://www.wikidata.org/wiki/Q28865", + "display_name": "Python (programming language)", + "level": 2, + "score": 0.8247708678245544 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6978603005409241 + }, + { + "id": "https://openalex.org/C26713055", + "wikidata": "https://www.wikidata.org/wiki/Q245962", + "display_name": "Implementation", + "level": 2, + "score": 0.6065407991409302 + }, + { + "id": "https://openalex.org/C12713177", + "wikidata": "https://www.wikidata.org/wiki/Q1900281", + "display_name": "Perspective (graphical)", + "level": 2, + "score": 0.5084995031356812 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.485168993473053 + }, + { + "id": "https://openalex.org/C97541855", + "wikidata": "https://www.wikidata.org/wiki/Q830687", + "display_name": "Reinforcement learning", + "level": 2, + "score": 0.46519267559051514 + }, + { + "id": "https://openalex.org/C70518039", + "wikidata": "https://www.wikidata.org/wiki/Q16000077", + "display_name": "Dimensionality reduction", + "level": 2, + "score": 0.4341639578342438 + }, + { + "id": "https://openalex.org/C80444323", + "wikidata": "https://www.wikidata.org/wiki/Q2878974", + "display_name": "Theoretical computer science", + "level": 1, + "score": 0.40039053559303284 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.3699588179588318 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.27868103981018066 + } + ], + "mesh": [], + "locations_count": 6, + "locations": [ + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-017552574", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017552574&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-027969692", + "is_oa": false, + "landing_page_url": "http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=027969692&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "pmh:oai:aleph.bib-bvb.de:BVB01-032339396", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1201/b17476", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "software, multimedia" + }, + { + "id": "pmh:oai:cds.cern.ch:1338551", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/1338551", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "pmh:oai:cds.cern.ch:2749325", + "is_oa": false, + "landing_page_url": "http://cds.cern.ch/record/2749325", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306402195", + "display_name": "CERN Document Server (European Organization for Nuclear Research)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I67311998", + "host_organization_name": "European Organization for Nuclear Research", + "host_organization_lineage": [ + "https://openalex.org/I67311998" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "" + }, + { + "id": "mag:1549998098", + "is_oa": false, + "landing_page_url": "https://www.comp.hkbu.edu.hk/~cib/2009/Dec/review1/iib_vol10no1_review1.pdf", + "pdf_url": null, + "source": null, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 4, + "referenced_works": [ + "https://openalex.org/W136111882", + "https://openalex.org/W1554944419", + "https://openalex.org/W1606368318", + "https://openalex.org/W2799061466" + ], + "related_works": [ + "https://openalex.org/W2911964244", + "https://openalex.org/W1663973292", + "https://openalex.org/W1570448133", + "https://openalex.org/W2122410182", + "https://openalex.org/W1554944419", + "https://openalex.org/W2101234009", + "https://openalex.org/W1503398984", + "https://openalex.org/W2919115771", + "https://openalex.org/W3145506661", + "https://openalex.org/W2121863487", + "https://openalex.org/W2124776405", + "https://openalex.org/W1873332500", + "https://openalex.org/W2912934387", + "https://openalex.org/W2119821739", + "https://openalex.org/W1480376833", + "https://openalex.org/W3085162807", + "https://openalex.org/W2140190241", + "https://openalex.org/W2799061466", + "https://openalex.org/W2156909104", + "https://openalex.org/W2149706766" + ], + "abstract_inverted_index": { + "Traditional": [ + 0 + ], + "books": [ + 1 + ], + "on": [ + 2, + 29 + ], + "machine": [ + 3, + 53 + ], + "learning": [ + 4, + 54 + ], + "can": [ + 5 + ], + "be": [ + 6 + ], + "divided": [ + 7 + ], + "into": [ + 8 + ], + "two": [ + 9 + ], + "groups": [ + 10 + ], + "-": [ + 11 + ], + "those": [ + 12, + 25 + ], + "aimed": [ + 13 + ], + "at": [ + 14 + ], + "advanced": [ + 15 + ], + "undergraduates": [ + 16 + ], + "or": [ + 17 + ], + "early": [ + 18 + ], + "postgraduates": [ + 19 + ], + "with": [ + 20 + ], + "reasonable": [ + 21 + ], + "mathematical": [ + 22 + ], + "knowledge": [ + 23 + ], + "and": [ + 24, + 65 + ], + "that": [ + 26, + 41, + 50, + 76 + ], + "are": [ + 27 + ], + "primers": [ + 28 + ], + "how": [ + 30, + 45, + 64 + ], + "to": [ + 31, + 46, + 62 + ], + "code": [ + 32 + ], + "algorithms.": [ + 33 + ], + "The": [ + 34 + ], + "field": [ + 35 + ], + "is": [ + 36, + 75 + ], + "ready": [ + 37 + ], + "for": [ + 38 + ], + "a": [ + 39 + ], + "text": [ + 40 + ], + "not": [ + 42 + ], + "only": [ + 43 + ], + "demonstrates": [ + 44 + ], + "use": [ + 47 + ], + "the": [ + 48, + 59 + ], + "algorithms": [ + 49, + 68 + ], + "make": [ + 51 + ], + "up": [ + 52, + 79 + ], + "methods,": [ + 55 + ], + "but": [ + 56 + ], + "also": [ + 57 + ], + "provides": [ + 58 + ], + "background": [ + 60 + ], + "needed": [ + 61 + ], + "understand": [ + 63 + ], + "why": [ + 66 + ], + "these": [ + 67 + ], + "work.": [ + 69 + ], + "Machine": [ + 70 + ], + "Learning:": [ + 71 + ], + "An": [ + 72 + ], + "Algorithmic": [ + 73 + ], + "Perspective": [ + 74 + ], + "text.Theory": [ + 77 + ], + "Backed": [ + 78 + ], + "by": [ + 80 + ], + "Practical": [ + 81 + ], + "ExamplesThe": [ + 82 + ], + "book": [ + 83 + ], + "covers": [ + 84 + ], + "neural": [ + 85 + ], + "networks,": [ + 86 + ], + "graphical": [ + 87 + ], + "models,": [ + 88 + ], + "reinforcement": [ + 89 + ], + "le": [ + 90 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 17 + }, + { + "year": 2024, + "cited_by_count": 56 + }, + { + "year": 2023, + "cited_by_count": 70 + }, + { + "year": 2022, + "cited_by_count": 88 + }, + { + "year": 2021, + "cited_by_count": 141 + }, + { + "year": 2020, + "cited_by_count": 140 + }, + { + "year": 2019, + "cited_by_count": 113 + }, + { + "year": 2018, + "cited_by_count": 96 + }, + { + "year": 2017, + "cited_by_count": 77 + }, + { + "year": 2016, + "cited_by_count": 61 + }, + { + "year": 2015, + "cited_by_count": 56 + }, + { + "year": 2014, + "cited_by_count": 45 + }, + { + "year": 2013, + "cited_by_count": 49 + }, + { + "year": 2012, + "cited_by_count": 49 + } + ], + "updated_date": "2026-04-28T14:05:53.105641", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2464725281", + "doi": "https://doi.org/10.1038/npjcompumats.2016.28", + "title": "A general-purpose machine learning framework for predicting properties of inorganic materials", + "display_name": "A general-purpose machine learning framework for predicting properties of inorganic materials", + "relevance_score": 2488.577, + "publication_year": 2016, + "publication_date": "2016-08-26", + "ids": { + "openalex": "https://openalex.org/W2464725281", + "doi": "https://doi.org/10.1038/npjcompumats.2016.28", + "mag": "2464725281" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "arxiv", + "crossref", + "doaj" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5021403239", + "display_name": "Logan Ward", + "orcid": "https://orcid.org/0000-0002-1323-5939" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Logan Ward", + "raw_affiliation_strings": [ + "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": "https://orcid.org/0000-0002-1323-5939", + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5004659592", + "display_name": "Ankit Agrawal", + "orcid": "https://orcid.org/0000-0002-5519-0302" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Ankit Agrawal", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5074976770", + "display_name": "Alok Choudhary", + "orcid": "https://orcid.org/0000-0001-8152-6319" + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Alok Choudhary", + "raw_affiliation_strings": [ + "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Electrical Engineering and Computer Science, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5113557612", + "display_name": "Christopher Wolverton", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I111979921", + "display_name": "Northwestern University", + "ror": "https://ror.org/000e0be47", + "country_code": "US", + "type": "education", + "lineage": [ + "https://openalex.org/I111979921" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Christopher Wolverton", + "raw_affiliation_strings": [ + "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Materials Science and Engineering, Northwestern University, Evanston, IL, USA", + "institution_ids": [ + "https://openalex.org/I111979921" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5021403239" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I111979921" + ], + "apc_list": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "apc_paid": { + "value": 2890, + "currency": "USD", + "value_usd": 2890 + }, + "fwci": 33.8856, + "has_fulltext": true, + "cited_by_count": 1670, + "citation_normalized_percentile": { + "value": 0.99915051, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 96, + "max": 100 + }, + "biblio": { + "volume": "2", + "issue": "1", + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T11948", + "display_name": "Machine Learning in Materials Science", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12613", + "display_name": "X-ray Diffraction in Crystallography", + "score": 0.9973000288009644, + "subfield": { + "id": "https://openalex.org/subfields/2505", + "display_name": "Materials Chemistry" + }, + "field": { + "id": "https://openalex.org/fields/25", + "display_name": "Materials Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11825", + "display_name": "Catalysis and Oxidation Reactions", + "score": 0.9901999831199646, + "subfield": { + "id": "https://openalex.org/subfields/1503", + "display_name": "Catalysis" + }, + "field": { + "id": "https://openalex.org/fields/15", + "display_name": "Chemical Engineering" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7177993655204773 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.6573723554611206 + }, + { + "id": "https://openalex.org/keywords/variety", + "display_name": "Variety (cybernetics)", + "score": 0.5816711783409119 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.5580894351005554 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5311656594276428 + }, + { + "id": "https://openalex.org/keywords/range", + "display_name": "Range (aeronautics)", + "score": 0.4939315915107727 + }, + { + "id": "https://openalex.org/keywords/materials-science", + "display_name": "Materials science", + "score": 0.1735665500164032 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7177993655204773 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.6573723554611206 + }, + { + "id": "https://openalex.org/C136197465", + "wikidata": "https://www.wikidata.org/wiki/Q1729295", + "display_name": "Variety (cybernetics)", + "level": 2, + "score": 0.5816711783409119 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.5580894351005554 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5311656594276428 + }, + { + "id": "https://openalex.org/C204323151", + "wikidata": "https://www.wikidata.org/wiki/Q905424", + "display_name": "Range (aeronautics)", + "level": 2, + "score": 0.4939315915107727 + }, + { + "id": "https://openalex.org/C192562407", + "wikidata": "https://www.wikidata.org/wiki/Q228736", + "display_name": "Materials science", + "level": 0, + "score": 0.1735665500164032 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C159985019", + "wikidata": "https://www.wikidata.org/wiki/Q181790", + "display_name": "Composite material", + "level": 1, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 3, + "locations": [ + { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + { + "id": "pmh:oai:arXiv.org:1606.09551", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1606.09551", + "pdf_url": "https://arxiv.org/pdf/1606.09551", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "text" + }, + { + "id": "pmh:oai:osti.gov:1437349", + "is_oa": true, + "landing_page_url": "https://www.osti.gov/biblio/1437349", + "pdf_url": "https://www.osti.gov/servlets/purl/1437349", + "source": { + "id": "https://openalex.org/S4306402487", + "display_name": "OSTI OAI (U.S. Department of Energy Office of Scientific and Technical Information)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I139351228", + "host_organization_name": "Office of Scientific and Technical Information", + "host_organization_lineage": [ + "https://openalex.org/I139351228" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": null + } + ], + "best_oa_location": { + "id": "doi:10.1038/npjcompumats.2016.28", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1038/npjcompumats.2016.28", + "pdf_url": "https://www.nature.com/articles/npjcompumats201628.pdf", + "source": { + "id": "https://openalex.org/S4210232664", + "display_name": "npj Computational Materials", + "issn_l": "2057-3960", + "issn": [ + "2057-3960" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310319908", + "host_organization_name": "Nature Portfolio", + "host_organization_lineage": [ + "https://openalex.org/P4310319908", + "https://openalex.org/P4310319965" + ], + "host_organization_lineage_names": [ + "Nature Portfolio", + "Springer Nature" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "npj Computational Materials", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [], + "awards": [ + { + "id": "https://openalex.org/G1314375578", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306111", + "funder_display_name": "U.S. Department of Commerce" + }, + { + "id": "https://openalex.org/G1523888516", + "display_name": null, + "funder_award_id": "FA9550-", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G1676583131", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320337819", + "funder_display_name": "Center for Hierarchical Materials Design" + }, + { + "id": "https://openalex.org/G1872610661", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320337819", + "funder_display_name": "Center for Hierarchical Materials Design" + }, + { + "id": "https://openalex.org/G2989483902", + "display_name": "EAGER: Scalable Big Data Analytics", + "funder_award_id": "1343639", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G3481652762", + "display_name": null, + "funder_award_id": "CCF-1409601", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G3532683099", + "display_name": "SHF: Medium: Collaborative Research: Scalable Algorithms for Spatio-temporal Data Analysis", + "funder_award_id": "1409601", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G4940832283", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320306111", + "funder_display_name": "U.S. Department of Commerce" + }, + { + "id": "https://openalex.org/G5249168579", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G5490804116", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306078", + "funder_display_name": "U.S. Department of Defense" + }, + { + "id": "https://openalex.org/G552768688", + "display_name": null, + "funder_award_id": "FA9550-12-1-0458", + "funder_id": "https://openalex.org/F4320332178", + "funder_display_name": "National Institute of Standards and Technology" + }, + { + "id": "https://openalex.org/G5809100787", + "display_name": null, + "funder_award_id": "FA9550", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G6071252945", + "display_name": null, + "funder_award_id": "FA9550-12", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G6131312370", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320332178", + "funder_display_name": "National Institute of Standards and Technology" + }, + { + "id": "https://openalex.org/G6563589624", + "display_name": null, + "funder_award_id": "70NANB14H012", + "funder_id": "https://openalex.org/F4320306076", + "funder_display_name": "National Science Foundation" + }, + { + "id": "https://openalex.org/G7116556506", + "display_name": null, + "funder_award_id": "N66001-15-C-4036", + "funder_id": "https://openalex.org/F4320332180", + "funder_display_name": "Defense Advanced Research Projects Agency" + }, + { + "id": "https://openalex.org/G7999580237", + "display_name": null, + "funder_award_id": "FA9550-12-1", + "funder_id": "https://openalex.org/F4320338279", + "funder_display_name": "Air Force Office of Scientific Research" + }, + { + "id": "https://openalex.org/G8678745938", + "display_name": null, + "funder_award_id": "DESC0007456", + "funder_id": "https://openalex.org/F4320306084", + "funder_display_name": "U.S. Department of Energy" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320306076", + "display_name": "National Science Foundation", + "ror": "https://ror.org/021nxhr62" + }, + { + "id": "https://openalex.org/F4320306078", + "display_name": "U.S. Department of Defense", + "ror": "https://ror.org/0447fe631" + }, + { + "id": "https://openalex.org/F4320306084", + "display_name": "U.S. Department of Energy", + "ror": "https://ror.org/01bj3aw27" + }, + { + "id": "https://openalex.org/F4320306111", + "display_name": "U.S. Department of Commerce", + "ror": "https://ror.org/04chq2495" + }, + { + "id": "https://openalex.org/F4320332178", + "display_name": "National Institute of Standards and Technology", + "ror": "https://ror.org/05xpvk416" + }, + { + "id": "https://openalex.org/F4320332180", + "display_name": "Defense Advanced Research Projects Agency", + "ror": "https://ror.org/02caytj08" + }, + { + "id": "https://openalex.org/F4320333566", + "display_name": "National Defense Science and Engineering Graduate", + "ror": null + }, + { + "id": "https://openalex.org/F4320337819", + "display_name": "Center for Hierarchical Materials Design", + "ror": null + }, + { + "id": "https://openalex.org/F4320338279", + "display_name": "Air Force Office of Scientific Research", + "ror": "https://ror.org/011e9bt93" + } + ], + "has_content": { + "pdf": true, + "grobid_xml": true + }, + "content_urls": { + "pdf": "https://content.openalex.org/works/W2464725281.pdf", + "grobid_xml": "https://content.openalex.org/works/W2464725281.grobid-xml" + }, + "referenced_works_count": 74, + "referenced_works": [ + "https://openalex.org/W336365082", + "https://openalex.org/W568714467", + "https://openalex.org/W1496257230", + "https://openalex.org/W1545231783", + "https://openalex.org/W1605058418", + "https://openalex.org/W1741949188", + "https://openalex.org/W1861259131", + "https://openalex.org/W1964254287", + "https://openalex.org/W1966216358", + "https://openalex.org/W1968075993", + "https://openalex.org/W1976492731", + "https://openalex.org/W1977053243", + "https://openalex.org/W1988887547", + "https://openalex.org/W1992985800", + "https://openalex.org/W2000009216", + "https://openalex.org/W2013795311", + "https://openalex.org/W2016587795", + "https://openalex.org/W2018351443", + "https://openalex.org/W2019561942", + "https://openalex.org/W2020246947", + "https://openalex.org/W2029637177", + "https://openalex.org/W2034097448", + "https://openalex.org/W2039971369", + "https://openalex.org/W2044012801", + "https://openalex.org/W2045759556", + "https://openalex.org/W2047165001", + "https://openalex.org/W2051801258", + "https://openalex.org/W2052663622", + "https://openalex.org/W2055410454", + "https://openalex.org/W2074616700", + "https://openalex.org/W2083415705", + "https://openalex.org/W2097968133", + "https://openalex.org/W2100833014", + "https://openalex.org/W2102539288", + "https://openalex.org/W2104489082", + "https://openalex.org/W2111124526", + "https://openalex.org/W2112845989", + "https://openalex.org/W2113072508", + "https://openalex.org/W2113242816", + "https://openalex.org/W2115252128", + "https://openalex.org/W2117363206", + "https://openalex.org/W2119735967", + "https://openalex.org/W2123306226", + "https://openalex.org/W2133990480", + "https://openalex.org/W2138060751", + "https://openalex.org/W2142009706", + "https://openalex.org/W2145914706", + "https://openalex.org/W2150757437", + "https://openalex.org/W2159357141", + "https://openalex.org/W2162653998", + "https://openalex.org/W2164524421", + "https://openalex.org/W2164529883", + "https://openalex.org/W2167441267", + "https://openalex.org/W2217912240", + "https://openalex.org/W2241011319", + "https://openalex.org/W2278970271", + "https://openalex.org/W2312842167", + "https://openalex.org/W2313966941", + "https://openalex.org/W2317309722", + "https://openalex.org/W2318376321", + "https://openalex.org/W2329258563", + "https://openalex.org/W2338402873", + "https://openalex.org/W2343462019", + "https://openalex.org/W2494629425", + "https://openalex.org/W2612686989", + "https://openalex.org/W2671074027", + "https://openalex.org/W2911964244", + "https://openalex.org/W2913390193", + "https://openalex.org/W2950537967", + "https://openalex.org/W2963485997", + "https://openalex.org/W4230093030", + "https://openalex.org/W4236360742", + "https://openalex.org/W4239059908", + "https://openalex.org/W4249528159" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3107602296", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W4364306694", + "https://openalex.org/W4312192474", + "https://openalex.org/W4283697347", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "Abstract": [ + 0 + ], + "A": [ + 1 + ], + "very": [ + 2 + ], + "active": [ + 3 + ], + "area": [ + 4 + ], + "of": [ + 5, + 51, + 63, + 70, + 82, + 94, + 107, + 131 + ], + "materials": [ + 6, + 23, + 71, + 109 + ], + "research": [ + 7 + ], + "is": [ + 8 + ], + "to": [ + 9, + 16, + 66, + 110, + 127 + ], + "devise": [ + 10 + ], + "methods": [ + 11 + ], + "that": [ + 12 + ], + "use": [ + 13 + ], + "machine": [ + 14, + 40 + ], + "learning": [ + 15, + 41 + ], + "automatically": [ + 17 + ], + "extract": [ + 18 + ], + "predictive": [ + 19, + 113 + ], + "models": [ + 20, + 31, + 53 + ], + "from": [ + 21 + ], + "existing": [ + 22 + ], + "data.": [ + 24, + 72 + ], + "While": [ + 25 + ], + "prior": [ + 26 + ], + "examples": [ + 27 + ], + "have": [ + 28, + 58 + ], + "demonstrated": [ + 29 + ], + "successful": [ + 30 + ], + "for": [ + 32, + 54, + 89, + 100 + ], + "some": [ + 33 + ], + "applications,": [ + 34, + 56 + ], + "many": [ + 35 + ], + "more": [ + 36 + ], + "applications": [ + 37 + ], + "exist": [ + 38 + ], + "where": [ + 39 + ], + "can": [ + 42, + 124 + ], + "make": [ + 43 + ], + "a": [ + 44, + 60, + 67, + 78, + 91, + 97 + ], + "strong": [ + 45 + ], + "impact.": [ + 46 + ], + "To": [ + 47 + ], + "enable": [ + 48 + ], + "faster": [ + 49 + ], + "development": [ + 50 + ], + "machine-learning-based": [ + 52 + ], + "such": [ + 55, + 136 + ], + "we": [ + 57, + 85, + 118 + ], + "created": [ + 59 + ], + "framework": [ + 61 + ], + "capable": [ + 62 + ], + "being": [ + 64 + ], + "applied": [ + 65 + ], + "broad": [ + 68 + ], + "range": [ + 69 + ], + "Our": [ + 73 + ], + "method": [ + 74, + 99, + 123 + ], + "works": [ + 75 + ], + "by": [ + 76 + ], + "using": [ + 77 + ], + "chemically": [ + 79 + ], + "diverse": [ + 80, + 129 + ], + "list": [ + 81 + ], + "attributes,": [ + 83 + ], + "which": [ + 84 + ], + "demonstrate": [ + 86, + 119 + ], + "are": [ + 87 + ], + "suitable": [ + 88 + ], + "describing": [ + 90 + ], + "wide": [ + 92 + ], + "variety": [ + 93 + ], + "properties,": [ + 95 + ], + "and": [ + 96, + 133, + 141 + ], + "novel": [ + 98 + ], + "partitioning": [ + 101 + ], + "the": [ + 102, + 112 + ], + "data": [ + 103 + ], + "set": [ + 104 + ], + "into": [ + 105 + ], + "groups": [ + 106 + ], + "similar": [ + 108 + ], + "boost": [ + 111 + ], + "accuracy.": [ + 114 + ], + "In": [ + 115 + ], + "this": [ + 116, + 121 + ], + "manuscript,": [ + 117 + ], + "how": [ + 120 + ], + "new": [ + 122 + ], + "be": [ + 125 + ], + "used": [ + 126 + ], + "predict": [ + 128 + ], + "properties": [ + 130 + ], + "crystalline": [ + 132 + ], + "amorphous": [ + 134 + ], + "materials,": [ + 135 + ], + "as": [ + 137 + ], + "band": [ + 138 + ], + "gap": [ + 139 + ], + "energy": [ + 140 + ], + "glass-forming": [ + 142 + ], + "ability.": [ + 143 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 137 + }, + { + "year": 2025, + "cited_by_count": 274 + }, + { + "year": 2024, + "cited_by_count": 247 + }, + { + "year": 2023, + "cited_by_count": 215 + }, + { + "year": 2022, + "cited_by_count": 204 + }, + { + "year": 2021, + "cited_by_count": 195 + }, + { + "year": 2020, + "cited_by_count": 185 + }, + { + "year": 2019, + "cited_by_count": 117 + }, + { + "year": 2018, + "cited_by_count": 71 + }, + { + "year": 2017, + "cited_by_count": 22 + }, + { + "year": 2016, + "cited_by_count": 3 + } + ], + "updated_date": "2026-05-30T09:04:40.226872", + "created_date": "2016-07-22T00:00:00" + }, + { + "id": "https://openalex.org/W2182361439", + "doi": null, + "title": "Efficient and robust automated machine learning", + "display_name": "Efficient and robust automated machine learning", + "relevance_score": 2481.6487, + "publication_year": 2015, + "publication_date": "2015-12-07", + "ids": { + "openalex": "https://openalex.org/W2182361439", + "mag": "2182361439" + }, + "language": "en", + "primary_location": { + "id": "mag:2182361439", + "is_oa": false, + "landing_page_url": "https://papers.nips.cc/paper/2015/file/11d0e6287202fced83f79975ec59a3a6-Paper.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420609", + "display_name": "Neural Information Processing Systems", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": false, + "raw_source_name": "Neural Information Processing Systems", + "raw_type": null + }, + "type": "article", + "indexed_in": [], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5054262288", + "display_name": "Matthias Feurer", + "orcid": "https://orcid.org/0000-0001-9611-8588" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": true, + "raw_author_name": "Matthias Feurer", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0001-9611-8588", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5044806693", + "display_name": "Aaron Klein", + "orcid": "https://orcid.org/0000-0003-3960-7742" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Aaron Klein", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0003-3960-7742", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5081813991", + "display_name": "Katharina Eggensperger", + "orcid": "https://orcid.org/0000-0002-0309-401X" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Katharina Eggensperger", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5017985443", + "display_name": "Jost Tobias Springenberg", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Jost Tobias Springenberg", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5102766796", + "display_name": "Manuel Blum", + "orcid": "https://orcid.org/0000-0002-0982-4845" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Manuel Blum", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-0982-4845", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5031002895", + "display_name": "Frank Hutter", + "orcid": "https://orcid.org/0000-0002-2037-3694" + }, + "institutions": [ + { + "id": "https://openalex.org/I161046081", + "display_name": "University of Freiburg", + "ror": "https://ror.org/0245cg223", + "country_code": "DE", + "type": "education", + "lineage": [ + "https://openalex.org/I161046081" + ] + } + ], + "countries": [ + "DE" + ], + "is_corresponding": false, + "raw_author_name": "Frank Hutter", + "raw_affiliation_strings": [ + "Department of Computer Science , University of Freiburg , Germany" + ], + "raw_orcid": "https://orcid.org/0000-0002-2037-3694", + "affiliations": [ + { + "raw_affiliation_string": "Department of Computer Science , University of Freiburg , Germany", + "institution_ids": [ + "https://openalex.org/I161046081" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 6, + "corresponding_author_ids": [ + "https://openalex.org/A5054262288" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I161046081" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 26.632, + "has_fulltext": false, + "cited_by_count": 1255, + "citation_normalized_percentile": { + "value": 0.99838319, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "28", + "issue": null, + "first_page": "2755", + "last_page": "2763" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 1.0, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12072", + "display_name": "Machine Learning and Algorithms", + "score": 0.9991999864578247, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11652", + "display_name": "Imbalanced Data Classification Techniques", + "score": 0.9884999990463257, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/hyperparameter", + "display_name": "Hyperparameter", + "score": 0.8062483668327332 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.7956940531730652 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.7567195892333984 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.7412288188934326 + }, + { + "id": "https://openalex.org/keywords/preprocessor", + "display_name": "Preprocessor", + "score": 0.723639726638794 + }, + { + "id": "https://openalex.org/keywords/bayesian-optimization", + "display_name": "Bayesian optimization", + "score": 0.5717392563819885 + }, + { + "id": "https://openalex.org/keywords/feature", + "display_name": "Feature (linguistics)", + "score": 0.5170496106147766 + }, + { + "id": "https://openalex.org/keywords/set", + "display_name": "Set (abstract data type)", + "score": 0.4831806719303131 + }, + { + "id": "https://openalex.org/keywords/bayesian-probability", + "display_name": "Bayesian probability", + "score": 0.41747650504112244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C8642999", + "wikidata": "https://www.wikidata.org/wiki/Q4171168", + "display_name": "Hyperparameter", + "level": 2, + "score": 0.8062483668327332 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.7956940531730652 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.7567195892333984 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.7412288188934326 + }, + { + "id": "https://openalex.org/C34736171", + "wikidata": "https://www.wikidata.org/wiki/Q918333", + "display_name": "Preprocessor", + "level": 2, + "score": 0.723639726638794 + }, + { + "id": "https://openalex.org/C2778049539", + "wikidata": "https://www.wikidata.org/wiki/Q17002908", + "display_name": "Bayesian optimization", + "level": 2, + "score": 0.5717392563819885 + }, + { + "id": "https://openalex.org/C2776401178", + "wikidata": "https://www.wikidata.org/wiki/Q12050496", + "display_name": "Feature (linguistics)", + "level": 2, + "score": 0.5170496106147766 + }, + { + "id": "https://openalex.org/C177264268", + "wikidata": "https://www.wikidata.org/wiki/Q1514741", + "display_name": "Set (abstract data type)", + "level": 2, + "score": 0.4831806719303131 + }, + { + "id": "https://openalex.org/C107673813", + "wikidata": "https://www.wikidata.org/wiki/Q812534", + "display_name": "Bayesian probability", + "level": 2, + "score": 0.41747650504112244 + }, + { + "id": "https://openalex.org/C199360897", + "wikidata": "https://www.wikidata.org/wiki/Q9143", + "display_name": "Programming language", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C41895202", + "wikidata": "https://www.wikidata.org/wiki/Q8162", + "display_name": "Linguistics", + "level": 1, + "score": 0.0 + }, + { + "id": "https://openalex.org/C138885662", + "wikidata": "https://www.wikidata.org/wiki/Q5891", + "display_name": "Philosophy", + "level": 0, + "score": 0.0 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "mag:2182361439", + "is_oa": false, + "landing_page_url": "https://papers.nips.cc/paper/2015/file/11d0e6287202fced83f79975ec59a3a6-Paper.pdf", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306420609", + "display_name": "Neural Information Processing Systems", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "conference" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": "Neural Information Processing Systems", + "raw_type": null + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 26, + "referenced_works": [ + "https://openalex.org/W28412257", + "https://openalex.org/W60686164", + "https://openalex.org/W76331760", + "https://openalex.org/W116375701", + "https://openalex.org/W122178443", + "https://openalex.org/W1519451279", + "https://openalex.org/W1647221522", + "https://openalex.org/W1840091437", + "https://openalex.org/W1980264541", + "https://openalex.org/W2099201756", + "https://openalex.org/W2101234009", + "https://openalex.org/W2102539288", + "https://openalex.org/W2106411961", + "https://openalex.org/W2112204321", + "https://openalex.org/W2112364454", + "https://openalex.org/W2131241448", + "https://openalex.org/W2132862423", + "https://openalex.org/W2133990480", + "https://openalex.org/W2142334564", + "https://openalex.org/W2149731329", + "https://openalex.org/W2150446468", + "https://openalex.org/W2150753219", + "https://openalex.org/W2165607334", + "https://openalex.org/W2200000192", + "https://openalex.org/W2809054435", + "https://openalex.org/W2911964244" + ], + "related_works": [ + "https://openalex.org/W60686164", + "https://openalex.org/W2964024268", + "https://openalex.org/W2963815651", + "https://openalex.org/W2963423218", + "https://openalex.org/W2947123069", + "https://openalex.org/W2911964244", + "https://openalex.org/W2608595939", + "https://openalex.org/W2553303224", + "https://openalex.org/W2309832917", + "https://openalex.org/W2200000192", + "https://openalex.org/W2194775991", + "https://openalex.org/W2192203593", + "https://openalex.org/W2133990480", + "https://openalex.org/W2132862423", + "https://openalex.org/W2131241448", + "https://openalex.org/W2112364454", + "https://openalex.org/W2106411961", + "https://openalex.org/W2102539288", + "https://openalex.org/W2101234009", + "https://openalex.org/W2097998348" + ], + "abstract_inverted_index": { + "The": [ + 0 + ], + "success": [ + 1 + ], + "of": [ + 2, + 9, + 75, + 153, + 176, + 190, + 199, + 203 + ], + "machine": [ + 3, + 18, + 68 + ], + "learning": [ + 4, + 19, + 69 + ], + "in": [ + 5, + 33, + 179 + ], + "a": [ + 6, + 41, + 49, + 85, + 108 + ], + "broad": [ + 7 + ], + "range": [ + 8 + ], + "applications": [ + 10 + ], + "has": [ + 11, + 62 + ], + "led": [ + 12 + ], + "to": [ + 13, + 38, + 64, + 107, + 188 + ], + "an": [ + 14 + ], + "ever-growing": [ + 15 + ], + "demand": [ + 16 + ], + "for": [ + 17, + 48 + ], + "systems": [ + 20, + 36 + ], + "that": [ + 21, + 169 + ], + "can": [ + 22 + ], + "be": [ + 23, + 31 + ], + "used": [ + 24 + ], + "off": [ + 25 + ], + "the": [ + 26, + 73, + 141, + 145, + 150, + 154, + 173, + 177, + 184, + 197, + 200 + ], + "shelf": [ + 27 + ], + "by": [ + 28, + 126, + 137 + ], + "non-experts.": [ + 29 + ], + "To": [ + 30 + ], + "effective": [ + 32 + ], + "practice,": [ + 34 + ], + "such": [ + 35 + ], + "need": [ + 37 + ], + "automatically": [ + 39, + 127 + ], + "choose": [ + 40 + ], + "good": [ + 42 + ], + "algorithm": [ + 43 + ], + "and": [ + 44, + 54, + 100, + 136, + 159, + 193 + ], + "feature": [ + 45, + 97 + ], + "preprocessing": [ + 46, + 98, + 103 + ], + "steps": [ + 47 + ], + "new": [ + 50, + 87 + ], + "dataset": [ + 51 + ], + "at": [ + 52 + ], + "hand,": [ + 53 + ], + "also": [ + 55, + 182 + ], + "set": [ + 56 + ], + "their": [ + 57 + ], + "respective": [ + 58 + ], + "hyperparameters.": [ + 59 + ], + "Recent": [ + 60 + ], + "work": [ + 61 + ], + "started": [ + 63 + ], + "tackle": [ + 65 + ], + "this": [ + 66 + ], + "automated": [ + 67 + ], + "(AutoML)": [ + 70 + ], + "problem": [ + 71 + ], + "with": [ + 72, + 112 + ], + "help": [ + 74 + ], + "efficient": [ + 76 + ], + "Bayesian": [ + 77 + ], + "optimization": [ + 78 + ], + "methods.": [ + 79 + ], + "Building": [ + 80 + ], + "on": [ + 81, + 91, + 122, + 133, + 163 + ], + "this,": [ + 82 + ], + "we": [ + 83, + 118 + ], + "introduce": [ + 84 + ], + "robust": [ + 86 + ], + "AutoML": [ + 88, + 124, + 157 + ], + "system": [ + 89, + 148 + ], + "based": [ + 90 + ], + "scikit-learn": [ + 92 + ], + "(using": [ + 93 + ], + "15": [ + 94 + ], + "classifiers,": [ + 95 + ], + "14": [ + 96 + ], + "methods,": [ + 99, + 104 + ], + "4": [ + 101 + ], + "data": [ + 102 + ], + "giving": [ + 105 + ], + "rise": [ + 106 + ], + "structured": [ + 109 + ], + "hypothesis": [ + 110 + ], + "space": [ + 111 + ], + "110": [ + 113 + ], + "hyperparameters).": [ + 114 + ], + "This": [ + 115 + ], + "system,": [ + 116 + ], + "which": [ + 117 + ], + "dub": [ + 119 + ], + "AUTO-SKLEARN,": [ + 120 + ], + "improves": [ + 121 + ], + "existing": [ + 123 + ], + "methods": [ + 125 + ], + "taking": [ + 128 + ], + "into": [ + 129, + 196 + ], + "account": [ + 130 + ], + "past": [ + 131 + ], + "performance": [ + 132, + 185 + ], + "similar": [ + 134 + ], + "datasets,": [ + 135 + ], + "constructing": [ + 138 + ], + "ensembles": [ + 139 + ], + "from": [ + 140 + ], + "models": [ + 142 + ], + "evaluated": [ + 143 + ], + "during": [ + 144 + ], + "optimization.": [ + 146 + ], + "Our": [ + 147 + ], + "won": [ + 149 + ], + "first": [ + 151 + ], + "phase": [ + 152 + ], + "ongoing": [ + 155 + ], + "ChaLearn": [ + 156 + ], + "challenge,": [ + 158 + ], + "our": [ + 160, + 191 + ], + "comprehensive": [ + 161 + ], + "analysis": [ + 162 + ], + "over": [ + 164 + ], + "100": [ + 165 + ], + "diverse": [ + 166 + ], + "datasets": [ + 167 + ], + "shows": [ + 168 + ], + "it": [ + 170 + ], + "substantially": [ + 171 + ], + "outperforms": [ + 172 + ], + "previous": [ + 174 + ], + "state": [ + 175 + ], + "art": [ + 178 + ], + "AutoML.": [ + 180 + ], + "We": [ + 181 + ], + "demonstrate": [ + 183 + ], + "gains": [ + 186 + ], + "due": [ + 187 + ], + "each": [ + 189 + ], + "contributions": [ + 192 + ], + "derive": [ + 194 + ], + "insights": [ + 195 + ], + "effectiveness": [ + 198 + ], + "individual": [ + 201 + ], + "components": [ + 202 + ], + "AUTO-SKLEARN.": [ + 204 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 61 + }, + { + "year": 2024, + "cited_by_count": 99 + }, + { + "year": 2023, + "cited_by_count": 134 + }, + { + "year": 2022, + "cited_by_count": 125 + }, + { + "year": 2021, + "cited_by_count": 221 + }, + { + "year": 2020, + "cited_by_count": 263 + }, + { + "year": 2019, + "cited_by_count": 217 + }, + { + "year": 2018, + "cited_by_count": 86 + }, + { + "year": 2017, + "cited_by_count": 34 + }, + { + "year": 2016, + "cited_by_count": 14 + }, + { + "year": 2015, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-14T08:36:36.166977", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W1983989471", + "doi": "https://doi.org/10.1198/jasa.2008.s236", + "title": "Pattern Recognition and Machine Learning", + "display_name": "Pattern Recognition and Machine Learning", + "relevance_score": 2478.1929, + "publication_year": 2008, + "publication_date": "2008-06-01", + "ids": { + "openalex": "https://openalex.org/W1983989471", + "doi": "https://doi.org/10.1198/jasa.2008.s236", + "mag": "1983989471" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1198/jasa.2008.s236", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/jasa.2008.s236", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4394736638", + "display_name": "Journal of the American Statistical Association", + "issn_l": "0162-1459", + "issn": [ + "0162-1459", + "1537-274X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of the American Statistical Association", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref" + ], + "open_access": { + "is_oa": false, + "oa_status": "closed", + "oa_url": null, + "any_repository_has_fulltext": false + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5109482919", + "display_name": "Thomas Burr", + "orcid": null + }, + "institutions": [ + { + "id": "https://openalex.org/I1343871089", + "display_name": "Los Alamos National Laboratory", + "ror": "https://ror.org/01e41cf67", + "country_code": "US", + "type": "facility", + "lineage": [ + "https://openalex.org/I1330989302", + "https://openalex.org/I1343871089", + "https://openalex.org/I198811213", + "https://openalex.org/I4210120050" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Thomas Burr", + "raw_affiliation_strings": [ + "Los Alamos National Laboratory", + "LOS Alamos National Laboratory" + ], + "affiliations": [ + { + "raw_affiliation_string": "Los Alamos National Laboratory", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + }, + { + "raw_affiliation_string": "LOS Alamos National Laboratory", + "institution_ids": [ + "https://openalex.org/I1343871089" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 1, + "corresponding_author_ids": [ + "https://openalex.org/A5109482919" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I1343871089" + ], + "apc_list": null, + "apc_paid": null, + "fwci": 47.4793, + "has_fulltext": false, + "cited_by_count": 1113, + "citation_normalized_percentile": { + "value": 0.99954397, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 98, + "max": 100 + }, + "biblio": { + "volume": "103", + "issue": "482", + "first_page": "886", + "last_page": "887" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.98580002784729, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T12205", + "display_name": "Time Series Analysis and Forecasting", + "score": 0.98580002784729, + "subfield": { + "id": "https://openalex.org/subfields/1711", + "display_name": "Signal Processing" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12761", + "display_name": "Data Stream Mining Techniques", + "score": 0.9822999835014343, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T11512", + "display_name": "Anomaly Detection Techniques and Applications", + "score": 0.9811000227928162, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5010311603546143 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.4807431697845459 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.40664222836494446 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.374175488948822 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5010311603546143 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.4807431697845459 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.40664222836494446 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.374175488948822 + } + ], + "mesh": [], + "locations_count": 1, + "locations": [ + { + "id": "doi:10.1198/jasa.2008.s236", + "is_oa": false, + "landing_page_url": "https://doi.org/10.1198/jasa.2008.s236", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4394736638", + "display_name": "Journal of the American Statistical Association", + "issn_l": "0162-1459", + "issn": [ + "0162-1459", + "1537-274X" + ], + "is_oa": false, + "is_in_doaj": false, + "is_core": true, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "journal" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Journal of the American Statistical Association", + "raw_type": "journal-article" + } + ], + "best_oa_location": null, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 5, + "referenced_works": [ + "https://openalex.org/W2009086942", + "https://openalex.org/W2019044526", + "https://openalex.org/W2078502317", + "https://openalex.org/W2090911498", + "https://openalex.org/W4237415315" + ], + "related_works": [ + "https://openalex.org/W2961085424", + "https://openalex.org/W4306674287", + "https://openalex.org/W3046775127", + "https://openalex.org/W3170094116", + "https://openalex.org/W4386462264", + "https://openalex.org/W3209574120", + "https://openalex.org/W3107602296", + "https://openalex.org/W2033914206", + "https://openalex.org/W4312192474", + "https://openalex.org/W4210805261" + ], + "abstract_inverted_index": { + "\"Pattern": [ + 0 + ], + "Recognition": [ + 1 + ], + "and": [ + 2 + ], + "Machine": [ + 3 + ], + "Learning.\"": [ + 4 + ], + "Journal": [ + 5 + ], + "of": [ + 6 + ], + "the": [ + 7 + ], + "American": [ + 8 + ], + "Statistical": [ + 9 + ], + "Association,": [ + 10 + ], + "103(482),": [ + 11 + ], + "pp.": [ + 12 + ], + "886–887": [ + 13 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 6 + }, + { + "year": 2024, + "cited_by_count": 27 + }, + { + "year": 2023, + "cited_by_count": 55 + }, + { + "year": 2022, + "cited_by_count": 54 + }, + { + "year": 2021, + "cited_by_count": 97 + }, + { + "year": 2020, + "cited_by_count": 87 + }, + { + "year": 2019, + "cited_by_count": 133 + }, + { + "year": 2018, + "cited_by_count": 105 + }, + { + "year": 2017, + "cited_by_count": 64 + }, + { + "year": 2016, + "cited_by_count": 67 + }, + { + "year": 2015, + "cited_by_count": 75 + }, + { + "year": 2014, + "cited_by_count": 68 + }, + { + "year": 2013, + "cited_by_count": 73 + }, + { + "year": 2012, + "cited_by_count": 73 + } + ], + "updated_date": "2026-04-05T17:49:38.594831", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W2981679558", + "doi": "https://doi.org/10.1371/journal.pone.0224365", + "title": "Machine learning algorithm validation with a limited sample size", + "display_name": "Machine learning algorithm validation with a limited sample size", + "relevance_score": 2470.6013, + "publication_year": 2019, + "publication_date": "2019-11-07", + "ids": { + "openalex": "https://openalex.org/W2981679558", + "doi": "https://doi.org/10.1371/journal.pone.0224365", + "mag": "2981679558", + "pmid": "https://pubmed.ncbi.nlm.nih.gov/31697686" + }, + "language": "en", + "primary_location": { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "type": "article", + "indexed_in": [ + "crossref", + "doaj", + "pubmed" + ], + "open_access": { + "is_oa": true, + "oa_status": "gold", + "oa_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5058581210", + "display_name": "Andrius Vabalas", + "orcid": "https://orcid.org/0000-0002-0659-2890" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": true, + "raw_author_name": "Andrius Vabalas", + "raw_affiliation_strings": [ + "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": "https://orcid.org/0000-0002-0659-2890", + "affiliations": [ + { + "raw_affiliation_string": "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5054131595", + "display_name": "Emma Gowen", + "orcid": "https://orcid.org/0000-0003-4788-4280" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Emma Gowen", + "raw_affiliation_strings": [ + "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "middle", + "author": { + "id": "https://openalex.org/A5080441481", + "display_name": "Ellen Poliakoff", + "orcid": "https://orcid.org/0000-0003-4975-7787" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Ellen Poliakoff", + "raw_affiliation_strings": [ + "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "School of Biological Sciences, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5091104655", + "display_name": "Alexander J. Casson", + "orcid": "https://orcid.org/0000-0003-1408-1190" + }, + "institutions": [ + { + "id": "https://openalex.org/I28407311", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27", + "country_code": "GB", + "type": "education", + "lineage": [ + "https://openalex.org/I28407311" + ] + } + ], + "countries": [ + "GB" + ], + "is_corresponding": false, + "raw_author_name": "Alexander J. Casson", + "raw_affiliation_strings": [ + "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom" + ], + "raw_orcid": null, + "affiliations": [ + { + "raw_affiliation_string": "Materials, Devices and Systems Division, School of Electrical and Electronic Engineering, The University of Manchester, Manchester, England, United Kingdom", + "institution_ids": [ + "https://openalex.org/I28407311" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 4, + "corresponding_author_ids": [ + "https://openalex.org/A5058581210" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I28407311" + ], + "apc_list": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "apc_paid": { + "value": 1805, + "currency": "USD", + "value_usd": 1805 + }, + "fwci": 44.2695, + "has_fulltext": true, + "cited_by_count": 1662, + "citation_normalized_percentile": { + "value": 0.99924832, + "is_in_top_1_percent": true, + "is_in_top_10_percent": true + }, + "cited_by_percentile_year": { + "min": 90, + "max": 100 + }, + "biblio": { + "volume": "14", + "issue": "11", + "first_page": "e0224365", + "last_page": "e0224365" + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9955000281333923, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10885", + "display_name": "Gene expression and cancer classification", + "score": 0.9955000281333923, + "subfield": { + "id": "https://openalex.org/subfields/1312", + "display_name": "Molecular Biology" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + }, + { + "id": "https://openalex.org/T12535", + "display_name": "Machine Learning and Data Classification", + "score": 0.9860000014305115, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + { + "id": "https://openalex.org/T12859", + "display_name": "Cell Image Analysis Techniques", + "score": 0.9606000185012817, + "subfield": { + "id": "https://openalex.org/subfields/1304", + "display_name": "Biophysics" + }, + "field": { + "id": "https://openalex.org/fields/13", + "display_name": "Biochemistry, Genetics and Molecular Biology" + }, + "domain": { + "id": "https://openalex.org/domains/1", + "display_name": "Life Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/overfitting", + "display_name": "Overfitting", + "score": 0.8499270677566528 + }, + { + "id": "https://openalex.org/keywords/sample-size-determination", + "display_name": "Sample size determination", + "score": 0.7672773003578186 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.6191924810409546 + }, + { + "id": "https://openalex.org/keywords/artificial-intelligence", + "display_name": "Artificial intelligence", + "score": 0.5842269062995911 + }, + { + "id": "https://openalex.org/keywords/cross-validation", + "display_name": "Cross-validation", + "score": 0.5098270773887634 + }, + { + "id": "https://openalex.org/keywords/data-collection", + "display_name": "Data collection", + "score": 0.4877827763557434 + }, + { + "id": "https://openalex.org/keywords/machine-learning", + "display_name": "Machine learning", + "score": 0.4619005620479584 + }, + { + "id": "https://openalex.org/keywords/selection-bias", + "display_name": "Selection bias", + "score": 0.438579261302948 + }, + { + "id": "https://openalex.org/keywords/sample", + "display_name": "Sample (material)", + "score": 0.43803805112838745 + }, + { + "id": "https://openalex.org/keywords/statistics", + "display_name": "Statistics", + "score": 0.41916215419769287 + }, + { + "id": "https://openalex.org/keywords/feature-selection", + "display_name": "Feature selection", + "score": 0.412355899810791 + }, + { + "id": "https://openalex.org/keywords/data-mining", + "display_name": "Data mining", + "score": 0.39342644810676575 + }, + { + "id": "https://openalex.org/keywords/pattern-recognition", + "display_name": "Pattern recognition (psychology)", + "score": 0.35772329568862915 + }, + { + "id": "https://openalex.org/keywords/mathematics", + "display_name": "Mathematics", + "score": 0.23591920733451843 + }, + { + "id": "https://openalex.org/keywords/artificial-neural-network", + "display_name": "Artificial neural network", + "score": 0.1789134442806244 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C22019652", + "wikidata": "https://www.wikidata.org/wiki/Q331309", + "display_name": "Overfitting", + "level": 3, + "score": 0.8499270677566528 + }, + { + "id": "https://openalex.org/C129848803", + "wikidata": "https://www.wikidata.org/wiki/Q2564360", + "display_name": "Sample size determination", + "level": 2, + "score": 0.7672773003578186 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.6191924810409546 + }, + { + "id": "https://openalex.org/C154945302", + "wikidata": "https://www.wikidata.org/wiki/Q11660", + "display_name": "Artificial intelligence", + "level": 1, + "score": 0.5842269062995911 + }, + { + "id": "https://openalex.org/C27181475", + "wikidata": "https://www.wikidata.org/wiki/Q541014", + "display_name": "Cross-validation", + "level": 2, + "score": 0.5098270773887634 + }, + { + "id": "https://openalex.org/C133462117", + "wikidata": "https://www.wikidata.org/wiki/Q4929239", + "display_name": "Data collection", + "level": 2, + "score": 0.4877827763557434 + }, + { + "id": "https://openalex.org/C119857082", + "wikidata": "https://www.wikidata.org/wiki/Q2539", + "display_name": "Machine learning", + "level": 1, + "score": 0.4619005620479584 + }, + { + "id": "https://openalex.org/C40423286", + "wikidata": "https://www.wikidata.org/wiki/Q284172", + "display_name": "Selection bias", + "level": 2, + "score": 0.438579261302948 + }, + { + "id": "https://openalex.org/C198531522", + "wikidata": "https://www.wikidata.org/wiki/Q485146", + "display_name": "Sample (material)", + "level": 2, + "score": 0.43803805112838745 + }, + { + "id": "https://openalex.org/C105795698", + "wikidata": "https://www.wikidata.org/wiki/Q12483", + "display_name": "Statistics", + "level": 1, + "score": 0.41916215419769287 + }, + { + "id": "https://openalex.org/C148483581", + "wikidata": "https://www.wikidata.org/wiki/Q446488", + "display_name": "Feature selection", + "level": 2, + "score": 0.412355899810791 + }, + { + "id": "https://openalex.org/C124101348", + "wikidata": "https://www.wikidata.org/wiki/Q172491", + "display_name": "Data mining", + "level": 1, + "score": 0.39342644810676575 + }, + { + "id": "https://openalex.org/C153180895", + "wikidata": "https://www.wikidata.org/wiki/Q7148389", + "display_name": "Pattern recognition (psychology)", + "level": 2, + "score": 0.35772329568862915 + }, + { + "id": "https://openalex.org/C33923547", + "wikidata": "https://www.wikidata.org/wiki/Q395", + "display_name": "Mathematics", + "level": 0, + "score": 0.23591920733451843 + }, + { + "id": "https://openalex.org/C50644808", + "wikidata": "https://www.wikidata.org/wiki/Q192776", + "display_name": "Artificial neural network", + "level": 2, + "score": 0.1789134442806244 + }, + { + "id": "https://openalex.org/C185592680", + "wikidata": "https://www.wikidata.org/wiki/Q2329", + "display_name": "Chemistry", + "level": 0, + "score": 0.0 + }, + { + "id": "https://openalex.org/C43617362", + "wikidata": "https://www.wikidata.org/wiki/Q170050", + "display_name": "Chromatography", + "level": 1, + "score": 0.0 + } + ], + "mesh": [ + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000069550", + "descriptor_name": "Machine Learning", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D000465", + "descriptor_name": "Algorithms", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D003627", + "descriptor_name": "Data Interpretation, Statistical", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": true + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D006801", + "descriptor_name": "Humans", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D018401", + "descriptor_name": "Sample Size", + "qualifier_ui": null, + "qualifier_name": null, + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + }, + { + "descriptor_ui": "D035843", + "descriptor_name": "Biomedical Research", + "qualifier_ui": "Q000706", + "qualifier_name": "statistics & numerical data", + "is_major_topic": false + } + ], + "locations_count": 8, + "locations": [ + { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + { + "id": "pmid:31697686", + "is_oa": false, + "landing_page_url": "https://pubmed.ncbi.nlm.nih.gov/31697686", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306525036", + "display_name": "PubMed", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PloS one", + "raw_type": null + }, + { + "id": "pmh:oai:pure.atira.dk:openaire/46636137-42f8-46a3-82e2-565843dbc92a", + "is_oa": true, + "landing_page_url": "https://research.manchester.ac.uk/en/publications/46636137-42f8-46a3-82e2-565843dbc92a", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400662", + "display_name": "Research Explorer (The University of Manchester)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I28407311", + "host_organization_name": "University of Manchester", + "host_organization_lineage": [ + "https://openalex.org/I28407311" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "Vabalas, A, Gowen, E, Poliakoff, E & Casson, A 2020, 'Machine learning algorithm validation with a limited sample size', P L o S One, vol. 14, no. 11, e0224365. https://doi.org/10.1371/journal.pone.0224365", + "raw_type": "info:eu-repo/semantics/publishedVersion" + }, + { + "id": "pmh:oai:RePEc:plo:pone00:0224365", + "is_oa": false, + "landing_page_url": "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0224365", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401271", + "display_name": "RePEc: Research Papers in Economics", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I77793887", + "host_organization_name": "Federal Reserve Bank of St. Louis", + "host_organization_lineage": [ + "https://openalex.org/I77793887" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": null, + "raw_type": "article" + }, + { + "id": "pmh:oai:doaj.org/article:df3153cdf6ba4ecc9e209347e26d9f38", + "is_oa": true, + "landing_page_url": "https://doaj.org/article/df3153cdf6ba4ecc9e209347e26d9f38", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306401280", + "display_name": "DOAJ (DOAJ: Directory of Open Access Journals)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": null, + "host_organization_name": null, + "host_organization_lineage": [], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by-sa", + "license_id": "https://openalex.org/licenses/cc-by-sa", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS ONE, Vol 14, Iss 11, p e0224365 (2019)", + "raw_type": "article" + }, + { + "id": "pmh:oai:figshare.com:article/10268015", + "is_oa": true, + "landing_page_url": "https://figshare.com/articles/dataset/Machine_learning_algorithm_validation_with_a_limited_sample_size/10268015", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4377196282", + "display_name": "Figshare", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I4210132348", + "host_organization_name": "Figshare (United Kingdom)", + "host_organization_lineage": [ + "https://openalex.org/I4210132348" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "Dataset" + }, + { + "id": "pmh:oai:pubmedcentral.nih.gov:6837442", + "is_oa": true, + "landing_page_url": "https://www.ncbi.nlm.nih.gov/pmc/articles/6837442", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S2764455111", + "display_name": "PubMed Central", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I1299303238", + "host_organization_name": "National Institutes of Health", + "host_organization_lineage": [ + "https://openalex.org/I1299303238" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "PLoS One", + "raw_type": "Text" + }, + { + "id": "pmh:oai:pure.atira.dk:publications/46636137-42f8-46a3-82e2-565843dbc92a", + "is_oa": true, + "landing_page_url": "https://www.research.manchester.ac.uk/portal/en/publications/machine-learning-algorithm-validation-with-a-limited-sample-size(46636137-42f8-46a3-82e2-565843dbc92a).html", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400662", + "display_name": "Research Explorer (The University of Manchester)", + "issn_l": null, + "issn": null, + "is_oa": false, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I28407311", + "host_organization_name": "University of Manchester", + "host_organization_lineage": [ + "https://openalex.org/I28407311" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "Vabalas, A, Gowen, E, Poliakoff, E & Casson, A 2020, 'Machine learning algorithm validation with a limited sample size', P L o S One, vol. 14, no. 11, e0224365. https://doi.org/10.1371/journal.pone.0224365", + "raw_type": "info:eu-repo/semantics/publishedVersion" + } + ], + "best_oa_location": { + "id": "doi:10.1371/journal.pone.0224365", + "is_oa": true, + "landing_page_url": "https://doi.org/10.1371/journal.pone.0224365", + "pdf_url": "https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0224365&type=printable", + "source": { + "id": "https://openalex.org/S202381698", + "display_name": "PLoS ONE", + "issn_l": "1932-6203", + "issn": [ + "1932-6203" + ], + "is_oa": true, + "is_in_doaj": true, + "is_core": true, + "host_organization": "https://openalex.org/P4310315706", + "host_organization_name": "Public Library of Science", + "host_organization_lineage": [ + "https://openalex.org/P4310315706" + ], + "host_organization_lineage_names": [ + "Public Library of Science" + ], + "type": "journal" + }, + "license": "cc-by", + "license_id": "https://openalex.org/licenses/cc-by", + "version": "publishedVersion", + "is_accepted": true, + "is_published": true, + "raw_source_name": "PLOS ONE", + "raw_type": "journal-article" + }, + "sustainable_development_goals": [ + { + "score": 0.6899999976158142, + "id": "https://metadata.un.org/sdg/10", + "display_name": "Reduced inequalities" + } + ], + "awards": [ + { + "id": "https://openalex.org/G1969528513", + "display_name": null, + "funder_award_id": "1830965", + "funder_id": "https://openalex.org/F4320334627", + "funder_display_name": "Engineering and Physical Sciences Research Council" + } + ], + "funders": [ + { + "id": "https://openalex.org/F4320320291", + "display_name": "University of Manchester", + "ror": "https://ror.org/027m9bs27" + }, + { + "id": "https://openalex.org/F4320334627", + "display_name": "Engineering and Physical Sciences Research Council", + "ror": "https://ror.org/0439y7842" + } + ], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 33, + "referenced_works": [ + "https://openalex.org/W7299809", + "https://openalex.org/W1493357981", + "https://openalex.org/W1505191356", + "https://openalex.org/W1988975411", + "https://openalex.org/W2002645541", + "https://openalex.org/W2031167046", + "https://openalex.org/W2061553036", + "https://openalex.org/W2065283057", + "https://openalex.org/W2077991879", + "https://openalex.org/W2082704080", + "https://openalex.org/W2087347434", + "https://openalex.org/W2092095117", + "https://openalex.org/W2092444470", + "https://openalex.org/W2101234009", + "https://openalex.org/W2112081648", + "https://openalex.org/W2119155327", + "https://openalex.org/W2119387367", + "https://openalex.org/W2132886902", + "https://openalex.org/W2136487516", + "https://openalex.org/W2141007997", + "https://openalex.org/W2142594886", + "https://openalex.org/W2143426320", + "https://openalex.org/W2153635508", + "https://openalex.org/W2154290668", + "https://openalex.org/W2154776925", + "https://openalex.org/W2310177520", + "https://openalex.org/W2421101021", + "https://openalex.org/W2552047097", + "https://openalex.org/W2917871264", + "https://openalex.org/W2963389298", + "https://openalex.org/W3120421331", + "https://openalex.org/W3139562178", + "https://openalex.org/W6675354045" + ], + "related_works": [ + "https://openalex.org/W4362597605", + "https://openalex.org/W1574414179", + "https://openalex.org/W4297676672", + "https://openalex.org/W3009056573", + "https://openalex.org/W2922073769", + "https://openalex.org/W4281702477", + "https://openalex.org/W3155717344", + "https://openalex.org/W1770458422", + "https://openalex.org/W2801469686", + "https://openalex.org/W2149651625" + ], + "abstract_inverted_index": { + "Advances": [ + 0 + ], + "in": [ + 1 + ], + "neuroimaging,": [ + 2 + ], + "genomic,": [ + 3 + ], + "motion": [ + 4 + ], + "tracking,": [ + 5 + ], + "eye-tracking": [ + 6 + ], + "and": [ + 7, + 59, + 62, + 140, + 153, + 159, + 178, + 201, + 208, + 230 + ], + "many": [ + 8 + ], + "other": [ + 9, + 237 + ], + "technology-based": [ + 10 + ], + "data": [ + 11, + 38, + 45, + 180, + 197 + ], + "collection": [ + 12, + 39 + ], + "methods": [ + 13, + 117, + 210 + ], + "have": [ + 14, + 25, + 81, + 104 + ], + "led": [ + 15 + ], + "to": [ + 16, + 69, + 84, + 183, + 194, + 220, + 232 + ], + "a": [ + 17, + 26, + 47 + ], + "torrent": [ + 18 + ], + "of": [ + 19, + 29, + 32, + 37, + 50, + 53, + 78, + 115, + 149, + 164, + 203, + 236 + ], + "high": [ + 20, + 35 + ], + "dimensional": [ + 21, + 44 + ], + "datasets,": [ + 22 + ], + "which": [ + 23, + 80, + 118 + ], + "commonly": [ + 24 + ], + "small": [ + 27, + 48, + 92, + 137, + 228 + ], + "number": [ + 28, + 49, + 202 + ], + "samples": [ + 30, + 51 + ], + "because": [ + 31 + ], + "the": [ + 33, + 113, + 141, + 192, + 234 + ], + "intrinsic": [ + 34 + ], + "cost": [ + 36 + ], + "involving": [ + 40 + ], + "human": [ + 41 + ], + "participants.": [ + 42 + ], + "High": [ + 43 + ], + "with": [ + 46, + 97, + 136, + 146, + 213, + 227 + ], + "is": [ + 52, + 95, + 143, + 181 + ], + "critical": [ + 54 + ], + "importance": [ + 55 + ], + "for": [ + 56 + ], + "identifying": [ + 57 + ], + "biomarkers": [ + 58 + ], + "conducting": [ + 60 + ], + "feasibility": [ + 61 + ], + "pilot": [ + 63 + ], + "work,": [ + 64 + ], + "however": [ + 65 + ], + "it": [ + 66 + ], + "can": [ + 67 + ], + "lead": [ + 68 + ], + "biased": [ + 70, + 133 + ], + "machine": [ + 71 + ], + "learning": [ + 72 + ], + "(ML)": [ + 73 + ], + "performance": [ + 74, + 134, + 161 + ], + "estimates.": [ + 75 + ], + "Our": [ + 76, + 124 + ], + "review": [ + 77 + ], + "studies": [ + 79, + 238 + ], + "applied": [ + 82 + ], + "ML": [ + 83 + ], + "predict": [ + 85 + ], + "autistic": [ + 86 + ], + "from": [ + 87 + ], + "non-autistic": [ + 88 + ], + "individuals": [ + 89 + ], + "showed": [ + 90 + ], + "that": [ + 91, + 127, + 170 + ], + "sample": [ + 93, + 138, + 147, + 165 + ], + "size": [ + 94, + 148 + ], + "associated": [ + 96 + ], + "higher": [ + 98 + ], + "reported": [ + 99 + ], + "classification": [ + 100 + ], + "accuracy.": [ + 101 + ], + "Thus,": [ + 102 + ], + "we": [ + 103 + ], + "investigated": [ + 105 + ], + "whether": [ + 106 + ], + "this": [ + 107 + ], + "bias": [ + 108, + 142, + 184, + 195 + ], + "could": [ + 109 + ], + "be": [ + 110 + ], + "caused": [ + 111 + ], + "by": [ + 112, + 196 + ], + "use": [ + 114 + ], + "validation": [ + 116, + 209, + 242 + ], + "do": [ + 119 + ], + "not": [ + 120 + ], + "sufficiently": [ + 121 + ], + "control": [ + 122 + ], + "overfitting.": [ + 123 + ], + "simulations": [ + 125 + ], + "show": [ + 126, + 169 + ], + "K-fold": [ + 128 + ], + "Cross-Validation": [ + 129 + ], + "(CV)": [ + 130 + ], + "produces": [ + 131 + ], + "strongly": [ + 132 + ], + "estimates": [ + 135, + 162 + ], + "sizes,": [ + 139 + ], + "still": [ + 144 + ], + "evident": [ + 145 + ], + "1000.": [ + 150 + ], + "Nested": [ + 151 + ], + "CV": [ + 152, + 204 + ], + "train/test": [ + 154 + ], + "split": [ + 155 + ], + "approaches": [ + 156 + ], + "produce": [ + 157 + ], + "robust": [ + 158, + 222 + ], + "unbiased": [ + 160 + ], + "regardless": [ + 163 + ], + "size.": [ + 166 + ], + "We": [ + 167 + ], + "also": [ + 168 + ], + "feature": [ + 171 + ], + "selection": [ + 172 + ], + "if": [ + 173 + ], + "performed": [ + 174 + ], + "on": [ + 175, + 240 + ], + "pooled": [ + 176 + ], + "training": [ + 177 + ], + "testing": [ + 179, + 223 + ], + "contributing": [ + 182 + ], + "considerably": [ + 185 + ], + "more": [ + 186 + ], + "than": [ + 187 + ], + "parameter": [ + 188 + ], + "tuning.": [ + 189 + ], + "In": [ + 190 + ], + "addition,": [ + 191 + ], + "contribution": [ + 193 + ], + "dimensionality,": [ + 198 + ], + "hyper-parameter": [ + 199 + ], + "space": [ + 200 + ], + "folds": [ + 205 + ], + "was": [ + 206, + 244 + ], + "explored,": [ + 207 + ], + "were": [ + 211 + ], + "compared": [ + 212 + ], + "discriminable": [ + 214 + ], + "data.": [ + 215 + ], + "The": [ + 216 + ], + "results": [ + 217, + 235 + ], + "suggest": [ + 218 + ], + "how": [ + 219, + 231 + ], + "design": [ + 221 + ], + "methodologies": [ + 224 + ], + "when": [ + 225 + ], + "working": [ + 226 + ], + "datasets": [ + 229 + ], + "interpret": [ + 233 + ], + "based": [ + 239 + ], + "what": [ + 241 + ], + "method": [ + 243 + ], + "used.": [ + 245 + ] + }, + "counts_by_year": [ + { + "year": 2026, + "cited_by_count": 179 + }, + { + "year": 2025, + "cited_by_count": 330 + }, + { + "year": 2024, + "cited_by_count": 338 + }, + { + "year": 2023, + "cited_by_count": 299 + }, + { + "year": 2022, + "cited_by_count": 267 + }, + { + "year": 2021, + "cited_by_count": 176 + }, + { + "year": 2020, + "cited_by_count": 70 + }, + { + "year": 2019, + "cited_by_count": 1 + } + ], + "updated_date": "2026-05-31T08:46:17.908082", + "created_date": "2025-10-10T00:00:00" + }, + { + "id": "https://openalex.org/W4299828299", + "doi": "https://doi.org/10.48550/arxiv.1207.4676", + "title": "Proceedings of the 29th International Conference on Machine Learning (ICML-12)", + "display_name": "Proceedings of the 29th International Conference on Machine Learning (ICML-12)", + "relevance_score": 2468.407, + "publication_year": 2012, + "publication_date": "2012-07-19", + "ids": { + "openalex": "https://openalex.org/W4299828299", + "doi": "https://doi.org/10.48550/arxiv.1207.4676" + }, + "language": "en", + "primary_location": { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "type": "preprint", + "indexed_in": [ + "arxiv", + "datacite" + ], + "open_access": { + "is_oa": true, + "oa_status": "green", + "oa_url": "https://arxiv.org/pdf/1207.4676", + "any_repository_has_fulltext": true + }, + "authorships": [ + { + "author_position": "first", + "author": { + "id": "https://openalex.org/A5005003250", + "display_name": "John Langford", + "orcid": "https://orcid.org/0000-0002-9811-3550" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801032651", + "display_name": "Council of Science Editors", + "ror": "https://ror.org/007cr8911", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I2801032651" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": true, + "raw_author_name": "Langford, John", + "raw_affiliation_strings": [ + "Editors" + ], + "affiliations": [ + { + "raw_affiliation_string": "Editors", + "institution_ids": [ + "https://openalex.org/I2801032651" + ] + } + ] + }, + { + "author_position": "last", + "author": { + "id": "https://openalex.org/A5080591144", + "display_name": "Joëlle Pineau", + "orcid": "https://orcid.org/0000-0003-0747-7250" + }, + "institutions": [ + { + "id": "https://openalex.org/I2801032651", + "display_name": "Council of Science Editors", + "ror": "https://ror.org/007cr8911", + "country_code": "US", + "type": "nonprofit", + "lineage": [ + "https://openalex.org/I2801032651" + ] + } + ], + "countries": [ + "US" + ], + "is_corresponding": false, + "raw_author_name": "Pineau, Joelle", + "raw_affiliation_strings": [ + "Editors" + ], + "affiliations": [ + { + "raw_affiliation_string": "Editors", + "institution_ids": [ + "https://openalex.org/I2801032651" + ] + } + ] + } + ], + "institutions": [], + "countries_distinct_count": 1, + "institutions_distinct_count": 2, + "corresponding_author_ids": [ + "https://openalex.org/A5005003250" + ], + "corresponding_institution_ids": [ + "https://openalex.org/I2801032651" + ], + "apc_list": null, + "apc_paid": null, + "fwci": null, + "has_fulltext": false, + "cited_by_count": 1618, + "citation_normalized_percentile": null, + "cited_by_percentile_year": null, + "biblio": { + "volume": null, + "issue": null, + "first_page": null, + "last_page": null + }, + "is_retracted": false, + "is_paratext": false, + "is_xpac": false, + "primary_topic": { + "id": "https://openalex.org/T10181", + "display_name": "Natural Language Processing Techniques", + "score": 0.6305000185966492, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + }, + "topics": [ + { + "id": "https://openalex.org/T10181", + "display_name": "Natural Language Processing Techniques", + "score": 0.6305000185966492, + "subfield": { + "id": "https://openalex.org/subfields/1702", + "display_name": "Artificial Intelligence" + }, + "field": { + "id": "https://openalex.org/fields/17", + "display_name": "Computer Science" + }, + "domain": { + "id": "https://openalex.org/domains/3", + "display_name": "Physical Sciences" + } + } + ], + "keywords": [ + { + "id": "https://openalex.org/keywords/library-science", + "display_name": "Library science", + "score": 0.5253459811210632 + }, + { + "id": "https://openalex.org/keywords/geography", + "display_name": "Geography", + "score": 0.3677058815956116 + }, + { + "id": "https://openalex.org/keywords/forestry", + "display_name": "Forestry", + "score": 0.32110482454299927 + }, + { + "id": "https://openalex.org/keywords/computer-science", + "display_name": "Computer science", + "score": 0.18688607215881348 + } + ], + "concepts": [ + { + "id": "https://openalex.org/C161191863", + "wikidata": "https://www.wikidata.org/wiki/Q199655", + "display_name": "Library science", + "level": 1, + "score": 0.5253459811210632 + }, + { + "id": "https://openalex.org/C205649164", + "wikidata": "https://www.wikidata.org/wiki/Q1071", + "display_name": "Geography", + "level": 0, + "score": 0.3677058815956116 + }, + { + "id": "https://openalex.org/C97137747", + "wikidata": "https://www.wikidata.org/wiki/Q38112", + "display_name": "Forestry", + "level": 1, + "score": 0.32110482454299927 + }, + { + "id": "https://openalex.org/C41008148", + "wikidata": "https://www.wikidata.org/wiki/Q21198", + "display_name": "Computer science", + "level": 0, + "score": 0.18688607215881348 + } + ], + "mesh": [], + "locations_count": 2, + "locations": [ + { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + { + "id": "doi:10.48550/arxiv.1207.4676", + "is_oa": true, + "landing_page_url": "https://doi.org/10.48550/arxiv.1207.4676", + "pdf_url": null, + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": null, + "is_accepted": false, + "is_published": null, + "raw_source_name": null, + "raw_type": "article" + } + ], + "best_oa_location": { + "id": "pmh:oai:arXiv.org:1207.4676", + "is_oa": true, + "landing_page_url": "http://arxiv.org/abs/1207.4676", + "pdf_url": "https://arxiv.org/pdf/1207.4676", + "source": { + "id": "https://openalex.org/S4306400194", + "display_name": "arXiv (Cornell University)", + "issn_l": null, + "issn": null, + "is_oa": true, + "is_in_doaj": false, + "is_core": false, + "host_organization": "https://openalex.org/I205783295", + "host_organization_name": "Cornell University", + "host_organization_lineage": [ + "https://openalex.org/I205783295" + ], + "host_organization_lineage_names": [], + "type": "repository" + }, + "license": null, + "license_id": null, + "version": "submittedVersion", + "is_accepted": false, + "is_published": false, + "raw_source_name": "", + "raw_type": "text" + }, + "sustainable_development_goals": [], + "awards": [], + "funders": [], + "has_content": { + "pdf": false, + "grobid_xml": false + }, + "content_urls": null, + "referenced_works_count": 0, + "referenced_works": [], + "related_works": [ + "https://openalex.org/W2748952813", + "https://openalex.org/W2383882895", + "https://openalex.org/W3111098267", + "https://openalex.org/W2370206093", + "https://openalex.org/W264709706", + "https://openalex.org/W2375009411", + "https://openalex.org/W2371019958", + "https://openalex.org/W2092269694", + "https://openalex.org/W2063002724", + "https://openalex.org/W3150437343" + ], + "abstract_inverted_index": { + "This": [ + 0 + ], + "is": [ + 1 + ], + "an": [ + 2 + ], + "index": [ + 3 + ], + "to": [ + 4 + ], + "the": [ + 5, + 10, + 13 + ], + "papers": [ + 6 + ], + "that": [ + 7 + ], + "appear": [ + 8 + ], + "in": [ + 9, + 25 + ], + "Proceedings": [ + 11 + ], + "of": [ + 12 + ], + "29th": [ + 14 + ], + "International": [ + 15 + ], + "Conference": [ + 16 + ], + "on": [ + 17 + ], + "Machine": [ + 18 + ], + "Learning": [ + 19 + ], + "(ICML-12).": [ + 20 + ], + "The": [ + 21 + ], + "conference": [ + 22 + ], + "was": [ + 23 + ], + "held": [ + 24 + ], + "Edinburgh,": [ + 26 + ], + "Scotland,": [ + 27 + ], + "June": [ + 28 + ], + "27th": [ + 29 + ], + "-": [ + 30 + ], + "July": [ + 31 + ], + "3rd,": [ + 32 + ], + "2012.": [ + 33 + ] + }, + "counts_by_year": [ + { + "year": 2025, + "cited_by_count": 100 + }, + { + "year": 2024, + "cited_by_count": 136 + }, + { + "year": 2023, + "cited_by_count": 155 + }, + { + "year": 2022, + "cited_by_count": 120 + }, + { + "year": 2021, + "cited_by_count": 86 + }, + { + "year": 2020, + "cited_by_count": 167 + }, + { + "year": 2019, + "cited_by_count": 218 + }, + { + "year": 2018, + "cited_by_count": 146 + }, + { + "year": 2017, + "cited_by_count": 177 + }, + { + "year": 2016, + "cited_by_count": 136 + }, + { + "year": 2015, + "cited_by_count": 76 + }, + { + "year": 2014, + "cited_by_count": 49 + }, + { + "year": 2013, + "cited_by_count": 37 + }, + { + "year": 2012, + "cited_by_count": 15 + } + ], + "updated_date": "2026-04-24T08:23:43.765630", + "created_date": "2025-10-10T00:00:00" + } +] \ No newline at end of file diff --git a/data/raw/pubmed_20260601_190321.xml b/data/raw/pubmed_20260601_190321.xml new file mode 100644 index 000000000..6c71a7d56 --- /dev/null +++ b/data/raw/pubmed_20260601_190321.xml @@ -0,0 +1,22274 @@ + + + + + 42224015 + + 2026 + 06 + 01 + +
+ + 2817-1705 + + 5 + + 2026 + Jun + 01 + + + JMIR AI + JMIR AI + + Estimating a Physiological Lung Function Score and Biological Sex Using Pulmonary Function Tests and Machine Learning: Retrospective Study. + + e89060 + e89060 + + 10.2196/89060 + + Sex and age have long been known to affect lung function. Several biological variables and anatomical factors may contribute to sex- and age-related differences in pulmonary metrics. + We hypothesized that a machine learning model could be trained to predict a person's lung age and self-reported sex using pulmonary function test data. + We retrospectively analyzed complete pulmonary function tests from 6392 healthy adults across 3 Mayo Clinic regions. Four models of increasing complexity were trained using gradient-boosted machines to predict chronological age and biological sex. Model interpretability was assessed using Shapley additive explanation values and partial dependence plots. Quantile regression was used to estimate reference percentiles for predicted lung age. + The best-performing age model (model 4, inclusive of time-series features) achieved a root mean square error of 7.01 years (95% CI 6.73-7.30) and a mean absolute error of 5.55 years (95% CI 5.32-5.80). The best-performing sex classification model (model 4) achieved an area under the curve of 0.981 (95% CI 0.975-0.988), sensitivity of 91.7% (95% CI 89.0%-93.9%), and specificity of 95.6% (95% CI 93.9%-97%). Key predictors for lung age included residual volume as a percentage of total lung capacity (TLC), forced expiratory volume in 1 second, and alveolar volume. For sex classification, peak expiratory flow, height, and age were among the most influential features. Age-stratified evaluation showed the overestimation of lung age in younger adults and underestimation in older adults. Predicted lung age increased broadly with chronological age, and quantile regression provided normative reference ranges. + Applying artificial intelligence to pulmonary function data allows the prediction of a patient's sex and estimation of lung age. The ability of an artificial intelligence algorithm to determine physiological lung age, with further validation, may serve as a measure of overall respiratory health. + © Patrick W Johnson, Zachary S Quicksall, Jieun Lee, Augustine S Lee, Kaiser G Lim, Victor E Ortega, Shivaram Poigai Arunachalam, Scott A Helgeson. Originally published in JMIR AI (https://ai.jmir.org). + + + + Johnson + Patrick W + PW + 0000-0001-8365-1375 + + Department of Quantitative Health Sciences, Mayo Clinic Hospital, 4500 San Pablo Road S, Jacksonville, FL, 32224, United States, 1 9049536728. + + + + Quicksall + Zachary S + ZS + 0000-0002-8791-0925 + + Department of Quantitative Health Sciences, Mayo Clinic Hospital, 4500 San Pablo Road S, Jacksonville, FL, 32224, United States, 1 9049536728. + + + + Lee + Jieun + J + 0000-0003-2376-4356 + + Department of Quantitative Health Sciences, Mayo Clinic Hospital, 4500 San Pablo Road S, Jacksonville, FL, 32224, United States, 1 9049536728. + + + + Lee + Augustine S + AS + 0000-0001-8018-5145 + + Department of Quantitative Health Sciences, Mayo Clinic Hospital, 4500 San Pablo Road S, Jacksonville, FL, 32224, United States, 1 9049536728. + + + + Lim + Kaiser G + KG + 0000-0002-4551-6559 + + Department of Medicine, Division of Pulmonary Medicine, Mayo Clinic Hospital, Rochester, MN, United States. + + + + Ortega + Victor E + VE + 0000-0001-6361-7372 + + Department of Medicine, Division of Pulmonary Medicine, Mayo Clinic Hospital, Phoenix, AZ, United States. + + + + Arunachalam + Shivaram Poigai + SP + 0000-0003-3251-5415 + + Department of Quantitative Health Sciences, Mayo Clinic Hospital, 4500 San Pablo Road S, Jacksonville, FL, 32224, United States, 1 9049536728. + + + + Helgeson + Scott A + SA + 0000-0001-7590-2293 + + Department of Quantitative Health Sciences, Mayo Clinic Hospital, 4500 San Pablo Road S, Jacksonville, FL, 32224, United States, 1 9049536728. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + Canada + JMIR AI + 9918645789006676 + 2817-1705 + + + age + artificial intelligence + gender + machine learning + pulmonary function test + spirometry + +
+ + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 12 + 5 + + + 2026 + 5 + 7 + + + 2026 + 5 + 7 + + + 2026 + 6 + 1 + 11 + 53 + + + epublish + + 42224015 + 10.2196/89060 + v5i1e89060 + + +
+ + + 42223953 + + 2026 + 06 + 01 + +
+ + 1520-5215 + + + 2026 + Jun + 01 + + + The journal of physical chemistry. A + J Phys Chem A + + Benchmarking the UMA Foundation Interatomic Potential for Gas-Phase Chemical Kinetics. + 10.1021/acs.jpca.6c01748 + + Foundation machine-learned interatomic potentials promise rapid access to high-quality potential energy surfaces, but their fitness for gas-phase chemical kinetics remains largely untested. Here we benchmark the Universal Models for Atoms (UMA) foundation model for gas-phase kinetics applications relevant to combustion and atmospheric chemistry using our automated KinBot workflow across 12 representative systems. We compare optimized structures and ZPE-corrected energetics against the parent level of theory, ωB97M-V/def2-TZVPD, and assess pathway discovery, stationary-point fidelity, and downstream kinetic inputs such as conformer ordering and one-dimensional hindered rotor scans. UMA reliably identifies the expected reaction channels over broad regions of chemical space, including pathways that are also a challenge for ab initio methods. Single-point DFT corrections at UMA geometries are an efficient way to improve energies. Overall, we suggest a practical hybrid workflow in which UMA performs inexpensive exploration and sampling, while DFT refinement is reserved for the important regions of the PES. Our results indicate that UMA can substantially accelerate rate coefficient calculations for gas-phase systems, motivating future work on uncertainty quantification, targeted finetuning, and Δ-learning corrections toward a gas-phase kinetics-specialized foundation model. + + + + Kendall + Daniel T + DT + 0009-0000-4486-8723 + + Combustion Research Facility, Sandia National Laboratories, Livermore, California 94551-0969, United States. + + + Department of Chemistry, University of California Los Angeles, Los Angeles, California 90095, United States. + + + + Zádor + Judit + J + 0000-0002-9123-8238 + + Combustion Research Facility, Sandia National Laboratories, Livermore, California 94551-0969, United States. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + United States + J Phys Chem A + 9890903 + 1089-5639 + + IM +
+ + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 11 + 33 + + + aheadofprint + + 42223953 + 10.1021/acs.jpca.6c01748 + + +
+ + + 42223918 + + 2026 + 06 + 01 + +
+ + 1520-5851 + + + 2026 + Jun + 01 + + + Environmental science & technology + Environ Sci Technol + + A Hybrid Data-Driven Intensified Mechanistic Modeling Framework for Accurate and Reliable Wastewater Treatment Process Simulation and Control. + 10.1021/acs.est.6c00540 + + Computational modeling guides the wastewater treatment (WWT) design. However, nonlinearities, stochastic influent fluctuations, and complex microbial interactions challenge model predictive accuracy and robustness. Mechanistic models lack fidelity under dynamic conditions due to static parametrization. Data-driven models have emerged to capture such dynamics, but their unconstrained flexibility can produce unstable predictions, which are unacceptable in high-stakes WWT. This study proposes a hybrid data-driven intensified mechanistic modeling (HyDIM) framework, which functionalizes kinetic parameters using a data-driven component to enable adaptive responses, while the mechanistic core ensures predictive robustness. HyDIM was validated in the high-stakes sulfide-laden WWT system, where precise control is critical to mitigating hydrogen sulfide release and optimizing elemental sulfur recovery. Compared to the mechanistic model, HyDIM improved prediction accuracy under dynamic conditions, with R + 2 values for sulfide, sulfur, and sulfate increasing from 0.30, 0.09, and 0.02 to 0.66, 0.77, and 0.74, respectively. Predictive robustness was also enhanced, with extreme deviations reduced by 78.2% relative to the data-driven model. Using HyDIM, a bi-objective optimization strategy achieved stable long-term performance, with 96% sulfide removal and 91% sulfur recovery, a 41% improvement in sulfur recovery over the mechanistic strategy. Overall, this work presents a novel modeling paradigm for reliable decision support and control in WWT. + + + + Xie + Wenlang + W + + Guangdong Provincial Key Lab of Environmental Pollution Control and Remediation Technology, School of Environmental Science and Engineering, Sun Yat-sen University, Guangzhou 510275, China. + + + + Guo + Jiahua + J + + Guangdong Provincial Key Lab of Environmental Pollution Control and Remediation Technology, School of Environmental Science and Engineering, Sun Yat-sen University, Guangzhou 510275, China. + + + + Li + Hao + H + + Guangdong Provincial Key Lab of Environmental Pollution Control and Remediation Technology, School of Environmental Science and Engineering, Sun Yat-sen University, Guangzhou 510275, China. + + + + Liang + Zhengsheng + Z + + Guangdong Provincial Key Lab of Environmental Pollution Control and Remediation Technology, School of Environmental Science and Engineering, Sun Yat-sen University, Guangzhou 510275, China. + + + School of Biological and Food Engineering, Guangdong University of Education, Guangzhou 510310, China. + + + + Qu + Shen + S + + Center for Energy & Environmental Policy Research, Beijing Institute of Technology, Beijing 100081, China. + + + + Jiang + Feng + F + 0000-0002-8198-7454 + + Guangdong Provincial Key Lab of Environmental Pollution Control and Remediation Technology, School of Environmental Science and Engineering, Sun Yat-sen University, Guangzhou 510275, China. + + + Guangdong Provincial Engineering Research Center of Low-Carbon Technology for Water Pollution Control, Sun Yat-sen University, Guangzhou 510275, China. + + + Southern Marine Science and Engineering Guangdong Laboratory (Zhuhai), Zhuhai 519000, China. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + United States + Environ Sci Technol + 0213155 + 0013-936X + + IM + + accuracy and interpretability + machine learning + mechanistic model + optimization and control + parameter functionalization + selective sulfide oxidation + +
+ + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 11 + 24 + + + aheadofprint + + 42223918 + 10.1021/acs.est.6c00540 + + +
+ + + 42223885 + + 2026 + 06 + 01 + +
+ + 1867-1462 + + + 2026 + Jun + 01 + + + Interdisciplinary sciences, computational life sciences + Interdiscip Sci + + Unveiling the Impact of Copper Metabolism on Epithelial-Mesenchymal Transition of Triple-Negative Breast Cancer: Identification of Therapeutic Targets. + 10.1007/s12539-026-00835-6 + + Triple-negative breast cancer (TNBC) is a biologically aggressive subtype of breast cancer marked by high heterogeneity and poor prognosis. Copper metabolism has been implicated in TNBC progression, but its functional contributions remain insufficiently defined. In this study, we analyzed transcriptomic data from 229 TNBC and adjacent normal samples from The Cancer Genome Atlas (TCGA) to identify 26 differentially expressed copper metabolism-related genes (DEGs-CM). A nine-gene Cox model (HEPHL1, COX7A1, COX4I2, JUN, MAPT, MT1A, AOC3, DCT, AOC2) demonstrated robust prognostic value, with time-dependent AUCs of 0.88, 0.84, and 0.80 at 1, 3, and 5 years. Functional enrichment analyses revealed epithelial-mesenchymal transition (EMT) and angiogenesis pathways enriched in high-risk groups. Four genes (AOC3, COX4I2, COX7A1, JUN) were further identified as copper metabolism-related metastasis genes (CMMRGs) through correlation with metastasis-associated programs. Based on these genes, machine learning classifiers were developed to predict TNBC presence and lymph node metastasis. Classifiers trained on the full dataset achieved consistently high performance, with most models showing AUCs greater than 0.97 (random forest, XGBoost, and AdaBoost classifier) even when using reduced gene panels (26-, 9-, and 4-gene sets), demonstrating stable classification across gene panels. In contrast, performance declined notably in metastasis-specific classification, largely due to the limited number of labeled metastatic samples. Among these, the 9-gene panel yielded the highest test AUCs across most models (gradient boosting machine AUC 0.64), suggesting that it may provide an optimal balance between model complexity and discriminative power, while also highlighting a key limitation related to the restricted sample size and incomplete clinical annotations in the metastasis-specific dataset. Single-cell RNA sequencing confirmed fibroblast-specific enrichment of CMMRGs and associated EMT signatures, suggesting a mechanistic link between copper metabolism, stromal remodeling, and metastasis. These results establish a copper-centered molecular framework for TNBC diagnosis and metastasis prediction, supporting the translational potential of copper metabolism-related genes in clinical applications. + © 2026. International Association of Scientists in the Interdisciplinary Areas. + + + + Zhuang + Kai + K + + Dongguan Key Laboratory of Computer-Aided Drug Design, the First Dongguan Affiliated Hospital, Guangdong Medical University, Dongguan, 523710, China. + + + Guangdong Medical University Key Laboratory of Big Data Mining and Precision Drug Design, Guangdong Provincial Key Laboratory for Research and Development of Natural Drugs, School of Pharmacy, Guangdong Medical University, Dongguan, 523808, China. + + + School of Public Health, Guangdong Medical University, Dongguan, 523808, China. + + + + Yan + Lin + L + + Dongguan Key Laboratory of Computer-Aided Drug Design, the First Dongguan Affiliated Hospital, Guangdong Medical University, Dongguan, 523710, China. + + + + Waqas + Muhammad + M + + Dongguan Key Laboratory of Computer-Aided Drug Design, the First Dongguan Affiliated Hospital, Guangdong Medical University, Dongguan, 523710, China. + + + Guangdong Medical University Key Laboratory of Big Data Mining and Precision Drug Design, Guangdong Provincial Key Laboratory for Research and Development of Natural Drugs, School of Pharmacy, Guangdong Medical University, Dongguan, 523808, China. + + + + Feng + Haixin + H + + Dongguan Key Laboratory of Computer-Aided Drug Design, the First Dongguan Affiliated Hospital, Guangdong Medical University, Dongguan, 523710, China. + + + Guangdong Medical University Key Laboratory of Big Data Mining and Precision Drug Design, Guangdong Provincial Key Laboratory for Research and Development of Natural Drugs, School of Pharmacy, Guangdong Medical University, Dongguan, 523808, China. + + + School of Public Health, Guangdong Medical University, Dongguan, 523808, China. + + + + Tang + Siqi + S + + Guangdong Medical University Key Laboratory of Big Data Mining and Precision Drug Design, Guangdong Provincial Key Laboratory for Research and Development of Natural Drugs, School of Pharmacy, Guangdong Medical University, Dongguan, 523808, China. + + + + He + Haoqi + H + + School of Public Health, Guangdong Medical University, Dongguan, 523808, China. + + + + Yu + Xinshi + X + + Dongguan Key Laboratory of Computer-Aided Drug Design, the First Dongguan Affiliated Hospital, Guangdong Medical University, Dongguan, 523710, China. + + + + Wang + Yanling + Y + + Department of Anesthesiology, the Third Affiliated Hospital of Sun Yat-Sen University, Guangzhou, 510630, China. wangyl5@mail.sysu.edu.cn. + + + + Huang + Zunnan + Z + 0000-0002-5821-703X + + Dongguan Key Laboratory of Computer-Aided Drug Design, the First Dongguan Affiliated Hospital, Guangdong Medical University, Dongguan, 523710, China. zn_huang@gdmu.edu.cn. + + + Guangdong Medical University Key Laboratory of Big Data Mining and Precision Drug Design, Guangdong Provincial Key Laboratory for Research and Development of Natural Drugs, School of Pharmacy, Guangdong Medical University, Dongguan, 523808, China. zn_huang@gdmu.edu.cn. + + + + eng + + + No. PF100-2-02 + Talent Development Foundation of The First Dongguan Affiliated Hospital of Guangdong Medical University + + + + 2019268 + Higher Education Reform Project of Guangdong Province + + + + No. 2025KCXTD018 + Innovation Team Project of Guangdong Province Regular Higher Education Institutions + + + + + Journal Article + + + 2026 + 06 + 01 + +
+ + Germany + Interdiscip Sci + 101515919 + 1867-1462 + + IM + + Copper metabolism + Fibroblast + Machine learning + Metastasis + Prognosis + Transcriptomics + Triple-negative breast cancer + + Declarations. Conflict of interest: Author Zunnan Huang is a member of the Editorial Board for Interdisciplinary Sciences: Computational Life Sciences, and was not involved in the journal’s review of, or decisions related to, this manuscript. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2024 + 11 + 21 + + + 2026 + 3 + 10 + + + 2026 + 3 + 9 + + + 2026 + 6 + 1 + 11 + 22 + + + aheadofprint + + 42223885 + 10.1007/s12539-026-00835-6 + 10.1007/s12539-026-00835-6 + + + + Liu L, Wang Y, Miao L et al (2018) Combination immunotherapy of MUC1 mRNA nano-vaccine and CTLA-4 blockade effectively inhibits growth of triple negative breast cancer. Mol Ther 26:45–55. https://doi.org/10.1016/j.ymthe.2017.10.020 + + 10.1016/j.ymthe.2017.10.020 + 29258739 + + + + Manjunath M, Choudhary B (2021) Triple-negative breast cancer: a run-through of features, classification and current therapies. Oncol Lett 22:512. https://doi.org/10.3892/ol.2021.12773 + + 10.3892/ol.2021.12773 + 33986872 + 8114477 + + + + Vagia E, Mahalingam D, Cristofanilli M (2020) The landscape of targeted therapies in TNBC. Cancers 12:916. https://doi.org/10.3390/cancers12040916 + + 10.3390/cancers12040916 + 32276534 + 7226210 + + + + Nedeljkovic M, Damjanovic A (2019) Mechanisms of chemotherapy resistance in triple-negative breast cancer-how we can rise to the challenge. Cells 8:957. https://doi.org/10.3390/cells8090957 + + 10.3390/cells8090957 + 31443516 + 6770896 + + + + So JY, Ohm J, Lipkowitz S et al (2022) Triple negative breast cancer (TNBC): non-genetic tumor heterogeneity and immune microenvironment: emerging treatment options. Pharmacol Ther 237:108253. https://doi.org/10.1016/j.pharmthera.2022.108253 + + 10.1016/j.pharmthera.2022.108253 + 35872332 + + + + Tsvetkov P, Coy S, Petrova B et al (2022) Copper induces cell death by targeting lipoylated TCA cycle proteins. Science 375:1254–1261. https://doi.org/10.1126/science.abf0529 + + 10.1126/science.abf0529 + 35298263 + 9273333 + + + + Tsang T, Davis CI, Brady DC (2021) Copper biology. Curr Biol 31:R421–R427. https://doi.org/10.1016/j.cub.2021.03.054 + + 10.1016/j.cub.2021.03.054 + 33974864 + + + + Ramchandani D, Berisa M, Tavarez DA et al (2021) Copper depletion modulates mitochondrial oxidative phosphorylation to impair triple negative breast cancer metastasis. Nat Commun 12:7311. https://doi.org/10.1038/s41467-021-27559-z + + 10.1038/s41467-021-27559-z + 34911956 + 8674260 + + + + Poursani EM, Mercatelli D, Raninga P et al (2023) Copper chelation suppresses epithelial-mesenchymal transition by inhibition of canonical and non-canonical TGF-β signaling pathways in cancer. Cell Biosci 13:132. https://doi.org/10.1186/s13578-023-01083-7 + + 10.1186/s13578-023-01083-7 + 37480151 + 10362738 + + + + Jiang Y, Huo Z, Qi X et al (2022) Copper-induced tumorcell death mechanisms and antitumor theragnostic applications of copper complexes. Nanomedicine 17:303–324. https://doi.org/10.2217/nnm-2021-0374 + + 10.2217/nnm-2021-0374 + 35060391 + + + + Tang D, Kroemer G, Kang R (2024) Targeting cuproplasia and cuproptosis in cancer. Nat Rev Clin Oncol 21:370–388. https://doi.org/10.1038/s41571-024-00876-0 + + 10.1038/s41571-024-00876-0 + 38486054 + + + + Duan F, Li J, Huang J et al (2021) Establishment and validation of prognostic nomograms based on serum copper level for patients with early-stage triple-negative breast cancer. Front Cell Dev Biol 9:770115. https://doi.org/10.3389/fcell.2021.770115 + + 10.3389/fcell.2021.770115 + 34901016 + 8657150 + + + + Li QF, Ding XQ, Kang YJ (2014) Copper promotion of angiogenesis in isolated rat aortic ring: role of vascular endothelial growth factor. J Nutr Biochem 25:44–49. https://doi.org/10.1016/j.jnutbio.2013.08.013 + + 10.1016/j.jnutbio.2013.08.013 + 24314864 + + + + Karginova O, Weekley CM, Raoul A et al (2019) Inhibition of copper transport induces apoptosis in triple-negative breast cancer cells and suppresses tumor angiogenesis. Mol Cancer Ther 18:873–885. https://doi.org/10.1158/1535-7163.MCT-18-0667 + + 10.1158/1535-7163.MCT-18-0667 + 30824611 + 12244435 + + + + Shanbhag VC, Gudekar N, Jasmer K et al (2021) Copper metabolism as a unique vulnerability in cancer. Biochimica et Biophysica Acta (BBA) - Mol Cell Res 1868:118893. https://doi.org/10.1016/j.bbamcr.2020.118893 + + 10.1016/j.bbamcr.2020.118893 + + + + Chang W, Li H, Zhong L et al (2022) Development of a copper metabolism-related gene signature in lung adenocarcinoma. Front Immunol 13:1040668. https://doi.org/10.3389/fimmu.2022.1040668 + + 10.3389/fimmu.2022.1040668 + 36524120 + 9744782 + + + + Zhang S, Zhang L, Lu H et al (2022) A cuproptosis and copper metabolism-related gene prognostic index for head and neck squamous cell carcinoma. Front Oncol 12:955336. https://doi.org/10.3389/fonc.2022.955336 + + 10.3389/fonc.2022.955336 + 36072790 + 9441563 + + + + Srinivasu PN, Sirisha U, Sandeep K et al (2024) An interpretable approach with explainable AI for heart stroke prediction. Diagnostics 14:128. https://doi.org/10.3390/diagnostics14020128 + + 10.3390/diagnostics14020128 + 38248005 + 10813874 + + + + Bikku T (2020) Multi-layered deep learning perceptron approach for health risk prediction. J Big Data 7:50. https://doi.org/10.1186/s40537-020-00316-7 + + 10.1186/s40537-020-00316-7 + + + + Kourou K, Exarchos TP, Exarchos KP et al (2015) Machine learning applications in cancer prognosis and prediction. Comput Struct Biotechnol J 13:8–17. https://doi.org/10.1016/j.csbj.2014.11.005 + + 10.1016/j.csbj.2014.11.005 + 25750696 + + + + Huang S, Yang J, Fong S et al (2020) Artificial intelligence in cancer diagnosis and prognosis: opportunities and challenges. Cancer Lett 471:61–71. https://doi.org/10.1016/j.canlet.2019.12.007 + + 10.1016/j.canlet.2019.12.007 + 31830558 + + + + Blum A, Wang P, Zenklusen JC (2018) Snapshot: TCGA-analyzed tumors. Cell 173:530. https://doi.org/10.1016/j.cell.2018.03.059 + + 10.1016/j.cell.2018.03.059 + 29625059 + + + + Liberzon A, Subramanian A, Pinchback R et al (2011) Molecular signatures database (MSigDB) 3.0. Bioinformatics 27:1739–1740. https://doi.org/10.1093/bioinformatics/btr260 + + 10.1093/bioinformatics/btr260 + 21546393 + 3106198 + + + + Liberzon A, Birger C, Thorvaldsdottir H et al (2015) The molecular signatures database (MSigDB) hallmark gene set collection. Cell Syst 1:417–425. https://doi.org/10.1016/j.cels.2015.12.004 + + 10.1016/j.cels.2015.12.004 + 26771021 + 4707969 + + + + Subramanian A, Tamayo P, Mootha VK et al (2005) Gene set enrichment analysis: a knowledge-based approach for interpreting genome-wide expression profiles. Proc Natl Acad Sci U S A 102:15545–15550. https://doi.org/10.1073/pnas.0506580102 + + 10.1073/pnas.0506580102 + 16199517 + 1239896 + + + + Zhuang K, Tang S, Feng H et al (2024) A novel copper metabolism-related signature model for predicting the prognosis, target drugs, and immunotherapy in stomach adenocarcinoma. Genes Dis 11:101102. https://doi.org/10.1016/j.gendis.2023.101102 + + 10.1016/j.gendis.2023.101102 + 38774913 + + + + Mootha VK, Lindgren CM, Eriksson KF et al (2003) PGC-1α-responsive genes involved in oxidative phosphorylation are coordinately downregulated in human diabetes. Nat Genet 34:267–273. https://doi.org/10.1038/ng1180 + + 10.1038/ng1180 + 12808457 + + + + Barbie DA, Tamayo P, Boehm JS et al (2009) Systematic RNA interference reveals that oncogenic KRAS-driven cancers require TBK1. Nature 462:108–112. https://doi.org/10.1038/nature08460 + + 10.1038/nature08460 + 19847166 + 2783335 + + + + Chawla NV, Bowyer KW, Hall LO et al (2002) SMOTE: synthetic minority over-sampling technique. J Artif Intell Res 16:321–357. https://doi.org/10.1613/jair.953 + + 10.1613/jair.953 + + + + Greener JG, Kandathil SM, Moffat L et al (2022) A guide to machine learning for biologists. Nat Rev Mol Cell Biol 23:40–55. https://doi.org/10.1038/s41580-021-00407-0 + + 10.1038/s41580-021-00407-0 + 34518686 + + + + Adlung L, Cohen Y, Mor U et al (2021) Machine learning in clinical decision making. Medicine 2:642–665. https://doi.org/10.1016/j.medj.2021.04.006 + + 10.1016/j.medj.2021.04.006 + + + + Toro-Dominguez D, Martorell-Marugan J, Lopez-Dominguez R et al (2019) ImaGEO: integrative gene expression meta-analysis from GEO database. Bioinformatics 35:880–882. https://doi.org/10.1093/bioinformatics/bty721 + + 10.1093/bioinformatics/bty721 + 30137226 + + + + Bianchini G, Balko JM, Mayer IA et al (2016) Triple-negative breast cancer: challenges and opportunities of a heterogeneous disease. Nat Rev Clin Oncol 13:674–690. https://doi.org/10.1038/nrclinonc.2016.66 + + 10.1038/nrclinonc.2016.66 + 27184417 + 5461122 + + + + Yu P, Zhu L, Cui K et al (2021) B4GALNT2 gene promotes proliferation, and invasiveness and migration abilities of model triple negative breast cancer (TNBC) cells by interacting with HLA-B protein. Front Oncol 11:722828. https://doi.org/10.3389/fonc.2021.722828 + + 10.3389/fonc.2021.722828 + 34589428 + 8473878 + + + + Chen Q, Xia R, Zheng W et al (2020) Metronomic paclitaxel improves the efficacy of PD-1 monoclonal antibodies in breast cancer by transforming the tumor immune microenvironment. Am J Transl Res 12:519–530 + + 32194900 + 7061845 + + + + Martin M, Stecklein SR, Gluz O et al (2025) TNBC-DX genomic test in early-stage triple-negative breast cancer treated with neoadjuvant taxane-based therapy. Ann Oncol 36:158–171. https://doi.org/10.1016/j.annonc.2024.10.012 + + 10.1016/j.annonc.2024.10.012 + 39419289 + + + + Poggio F, Bruzzone M, Ceppi M et al (2018) Platinum-based neoadjuvant chemotherapy in triple-negative breast cancer: a systematic review and meta-analysis. Ann Oncol 29:1497–1508. https://doi.org/10.1093/annonc/mdy127 + + 10.1093/annonc/mdy127 + 29873695 + + + + Mason SR, Willson ML, Egger SJ et al (2023) Platinum-based chemotherapy for early triple-negative breast cancer. Cochrane Database Syst Rev. https://doi.org/10.1002/14651858.CD014805.pub2 + + 10.1002/14651858.CD014805.pub2 + 37681577 + 10486188 + + + + Zhu S, Wu Y, Song B et al (2023) Recent advances in targeted strategies for triple-negative breast cancer. J Hematol Oncol 16:100. https://doi.org/10.1186/s13045-023-01497-3 + + 10.1186/s13045-023-01497-3 + 37641116 + 10464091 + + + + Cui L, Gouw AM, LaGory EL et al (2021) Mitochondrial copper depletion suppresses triple-negative breast cancer in mice. Nat Biotechnol 39:357–367. https://doi.org/10.1038/s41587-020-0707-9 + + 10.1038/s41587-020-0707-9 + 33077961 + + + + Zhu P, Liu G, Wang X et al (2022) Transcription factor c-Jun modulates GLUT1 in glycolysis and breast cancer metastasis. BMC Cancer 22:1283. https://doi.org/10.1186/s12885-022-10393-x + + 10.1186/s12885-022-10393-x + 36476606 + 9730598 + + + + Cirak Y, Sarsik B, Cakar B et al (2013) Predictive and prognostic values of Tau and BubR1 protein in prostate cancer and their relationship to the Gleason score. Med Oncol 30:526. https://doi.org/10.1007/s12032-013-0526-7 + + 10.1007/s12032-013-0526-7 + 23475578 + + + + Mishra N, Timilsina U, Ghimire D et al (2017) Downregulation of cytochrome c oxidase subunit 7A1 expression is important in enhancing cell proliferation in adenocarcinoma cells. Biochem Biophys Res Commun 482:713–719. https://doi.org/10.1016/j.bbrc.2016.11.100 + + 10.1016/j.bbrc.2016.11.100 + 27866983 + + + + Liang GY, Lu SX, Xu G et al (2013) Expression of metallothionein and Nrf2 pathway genes in lung cancer and cancer-surrounding tissues. World J Surg Oncol 11:199. https://doi.org/10.1186/1477-7819-11-199 + + 10.1186/1477-7819-11-199 + 23947958 + 3765715 + + + + Chang CY, Wu KL, Chang YY et al (2021) Amine oxidase, copper containing 3 exerts anti‑mesenchymal transformation and enhances CD4(+) T‑cell recruitment to prolong survival in lung cancer. Oncol Rep 46:203. https://doi.org/10.3892/or.2021.8154 + + 10.3892/or.2021.8154 + 34318901 + 8329917 + + + + Li JP, Liu YJ, Zeng SH et al (2022) Identification of COX4I2 as a hypoxia-associated gene acting through FGF1 to promote EMT and angiogenesis in CRC. Cell Mol Biol Lett 27:76. https://doi.org/10.1186/s11658-022-00380-2 + + 10.1186/s11658-022-00380-2 + 36064310 + 9446847 + + + + Zhu L, Chen L (2019) Progress in research on paclitaxel and tumor immunotherapy. Cell Mol Biol Lett 24:40. https://doi.org/10.1186/s11658-019-0164-y + + 10.1186/s11658-019-0164-y + 31223315 + 6567594 + + + + Dhillon S (2020) Avapritinib: first approval. Drugs 80:433–439. https://doi.org/10.1007/s40265-020-01275-2 + + 10.1007/s40265-020-01275-2 + 32100250 + + + + Hao D, Meng Q, Li C et al (2023) A paclitaxel prodrug with copper depletion for combined therapy toward triple-negative breast cancer. ACS Nano 17:12383–12393. https://doi.org/10.1021/acsnano.3c01792 + + 10.1021/acsnano.3c01792 + 37322575 + + + + Evans EK, Hodous BL, Gardino AK et al (2015) Abstract 791: BLU-285, the first selective inhibitor of PDGFRα D842V and KIT Exon 17 mutants. Cancer Res 75(Suppl):791. https://doi.org/10.1158/1538-7445.Am2015-791 + + 10.1158/1538-7445.Am2015-791 + + + + U.S. Food and Drug Administration (2020) FDA approves avapritinib for gastrointestinal stromal tumor with a rare mutation. Accessed 28 July 2025. https://www.fda.gov/drugs/resources-information-approved-drugs/fda-approves-avapritinib-gastrointestinal-stromal-tumor-rare-mutation + + + Onconova Therapeutics I (2021) Study of ON 123300 in patients with advanced cancer. Accessed 14 August 2025. https://classic.clinicaltrials.gov/ct2/show/NCT04739293 + + + Divakar SK, Ramana Reddy MV, Cosenza SC et al (2016) Dual inhibition of CDK4/Rb and PI3K/AKT/mTOR pathways by ON123300 induces synthetic lethality in mantle cell lymphomas. Leukemia 30:86–93. https://doi.org/10.1038/leu.2015.185 + + 10.1038/leu.2015.185 + 26174628 + + + + Drilon A, Ou SI, Cho BC et al (2018) Repotrectinib (TPX-0005) is a next-generation ROS1/TRK/ALK inhibitor that potently inhibits ROS1/TRK/ALK solvent front mutations. Cancer Discov 8:1227–1236. https://doi.org/10.1158/2159-8290.CD-18-0484 + + 10.1158/2159-8290.CD-18-0484 + 30093503 + + + + Desai J, Gan H, Barrow C et al (2020) Phase I, open-label, dose-escalation/dose-expansion study of Lifirafenib (BGB-283), an RAF family kinase inhibitor, in patients with solid tumors. J Clin Oncol 38:2140–2150. https://doi.org/10.1200/JCO.19.02654 + + 10.1200/JCO.19.02654 + 32182156 + 7325368 + + + + Jhaveri K, Miller K, Rosen L et al (2012) A phase I dose-escalation trial of trastuzumab and alvespimycin hydrochloride (KOS-1022; 17 DMAG) in the treatment of advanced solid tumors. Clin Cancer Res 18:5090–5098. https://doi.org/10.1158/1078-0432.CCR-11-3200 + + 10.1158/1078-0432.CCR-11-3200 + 22781552 + + + + Guan D, Zhao L, Shi X et al (2023) Copper in cancer: from pathogenesis to therapy. Biomed Pharmacother 163:114791. https://doi.org/10.1016/j.biopha.2023.114791 + + 10.1016/j.biopha.2023.114791 + 37105071 + + + + Yu S, Cai X, Wu C et al (2017) Targeting HSP90-HDAC6 regulating network implicates precision treatment of breast cancer. Int J Biol Sci 13:505–517. https://doi.org/10.7150/ijbs.18834 + + 10.7150/ijbs.18834 + 28529458 + 5436570 + + + + Guo AS, Huang YQ, Ma XD et al (2016) Mechanism of G9a inhibitor BIX‑01294 acting on U251 glioma cells. Mol Med Rep 14:4613–4621. https://doi.org/10.3892/mmr.2016.5815 + + 10.3892/mmr.2016.5815 + 27748874 + 5102021 + + + + Kim Y, Kim YS, Kim DE et al (2013) BIX-01294 induces autophagy-associated cell death via EHMT2/G9a dysfunction and intracellular reactive oxygen species production. Autophagy 9:2126–2139. https://doi.org/10.4161/auto.26308 + + 10.4161/auto.26308 + 24322755 + + + + Xu L, Gao X, Yang P et al (2021) EHMT2 inhibitor BIX-01294 induces endoplasmic reticulum stress mediated apoptosis and autophagy in diffuse large B-cell lymphoma cells. J Cancer 12:1011–1022. https://doi.org/10.7150/jca.48310 + + 10.7150/jca.48310 + 33442400 + 7797660 + + + + Liu S, Jiang Y, Yang H et al (2022) BIX-01294 enhances the effect of chemotherapy on colorectal cancer by inhibiting the expression of stemness genes. Biochem Biophys Res Commun 590:169–176. https://doi.org/10.1016/j.bbrc.2021.12.089 + + 10.1016/j.bbrc.2021.12.089 + 34979318 + + + + Perumal D, Kuo PY, Leshchenko VV et al (2016) Dual targeting of CDK4 and ARK5 using a novel kinase inhibitor ON123300 exerts potent anticancer activity against multiple myeloma. Cancer Res 76:1225–1236. https://doi.org/10.1158/0008-5472.CAN-15-2934 + + 10.1158/0008-5472.CAN-15-2934 + 26873845 + 5968814 + + + + O’Donohue TJ, Ibanez G, Coutinho DF et al (2021) Translational strategies for repotrectinib in neuroblastoma. Mol Cancer Ther 20:2189–2197. https://doi.org/10.1158/1535-7163.MCT-21-0126 + + 10.1158/1535-7163.MCT-21-0126 + 34482287 + 8571000 + + + + Tang Z, Yuan X, Du R et al (2015) BGB-283, a novel RAF kinase and EGFR inhibitor, displays potent antitumor activity in BRAF-mutated colorectal cancers. Mol Cancer Ther 14:2187–2197. https://doi.org/10.1158/1535-7163.MCT-15-0262 + + 10.1158/1535-7163.MCT-15-0262 + 26208524 + + + + Hu Y, Bobb D, He J et al (2015) The HSP90 inhibitor alvespimycin enhances the potency of telomerase inhibition by imetelstat in human osteosarcoma. Cancer Biol Ther 16:949–957. https://doi.org/10.1080/15384047.2015.1040964 + + 10.1080/15384047.2015.1040964 + 25920748 + 4622625 + + + + Tomaskovic-Crook E, Thompson EW, Thiery JP (2009) Epithelial to mesenchymal transition and breast cancer. Breast Cancer Res 11:213. https://doi.org/10.1186/bcr2416 + + 10.1186/bcr2416 + 19909494 + 2815537 + + + + Petruk N, Tuominen S, Akerfelt M et al (2021) CD73 facilitates EMT progression and promotes lung metastases in triple-negative breast cancer. Sci Rep 11:6035. https://doi.org/10.1038/s41598-021-85379-z + + 10.1038/s41598-021-85379-z + 33727591 + 7966763 + + + + Vitaliti A, Roccatani I, Iorio E et al (2023) AKT-driven epithelial-mesenchymal transition is affected by copper bioavailability in HER2 negative breast cancer cells via a LOXL2-independent mechanism. Cell Oncol 46:93–115. https://doi.org/10.1007/s13402-022-00738-w + + 10.1007/s13402-022-00738-w + 36454513 + + + + Li S, Zhang J, Yang H et al (2015) Copper depletion inhibits CoCl2-induced aggressive phenotype of MCF-7 cells via downregulation of HIF-1 and inhibition of Snail/Twist-mediated epithelial-mesenchymal transition. Sci Rep 5:12410. https://doi.org/10.1038/srep12410 + + 10.1038/srep12410 + 26174737 + 4502431 + + + + Chen H, Zhu G, Li Y et al (2009) Extracellular signal-regulated kinase signaling pathway regulates breast cancer cell migration by maintaining Slug expression. Cancer Res 69:9228–9235. https://doi.org/10.1158/0008-5472.CAN-09-1950 + + 10.1158/0008-5472.CAN-09-1950 + 19920183 + 2795125 + + + + Raychaudhuri K, Chaudhary N, Gurjar M et al (2016) 14-3-3σ gene loss leads to activation of the epithelial to mesenchymal transition due to the stabilization of c-Jun protein. J Biol Chem 291:16068–16081. https://doi.org/10.1074/jbc.M116.723767 + + 10.1074/jbc.M116.723767 + 27261462 + 4965557 + + + + Gagliano T, Shah K, Gargani S et al (2020) PIK3Cdelta expression by fibroblasts promotes triple-negative breast cancer progression. J Clin Invest 130:3188–3204. https://doi.org/10.1172/JCI128313 + + 10.1172/JCI128313 + 32125284 + 7260014 + + + + Sebastian A, Hum NR, Martin KA et al (2020) Single-cell transcriptomic analysis of tumor-derived fibroblasts and normal tissue-resident fibroblasts reveals fibroblast heterogeneity in breast cancer. Cancers 12:1307. https://doi.org/10.3390/cancers12051307 + + 10.3390/cancers12051307 + 32455670 + 7281266 + + + + Deepak KGK, Vempati R, Nagaraju GP et al (2020) Tumor microenvironment: challenges and opportunities in targeting metastasis of triple negative breast cancer. Pharmacol Res 153:104683. https://doi.org/10.1016/j.phrs.2020.104683 + + 10.1016/j.phrs.2020.104683 + 32050092 + + + + Mollah F, Varamini P (2021) Overcoming therapy resistance and relapse in TNBC: emerging technologies to target breast cancer-associated fibroblasts. Biomedicines 9:1921. https://doi.org/10.3390/biomedicines9121921 + + 10.3390/biomedicines9121921 + 34944738 + 8698629 + + + + Xu H, Hu M, Liu M et al (2020) Nano-puerarin regulates tumor microenvironment and facilitates chemo- and immunotherapy in murine triple negative breast cancer model. Biomaterials 235:119769. https://doi.org/10.1016/j.biomaterials.2020.119769 + + 10.1016/j.biomaterials.2020.119769 + 31986348 + 7093100 + + + + Sharma M, Turaga RC, Yuan Y et al (2021) Simultaneously targeting cancer-associated fibroblasts and angiogenic vessel as a treatment for TNBC. J Exp Med 218:e20200712. https://doi.org/10.1084/jem.20200712 + + 10.1084/jem.20200712 + 33561195 + 7876552 + + + + Sung JS, Kang CW, Kang S et al (2020) ITGB4-mediated metabolic reprogramming of cancer-associated fibroblasts. Oncogene 39:664–676. https://doi.org/10.1038/s41388-019-1014-0 + + 10.1038/s41388-019-1014-0 + 31534187 + + + + Zhou J, Wang XH, Zhao YX et al (2018) Cancer-associated fibroblasts correlate with tumor-associated macrophages infiltration and lymphatic metastasis in triple negative breast cancer patients. J Cancer 9:4635–4641. https://doi.org/10.7150/jca.28583 + + 10.7150/jca.28583 + 30588247 + 6299377 + + + + Sukumar J, Gast K, Quiroga D et al (2021) Triple-negative breast cancer: promising prognostic biomarkers currently in development. Expert Rev Anticancer Ther 21:135–148. https://doi.org/10.1080/14737140.2021.1840984 + + 10.1080/14737140.2021.1840984 + 33198517 + 8174647 + + + + Masaldan S, Clatworthy SAS, Gamell C et al (2018) Copper accumulation in senescent cells: interplay between copper transporters and impaired autophagy. Redox Biol 16:322–331. https://doi.org/10.1016/j.redox.2018.03.007 + + 10.1016/j.redox.2018.03.007 + 29579719 + 5953000 + + + + Liubomirski Y, Lerrer S, Meshel T et al (2019) Tumor-Stroma-Inflammation networks promote pro-metastatic chemokines and aggressiveness characteristics in triple-negative breast cancer. Front Immunol 10:757. https://doi.org/10.3389/fimmu.2019.00757 + + 10.3389/fimmu.2019.00757 + 31031757 + 6473166 + + + + Xue Q, Kang R, Klionsky DJ et al (2023) Copper metabolism in cell death and autophagy. Autophagy 19:2175–2195. https://doi.org/10.1080/15548627.2023.2200554 + + 10.1080/15548627.2023.2200554 + 37055935 + 10351475 + + + + Liu T, Han C, Wang S et al (2019) Cancer-associated fibroblasts: an emerging target of anti-cancer immunotherapy. J Hematol Oncol 12:86. https://doi.org/10.1186/s13045-019-0770-1 + + 10.1186/s13045-019-0770-1 + 31462327 + 6714445 + + + + Mao Y, Zhuo R, Ma W et al (2022) Fibroblasts mediate the angiogenesis of pheochromocytoma by increasing COX4I2 expression. Front Oncol 12:938123. https://doi.org/10.3389/fonc.2022.938123 + + 10.3389/fonc.2022.938123 + 36172142 + 9511905 + + + + Hsia LT, Ashley N, Ouaret D et al (2016) Myofibroblasts are distinguished from activated skin fibroblasts by the expression of AOC3 and other associated markers. Proc Natl Acad Sci U S A 113:E2162-E2171. https://doi.org/10.1073/pnas.1603534113 + + 10.1073/pnas.1603534113 + 27036009 + 4839407 + + + + Liu Y, Ludes-Meyers J, Zhang Y et al (2002) Inhibition of AP-1 transcription factor causes blockade of multiple signal transduction pathways and inhibits breast cancer growth. Oncogene 21:7680–7689. https://doi.org/10.1038/sj.onc.1205883 + + 10.1038/sj.onc.1205883 + 12400010 + + + + +
+ + + 42223865 + + 2026 + 06 + 01 + +
+ + 1559-0305 + + + 2026 + Jun + 01 + + + Molecular biotechnology + Mol Biotechnol + + DNA-Based Boolean Logic Gates for Molecular Computation and Biosensing: A Critical Review. + 10.1007/s12033-026-01582-1 + + DNA-based Boolean logic gates represent a transformative platform in molecular computation, providing a bridge between biological processes. The field has advanced toward sophisticated designs incorporating spatiotemporal control. Distinguished by features such as massive parallelism, biocompatibility, energy efficiency, and programmability, DNA computing enables operations beyond the scope of silicon-based technologies. These qualities have enabled applications in biomedical diagnostics, autonomous biosensing, and therapeutic regulation. Furthermore, multi-layered circuit architectures, including neural network like designs, highlight the transition from basic proofs of concept to practical, application-oriented technologies. Key challenges remain particularly signal leakage, gate stability, scalability, and NOT gate constraints. Emerging solutions, such as photocaging for precise activation, enzyme-mediated processing for higher fidelity, and cost-effective array-based DNA synthesis, have improved reliability and scalability. Integration with artificial intelligence, machine learning, and bioelectronics is further advancing hybrid molecular electronic systems capable of coupling biological recognition with robust digital processing. Future progress depends on standardization, reproducibility, and economic scalability. The development of automated design frameworks, rigorous validation, and cost reduction strategies will be central to driving adoption. With immediate potential in diagnostics and environmental monitoring, DNA logic gates are shaping the foundation of molecular intelligence platforms. + © 2026. The Author(s), under exclusive licence to Springer Science+Business Media, LLC, part of Springer Nature. + + + + Srinivasan + Abinaya + A + + Department of Physics, AMET University, Kanathur, Chennai, Tamil Nadu, 603112, India. + + + + Kesavan + Hema + H + + Department of Chemistry, Faculty of Engineering and Technology, SRM Institute of Science and Technology, Ramapuram, Chennai, Tamil Nadu, 600089, India. + + + + Rajendran + Umamaheswari + U + + Department of Chemistry, C. Kandaswami Naidu College for Women, Cuddalore, Tamil Nadu, 607001, India. + + + + Palayam + Tejashree + T + + Department of Computer Science and Applications, Faculty of Science and Humanities, SRM Institute of Science and Technology, Ramapuram, Chennai, Tamil Nadu, 600 089, India. + + + + Bakthavatchalam + Senthil + S + + Department of Chemistry, Faculty of Engineering and Technology, SRM Institute of Science and Technology, Ramapuram, Chennai, Tamil Nadu, 600089, India. senthilb4@srmist.edu.in. + + + + Vinayagam + Ramachandran + R + 0000-0003-3568-2358 + + Department of Biotechnology, College of Life and Applied Sciences, Yeungnam University, 280 Daehak-Ro, Gyeongsan, Gyeongsangbuk-Do, 38541, Republic of Korea. rambio@yu.ac.kr. + + + Department of Research, Saveetha College of Nursing, Saveetha Institute of Medical and Technical Sciences, Saveetha University, Chennai, Tamil Nadu, India. rambio@yu.ac.kr. + + + + eng + + Journal Article + Review + + + 2026 + 06 + 01 + +
+ + Switzerland + Mol Biotechnol + 9423533 + 1073-6085 + + IM + + Biosensing + Boolean logic gates + DNA computing + Diagnostics + Molecular computation + Photocaging + + Declarations. Conflicts of interest: The authors declare no conflicts of interest. Ethical approval: No animal experimentation or sampling was performed. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 12 + 25 + + + 2026 + 5 + 17 + + + 2026 + 6 + 1 + 11 + 22 + + + aheadofprint + + 42223865 + 10.1007/s12033-026-01582-1 + 10.1007/s12033-026-01582-1 + + + + Bass, T. A. Gene Genie. Wired 1995, 3(8). Available online: http://www.wired.com/wired/archive/3.08/molecular.html . Accessed Jan 2026. + + + Adleman, L. M. (1994). Molecular computation of solutions to combinatorial problems. Science, 266, 1021–1024. https://doi.org/10.1126/science.7973651 + + 10.1126/science.7973651 + 7973651 + + + + Parker, J. (2003). Computing with DNA. EMBO Reports, 4, 7–10. https://doi.org/10.1038/sj.embor.embor719 + + 10.1038/sj.embor.embor719 + 12524509 + 1315819 + + + + Regalado, A. (2000). DNA Computing. MIT Technology Review. Available online: https://www.technologyreview.com/2000/05/01/236306/dnacomputing/ . Accessed Jan 2026. + + + McLaughlin, L. (2024). Biomolecular computing. Synth. Biol. Eng. Biotechnol. Rev. J. Available online: https://www.biotechnologyreviews.com/p/biomolecularcomputingsynthetic . Accessed Jan 2026. + + + Erlich, Y., & Zielinski, D. (2017). DNA Fountain enables a robust and efficient storage architecture. Science, 355, 950–954. https://doi.org/10.1126/science.aaj2038 + + 10.1126/science.aaj2038 + 28254941 + + + + Polak, R. E., & Keung, A. J. (2023). A molecular assessment of the practical potential of DNA-based computation. Current Opinion in Biotechnology, 81, Article 102940. https://doi.org/10.1016/j.copbio.2023.102940 + + 10.1016/j.copbio.2023.102940 + 37058876 + 10229437 + + + + McCaskill, J. (2000). Biomolecular Computing. ERCIM News, 43. Available online: https://www.ercim.eu/publication/Ercim_News/enw43/mc_caskill1.html . Accessed Jan 2026. + + + DNA Computing. (2025). The Intersection of Biology and Computation. UPPCS Magazine. Available online: https://uppcsmagazine.com/dnacomputingtheintersectionofbiologyandcomputation/ . Accessed Jan 2026. + + + Liang, X., Zhu, W., Lv, Z., & Zou, Q. (2019). Molecular computing and bioinformatics. Molecules, 24, Article 2358. https://doi.org/10.3390/molecules24132358 + + 10.3390/molecules24132358 + 31247973 + 6651761 + + + + Kaur, M. (2012). DNA computing: Its advantages and future. Journal of Teacher Education, 1(7), 51–59. + + + Nahar, S., & Hasan, M. T. (2023). Computational revolution: Harnessing DNA to establish advanced computing paradigms. International Journal of Computer Applications. https://doi.org/10.5120/ijca2023923260 + + 10.5120/ijca2023923260 + + + + Chen, C., Wen, J., Wen, Z., Song, S., & Shi, X. (2023). DNA strand displacement based computational systems and their applications. Frontiers in Genetics, 14, Article 1120791. https://doi.org/10.3389/fgene.2023.1120791 + + 10.3389/fgene.2023.1120791 + 36911397 + 9992816 + + + + Bardales, A. C., Smirnov, V., Taylor, K., & Kolpashchikov, D. M. (2024). DNA logic gates integrated on DNA substrates in molecular computing. ChemBioChem, 25, e202400080. https://doi.org/10.1002/cbic.202400080 + + 10.1002/cbic.202400080 + 38385968 + + + + Soloveichik, D., Seelig, G., & Winfree, E. (2010). DNA as a universal substrate for chemical kinetics. Proceedings of the National Academy of Sciences of the United States of America, 107, 5393–5398. https://doi.org/10.1073/pnas.0909380107 + + 10.1073/pnas.0909380107 + 20203007 + 2851759 + + + + Zhang, M., & Han, D. (2023). Concept, Development and Applications of DNA Computation. Fundam. Res. https://doi.org/10.1016/j.fmre.2023.06.015 + + 10.1016/j.fmre.2023.06.015 + 39659844 + 13069606 + + + + Zhao, S., Yu, L., Yang, S., Tang, X., Chang, K., & Chen, M. (2021). Boolean logic gate based on DNA strand displacement for biosensing: Current and emerging strategies. NanoscaleHoriz., 6, 298–310. https://doi.org/10.1039/D0NH00587H + + 10.1039/D0NH00587H + + + + Jia, S., Lv, H., Li, Q., Fan, C., & Wang, F. (2025). DNA-based biocomputing circuits and their biomedical applications. Nature Reviews Bioengineering 3, 535–548. https://doi.org/10.1038/s44222-025-00303-8 + + 10.1038/s44222-025-00303-8 + + + + Emanuelson, C., Bardhan, A., & Deiters, A. (2024). DNA logic gates for small molecule activation circuits in cells. ACS Synthetic Biology, 13, 538–545. https://doi.org/10.1021/acssynbio.3c00474 + + 10.1021/acssynbio.3c00474 + 38306634 + 10877608 + + + + Fu, T., Lyu, Y., Liu, H., Peng, R., Zhang, X., Ye, M., & Tan, W. (2018). DNA-based dynamic reaction networks. Trends in Biochemical Sciences, 43, 547–560. https://doi.org/10.1016/j.tibs.2018.04.010 + + 10.1016/j.tibs.2018.04.010 + 29793809 + 6522144 + + + + Shahar Gabay, T., Stolero, N., Rabhun, N., Sabah, R., Raz, O., Neumeier, Y., Marx, Z., Tao, L., Biezuner, T., Amir, S., Adar, R., Levy, R., Chapal-Ilani, N., Evtiugina, N., Shlush, L. I., Shapiro, E., Yehudai-Resheff, S., & Zuckerman, T. (2025). GMPlike and MLPlike subpopulations of hematopoietic stem and progenitor cells harboring mutated EZH2 and TP53 at diagnosis promote acute myeloid leukemia relapse: data of combined molecular, functional, and genomic single-stem-cell analyses. International Journal of Molecular Sciences, 26(9), 4224. https://doi.org/10.3390/ijms26094224 + + 10.3390/ijms26094224 + 40362463 + 12072498 + + + + GoñiMoreno, Á. (2024). Biocomputation: Moving Beyond Turing with Living Cellular Computers. Communications of the ACM, 67, 70–77. https://doi.org/10.1145/3635470 + + 10.1145/3635470 + 41867488 + + + + AbbaszadehSori, A. (2014). DNA computer; present and future. International Journal of Engineering Research and Applications, 4(6), 228–232. + + + Zhang, H., Qin, L., Wang, B., & Wang, S. (2025). Alloptical logical gates and, or, not, xnor and xor based on metalenses at 1.55 µm. Physics Letters. A, 551, Article 130623. https://doi.org/10.1016/j.physleta.2025.130623 + + 10.1016/j.physleta.2025.130623 + + + + Hamed, A., & Ndao, S. (2020). NanoThermoMechanical AND and OR Logic Gates. Science and Reports, 10, 2437. https://doi.org/10.1038/s41598020591812 + + 10.1038/s41598020591812 + + + + Dehghan, E., Khoshnoud, D. S., & Naeimi, A. S. (2019). NAND/AND/NOT logic gates response in series of mesoscopic quantum rings. Modern Physics Letters B, 33, 1950431. https://doi.org/10.1142/S0217984919504311 + + 10.1142/S0217984919504311 + + + + GokulanAnagha, E., & Jeyachitra, R. K. (2022). Review on alloptical logic gates: Design techniques and classifications – Heading toward highspeed optical integrated circuits. Optical Engineering, 61, Article 060902. https://doi.org/10.1117/1.OE.61.6.060902 + + 10.1117/1.OE.61.6.060902 + + + + Hurley, R. B., & Mullin, A. A. (1961). Transistor logic circuits. American Journal of Physics, 29, 794–799. https://doi.org/10.1119/1.1937809 + + 10.1119/1.1937809 + + + + Zhang, Y., Yan, B., Li, X., Liu, H., Liu, X., Xiao, X., Mao, Z., & Ming, Z. (2025). Refined design of a DNA logic gate for implementing a DNA-based threelevel circuit. Nanoscale, 17, 333–344. https://doi.org/10.1039/D4NR03606A + + 10.1039/D4NR03606A + + + + Debnath, M., Paul, R., Panda, D., & Dash, J. (2018). Enzyme-regulated DNA-based logic device. ACS Synthetic Biology. https://doi.org/10.1021/acssynbio.8b00088 + + 10.1021/acssynbio.8b00088 + 29668271 + + + + Simmel, F. C., Yurke, B., & Singh, H. R. (2019). Principles and applications of nucleic acid strand displacement reactions. Chemical Reviews, 119, 6326–6369. https://doi.org/10.1021/acs.chemrev.8b00580 + + 10.1021/acs.chemrev.8b00580 + 30714375 + + + + Lakin, M. R., Parker, D., Cardelli, L., & Phillips, A. (2012). Abstractions for DNA circuit design. Journal of the Royal Society, Interface, 9, 470–486. https://doi.org/10.1098/rsif.2011.0476 + + 10.1098/rsif.2011.0476 + 21775321 + + + + Qian, L., & Winfree, E. (2011). Scaling up digital circuit computation with DNA strand displacement cascades. Science, 332, 1196–1201. https://doi.org/10.1126/science.1200520 + + 10.1126/science.1200520 + 21636773 + + + + Jingjing, M. A. (2023). Three-input logic gate based on DNA strand displacement reaction. Scientific Reports, 13, Article 15210. https://doi.org/10.1038/s41598-023-42383-9 + + 10.1038/s41598-023-42383-9 + 37709846 + 10502070 + + + + Li, Y., Zhou, P., Wang, Z., Ren, Y., Zhu, X., Wang, J., Yan, H., Hua, L., & Gao, F. (2024). Sea anemonelike nanomachine based on DNA strand displacement composed of three Boolean logic gates: Diversified input for intracellular multitarget detection. Analytical Chemistry, 96, 4120–4128. https://doi.org/10.1021/acs.analchem.3c05059 + + 10.1021/acs.analchem.3c05059 + 38412037 + + + + Liu, Y., Jiang, T., Lian, Y., Xuan, F., & Ruan, Q. (2023). Construction of DNA-based molecular circuits using normally open and normally closed switches driven by lambda exonuclease. Nanoscale, 15, 9761–9771. https://doi.org/10.1039/D3NR00427A + + 10.1039/D3NR00427A + + + + Emanuelson, C., Bardhan, A., & Deiters, A. (2021). DNA computing: NOT logic gates see the light. ACS Synthetic Biology, 10, 1682–1689. https://doi.org/10.1021/acssynbio.1c00062 + + 10.1021/acssynbio.1c00062 + 34142811 + + + + Emanuelson, C., Bardhan, A., & Deiters, A. (2020). Photochemical not gate for DNA computing. bioRxiv. https://doi.org/10.1101/2020.07.13.201293v1 + + 10.1101/2020.07.13.201293v1 + + + + Faheem, H., Mathivanan, J., Talbot, H., Zeghal, H., Vangaveti, S., Sheng, J., Chen, A. A., & Chandrasekaran, A. R. (2023). Toehold clipping: A mechanism for remote control of DNA strand displacement. Nucleic Acids Research, 51, 4055–4063. https://doi.org/10.1093/nar/gkac1152 + + 10.1093/nar/gkac1152 + 36477864 + 10164547 + + + + PlazaGa, I., Lemishko, K. M., Crespo, R., Truong, T. Q., Kaguni, L. S., CaoGarcía, F. J., Ciesielski, G. L., & Ibarra, B. (2023). Mechanism of strand displacement DNA synthesis by the coordinated activities of human mitochondrial DNA polymerase and SSB. Nucleic Acids Research, 51, 1750–1765. https://doi.org/10.1093/nar/gkad037 + + 10.1093/nar/gkad037 + + + + Schmidt, K. A., Henkel, C. V., Rozenberg, G., & Spaink, H. P. (2004). DNA computing using singlemolecule hybridization detection. Nucleic Acids Research, 32, 4962–4968. https://doi.org/10.1093/nar/gkh817 + + 10.1093/nar/gkh817 + 15388798 + 521641 + + + + Faulhammer, D., Cukras, A. R., Lipton, R. J., & Landweber, L. F. (2000). Molecular computation: RNA solutions to chess problems. Proceedings of the National Academy of Sciences of the United States of America, 97, 1385–1389. + + 10.1073/pnas.97.4.1385 + 10677471 + 26442 + + + + Tsuji, A., Koshimoto, H., Sato, Y., Hirano, M., Seilida, Y., Kondo, S., & Ishibashi, K. (2000). Direct observation of specific messenger RNA in a single living cell under a fluorescence microscope. Biophysical Journal, 78, 3260–3274. + + 10.1016/S0006-3495(00)76862-7 + 10828002 + 1300907 + + + + Muthamizh, S., Varman, K. A., & Balachandran, S. (2023). Development of screen printed electrode biosensor for the selective and sensitive sensing of the lncRNA biomarker MALAT1 in adenocarcinoma lung cancer by non-noble metal electrocatalyst. Oral Oncology Reports, 7, Article 100083. + + 10.1016/j.oor.2023.100083 + + + + Chatterjee, S., Kar, A., & Chakraborty, S. (2018). Molecular logic gate operations using onedimensional DNA nanotechnology. Journal of Materials Chemistry C, 6, 6787–6794. https://doi.org/10.1039/C7TC04957A + + 10.1039/C7TC04957A + + + + Yoo, E., Choe, D., Shin, J., Cho, S., & Cho, B. K. (2021). Mini review: Enzymebased DNA synthesis and selective retrieval for data storage. Computational and Structural Biotechnology Journal, 19, 2468–2476. https://doi.org/10.1016/j.csbj.2021.04.057 + + 10.1016/j.csbj.2021.04.057 + 34025937 + 8113751 + + + + Sethuraman, S., Ramalingam, K., & Ramani, P. (2024). Nanomaterial biosensors in salivary diagnosis of oral cancer: A scoping review. Cureus, 16(5), e59779. + + 38846178 + 11154158 + + + + Shu, J. J., Tan, Z. H., Wang, Q. W., & Yong, K. Y. (2023). Programmable biomoleculemediated processors. Journal of the American Chemical Society, 145, 25033–25042. https://doi.org/10.1021/jacs.3c04142 + + 10.1021/jacs.3c04142 + 37864571 + 10682996 + + + + Phys.org. New biocomputing method uses enzymes as catalysts for DNA-based molecular computing. Phys.org. 2023, May 1. https://phys.org/news/202305biocomputingmethodenzymescatalystsDNA-based.html . Accessed Jan 2026. + + + Liu, H., Ming, Z., Zhang, Y., Xia, Q., Hu, H., Liu, R., Liao, Y., Liu, Y., Liu, X., Zhang, X., Li, L., Wang, S., & Xiao, X. (2024). Triplexstructure based DNA circuits with ultralow leakage and high signaltonoise ratio. Chinese Chemical Letters, 35, Article 108555. https://doi.org/10.1016/j.cclet.2023.108555 + + 10.1016/j.cclet.2023.108555 + + + + Liu, J., Liu, S., Zou, C., Xu, S., & Zhou, C. (2023). Research progress in construction and application of enzyme-based DNA logic gates. IEEE Transactions on NanoBioscience, 22(2), 245–258. https://doi.org/10.1109/TNB.2022.3181615 + + 10.1109/TNB.2022.3181615 + 35679378 + + + + Park, S., & Park, S.H. (2023). An Extension of DNA Container for Random Access DNA Memory in a Scalable, Archival File Storage System. In Visions of DNA Nanotechnology at 40 for the Next 40 In N. Jonoska, E. Winfree, (Eds.) Natural Computing Series, Springer: Singapore, pp. 281–293. https://doi.org/10.1007/9789811998911_16 + + + Liu, Y., Zhai, Y., Hu, H., Liao, Y., Liu, H., Liu, X., He, J., Wang, L., Wang, H., Li, L., Zhou, X., & Xiao, X. (2024). Erasable and field programmable DNA circuits based on configurable logic blocks. Advanced Science, 11, Article 2400011. https://doi.org/10.1002/advs.202400011 + + 10.1002/advs.202400011 + 38698560 + 11234411 + + + + Zhou, L., Wang, J., Zhang, X., Xia, F., & Zhang, L. (2022). Construction and applications of DNA-based logic circuits in biosensing. Analytica Chimica Acta, 1236, Article 340595. https://doi.org/10.1016/j.aca.2022.340595 + + 10.1016/j.aca.2022.340595 + + + + Zhang, Y., Wang, P., Xiang, K., Wang, X., Liu, H., Liu, D., & Liu, C. (2022). DNA stranddisplacement temporal logic circuits. Journal of the American Chemical Society, 144, 12244–12252. https://doi.org/10.1021/jacs.2c04325 + + 10.1021/jacs.2c04325 + + + + Xu, X., Wang, W., & Ping, Z. (2025). Biotechnological tools boost the functional diversity of DNA-based data storage systems. Computational and Structural Biotechnology Journal, 27, 624-630. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC11869497/ + + + Srinivas, N., Ouldridge, T. E., Sulc, P., Schaeffer, J. M., Yurke, B., Louis, A. A., Doye, J. P. K., & Winfree, E. (2013). On the biophysics and kinetics of toeholdmediated DNA strand displacement. Nucleic Acids Research, 41, 10641–10658. https://doi.org/10.1093/nar/gkt805 + + 10.1093/nar/gkt805 + 24019238 + 3905871 + + + + Chen, S., Li, Q., Wang, R., Wu, D., You, J., & Wang, H. (2025). DNA logic circuit based on a toeholdindependent strand displacement reaction network. Nano Letters, 25, 654–662. + + + Ang, Y. S., & Yung, L. L. (2021). Dynamically elongated associative toehold for tuning DNA strand displacement kinetics. Nucleic Acids Research, 49, 4258–4266. https://doi.org/10.1093/nar/gkab212 + + 10.1093/nar/gkab177 + 33849054 + 8096276 + + + + Qian, L., Yu, J., Zhuang, J., Wang, D., Shao, J., Lang, L., & Chao, J. (2020). Spherical nucleic acids: A promising platform for drug delivery and biomedical diagnostics. Nature Communications, 11, Article 1335. https://doi.org/10.1038/s4146701913980y + + 10.1038/s4146701913980y + + + + Thubagere, A., Thachuk, C., Berleant, J., Johnson, F. R., Ardelean, A. D., Cherry, M. K., & Qian, L., (2017). Compiler-aided systematic construction of largescale DNA strand displacement circuits using unpurified components. Nature Communications, 8, 14373. https://doi.org/10.1038/ncomms14373 + + 10.1038/ncomms14373 + 28230154 + 5331218 + + + + Prokup, A., Hemphill, J., Liu, Q., & Deiters, A. (2015). Optically controlled signal amplification for DNA computation. ACS Synthetic Biology, 4, 1064–1069. https://doi.org/10.1021/sb500279w + + 10.1021/sb500279w + 25621535 + + + + Wang, B., Thachuk, C., Ellington, A. D., Winfree, E., & Soloveichik, D. (2018). Effective design principles for leakless strand displacement systems. Proceedings of the National Academy of Sciences of the United States of America, 115(52), E12182–E12191. https://doi.org/10.1073/pnas.1806859115 + + 10.1073/pnas.1806859115 + 30545914 + 6310779 + + + + Chen, X., Liu, X., Wang, F., Li, S., Chen, C., Qiang, X., & Shi, X. (2022). Massively parallel DNA computing based on domino DNA strand displacement logic gates. ACS Synthetic Biology, 11(7), 2504–2512. https://doi.org/10.1021/acssynbio.2c00270 + + 10.1021/acssynbio.2c00270 + 35771957 + 9295701 + + + + Soloveichik, D., Seelig, G., Winfree, E. (2010). TimeComplexity of Multi-layered DNA Strand Displacement Circuits. In A. Goel, F. C. Simmel, & P. Sosík (eds) DNA Computing and Molecular Programming. DNA 2010. Lecture Notes in Computer Science, vol 6518. Springer, Berlin, Heidelberg. https://doi.org/10.1007/9783642106040_15 + + + Xing, C., Zheng, X., & Zhang, Q. (2021). Constructing DNA logic circuits based on the toehold preemption mechanism. RSC Advances, 12(1), 338345. https://doi.org/10.1039/d1ra08687a . PMID: 35424506; PMCID: PMC8978688. + + 10.1039/d1ra08687a + + + + Zhong, X., Xie, T., Gong, X., Xia, Q., Wang, S., & Wu, T. (2026). Stimulusresponsive NOT Gate for singlerail DNA logic circuits and biosensing. ACS Nano, 20(4), 3653–3666. https://doi.org/10.1021/acsnano.5c17487 + + 10.1021/acsnano.5c17487 + 41575263 + + + + Xie, T., Li, C., Hu, M., Zhong, X., Xiao, J., Zhang, Z., & Wu, T., (2025). DNA sequential logic circuits for reversible counters and dynamic biomolecular sensing. Advanced Science, 12(32), Article e05793. https://doi.org/10.1002/advs.202505793 + + 10.1002/advs.202505793 + 40538161 + 12407326 + + + + Wang, Y., Zhang, Y., Ju, H., & Liu, Y. (2023). Responsive DNA nanostructures for bioanalysis and therapy. Chemistry, 5, 2182–2204. https://doi.org/10.3390/chemistry5040147 + + 10.3390/chemistry5040147 + + + + North Carolina State University. (2012, February). Researchers Develop Better Control for DNA-based Computations. North Carolina State University News. https://news.ncsu.edu/2012/02/deitersdna/ . Accessed Jan 2026. + + + Davies, J. A., Freeman, R., Booth, M. J., Bayley, H. (2023). Blue lightactivatable DNA for remote controlled logic gates in synthetic cells. ChemRxiv. Preprint. https://chemrxiv.org/engage/chemrxiv/articledetails/63b55bb6ff4651ef52429534 + + + Hartmann, D., Chowdhry, R., Smith, J. M., & Booth, M. J. (2023). Orthogonal lightactivated DNA for patterned biocomputing within synthetic cells. Journal of the American Chemical Society, 145, 9471–9480. https://doi.org/10.1021/jacs.3c02350 + + 10.1021/jacs.3c02350 + 37125650 + 10161232 + + + + Liu, X., Pu, J., & Wang, Q. (2021). DNA-based computing systems for information processing. Current Opinion in Biotechnology, 67, 86–97. https://doi.org/10.1016/j.copbio.2020.08.007 + + 10.1016/j.copbio.2020.08.007 + + + + Thai, D. A., & Liu, Y. (2025). Nucleic acid amplification tests in digital microfluidics: The promise of nextgeneration pointofcare diagnostics. Microsystems & Nanoengineering, 11, 155. https://doi.org/10.1038/s41378025009775 + + 10.1038/s41378025009775 + + + + Jung, C., & Ellington, A. D. (2014). Diagnostic applications of nucleic acid circuits. Accounts of Chemical Research, 47(6), 1825–1835. https://doi.org/10.1021/ar500059c + + 10.1021/ar500059c + 24828239 + 4063332 + + + + Jung, J. K., Archuleta, C. M., Alam, K. K., & Lucks, J. B., (2022). Programming cell-free biosensors with DNA strand displacement circuits. Nature Chemical Biology, 18, 385–393. https://doi.org/10.1038/s41589021009629 + + 10.1038/s41589021009629 + 35177837 + 8964419 + + + + Asumadu, P., Guo, Z., Qi, S., Liu, C., Li, Y., Shi, Q., Kong, D., Ye, H., Fu, C., & Wang, Z. (2025). Programmable DNA aptamer logic gates: From structural design to integrated systems for intelligent nanoscale biosensors. Analytical and Bioanalytical Chemistry, 417(24), 5389–5409. https://doi.org/10.1007/s00216-025-05982-1 + + 10.1007/s00216-025-05982-1 + 40634673 + + + + Wang, W., Lin, M., Wang, W., Shen, Z., & Wu, Z. S. (2023). DNA tetrahedral nanostructures for the biomedical application and spatial orientation of biomolecules. Bioactive Materials, 33, 279–310. https://doi.org/10.1016/j.bioactmat.2023.10.025 . PMID: 38076646; PMCID: PMC10701289. DNA-based. + + 10.1016/j.bioactmat.2023.10.025 + 38076646 + 10701289 + + + + Wang, X., Feng, M., Xiao, Y., Lou, X., Xia, F., & Wang, S. (2021). DNA-based molecular circuit: Principles and applications. Angewandte Chemie, 133, 8350–8364. https://doi.org/10.1002/ange.202013883 + + 10.1002/ange.202013883 + + + + Yordanov, B., Kim, J., Petersen, R. L., Shudy, A., Kulkarni, V. V., & Phillips, A. (2012). Computational design of nucleic acid feedback control circuits. BMC Systems Biology, 6, Article 126. https://doi.org/10.1186/175205096126 + + 10.1186/175205096126 + + + + Zhan, J., Ding, B., Ma, R., Ma, X., Su, X., Zhao, Y., Liu, Z., Wu, J., & Liu, H. (2010). Develop reusable and combinable designs for transcriptional logic gates. Molecular Systems Biology, 6, 382. https://doi.org/10.1038/msb.2010.42 + + 10.1038/msb.2010.42 + + + + Bardales, A. C., Vo, Q., & Kolpashchikov, D. M. (2024). Singleton NOT and doubleton YES; NOT gates act as functionally complete sets in DNAintegrated computational circuits. Nanomaterials, 14, Article 600. https://doi.org/10.3390/nano14070600 + + 10.3390/nano14070600 + 38607134 + 11013093 + + + + Okamoto, A., Tanaka, K., & Saito, I. (2004). DNA logic gates. Journal of the American Chemical Society, 126, 9431–9436. https://doi.org/10.1021/ja047628k + + 10.1021/ja047628k + + + + Frezza, B. M., Cockroft, S. L., & Ghadiri, M. R. (2007). Modular multilevel circuits from immobilized DNA-based logic gates. Journal of the American Chemical Society, 129, 14875–14879. https://doi.org/10.1021/ja0710149 + + 10.1021/ja0710149 + 17994734 + + + + Song, T., Eshra, A., Shah, S., Bui, H., Fu, D., Yang, M., Mokhtar, R., & Reif, J. (2019). Fast and compact DNA logic circuits based on singlestranded gates using stranddisplacing polymerase. Nature Nanotechnology, 14, 1075–1081. https://doi.org/10.1038/s4156501905445 + + 10.1038/s4156501905445 + 31548688 + + + + Wang, B., Thachuk, C., & Woods, D. (2018). Effective design principles for leakless strand displacement systems. Proceedings of the National Academy of Sciences of the United States of America, 115(52), 1311313118. + + + Chen, Z., Xie, C., Chen, K., Hu, Y., Xu, F., & Pan, L. (2024). Multimode adaptive logic gates based on temperatureresponsive DNA strand displacement. Nanoscale, 16, 3107–3112. https://doi.org/10.1039/D3NR05980D + + 10.1039/D3NR05980D + 38250822 + + + + Li, X., Wang, X., Song, T., Lu, W., Chen, Z., & Shi, X. (2015). A novel computational method to reduce leaky reaction in DNA strand displacement. Journal of Analytical Methods in Chemistry, 2015, Article 675827. https://doi.org/10.1155/2015/675827 . Epub 2015 Sep 30. PMID: 26491602; PMCID: PMC4605363. + + 10.1155/2015/675827 + 26491602 + 4605363 + + + + Montasell, M. C., Raeven, L. M., Ravn Malm, M., van Hest, J. C., & Zelikin, A. N. (2025). Activation of enzymatic catalysis via nucleic acid hybridization affords synergistic coupling of specificity, potency, and signal amplification. Nature Communications. https://doi.org/10.1038/s4146702564636z + + 10.1038/s4146702564636z + 41173859 + 12578878 + + + + Hemphill, J., Govan, J., Uprety, R., Tsang, M., & Deiters, A. (2014). Sitespecific promoter caging enables optochemical gene activation in cells and animals. Journal of the American Chemical Society, 136(19), 7152–7158. https://doi.org/10.1021/ja500327g + + 10.1021/ja500327g + 24802207 + 4333597 + + + + Linab, L., Liangc, K., Gaod, X., Lie, J., Guo e, L., Jiao e, K., & Wang, L. (2026). A pHstable dynamic DNA nanomachine with controllable conformational switching. Nanoscale Advances. https://doi.org/10.1039/D5NA01166C + + 10.1039/D5NA01166C + + + + Deiters, A., & Garner, R. A. (2016). Photocaged nucleic acids for spatiotemporal control and optical regulation of genetic processes. Accounts of Chemical Research, 49, 2223–2231. https://doi.org/10.1021/acs.accounts.6b00327 + + 10.1021/acs.accounts.6b00327 + + + + Ankenbruck, N., Courtney, T., Naro, Y., & Deiters, A. (2018). Optochemical control of biological processes in cells and animals. Chemical Society Reviews, 47, 1936–1970. https://doi.org/10.1039/C7CS00368A + + 10.1039/C7CS00368A + + + + O’Hagan, M. P., Duan, Z., Huang, F., Laps, S., Dong, J., Xia, F., & Willner, I. (2023). Photocleavable orthonitrobenzylprotected DNA architectures and their applications. Chemical Reviews, 123, 6839–6887. https://doi.org/10.1021/acs.chemrev.3c00016 + + 10.1021/acs.chemrev.3c00016 + 37078690 + 10214457 + + + + Hemphill, J., & Deiters, A. (2013). Lightactivated DNA and RNA. Journal of the American Chemical Society, 135, 10512–10518. https://doi.org/10.1021/ja403292j + + 10.1021/ja403292j + 23795550 + + + + Klak, M., Gomółka, M., Dobrzański, T., Tymicki, G., Cywoniuk, P., Kowalska, P., Kosowska, K., Bryniarski, T., Berman, A., Dobrzyń, A., Idaszek, J., Święszkowski, W., & Wszoła, M. (2020). Irradiation with 365 nm and 405 nm wavelength shows differences in DNA damage of swine pancreatic islets. PLoS ONE, 15(6), Article e0235052. https://doi.org/10.1371/journal.pone.0235052 + + 10.1371/journal.pone.0235052 + 32584858 + 7316267 + + + + Lämmle, C. A., Varady, A., Müller, T. G., Sturtzel, C., Riepl, M., Mathes, B., & Broichhagen, J. (2021). Photocaged Hoechst Enables Subnuclear Visualization and Cell Selective Staining of DNA in vivo. ChemBioChem, 22(3), 548–556. + + 10.1002/cbic.202000465 + 32974998 + + + + Hartmann, D., Chowdhry, R., Smith, J., & Booth, M. (2022). Blue lightactivatable DNA for remote control of cellfree logic gates and synthetic cells. ChemRxiv. https://doi.org/10.26434/chemrxiv2022p8xgb + + 10.26434/chemrxiv2022p8xgb + + + + Wang, X., Zhou, J., Cheng, Y., Wu, H., Su, X., Wang, R., Xiao, K., Zhang, W., Chen, Z., Xu, B., Lu, Y., Qiu, H., & Xie, L. (2025). Hydrazonebased photocages for precise suborganelle visualization and drug release. Communications Chemistry, 8(1), 181. https://doi.org/10.1038/s42004025015618 + + 10.1038/s42004025015618 + 40483357 + 12145439 + + + + Zou, R., Loke, S. Y., Tang, Y. C., Too, H. P., Zhou, L., Lee, A. S. G., Hartman, M. (2022). Development and validation of a circulating microRNA panel for the early detection of breast cancer. British Journal of Cancer, 126(3), 472–481. https://doi.org/10.1038/s41416021015936 + + 10.1038/s41416021015936 + 35013577 + 8810862 + + + + Ganepola, G. A. P., Suman, P., Yiengpruksawan, A., Chang, D. H., & Rutledge, J. R. (2014). Novel bloodbased microRNA biomarker panel for early diagnosis of pancreatic cancer. World Journal of Gastrointestinal Oncology, 6, 22–33. https://doi.org/10.4251/wjgo.v6.i1.22 + + 10.4251/wjgo.v6.i1.22 + 24578785 + 3936193 + + + + Crossland, R. E., Albiero, A., SanjurjoRodríguez, C., Reis, M., Resteu, A., Anderson, A. E., Dickinson, A. M., Pratt, A. G., Birch, M., McCaskie, A. W., Jones, E., & Wang, X. N. (2023). MicroRNA profiling of low concentration extracellular vesicle RNA utilizing NanoStringnCounter technology. Journal of Extracellular Biology, 2, Article e72. https://doi.org/10.1002/jex2.72 + + 10.1002/jex2.72 + 38938446 + 11080777 + + + + Metcalf, G. A. D. (2024). MicroRNAs: Circulating biomarkers for the early detection of imperceptible cancers via biosensor and machinelearning advances. Oncogene, 43, 2135–2142. https://doi.org/10.1038/s41388024030763 + + 10.1038/s41388024030763 + 38839942 + 11226400 + + + + De Castro, E., Hulo, C., Masson, P., Auchincloss, A., Bridge, A., & Le Mercier, P. (2024). ViralZone 2024 provides higherresolution images and advanced virusspecific resources. Nucleic Acids Research, 52, D817–D821. https://doi.org/10.1093/nar/gkad946 + + 10.1093/nar/gkad946 + 37897348 + 10767872 + + + + Wakano, M., Tsunoda, M., Murayama, K., Morimoto, J., Ueki, R., Aoyama-Ishiwatari, S., Hirabayashi, Y., Asanuma, H., & Sando, S. (2025). Reversible optical control of receptor tyrosine kinase activity and ERK dynamics using AzobenzeneCarrying DNA aptamer agonist. Journal of the American Chemical Society, 147(13), 11477–11484. https://doi.org/10.1021/jacs.5c01559 + + 10.1021/jacs.5c01559 + 40116812 + + + + Fan, D., Wang, J., Wang, E., & Dong, S. (2020). Propelling DNA computing with materials’ power: Recent advancements in innovative DNA logic computing systems and smart bioapplications. Advancement of Science, 7, 2001766. https://doi.org/10.1002/advs.202001766 + + 10.1002/advs.202001766 + + + + Cao, M., Xiong, X., Zhu, Y., Xiao, M., Li, L., & Pei, H. (2023). DNA computational devicebased smart biosensors. TrAC, Trends in Analytical Chemistry, 162, 117002. https://doi.org/10.1016/j.trac.2022.117002 + + 10.1016/j.trac.2022.117002 + + + + Panchal, N. B. (2023). Beyond silicon: The advent of biomolecular computing. Biosciences Biotechnology Research Asia. https://doi.org/10.13005/bbra/3169 + + 10.13005/bbra/3169 + + + + Lee, H., Gikunju, D., Andries, N., Lee, D., Appuswamy, R., Milenkovic, O., & Strauss, K. (2021). Molecularlevel similarity search brings computing to DNA data storage. Nature Communications, 12, 5403. https://doi.org/10.1038/s4146702124991z + + 10.1038/s4146702124991z + + + + Wang, F.; Li, Q.; Fan, C. (2023). The Evolution of DNA-based Molecular Computing. In Visions of DNA Nanotechnology at 40 for the Next 40 In N. Jonoska, & E. Winfree (Eds.); Natural Computing Series, Springer: Singapore. https://doi.org/10.1007/9789811998911_3 + + + Cherry, K. M., & Qian, L. (2018). Scaling up molecular pattern recognition with DNA-based winnertakeall neural networks. Nature, 559, 370–376. https://doi.org/10.1038/s4158601802896 + + 10.1038/s4158601802896 + 29973727 + + + + Seelan, A., Shah, L., Shamshad, S., Khanda, M., Vira, D., Singh, H., Chopra, H., & Greig, N. H. (2026). Programmable spatiotemporal control of CRISPRCas12a: Engineering precision for nextgeneration gene editing and diagnostics. Synthetic and Systems Biotechnology, 12, Article 433447. https://doi.org/10.1016/j.synbio.2026.01.035 . PMID: 41783155; PMCID: PMC12955590. + + 10.1016/j.synbio.2026.01.035 + + + + Liu, X., Zhang, J., Zhang, X., Chen, Z., Zhang, S., Wang, X., Liu, J., Wang, Z., Xie, L., Ming, Z., Li, L., Tao, K., Xiao, X., Zhou, X., & Xie, Y. (2025). Enzymedriven triplex structurebased DNA logic circuits. J Nanobiotechnology, 23(1), 789. https://doi.org/10.1186/s12951025038536 . PMID: 41444625; PMCID: PMC12729061. + + 10.1186/s12951025038536 + 41444625 + 12729061 + + + + Ma, C., Li, S., Zeng, Y., & Lyu, Y. (2024). DNA-based molecular machines: Controlling mechanisms and biosensing applications. Biosensors, 14(5), 236. https://doi.org/10.3390/bios14050236 . PMID: 38785710; PMCID: PMC11117991. + + 10.3390/bios14050236 + 38785710 + 11117991 + + + + Shi, P., Zhang, X., Cui, S., Sun, L., Liu, X., Wang, B., & Zhang, Q. (2025). pHControlled DNA switching circuits with multistate responsiveness for logic computation and control. Chemistry (Washington, D.C.), 31, Article e202404541. https://doi.org/10.1002/chem.202404541 + + 10.1002/chem.202404541 + + + + Jiang, T., Teng, Y., Li, C., Gan, Q., Zhang, J., Zou, Y., Desai, B. K., & Yan, Y. (2023). Establishing tunable genetic logic gates with versatile dynamic performance by varying regulatory parameters. ACS Synthetic Biology, 12, 3730–3742. https://doi.org/10.1021/acssynbio.3c00554 + + 10.1021/acssynbio.3c00554 + 38033235 + 10729296 + + + + Ihara, T., Kitamura, Y., & Katsuda, Y. (2022). Metal ionDirected specific DNA structures and their functions. Life, 12, 686. https://doi.org/10.3390/life12050686 + + 10.3390/life12050686 + 35629354 + 9145678 + + + + Wang, B., Chalk, C., Wang, S. S., Ehmsen, A. D., & Soloveichik, D. (2023). Parallel molecular computation on digital data stored in DNA. Proceedings of the National Academy of Sciences of the United States of America, 120, Article e2217330120. https://doi.org/10.1073/pnas.2217330120 + + 10.1073/pnas.2217330120 + 37669382 + 10500265 + + + + Qian, L., Winfree, E., & Bruck, J. (2011). Neural network computation with DNA strand displacement cascades. Nature, 475, 368–372. https://doi.org/10.1038/nature10262 + + 10.1038/nature10262 + 21776082 + + + + Vrugt, M. T. (2024). Neural networks consisting of DNA. arXiv preprint arXiv:2501.03235.. + + + Zheng, W., Wang, H., & Cheng, J. X. (2025). Advances and future trends in realtime precision optical control of chemical processes in live cells. Nature Methods, 22, Article s44303025000831. https://doi.org/10.1038/s44303025000831 + + 10.1038/s44303025000831 + + + + Zhang, X., Liu, X., Zhang, X., Cui, S., Yao, Y., Wang, B., & Zhang, Q. (2024). Arbitrary digital DNA computing: A programmable molecular perceptron driven by Lambda Exonuclease for lighting up concatenated circuits. ACS Applied Materials & Interfaces, 16, 24372–24383. https://doi.org/10.1021/acsami.4c03486 + + 10.1021/acsami.4c03486 + + + + Liu, J., & Zhang, Q. (2025). DNA logic circuit based on a toehold-independent strand displacement reaction network. Nano Letters, 25(9), 3464–3470. https://doi.org/10.1021/acs.nanolett.4c05735 + + 10.1021/acs.nanolett.4c05735 + 39982490 + + + + Bose, D., Kaur, G. A., Balayan, S., Chatterjee, S., & Tiwari, A. (2024). The logic devices for biomolecular computing: Progress, strategies, and future directions. Nano Today, 57, Article 102320. https://doi.org/10.1016/j.nantod.2024.102320 + + 10.1016/j.nantod.2024.102320 + + + + Wu, C., Wan, S., Hou, W., Zhang, L., Xu, J., Cui, C., Wang, Y., Hu, J., & Tan, W. (2015). A survey of advancements in nucleic acidbased logic gates and computing for applications in biotechnology and biomedicine. Chemical Communications, 51, 3723–3734. https://doi.org/10.1039/c4cc10047f + + 10.1039/c4cc10047f + 25597946 + 4442017 + + + + Gerasimova, Y. V., & Kolpashchikov, D. M. (2012). Connectable DNA logic gates: OR and XOR logics. Chemistry - An Asian Journal, 7, 534–540. https://doi.org/10.1002/asia.201100664 + + 10.1002/asia.201100664 + 22213731 + + + + Kang, H., Park, D., & Kim, J. (2024). Logical regulation of endogenous gene expression using programmable, multiinput processing CRISPR guide RNAs. Nucleic Acids Research, 52, 8595–8608. https://doi.org/10.1093/nar/gkae549 + + 10.1093/nar/gkae549 + 38943344 + 11317168 + + + + Zhang, Y., Hu, N., Xu, J., & Wang, Z. (2024). DNA logic programming: From concept to construction. View, 5, 1–27. https://doi.org/10.1002/VIW.20230062 + + 10.1002/VIW.20230062 + + + + Fan, J., Khanin, R., Sakamoto, H., Zhong, Y., Michael, C., Pena, D., Javier, B., Wood, L. D., & IacobuzioDonahue, C. A. (2016). Quantification of nucleic acid quality in postmortem tissues from a Cancer Research Autopsy Program. Oncotarget, 7, 66906–66921. https://doi.org/10.18632/oncotarget.12277 + + 10.18632/oncotarget.12277 + 27602498 + 5341846 + + + + Liu, L., Liu, P., Ga, L., & Ai, J. (2021). Advances in applications of molecular logic gates. ACS Omega, 6, 30189–30204. https://doi.org/10.1021/acsomega.1c02912 + + 10.1021/acsomega.1c02912 + 34805654 + 8600522 + + + + Meiser, L. C., Nguyen, B. H., Chen, Y. J., Nivala J., Strauss, K., Ceze, L., Grass, R. N. (2022). Synthetic DNA Applications in Information Technology. Nature Communications, 13, 352. https://doi.org/10.1038/s41467021278469 + + 10.1038/s41467021278469 + 35039502 + 8763860 + + + + Machinek, R. R., Ouldridge, T. E., Haley, N. E., Bath, J., & Turberfield, A. J. (2014). Programmable energy landscapes for kinetic control of DNA strand displacement. Nature Communications, 5(1), Article 5324. + + 10.1038/ncomms6324 + 25382214 + + + + Yan, Z., Zhang, H., Lu, B., Han, T., Tong, X., & Yuan, Y. (2025). DNA palette code for timeseries archival data storage. National Science Review, 12, nwae321. https://doi.org/10.1093/nsr/nwae321 + + 10.1093/nsr/nwae321 + 39758123 + + + + Qian, L., & Winfree, E. (2011). Scaling up digital circuit computation with DNA strand displacement cascades. Science, 332(6034), 1196–1201. + + 10.1126/science.1200520 + 21636773 + + + + Lapteva, A. P., Sarraf, N., & Qian, L. (2022). DNA strand-displacement temporal logic circuits. Journal of the American Chemical Society, 144(27), 12443–12449. https://doi.org/10.1021/jacs.2c04325 + + 10.1021/jacs.2c04325 + 35785961 + 9284558 + + + + Hampel, H., Lista, S., Teipel, S. J., Garaci, F., Nisticò, R., Blennow, K., Zetterberg, H., Bertram, L., Duyckaerts, C., Bakardjian, H., et al. (2014). Perspective on future role of biological markers in clinical therapy trials of Alzheimer’s Disease: A longRange point of view beyond 2020. Biochemical Pharmacology, 88, 426–449. https://doi.org/10.1016/j.bcp.2013.11.009 + + 10.1016/j.bcp.2013.11.009 + 24275164 + + + + Liu, Z., Cao, B., Shao, Q., Zheng, Y., Wang, B., Zhou, S., & Zheng, P. (2025). Family of mutually uncorrelated codes for DNA storage address design. IEEE Transactions on NanoBioscience, 24, 295–304. https://doi.org/10.1109/TNB.2025.3530470 + + 10.1109/TNB.2025.3530470 + 40030887 + + + + Plahar, H. A., Rich, T. N., Lane, S. D., Morrell, W. C., Springthorpe, L., Nnadi, O., Aravina, E., Dai, T., Fero, M. J., Hillson, N. J., & Petzold, C. J. (2021). BioParts—A biological parts search portal and updates to the ICE parts registry software platform. ACS Synthetic Biology, 10(10), 26492660. https://doi.org/10.1021/acssynbio.1c00263 + + 10.1021/acssynbio.1c00263 + + + + Cooling, M. T., Rouilly, V., Misirli, G., Lawson, J., Yu, T., Hallinan, J., & Wipat, A. (2010). Standard virtual biological parts: A repository of modular modeling components for synthetic biology. Bioinformatics, 26(7), 925–931. https://doi.org/10.1093/bioinformatics/btq063 + + 10.1093/bioinformatics/btq063 + 20160009 + + + + Masaki, Y., Onishi, Y., & Seio, K. (2022). Quantification of synthetic errors during chemical synthesis of DNA and its suppression by noncanonical nucleosides. Science and Reports, 12, 12095. https://doi.org/10.1038/s41598022162222 + + 10.1038/s41598022162222 + + + + Mayer, T., Oesinghaus, L., & Simmel, F. C. (2022). Toehold-mediated strand displacement in random sequence pools. Journal of the American Chemical Society, 145(1), 634–644. https://doi.org/10.1101/2022.10.22.513323 + + 10.1101/2022.10.22.513323 + 36571481 + + + + Fern, J., & Schulman, R. (2017). Design and characterization of DNA stranddisplacement circuits in serumsupplemented cell medium. ACS Synthetic Biology. https://doi.org/10.1021/acssynbio.7b00105 + + 10.1021/acssynbio.7b00105 + 28558208 + + + + Mallette, T. L., & Lakin, M. R. (2022). Protecting heterochiral DNA nanostructures against exonuclease mediated degradation. ACS Synthetic Biology, 11, 2222–2228. https://doi.org/10.1021/acssynbio.2c00105 + + 10.1021/acssynbio.2c00105 + 35749687 + + + + Sun, J., Xiong, X., La, i W., Wu, Z., Wang, H., Yang, L., Xue, N., Yao, Q., Song, G., Zhao, Y., Li, L., Wang, F., Fan, C., Pei, H., (2025). Implementing complex nucleic acid circuits in living cells. Science Advances, 11, eadv6512. https://doi.org/10.1126/sciadv.adv6512 + + + Mallette, T. L., Mishra, A., & Lakin, M. R. (2026). On degradationinduced leak in heterochiral DNA strand displacement cascades. ACS Synthetic Biology, 15(2), 599–609. https://doi.org/10.1021/acssynbio.5c00680 . Epub 2026 Jan 8. PMID: 41503918; PMCID: PMC12930512. + + 10.1021/acssynbio.5c00680 + 41503918 + 12930512 + + + + +
+ + + 42223831 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1013-9052 + + 38 + 6 + + 2026 + Jun + 01 + + + The Saudi dental journal + Saudi Dent J + + What is the impact of AI-driven prosthodontic planning on dental implant positioning outcomes? A systematic review. + 77 + 10.1007/s44445-026-00184-6 + + This systematic review aimed to evaluate the role of artificial intelligence (AI)-based technologies, including machine learning algorithms, predictive analytics, and AI-assisted surgical guidance, in prosthodontic-driven planning for dental implant positioning, with particular attention to diagnostic accuracy, planning consistency, and workflow optimization. + This systematic review aimed to evaluate the role of artificial intelligence (AI)-based technologies, including machine learning algorithms, predictive analytics, and AI-assisted surgical guidance, in prosthodontic-driven planning for dental implant positioning, with particular attention to diagnostic accuracy, planning consistency, and workflow optimization. + The included studies suggest that AI-based approaches are associated with improved consistency in diagnostic image interpretation, enhanced accuracy of virtual implant planning, and reduced operator-dependent variability. Across predominantly moderate- to high-quality studies, AI-assisted workflows were reported to support more individualized implant positioning by integrating anatomical, prosthetic, and occlusal parameters. However, the evidence remains heterogeneous, and reported benefits are primarily derived from observational and pilot studies rather than large-scale clinical trials. + Current evidence indicates that AI has the potential to support prosthodontic-driven implant planning by enhancing diagnostic standardization and facilitating personalized treatment strategies. Nevertheless, the absence of quantitative synthesis, limited external validation of AI models, and variability in study quality warrant cautious interpretation. Further well-designed clinical studies and standardized validation protocols are required before definitive conclusions regarding clinical outcomes can be drawn. + © 2026. The Author(s). + + + + Sokoli + Dugagjin + D + 0000-0002-4674-4852 + + University of Business and Technology, Prishtina, Kosovo. + + + + Kiseri + Burim + B + 0000-0001-6017-4350 + + University of Business and Technology, Prishtina, Kosovo. + + + + Demjaha + Genc + G + 0000-0001-8090-1711 + + University of Business and Technology, Prishtina, Kosovo. + + + + Asllani-Hoxha + Flora + F + 0009-0004-9019-6082 + + University of Prishtina "Hasan Prishtina", Prishtina, Kosovo. + + + + Bimbashi + Venera + V + 0000-0002-7212-4972 + + Department of Prosthodontics, University Dentistry Clinical Center of Kosovo, Prishtinë, Republic of Kosovo. vbimbashi@gmail.com. + + + Department of Prosthodontics Alma Mater Europaea, Campus College Rezonanca, Prishtinë, Republic of Kosovo. vbimbashi@gmail.com. + + + + eng + + Journal Article + Review + + + 2026 + 06 + 01 + +
+ + Saudi Arabia + Saudi Dent J + 9313603 + 1013-9052 + + + Artificial intelligence + Dental implants + Implant positioning + Machine learning + Predictive analytics + Prosthodontics + + Declarations. Competing interests: The authors declare no conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 7 + 21 + + + 2026 + 4 + 26 + + + 2026 + 6 + 1 + 11 + 21 + + + epublish + + 42223831 + 10.1007/s44445-026-00184-6 + 10.1007/s44445-026-00184-6 + + + + Blake P, Thompson R (2018) AI-enhanced prosthodontics: from theory to practice. J Dent Sci 13(3):209–217 + + + Chen L, Xu X, Wang G (2019) Blockchain and AI in dental records management: ensuring security and traceability. J Dent Tech 12(4):245–252 + + + Feng C, Wu J, Zhao L (2021) Enhancing prosthodontic outcomes with AI: a clinical perspective. Prosthet Dent Int 68(3):197–205 + + + Garcia M, Fernandez E, Lopez J (2020) AI in prosthodontics: current applications and future directions. J Clin Exp Dent 12(5) + + + Hwang Y, Choi J, Kim S (2020) The future of AI in prosthodontics: emerging trends and innovations. J Dent Res 99(4):356–363 + + + Johnson T, Blake M (2018) Machine learning algorithms in dental radiography: enhancing diagnostic precision. Dentomaxillofac Radiol 47(2):20180012 + + + Kim SJ, Park SJ, Kang JH (2017) Predictive analytics in dental implantology: utilizing AI for outcome forecasting. J Prosthet Dent 118(5):633–640 + + + Lee JH, Kim DH, Lee SM et al (2019) AI-driven analysis of CBCT images for optimal dental implant placement. J Dent Res 98(5):456–462 + + + Liu Z, Huang Y, Xie J (2020) AI-based predictive models for dental implant longevity. Int J Comput Dent 23(3):165–172 + + + Page MJ, McKenzie JE, Bossuyt PM, Boutron I, Hoffmann TC, Mulrow CD, Shamseer L, Tetzlaff JM, Akl EA, Brennan SE, Chou R, Glanville J, Grimshaw JM, Hróbjartsson A, Lalu MM, Li T, Loder EW, Mayo-Wilson E, McDonald S, McGuinness LA, Stewart LA, Thomas J, Tricco AC, Welch VA, Whiting P, Moher D (2021) The PRISMA 2020 statement: an updated guideline for reporting systematic reviews. BMJ 372:n71. https://doi.org/10.1136/bmj.n71 . 2021 Mar 29 + + + Patel A, Singh K, Gupta R (2020) AI-assisted surgical guide design for dental implants: accuracy and clinical outcomes. J Oral Maxillofac Surg 78(9):1543–1550 + + + Reddy S, Thomas L, Zhang Q (2019) The impact of AI on prosthodontic treatment outcomes: a review. J Prosthodont 28(6):543–549 + + + Roberts D, Adams G (2016) The role of the clinician in AI-driven dental implantology. J Dent 55(2):120–126 + + + Simmons A, Rivera C, Huynh T (2017) AI-guided dental implant placement: benefits and challenges. Clin implant Dent Relat Res. 19(6):972–980 + + + Singh V, Patel K (2019) The role of AI in modern prosthodontics: a review. Int J Prosthodont 32(5):523–529 + + + Thomas M, Lee S, Patel N (2019) Application of AI in prosthodontics and implant dentistry: a systematic review. J Prosthet Dent 122(4):314–321 + + + Wang Y, Zhang H, Tang Z (2020) Integration of AI, and AR in dental education: a novel approach to training. Eur J Dent Educ 24(1):34–41 + + + Yang B, Sun Z, Shi J et al (2020) Artificial intelligence in dental imaging: diagnosis and prediction of implant outcomes. Clin Oral Implants Res 31(6):567–575 + + + Yasui T, Kimura M, Nagamine H, Yajima S, Karube T, Sato H, Asoda S, Hara S, Onizawa K (2021) Influence of prostate cancer status on the prevalence of medication-related osteonecrosis of the jaw. Oral Surg Oral Med Oral Pathol Oral Radiol 131(3):312–318. https://doi.org/10.1016/j.oooo.2020.12.018 + + 10.1016/j.oooo.2020.12.018 + 33431343 + + + + Zhang Y, Li H (2018) AI in treatment planning for dental implants: a comprehensive review. Int J Prosthodont 31(4):372–380 + + + Zhou X, Li Q, Wu W (2020) AI in dental implantology: a comprehensive review of its applications and benefits. Clin Oral Implants Res 31(7):735–743 + + + +
+ + + 42223828 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1534-6315 + + 26 + 1 + + 2026 + Jun + 01 + + + Current allergy and asthma reports + Curr Allergy Asthma Rep + + Targeting Type 2 and Non-type 2 Asthma: Emerging Biologics and Personalized Strategies. + 41 + 10.1007/s11882-026-01283-4 + + Asthma continues to pose a serious global health issue affecting billions of people and causing significant morbidity. It is immunologically heterogeneous disease, classified as Type 2 (Th2/ILC2-mediated, eosinophilic) or Type 1 (Th1-mediated, neutrophilic, steroid-resistant) inflammation. This review aims to evaluates current biologic therapies, emerging strategies, and challenges in asthma management and highlights the challenges and future directions in personalized asthma management. + Current biologics for Type 2 asthma like anti-IgE (omalizumab), anti-IL-5 (mepolizumab, reslizumab, benralizumab), anti-IL-4/IL-13 (dupilumab) and anti-TSLP (tezepelumab) were effectively controlling severe eosinophilic asthma. Emerging therapies for Type 1 and mixed phenotypes include anti-TNF-α agents, CXCR2 antagonists, IL-17 blockers, JAK-STAT inhibitors and microbiome-based approaches and upstream epithelial cytokine-targeting therapies such as anti-TSLP agents. Dual or broad-spectrum strategies, such as bispecific antibodies and endotype-guided biologic selection offer more targeted interventions. Despite these advances, challenges persist regarding high costs, limited accessibility, absence of robust biomarkers, and potential risks of immunosuppression. Biologics have transformed severe Type 2 asthma management, but effective treatments for Type 1 and steroid-resistant asthma remain limited. Future directions involve multi-omics, machine learning and gene therapy to optimize personalized therapy and develop inclusive strategies for the diverse inflammatory endotypes. + © 2026. The Author(s), under exclusive licence to Springer Science+Business Media, LLC, part of Springer Nature. + + + + J + Geetha + G + + Department of Microbiology, Auxilium College (Autonomous), Vellore, 6, India. + + + + Ranganathan + Nathiya + N + + Department of Microbiology, Auxilium College (Autonomous), Vellore, 6, India. nathiyamb@auxiliumcollege.edu.in. + + + + A S + Vickram + V + + Department of Biotechnology, Saveetha School of Engineering, Saveetha Institute of Medical and Technical Sciences, SIMATS, Chennai, India. + + + + Chopra + Hitesh + H + + Centre for Research Impact & Outcome, Chitkara College of Pharmacy, Chitkara University, Rajpura, Punjab, 140401, India. chopraontheride@gmail.com. + + + + eng + + Journal Article + Review + + + 2026 + 06 + 01 + +
+ + United States + Curr Allergy Asthma Rep + 101096440 + 1529-7322 + + + + 0 + Biological Products + + + 0 + Anti-Asthmatic Agents + + + 0 + Cytokines + + + IM + + + Humans + + + Asthma + immunology + drug therapy + therapy + + + Precision Medicine + methods + + + Biological Products + therapeutic use + + + Anti-Asthmatic Agents + therapeutic use + + + Cytokines + antagonists & inhibitors + + + Th2 Cells + immunology + + + + Asthma + Biologics + JAK-STAT inhibitors + Type 1 inflammation + Type 2 inflammation + + Declarations. Ethics Approval and Consent to Participate: This article is a review and does not report any original data involving human participants or animals. Therefore, ethical approval was not required. Consent for Publication: All authors have reviewed and approved the final version of the manuscript and consent to its submission for publication. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 3 + 7 + + + 2026 + 5 + 15 + + + 2026 + 6 + 1 + 11 + 21 + + + epublish + + 42223828 + 10.1007/s11882-026-01283-4 + 10.1007/s11882-026-01283-4 + + + + Global burden. of 369 diseases and injuries in 204 countries and territories, 1990–2019: a systematic analysis for the Global Burden of Disease Study 2019. Lancet. 2020;396(10258):1204–22. + + 10.1016/S0140-6736(20)30925-9 + + + + http://www.who.int/news-room/fact-sheets/detail/asthma . + + + Fainardi V, Esposito S, Chetta A, Pisi G. Asthma phenotypes and endotypes in childhood. Minerva Med. 2022;113(1):94–105. https://doi.org/10.23736/S0026-4806.21.07332-8 . + + 10.23736/S0026-4806.21.07332-8 + 33576199 + + + + Scherzer R, Grayson MH. Heterogeneity and the origins of asthma. Annals allergy asthma immunology: official publication Am Coll Allergy Asthma Immunol. 2018;121(4):400–5. https://doi.org/10.1016/j.anai.2018.06.009 . + + 10.1016/j.anai.2018.06.009 + + + + Fuhlbrigge AL, Sharma S. Unraveling the heterogeneity of asthma: decoding subtypes of asthma. J Allergy Clin Immunol. 2025;156(1):41–50. + + + Porpodis K, Tsiouprou I, Apostolopoulos A, Ntontsi P, Fouka E, Papakosta D, Domvri K. Eosinophilic asthma, phenotypes-endotypes and current biomarkers of choice. J Pers Med. 2022;12(7):1093. + + 10.3390/jpm12071093 + 35887589 + 9316404 + + + + Reza MI, Ambhore NS. Inflammation in Asthma: Mechanistic Insights and the Role of Biologics in Therapeutic Frontiers. Biomedicines. 2025;13(6):1342. + + 10.3390/biomedicines13061342 + 40564060 + 12189170 + + + + Luo W, Hu J, Xu W, Dong J. Distinct spatial and temporal roles for Th1, Th2, and Th17 cells in asthma. Front Immunol. 2022;13:974066. https://doi.org/10.3389/fimmu.2022.974066 . + + 10.3389/fimmu.2022.974066 + 36032162 + 9411752 + + + + Olsthoorn SE, van Krimpen A, Hendriks RW, Stadhouders R. Chronic inflammation in asthma: looking beyond the Th2 cell. Immunol Rev. 2025;330(1):e70010. + + 10.1111/imr.70010 + 40016948 + 11868696 + + + + Xie Y, Abel PW, Casale TB, Tu Y. TH17 cells and corticosteroid insensitivity in severe asthma. J Allergy Clin Immunol. 2022;149(2):467–79. https://doi.org/10.1016/j.jaci.2021.12.769 . + + 10.1016/j.jaci.2021.12.769 + 34953791 + + + + Sun B, Shen K, Zhao R, Li Y, Xiang M, Lin J. Precision medicine for severe asthma–Biological targeted therapy. Int Immunopharmacol. 2024;134:112189. + + 10.1016/j.intimp.2024.112189 + 38759375 + + + + Faria N, Costa MI, Fernandes AL, Fernandes A, Fernandes B, Machado DC, Machado F, Simão L, Ribeiro L, Ferreira L, Boaventura R, Lima R, Ferreira J. Biologic Therapies for Severe Asthma: Current Insights and Future Directions. J Clin Med. 2025;14(9):3153. https://doi.org/10.3390/jcm14093153 . + + 10.3390/jcm14093153 + 40364184 + 12072268 + + + + Hamada Y, Thomas D, McDonald VM, Fricker M, Heaney LG, Gibson PG. Clinical remission in severe asthma treated with biologics and macrolides: Definition, prevalence, associated factors, and future perspectives. Allergology Int. 2026;75(1):15–25. + + 10.1016/j.alit.2025.10.001 + + + + Sinyor B, Perez LC. Pathophysiology of asthma. StatPearls. StatPearls Publishing; 2023. + + + Hammad H, Lambrecht BN. The basic immunology of asthma. Cell. 2021;184(6):1469–85. + + 10.1016/j.cell.2021.02.016 + 33711259 + + + + Ricciardolo FLM, Sprio AE, Baroso A, Gallo F, Riccardi E, Bertolini F, Carriero V, Arrigo E, Ciprandi G. Characterization of T2-Low and T2-High Asthma Phenotypes in Real-Life. Biomedicines. 2021;9(11):1684. https://doi.org/10.3390/biomedicines9111684 . + + 10.3390/biomedicines9111684 + 34829913 + 8615363 + + + + Yamasaki A, Okazaki R, Harada T. Neutrophils and Asthma. Diagnostics (Basel Switzerland). 2022;12(5):1175. https://doi.org/10.3390/diagnostics12051175 . + + 10.3390/diagnostics12051175 + 35626330 + 9140072 + + + + Britt RD Jr, Thompson MA, Sasse S, Pabelick CM, Gerber AN, Prakash YS. Th1 cytokines TNF-α and IFN-γ promote corticosteroid resistance in developing human airway smooth muscle. Am J Physiol Lung Cell Mol Physiol. 2019;316(1):L71–81. https://doi.org/10.1152/ajplung.00547.2017 . + + 10.1152/ajplung.00547.2017 + 30335498 + + + + Ray A, Kolls JK. Neutrophilic Inflammation in Asthma and Association with Disease Severity. Trends Immunol. 2017;38(12):942–54. https://doi.org/10.1016/j.it.2017.07.003 . + + 10.1016/j.it.2017.07.003 + 28784414 + 5711587 + + + + Ford ML, Reza MI, Ruwanpathirana A, Sathish V, Britt RD Jr. Integrative Roles of Pro-Inflammatory Cytokines on Airway Smooth Muscle Structure and Function in Asthma. Immunol Rev. 2025;330(1):e70007. https://doi.org/10.1111/imr.70007 . + + 10.1111/imr.70007 + 39991781 + 11848829 + + + + De Volder J, Vereecke L, Joos G, Maes T. Targeting neutrophils in asthma: A therapeutic opportunity? Biochem Pharmacol. 2020;182:114292. + + 10.1016/j.bcp.2020.114292 + 33080186 + + + + Fahy JV, Jackson ND, Sajuthi SP, Pruesse E, Moore CM, Everman JL, Rios C, Tang M, Gauthier M, Wenzel SE, Bleecker ER. Asthma severity and corticosteroid response depend on variable type 1 and type 2 inflammation in the airway. medRxiv. 2023-10. + + + Maspero J, Adir Y, Al-Ahmad M, Celis-Preciado CA, Colodenco FD, Giavina-Bianchi P, Lababidi H, Ledanois O, Mahoub B, Perng DW, Vazquez JC, Yorgancioglu A. Type 2 inflammation in asthma and other airway diseases. ERJ open Res. 2022;8(3):00576–2021. https://doi.org/10.1183/23120541.00576-2021 . + + 10.1183/23120541.00576-2021 + 35923421 + 9339769 + + + + Coverstone AM, Seibold MA, Peters MC. Diagnosis and management of T2-high asthma. J Allergy Clin Immunology: Pract. 2020;8(2):442–50. + + 10.1016/j.jaip.2019.11.020 + + + + Busse WW, Kraft M, Rabe KF, Deniz Y, Rowe PJ, Ruddy M, Castro M. Understanding the key issues in the treatment of uncontrolled persistent asthma with type 2 inflammation. Eur Respir J. 2021;58(2). + + + Gauvreau GM, Bergeron C, Boulet LP, Cockcroft DW, Côté A, Davis BE, Leigh R, Myers I, O’Byrne PM, Sehmi R. Sounding the alarmins-The role of alarmin cytokines in asthma. Allergy. 2023;78(2):402–17. https://doi.org/10.1111/all.15609 . + + 10.1111/all.15609 + 36463491 + + + + Iwata A, Toda Y, Furuya H, Nakajima H. Group 2 innate lymphoid cells in human asthma. Allergology Int. 2023;72(2):194–200. + + 10.1016/j.alit.2022.12.001 + + + + Novosad J, Krčmová I, Souček O, Drahošová M, Sedlák V, Kulířová M, Králíčková P. Subsets of Eosinophils in Asthma, a Challenge for Precise Treatment. Int J Mol Sci. 2023;24(6):5716. https://doi.org/10.3390/ijms24065716 . + + 10.3390/ijms24065716 + 36982789 + 10052006 + + + + Kuruvilla ME, Lee FE, Lee GB. Understanding Asthma Phenotypes, Endotypes, and Mechanisms of Disease. Clin Rev Allergy Immunol. 2019;56(2):219–33. https://doi.org/10.1007/s12016-018-8712-1 . + + 10.1007/s12016-018-8712-1 + 30206782 + 6411459 + + + + Popović-Grle S, Štajduhar A, Lampalo M, Rnjak D. Biomarkers in Different Asthma Phenotypes. Genes. 2021;12(6):801. https://doi.org/10.3390/genes12060801 . + + 10.3390/genes12060801 + 34070316 + 8226821 + + + + Guida G, Bagnasco D, Carriero V, Bertolini F, Ricciardolo FLM, Nicola S, Heffler E. Critical evaluation of asthma biomarkers in clinical practice. Front Med. 2022;9:969243. + + 10.3389/fmed.2022.969243 + + + + Wan XC, Woodruff PG. Biomarkers in Severe Asthma. Immunol Allergy Clin North Am. 2016;36(3):547–57. https://doi.org/10.1016/j.iac.2016.03.004 . + + 10.1016/j.iac.2016.03.004 + 27401625 + 6057475 + + + + Sim S, Choi Y, Park HS. Update on Inflammatory Biomarkers for Defining Asthma Phenotype. Allergy Asthma Immunol Res. 2024;16(5):462–72. https://doi.org/10.4168/aair.2024.16.5.462 . + + 10.4168/aair.2024.16.5.462 + 39363766 + 11450439 + + + + Tiotiu A. Biomarkers in asthma: state of the art. Asthma Res Pract. 2018;4(1):10. + + 10.1186/s40733-018-0047-4 + 30598830 + 6302401 + + + + Hudey SN, Ledford DK, Cardet JC. Mechanisms of non-type 2 asthma. Curr Opin Immunol. 2020;66:123–8. https://doi.org/10.1016/j.coi.2020.10.002 . + + 10.1016/j.coi.2020.10.002 + 33160187 + 7852882 + + + + Boonpiyathad T, Sözener ZC, Satitsuksanoa P, Akdis CA. December). Immunologic mechanisms in asthma. Seminars in immunology. Academic. 2019;46:101333. + + + Licari A, Marseglia A, Caimmi S, Castagnoli R, Foiadelli T, Barberi S, Marseglia GL. Omalizumab in children. Paediatr Drugs. 2014;16(6):491–502. https://doi.org/10.1007/s40272-014-0107-z . + + 10.1007/s40272-014-0107-z + 25404353 + 4250568 + + + + Menzella F, Just J, Sauerbeck IS, Mailaender C, Saccheri F, Thonnelier C, Jaumont X, Mala L. Omalizumab for the treatment of patients with severe allergic asthma with immunoglobulin E levels above > 1500 IU/mL. World Allergy Organ J. 2023;16(6):100787. https://doi.org/10.1016/j.waojou.2023.100787 . + + 10.1016/j.waojou.2023.100787 + 37332525 + 10276275 + + + + Farne HA, Wilson A, Milan S, Banchoff E, Yang F, Powell CV. Anti-IL-5 therapies for asthma. Cochrane Database Syst Rev. 2022;7(7):CD010834. https://doi.org/10.1002/14651858.CD010834.pub4 . + + 10.1002/14651858.CD010834.pub4 + 35838542 + 9285134 + + + + Luo J, Chen W, Liu W, Jiang S, Ye Y, Shrimanker R, Hynes G, Klenerman P, Pavord ID, Xue L. IL-5 antagonism reverses priming and activation of eosinophils in severe eosinophilic asthma. Mucosal Immunol. 2024;17(4):524–36. https://doi.org/10.1016/j.mucimm.2024.03.005 . + + 10.1016/j.mucimm.2024.03.005 + 38493955 + 11649845 + + + + Lazzeroni M, Longoni V, Schiavo P, Bizzi E, Brucato A, Gramellini G, Borin M, Dragonetti A, Gaffuri M, Lentini M, Maniaci A, Mauro A, Gidaro A, Schroeder J, Capaccio P. Anti-IL5/IL-5 receptor therapies for eosinophilic granulomatosis with polyangiitis: an updated Systematic Review. Front Immunol. 2025;16:1587158. https://doi.org/10.3389/fimmu.2025.1587158 . + + 10.3389/fimmu.2025.1587158 + 40766318 + 12321870 + + + + Lombardi C, Comberiati P, Ridolo E, Cottini M, Yacoub MR, Casagrande S, Riccò M, Bottazzoli M, Berti A. Anti-IL-5 Pathway Agents in Eosinophilic-Associated Disorders Across the Lifespan. Drugs. 2024;84(6):661–84. https://doi.org/10.1007/s40265-024-02037-0 . + + 10.1007/s40265-024-02037-0 + 38849701 + 11196311 + + + + Gothi D, Narasimhan R, Guleria R, Chopra M, Gvalani A, Hegde R. Improving patient outcomes: Mepolizumab’s impact in IL-5-mediated diseases. Lung India: official organ Indian Chest Soc. 2025;42(3):231–44. https://doi.org/10.4103/lungindia.lungindia_442_24 . + + 10.4103/lungindia.lungindia_442_24 + + + + Li W, Tang SC, Jin L. Adverse events of anti-IL-5 drugs in patients with eosinophilic asthma: a meta-analysis of randomized controlled trials and real-world evidence-based assessments. BMC Pulm Med. 2024;24(1):70. + + 10.1186/s12890-024-02885-2 + 38308249 + 10837872 + + + + Shiomi M, Watanabe R, Ishihara R, Tanaka S, Nakazawa T, Hashimoto M. Comparative Insights on IL-5 Targeting with Mepolizumab and Benralizumab: Enhancing EGPA Treatment Strategies. Biomolecules. 2025;15(4):544. https://doi.org/10.3390/biom15040544 . + + 10.3390/biom15040544 + 40305320 + 12025051 + + + + Scioscia G, Nolasco S, Campisi R, Quarato CMI, Caruso C, Pelaia C, Portacci A, Crimi C. Switching Biological Therapies in Severe Asthma. Int J Mol Sci. 2023;24(11):9563. https://doi.org/10.3390/ijms24119563 . + + 10.3390/ijms24119563 + 37298514 + 10253346 + + + + Padilla Galo A, Labor M, Tiotiu A, Baiardini I, Scichilone N, Braido F. Impact of reslizumab on outcomes of severe asthmatic patients: current perspectives. Patient Relat outcome measures. 2018;9:267–73. https://doi.org/10.2147/PROM.S146966 . + + 10.2147/PROM.S146966 + + + + Máspero J. Reslizumab in the treatment of inadequately controlled asthma in adults and adolescents with elevated blood eosinophils: clinical trial evidence and future prospects. Ther Adv Respir Dis. 2017;11(8):311–25. https://doi.org/10.1177/1753465817717134 . + + 10.1177/1753465817717134 + 28683596 + 5933654 + + + + Hom S, Pisano M. Reslizumab (Cinqair): An Interleukin-5 Antagonist for Severe Asthma of the Eosinophilic Phenotype. P T: peer-reviewed J formulary Manage. 2017;42(9):564–8. + + + Kumar BS, A., Narayan BA, D. Emerging Targeted Therapies in Asthma: Biologics, Small Molecules, and Innovative Inhaled Formulations. Eurasian J Chem Med Petroleum Res. 2025;4(1):176–86. + + + Le Floc’h A, Allinne J, Nagashima K, Scott G, Birchard D, Asrat S, Bai Y, Lim WK, Martin J, Huang T, Potocky TB, Kim JH, Rafique A, Papadopoulos NJ, Stahl N, Yancopoulos GD, Murphy AJ, Sleeman MA, Orengo JM. Dual blockade of IL-4 and IL-13 with dupilumab, an IL-4Rα antibody, is required to broadly inhibit type 2 inflammation. Allergy. 2020;75(5):1188–204. https://doi.org/10.1111/all.14151 . + + 10.1111/all.14151 + 31838750 + 7317958 + + + + Ricciardolo FLM, Bertolini F, Carriero V. The Role of Dupilumab in Severe Asthma. Biomedicines. 2021;9(9):1096. https://doi.org/10.3390/biomedicines9091096 . + + 10.3390/biomedicines9091096 + 34572281 + 8468984 + + + + Castro, M., Corren, J., Pavord, I. D., Maspero, J., Wenzel, S., Rabe, K. F., Busse,W. W., Ford, L., Sher, L., FitzGerald, J. M., Katelaris, C., Tohda, Y., Zhang, B.,Staudinger, H., Pirozzi, G., Amin, N., Ruddy, M., Akinlade, B., Khan, A., Chao, J.,… Teper, A. (2018). Dupilumab Efficacy and Safety in Moderate-to-Severe Uncontrolled Asthma. The New England journal of medicine, 378(26), 2486–2496. https://doi.org/10.1056/NEJMoa1804092 . + + + Holgate ST, Noonan M, Chanez P, Busse W, Dupont L, Pavord I. Raible,D. Efficacy and safety of etanercept in moderate-to-severe asthma: a randomised,controlled trial. Eur Respir J. 2011;37(6):1352–9. + + 10.1183/09031936.00063510 + 21109557 + + + + Taillé C, Poulet C, Marchand-Adam S, Borie R, Dombret MC, Crestani B, Aubier M. Monoclonal Anti-TNF-α Antibodies for Severe Steroid-Dependent Asthma: A Case Series. open respiratory Med J. 2013;7:21–5. https://doi.org/10.2174/1874306401307010021 . + + 10.2174/1874306401307010021 + + + + https://clinicaltrials.gov/study/NCT05035862 , accessed on 10/09/2025. + + + Rich HE, Antos D, Melton NR, Alcorn JF, Manni ML. Insights into type I and III interferons in asthma and exacerbations. Front Immunol. 2020;11:574027. + + 10.3389/fimmu.2020.574027 + 33101299 + 7546400 + + + + Gauthier M, Kale SL, Ray A. T1-T2 Interplay in the Complex Immune Landscape of Severe Asthma. Immunol Rev. 2025;330(1):e70011. https://doi.org/10.1111/imr.70011 . + + 10.1111/imr.70011 + 39991821 + 11849004 + + + + O’Byrne PM, Metev H, Puu M, Richter K, Keen C, Uddin M, Nair P. Efficacy and safety of a CXCR2 antagonist, AZD5069, in patients with uncontrolled persistent asthma: a randomised, double-blind, placebo-controlled trial. Lancet Respir Med. 2016;4(10):797–806. + + 10.1016/S2213-2600(16)30227-2 + 27574788 + + + + Rahmawati SF, Velde T, Kerstjens M, Dömling HAM, Groves ASS, M. R., Gosens R. Pharmacological Rationale for Targeting IL-17 in Asthma. Front allergy. 2021;2:694514. https://doi.org/10.3389/falgy.2021.694514 . + + 10.3389/falgy.2021.694514 + 35387016 + 8974835 + + + + Georas SN, Donohue P, Connolly M, Wechsler ME. JAK inhibitors for asthma. J Allergy Clin Immunol. 2021;148(4):953–63. https://doi.org/10.1016/j.jaci.2021.08.013 . + + 10.1016/j.jaci.2021.08.013 + 34625142 + 8771907 + + + + Kurihara M, Kabata H, Irie M, Fukunaga K. Current summary of clinical studies on anti-TSLP antibody, Tezepelumab, in asthma. Allergology Int. 2023;72(1):24–30. + + 10.1016/j.alit.2022.11.006 + + + + Panettieri R Jr, Lugogo N, Corren J, Ambrose CS. Tezepelumab for Severe Asthma: One Drug Targeting Multiple Disease Pathways and Patient Types. J asthma allergy. 2024;17:219–36. https://doi.org/10.2147/JAA.S342391 . + + 10.2147/JAA.S342391 + 38524099 + 10960583 + + + + Morita N, Yamamoto K, Tamano R, Gao P, Nagatake T, Inomata T, Huang T, Yamada Y, Adachi T, Sugai M, Nakayama KI, Kojima H, Shinkura R. Regulation of selective class switching provides long-term therapeutic benefits for hay fever. JCI insight. 2025;10(23):e190240. https://doi.org/10.1172/jci.insight.190240 . + + 10.1172/jci.insight.190240 + 41118250 + 12890507 + + + + Li J, Morita N, Miura R, Kimura Y, Shinkura R, Kondo T. Intranasal delivery of bryostatin-1 using surface charge-engineered lipid nanoparticles to modulate mucosal defense for allergic rhinitis treatment. Scientific Reports. 2026. + + + Shamji MH, Sharif H, Layhadi JA, Zhu R, Kishore U, Renz H. Diverse immune mechanisms of allergen immunotherapy for allergic rhinitis with and without asthma. J Allergy Clin Immunol. 2022;149(3):791–801. + + 10.1016/j.jaci.2022.01.016 + 35093483 + + + + Godar M, Deswarte K, Vergote K, Saunders M, de Haard H, Hammad H, Blanchetot C, Lambrecht BN. A bispecific antibody strategy to target multiple type 2 cytokines in asthma. J Allergy Clin Immunol. 2018;142(4):1185–e11934. https://doi.org/10.1016/j.jaci.2018.06.002 . + + 10.1016/j.jaci.2018.06.002 + 29890236 + 7610797 + + + + Abe Y, Suga Y, Fukushima K, Ohata H, Niitsu T, Nabeshima H, Nagahama Y, Kida H, Kumanogoh A. Advances and Challenges of Antibody Therapeutics for Severe Bronchial Asthma. Int J Mol Sci. 2021;23(1):83. https://doi.org/10.3390/ijms23010083 . + + 10.3390/ijms23010083 + 35008504 + 8744863 + + + + Carriera L, Fantò M, Martini A, D’Abramo A, Puzio G, Scaramozzino MU, Coppola A. Combination of biological therapy in severe asthma: where we are? J Personalized Med. 2023;13(11):1594. + + 10.3390/jpm13111594 + + + + Chen CY, Wu KH, Guo BC, Lin WY, Chang YJ, Wei CW, Lin MJ, Wu HP. Personalized Medicine in Severe Asthma: From Biomarkers to Biologics. Int J Mol Sci. 2023;25(1):182. https://doi.org/10.3390/ijms25010182 . + + 10.3390/ijms25010182 + 38203353 + 10778979 + + + + Goswami V, Sodhi KK, Singh CK. Innovative approaches to asthma treatment: harnessing nanoparticle technology. Discover Nano. 2025;20(1):21. + + 10.1186/s11671-025-04211-z + 39922940 + 11807046 + + + + Indolfi C, Klain A, Miraglia Del Giudice M, De Filippo M, Marseglia A, Marseglia GL, Licari A. The use of biologic therapies in pediatric severe asthma. Expert Rev Respir Med. 2025;1–11. https://doi.org/10.1080/17476348.2025.2535182 . Advance online publication. + + + Kardas G, Kuna P, Panek M. Biological Therapies of Severe Asthma and Their Possible Effects on Airway Remodeling. Front Immunol. 2020;11:1134. https://doi.org/10.3389/fimmu.2020.01134 . + + 10.3389/fimmu.2020.01134 + 32625205 + 7314989 + + + + +
+ + + 42223792 + + 2026 + 06 + 01 + +
+ + 1348-2246 + + + 2026 + Jun + 01 + + + Analytical sciences : the international journal of the Japan Society for Analytical Chemistry + Anal Sci + + A general framework for extrapolation-aware prediction reliability in forward and inverse analyses of Gaussian mixture regression models. + 10.1007/s44211-026-00924-y + + Gaussian mixture regression (GMR) and direct inverse analysis (DIA) are powerful tools for molecular, material, and process design, but their reliability decreases when extrapolation occurs beyond the training data. To address this challenge, an index of extrapolation (IoE) that evaluates extrapolation potential and prediction trustworthiness in both forward and inverse analyses of GMR models is proposed. Defined as the negative logarithm of the probability density function, the IoE enables stable identification of interpolation-like and extrapolation-like regions. Validation with numerical simulations confirmed its ability to distinguish these regions, while applications to data sets of organic solubility, inorganic superconductivity, and batch processes demonstrated that high-IoE regions correspond to reduced prediction reliability, where prediction errors may show larger dispersion. The proposed IoE provides a practical and generalizable framework to assess applicability domains, enhancing the interpretability and reliability of machine learning models. This advancement strengthens data-driven design and supports more efficient discovery of novel molecules, materials, and processes. + © 2026. The Author(s). + + + + Kaneko + Hiromasa + H + 0000-0001-8367-6476 + + Department of Applied Chemistry, School of Science and Technology, Meiji University, 1-1-1 Higashi-Mita, Tama-ku, Kawasaki, Kanagawa, 214-8571, Japan. hkaneko@meiji.ac.jp. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + Switzerland + Anal Sci + 8511078 + 0910-6340 + + IM + + Applicability domain + Direct inverse analysis + Gaussian mixture regression + Prediction reliability + Probability density + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 1 + 14 + + + 2026 + 5 + 7 + + + 2026 + 6 + 1 + 11 + 20 + + + aheadofprint + + 42223792 + 10.1007/s44211-026-00924-y + 10.1007/s44211-026-00924-y + + + + S. Greenhill, S. Rana, S. Gupta, P. Vellanki, S. Venkatesh, Bayesian optimization for adaptive experimental design: a review. IEEE Access 8, 13937–13948 (2020) + + 10.1109/ACCESS.2020.2966228 + + + + S. Amini, I. Vannieuwenhuyse, A. Morales-Hernández, Constrained Bayesian optimization: a review. IEEE Access 13, 1581–1593 (2025) + + 10.1109/ACCESS.2024.3522876 + + + + H. Kaneko, Adaptive design of experiments based on gaussian mixture regression. Chemometr. Intell. Lab. Syst. 208, 104226 (2021) + + 10.1016/j.chemolab.2020.104226 + + + + H. Kaneko, True gaussian mixture regression and genetic algorithm-based optimization with constraints for direct inverse analysis. Sci. Technol. Adv. Mater. Methods 2(1), 14–22 (2022) + + + N. Shimizu, H. Kaneko, Direct inverse analysis based on gaussian mixture regression for multiple objective variables in material design. Mater. Des. 196, 109168 (2020) + + 10.1016/j.matdes.2020.109168 + + + + https://scikit-learn.org/stable/modules/generated/sklearn.mixture.GaussianMixture.html . Accessed 19 Oct 2025 + + + https://scikit-learn.org/stable/modules/generated/sklearn.mixture.BayesianGaussianMixture.html . Accessed 19 Oct 2025 + + + https://datachemeng.com/dcekit/ . Accessed 19 Oct 2025 + + + H. Kaneko, Extended gaussian mixture regression for forward and inverse analysis. Chemometr. Intell. Lab. Syst. 213, 104325 (2021) + + 10.1016/j.chemolab.2021.104325 + + + + T.J. Hou, K. Xia, W. Zhang, X.J. Xu, ADME evaluation in drug discovery. 4. Prediction of aqueous solubility based on atom contribution approach. J. Chem. Inf. Comput. Sci. 44, 266–275 (2004) + + 10.1021/ci034184n + 14741036 + + + + H. Kam, A data-driven statistical model for predicting the critical temperature of a superconductor. Comput. Mater. Sci. 154, 346–354 (2018) + + 10.1016/j.commatsci.2018.07.052 + + + + https://archive.ics.uci.edu/ml/datasets/Superconductivty+Data# . Accessed 19 Oct 2025 + + + http://www.rdkit.org/ . Accessed 19 Oct 2025 + + + H. Kaneko, Direct prediction of the batch time and process variable profiles using batch process data based on different batch times. Comput. Chem. Eng. 169, 108072 (2023) + + 10.1016/j.compchemeng.2022.108072 + + + + https://github.com/jckantor/CBE30338 . Accessed 19 Oct 2025 + + + +
+ + + 42223752 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1863-2491 + + 20 + 1 + + 2026 + Jun + 01 + + + Journal of robotic surgery + J Robot Surg + + Interpretable machine learning model for predicting operative difficulty in robotic total mesorectal excision for mid-low rectal cancer. + 563 + 10.1007/s11701-026-03522-2 + + Precise preoperative prediction of surgical complexity in robot-assisted total mesorectal excision (R-TME) is essential for optimizing surgical strategies. The current study aimed to construct an interpretable machine learning (ML) model to anticipate operative difficulty in sphincter-preserving R-TME. Retrospective data from 449 patients diagnosed with mid-to-low rectal cancer undergoing R-TME at Center A were analyzed. The dataset was partitioned randomly into training (n = 314) and internal validation (n = 135) groups using a 7:3 ratio. Additionally, external validation was conducted with a prospective cohort (n = 100) from multiple centers. Operative difficulty was quantified using a scoring system ranging from 0 to 13. Feature selection was performed employing Least Absolute Shrinkage and Selection Operator (LASSO) regression, followed by evaluation of five ML algorithms. Model accuracy and robustness were measured using metrics including the Area Under the Curve (AUC), calibration plots, decision curve analysis (DCA), and supplementary indicators. Interpretability of the predictive model was enhanced using SHapley Additive exPlanations (SHAP). Critical predictive factors comprised BMI, neoadjuvant treatment status, clinical staging, tumor distance to the anal verge, interspinous diameter, lateral mesorectal width, posterior mesorectal thickness, and two specific pelvic angle measurements. Among evaluated ML methods, Gradient Boosting Machine (GBM) demonstrated superior performance, achieving an AUC of 0.874 in the training cohort and 0.835 in internal validation. Calibration plots and DCA indicated excellent robustness and significant clinical applicability of the GBM model. Furthermore, external validation presented an AUC of 0.809, confirming the model's generalizability. SHAP-based analysis delineated individual predictor impacts, facilitating the creation of an accessible online prediction instrument. This study successfully established and externally validated a transparent ML-based model to predict operative challenges in sphincter-preserving R-TME. This model can effectively aid surgeons in identifying anticipated difficulties prior to surgery, thereby enhancing clinical decision-making and improving surgical planning. + © 2026. The Author(s), under exclusive licence to Springer-Verlag London Ltd., part of Springer Nature. + + + + Mao + Haoran + H + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Ma + Shuai + S + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Li + Yang + Y + + Department of General Surgery, State Key Lab of Digestive Health, National Clinical Research Center for Digestive Diseases, Beijing Friendship Hospital, Capital Medical University, Beijing, 100050, China. + + + + Sun + Xuan + X + + Department of Gastrocolorectal Surgery, General Surgery Center, The First Hospital of Jilin University, Changchun, 130021, China. + + + + Fu + Yongqi + Y + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Zhang + Huaju + H + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Zhou + Quanbo + Q + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Guo + Shihao + S + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Duan + Xiaofei + X + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Li + Tengyu + T + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Sun + Haifeng + H + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Zhang + Hairong + H + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Zhang + Zhiyong + Z + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Wang + Guixian + G + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Hu + Junhong + J + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Li + Zhen + Z + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. + + + + Sun + Zhenqiang + Z + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. fccsunzq@zzu.edu.cn. + + + + Jing + Changqing + C + + Department of Gastrointestinal Surgery, Affiliated to Shandong Provincial Hospital, Shandong First Medical University, Jinan, 250021, China. jingchangqing@sdfmu.edu.cn. + + + Key Laboratory of Engineering of Shandong Province, Jinan, 250021, China. jingchangqing@sdfmu.edu.cn. + + + Medical Science and Technology Innovation Center, Shandong First Medical University, Shandong Academy of Medical Sciences, Jinan, 250021, China. jingchangqing@sdfmu.edu.cn. + + + Department of Gastrointestinal Surgery, Shandong Provincial Hospital, Shandong University, Jinan, 250021, China. jingchangqing@sdfmu.edu.cn. + + + + Wang + Quan + Q + + Department of Gastrocolorectal Surgery, General Surgery Center, The First Hospital of Jilin University, Changchun, 130021, China. wquan@jlu.edu.cn. + + + + Yuan + Weitang + W + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. yuanweitang@zzu.edu.cn. + + + + Yao + Hongwei + H + + Department of General Surgery, State Key Lab of Digestive Health, National Clinical Research Center for Digestive Diseases, Beijing Friendship Hospital, Capital Medical University, Beijing, 100050, China. yaohongwei@ccmu.edu.cn. + + + + Lian + Yugui + Y + + Department of Colorectal Surgery, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450000, China. fcclianyg@zzu.edu.cn. + + + + eng + + + 252300420535 + Natural Science Foundation of Henan Province + + + + U2004112 + National Natural Science Foundation of China + + + + 25A320072 + Key Scientific Research Project of Colleges and Universities in Henan Province + + + + 262102311098 + Henan Provincial Science and Technology Research Project + + + + + Journal Article + + + 2026 + 06 + 01 + +
+ + England + J Robot Surg + 101300401 + 1863-2483 + + IM + + + Humans + + + Rectal Neoplasms + surgery + pathology + + + Predictive Learning Models + + + Robotic Surgical Procedures + methods + + + Retrospective Studies + + + Female + + + Male + + + Middle Aged + + + Machine Learning + + + Colorectal Surgical Procedures + + + Rectum + surgery + + + Aged + + + Boosting Machine Learning Algorithms + + + + Machine learning + Operative difficulty prediction + Rectal cancer + Robot-assisted total mesorectal excision + SHAP + + Declarations. Consent for publication: This study integrated both retrospective and prospective data. Specifically, the requirement for informed consent for the retrospective cohort was waived by the Ethics Committee. For the prospective external validation cohort, written informed consent was obtained from all participants prior to enrollment. All data were anonymized to protect participant confidentiality and privacy. Competing interests: The authors declare no competing interests. Ethical approval: The study protocol was approved by the Ethics Committee of The First Affiliated Hospital of Zhengzhou University and the respective ethics committees of all participating centers. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 4 + 24 + + + 2026 + 5 + 15 + + + 2026 + 6 + 1 + 11 + 19 + + + epublish + + 42223752 + 10.1007/s11701-026-03522-2 + 10.1007/s11701-026-03522-2 + + + + Sung H, Ferlay J, Siegel RL, Laversanne M, Soerjomataram I et al (2021) Global Cancer Statistics 2020: GLOBOCAN Estimates of Incidence and Mortality Worldwide for 36 Cancers in 185 Countries. CA Cancer J Clin 71(3):209–249 + + 33538338 + + + + Heald RJ, Husband EM, Ryall RD (1982) The mesorectum in rectal cancer surgery–the clue to pelvic recurrence? Br J Surg 69(10):613–616 + + 10.1002/bjs.1800691019 + 6751457 + + + + Coleman K, Fellner AN, Guend H (2023) Learning curve for robotic rectal cancer resection at a community-based teaching institution. J Robot Surg 17(6):3005–3012 + + 10.1007/s11701-023-01671-2 + 37922066 + 10678792 + + + + Escal L, Nougaret S, Guiu B, Bertrand MM, de Forges H et al (2018) MRI-based score to predict surgical difficulty in patients with rectal cancer. Br J Surg 105(1):140–146 + + 10.1002/bjs.10642 + 29088504 + + + + Yamamoto T, Kawada K, Kiyasu Y, Itatani Y, Mizuno R et al (2020) Prediction of surgical difficulty in minimally invasive surgery for rectal cancer by use of MRI pelvimetry. BJS Open 4(4):666–677 + + 10.1002/bjs5.50292 + 32342670 + 7397373 + + + + Yuan Y, Tong D, Liu M, Lu H, Shen F et al (2022) An MRI-based pelvimetry nomogram for predicting surgical difficulty of transabdominal resection in patients with middle and low rectal cancer. Front Oncol 12:882300 + + 10.3389/fonc.2022.882300 + 35957878 + 9357897 + + + + Han M, Guo S, Ma S, Zhou Q, Zhang W et al (2024) Predictive model of the surgical difficulty of robot-assisted total mesorectal excision for rectal cancer: a multicenter, retrospective study. J Robot Surg 19(1):19 + + 10.1007/s11701-024-02180-6 + 39648255 + 11625687 + + + + McLean KA, Sgro A, Brown LR, Buijs LF, Mountain KE et al (2025) Multimodal machine learning to predict surgical site infection with healthcare workload impact assessment. NPJ Digit Med 8(1):121 + + 10.1038/s41746-024-01419-8 + 39988586 + 11847912 + + + + Xue B, Li D, Lu C, King CR, Wildes T et al (2021) Use of Machine Learning to Develop and Evaluate Models Using Preoperative and Intraoperative Data to Identify Risks of Postoperative Complications. JAMA Netw Open 4(3):e212240 + + 10.1001/jamanetworkopen.2021.2240 + 33783520 + 8010590 + + + + Yu M, Yuan Z, Li R, Shi B, Wan D et al (2024) Interpretable machine learning model to predict surgical difficulty in laparoscopic resection for rectal cancer. Front Oncol 14:1337219 + + 10.3389/fonc.2024.1337219 + 38380369 + 10878416 + + + + Li X, Zhou Z, Zhu B, Wu Y, Xing C (2024) Development and validation of machine learning models and nomograms for predicting the surgical difficulty of laparoscopic resection in rectal cancer. World J Surg Oncol 22(1):111 + + 10.1186/s12957-024-03389-3 + 38664824 + 11044303 + + + + Arravalli T, Chadaga K, Muralikrishna H, Sampathila N, Cenitta D et al (2025) Detection of breast cancer using machine learning and explainable artificial intelligence. Sci Rep 15(1):26931 + + 10.1038/s41598-025-12644-w + 40707590 + 12290098 + + + + Hanani AA, Donmez TB, Kutlu M, Mansour M (2025) Predicting thyroid cancer recurrence using supervised CatBoost: A SHAP-based explainable AI approach. Med (Baltim) 104(22):e42667 + + 10.1097/MD.0000000000042667 + + + + Hajjar M, Aldabbagh G, Albaradei S (2025) Interpretable Multi-Cancer Early Detection Using SHAP-Based Machine Learning on Tumor-Educated Platelet RNA. Diagnostics (Basel) 15(17):2216 + + + Agha RA, Borrelli MR, Vella-Baldacchino M, Thavayogan R, Orgill DP, STROCSS Group (2017) The STROCSS statement: Strengthening the Reporting of Cohort Studies in Surgery. Int J Surg 46:198–202 + + 10.1016/j.ijsu.2017.08.586 + 28890409 + 6040889 + + + + Ye C, Wang X, Sun Y, Deng Y, Huang Y et al (2021) A nomogram predicting the difficulty of laparoscopic surgery for rectal cancer. Surg Today 51(11):1835–1842 + + 10.1007/s00595-021-02338-x + 34296313 + + + + Chen J, Sun Y, Chi P, Sun B (2021) MRI pelvimetry-based evaluation of surgical difficulty in laparoscopic total mesorectal excision after neoadjuvant chemoradiation for male rectal cancer. Surg Today 51(7):1144–1151 + + 10.1007/s00595-020-02211-3 + 33420827 + 8215037 + + + + Sun Y, Xu Z, Tang Y, Deng Y, Tang Z et al (2025) Unveiling the impact of body mass index on surgical difficulty and oncological prognosis in low rectal cancer: post-hoc analysis of the LASRE trial. Int J Colorectal Dis 40(1):185 + + 10.1007/s00384-025-04979-7 + 40844625 + 12373544 + + + + McKechnie T, Ramji K, Kruse C, Jaffer H, Rebello R et al (2022) Posterior mesorectal thickness as a predictor of increased operative time in rectal cancer surgery: a retrospective cohort study. Surg Endosc 36(5):3520–3532 + + 10.1007/s00464-021-08674-w + 34382121 + + + + Yuval JB, Thompson HM, Fiasconaro M, Patil S, Wei IH et al (2022) Predictors of operative difficulty in robotic low anterior resection for rectal cancer. Colorectal Dis 24(11):1318–1324 + + 10.1111/codi.16212 + 35656853 + 9701150 + + + + Helewa RM, Park J (2016) Surgery for Locally Advanced T4 Rectal Cancer: Strategies and Techniques. Clin Colon Rectal Surg 29(2):106–113 + + 10.1055/s-0036-1580722 + 27247535 + 4882171 + + + + Baik SH, Kim NK, Lee KY, Sohn SK, Cho CH et al (2008) Factors influencing pathologic results after total mesorectal excision for rectal cancer: analysis of consecutive 100 cases. Ann Surg Oncol 15(3):721–728 + + 10.1245/s10434-007-9706-z + 18058183 + + + + Boyle KM, Petty D, Chalmers AG et al (2005) MRI assessment of the bony pelvis may help predict resectability of rectal cancer. Colorectal Dis 7(3):232–240 + + 10.1111/j.1463-1318.2005.00819.x + 15859960 + + + + Shuqin Zang Q, Chen S, Jiang et al (2024) Analysis of the lateral mesorectum and its clinical value based on rectal high-resolution MRI[J/OL]. Chin J Colorec Dis (Electron Ed) 13(04):312–320 + + + Maliske S, Chau J, Ginader T, Byrn J, Bhatia S et al (2019) Timing of surgery following neoadjuvant chemoradiation in rectal cancer: a retrospective analysis from an academic medical center. J Gastrointest Oncol 10(4):597–604 + + 10.21037/jgo.2019.02.02 + 31392039 + 6657321 + + + + Lefevre JH, Mineur L, Kotti S, Rullier E, Rouanet P et al (2016) Effect of Interval (7 or 11 weeks) Between Neoadjuvant Radiochemotherapy and Surgery on Complete Pathologic Response in Rectal Cancer: A Multicenter, Randomized, Controlled Trial (GRECCAR-6). J Clin Oncol 34(31):3773–3780 + + 10.1200/JCO.2016.67.6049 + 27432930 + + + + Ferko A, Maly O, Orhalmi J, Dolejs J (2016) CT/MRI pelvimetry as a useful tool when selecting patients with rectal cancer for transanal total mesorectal excision. Surg Endosc 30(3):1164–1171 + + 10.1007/s00464-015-4324-5 + 26123334 + + + + Tschann P, Brock T, Weigl MP, Clemens P, Brunner W et al (2023) Tumour, narrow pelvis and surgery specific factors for total mesorectal excision quality and morbidity following rectal cancer resection. BJS Open 7(6):zrad114 + + + Killeen T, Banerjee S, Vijay V, Al-Dabbagh Z, Francis D et al (2010) Magnetic resonance (MR) pelvimetry as a predictor of difficulty in laparoscopic operations for rectal cancer. Surg Endosc 24(12):2974–2979 + + 10.1007/s00464-010-1075-1 + 20464426 + + + + Ma Q, Cheng J, Bao Y, Gao Z, Jiang K et al (2022) Magnetic resonance imaging pelvimetry predicts the technical difficulty of rectal surgery. Asian J Surg 45(12):2626–2632 + + 10.1016/j.asjsur.2021.12.022 + 34961711 + + + + Chau J, Solomon J, Liberman AS, Charlebois P, Stein B et al (2020) Pelvic dimensions on preoperative imaging can identify poor-quality resections after laparoscopic low anterior resection for mid- and low rectal cancer. Surg Endosc 34(10):4609–4615 + + 10.1007/s00464-019-07209-8 + 31620910 + + + + Hong JSY, De Robles MS, Brown C, Brown KGM, Young CJ et al (2021) Can MRI pelvimetry predict the technical difficulty of laparoscopic rectal cancer surgery? Int J Colorectal Dis 36(12):2613–2620 + + 10.1007/s00384-021-04000-x + 34338870 + + + + Zhou XC, Guan SW, Ke FY, Dhamija G, Wang Q et al (2024) Construction of a nomogram model to predict technical difficulty in performing laparoscopic sphincter-preserving radical resection for rectal cancer. World J Gastroenterol 30(18):2418–2439 + + 10.3748/wjg.v30.i18.2418 + 38764764 + 11099392 + + + + +
+ + + 42223750 + + 2026 + 06 + 01 + +
+ + 1591-9528 + + + 2026 + May + 31 + + + Clinical and experimental medicine + Clin Exp Med + + Morpho-functional plasticity of tumour-associated macrophages: linking cell shape, ultrastructure, and immune regulation in cancer. + 10.1007/s10238-026-02190-8 + + Macrophages are highly adaptable immune cells that play dual roles in the tumor microenvironment (TME), either promoting or restraining tumor progression. Their polarization into M1 and M2 tumor-associated macrophage (TAM) phenotypes is classically defined by molecular and biochemical cues. Recent evidence shows that morphology also significantly influences the macrophage function and behavior. This review highlights the correlation between macrophage shape and function, and how cytoskeletal remodeling, extracellular matrix (ECM) stiffness, and topographical patterning regulate macrophage polarization under in vitro and in vivo conditions. We further discuss the ultrastructural features of distinct phenotypes and their mechanistic links to tumor growth and metastasis. Therapeutic strategies that target morphology through ECM modulation, engineered biomaterials, and nanoparticle platforms are examined alongside modern imaging and machine learning tools that enable precise morphometric analysis. Finally, we address the translational progress and limitations of current 2D versus 3D model systems. Overall, this review emphasizes macrophage morphology as a critical yet underexplored determinant of immune function and tumor dynamics. + © 2026. The Author(s). + + + + Kizhakkanoodan + Keerthana Suresh + KS + + Manipal Institute of Technology (MIT), Manipal Academy of Higher Education, Manipal, India. + + + + Inigo + Vidhula Jessica + VJ + + Manipal Institute of Technology (MIT), Manipal Academy of Higher Education, Manipal, India. + + + + Koulmane Laxminarayana + Sindhura Lakshmi + SL + + Department of Pathology, Kasturba Medical College, Manipal Academy of Higher Education, Manipal, India. + + + + Seetharam + Raviraja N + RN + + Chandigarh University, Mohali, 140413, Punjab, India. + + + + Guruprasad + Kanive Parashiva + KP + + Department of Ageing Research, Manipal School of Life Sciences, Manipal Academy of Higher Education, Manipal, India. + + + + Guru + Bharath Raja + BR + 0000-0003-2542-7740 + + Manipal Institute of Technology (MIT), Manipal Academy of Higher Education, Manipal, India. bharath.guru@manipal.edu. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 31 + +
+ + Italy + Clin Exp Med + 100973405 + 1591-8890 + + IM + + Cytoskeleton + ECM stiffness + Macrophage morphology + Macrophage polarization + Tumor microenvironment + Tumor-associated macrophages (TAMs) + + Declarations. Competing interests: The authors declare no competing interests. Ethics declaration: Not applicable. Informed consent: Not applicable. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 4 + 6 + + + 2026 + 5 + 11 + + + 2026 + 6 + 1 + 11 + 19 + + + aheadofprint + + 42223750 + 10.1007/s10238-026-02190-8 + 10.1007/s10238-026-02190-8 + + +
+ + + 42223738 + + 2026 + 06 + 01 + +
+ + 2730-6011 + + + 2026 + Jun + 01 + + + Discover oncology + Discov Oncol + + Integrative multi-omics analysis identifies a circadian rhythm-associated gene signature for prognosis and therapeutic stratification in lung adenocarcinoma. + 10.1007/s12672-026-05279-4 + + Circadian rhythm disruption is increasingly implicated in tumor progression and therapy resistance. However, its prognostic value and impact on the tumor immune microenvironment in lung adenocarcinoma (LUAD) remain unclear. This study aimed to develop a robust circadian rhythm-based gene signature to improve risk stratification and inform personalized therapeutic strategies in LUAD. + We integrated multi-omics data from over 900 LUAD patients across TCGA and GEO databases. A circadian rhythm-related gene prognostic signature (CRGPS) was constructed from candidate genes using ten machine learning algorithms and validated externally. The tumor immune microenvironment, mutation landscape, and therapy response were analyzed using bioinformatics algorithms. Single-cell RNA sequencing data were utilized to explore gene expression at cellular resolution. + A 10-gene CRGPS was developed, which effectively stratified patients into high- and low-risk groups with significantly divergent overall survival in both training and validation cohorts. Unsupervised clustering based on these genes revealed two molecular subtypes (C1 and C2) with distinct characteristics. The two subgroups exhibited significant differences in terms of the tumor immune microenvironment, clinical prognosis, and therapeutic sensitivity. Single-cell analysis localized key signature genes to endothelial and epithelial cells and revealed enhanced endothelial-endothelial communication. + The CRGPS serves as a robust prognostic framework for risk stratification and provides hypothesis-generating insights into therapeutic vulnerabilities based on in silico predictions of immune profiles and drug sensitivity, pending prospective validation. + © 2026. The Author(s). + + + + Lu + Yiheng + Y + + Medical School of Chinese PLA, Beijing, China. + + + Senior Department of Oncology, Chinese PLA General Hospital, Beijing, China. + + + Department of Oncology, Hainan Hospital of Chinese PLA General Hospital, Hainan, Sanya, China. + + + + Dong + Yi + Y + + Medical School of Chinese PLA, Beijing, China. + + + Senior Department of Oncology, Chinese PLA General Hospital, Beijing, China. + + + + Sun + Cheng + C + + Medical School of Chinese PLA, Beijing, China. + + + Department of Neurosurgery, Chinese PLA General Hospital, Beijing, 100853, China. + + + + Yang + Fan + F + + Medical School of Chinese PLA, Beijing, China. + + + + Xiao + Shuyan + S + + Medical School of Chinese PLA, Beijing, China. + + + + Liu + Yining + Y + + Medical School of Chinese PLA, Beijing, China. + + + + Han + Xiao + X + + Senior Department of Oncology, Chinese PLA General Hospital, Beijing, China. hanxiaoplagh@126.com. + + + + Liu + Qiaowei + Q + + Senior Department of Oncology, Chinese PLA General Hospital, Beijing, China. dr_liuqiaowei@126.com. + + + + Hu + Yi + Y + + Department of Oncology, the First Medical Center, Chinese PLA General Hospital, Beijing, China. huyi301zlxb@sina.com. + + + Senior Department of Oncology, Chinese PLA General Hospital, Beijing, China. huyi301zlxb@sina.com. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + United States + Discov Oncol + 101775142 + 2730-6011 + + + Circadian rhythm + Immunotherapy response + Lung adenocarcinoma + Machine learning + Molecular subtyping + Multi-omics + Prognostic signature + Tumor immune microenvironment + scRNA sequencing + + Declarations. Ethics approval and consent to participate: This study utilized publicly available, fully anonymized data and did not involve any direct interaction with human participants or collection of personal information; therefore, no consent to participate was required. Consent for publication: Not applicable. This study did not include any identifiable patient data, clinical photographs, or case reports requiring individual consent for publication. Competing interests: The authors declare no competing interests. Conflict of interest: The authors declare no conflicts of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 8 + + + 2026 + 5 + 20 + + + 2026 + 6 + 1 + 11 + 18 + + + aheadofprint + + 42223738 + 10.1007/s12672-026-05279-4 + 10.1007/s12672-026-05279-4 + + +
+ + + 42223736 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2150-5551 + + 18 + 1 + + 2026 + Jun + 01 + + + Nano-micro letters + Nanomicro Lett + + High Polarity Doping of CoFe Layered Hydroxides: Bifunctional and Corrosion-Resistant Anion Exchange Membrane Seawater Electrolyzers. + 393 + 10.1007/s40820-026-02230-8 + + Green hydrogen production through seawater electrolysis is a promising strategy, although challenges such as sluggish oxygen evolution reaction (OER) kinetics and chlorine (Cl-) corrosion hinder its practical applicability. A novel fluorine (F)-doped cobalt (Co) and iron (Fe) layered metal hydroxide (F-CoFe LMH-8) is developed as a robust bifunctional catalyst achieving 81.23 and 265.5 mV at 10 mA cm-2 for hydrogen evolution reaction (HER) and oxygen evolution reaction (OER), respectively. Theoretical and experimental studies demonstrate that the F-doping modulates the electronic structure, effectively tuning Fe sites toward a high-spin configuration that optimizes binding energies and induces a chlorophobic effect that repel corrosive (Cl-) ions. Notably, the F-CoFe LMH-8( +|| -) bifunctional catalyst integrated anion exchange membrane water electrolyzer (AEMWE) exhibited outstanding performance for continuous H2 production, achieves a current density of 1.2 A cm-2 in 1 M KOH, 1.02 A cm-2 in 1 M KOH + 0.5 M NaCl, and 1 A cm-2 in 1 M KOH in seawater at 2.3 V. Furthermore, a long short-term memory-based machine learning model was employed to forecast and predict the stability of F-CoFe LMH-8. This approach provides a comprehensive pathway for heuristic design of durable, chlorophobic, and advanced electrocatalyst for seawater-based AEMWE and large-scale hydrogen production. + © 2026. The Author(s). + + + + Saj + Anandhan Ayyappan + AA + + Nanomaterials & System Lab, Major of Mechatronics Engineering, Faculty of Applied Energy System, Jeju National University, Jeju, 63243, South Korea. + + + + Prabhakaran + Sampath + S + + Division of AI Convergence Research, Korea Institute of Ceramic Engineering and Technology (KICET), Jinju, 52851, Republic of Korea. + + + + Rasool + Mohsin + M + + University of Ulsan, Ulsan, 44776, Republic of Korea. + + + + Bhunia + Kousik + K + + Nanomaterials & System Lab, Major of Mechatronics Engineering, Faculty of Applied Energy System, Jeju National University, Jeju, 63243, South Korea. + + + + Lee + Dongho + D + + University of Ulsan, Ulsan, 44776, Republic of Korea. + + + + Ko + Hyunseok + H + + Division of AI Convergence Research, Korea Institute of Ceramic Engineering and Technology (KICET), Jinju, 52851, Republic of Korea. + + + + Dongale + Tukaram D + TD + + Computational Electronics and Nanoscience Research Laboratory, School of Nanoscience and Biotechnology, Shivaji University, Kolhapur, Maharashtra, 416004, India. + + + + Perumalsamy + Muthukumar + M + + Nanomaterials & System Lab, Major of Mechatronics Engineering, Faculty of Applied Energy System, Jeju National University, Jeju, 63243, South Korea. + + + + Raaju Sundhar + Arul Saravanan + AS + + Nanomaterials & System Lab, Major of Mechatronics Engineering, Faculty of Applied Energy System, Jeju National University, Jeju, 63243, South Korea. + + + + Kim + Do Hwan + DH + + Division of Science Education and Institute of Fusion Science, Department of Energy Storage/Conversion Engineering (BK21 FOUR), Jeonbuk National University, Jeonju, Jeonbuk, 54896, Republic of Korea. dhk201@jbnu.ac.kr. + + + + Kim + Sang Jae + SJ + + Nanomaterials & System Lab, Major of Mechatronics Engineering, Faculty of Applied Energy System, Jeju National University, Jeju, 63243, South Korea. kimsangj@jejunu.ac.kr. + + + Nanomaterials & System Lab, Major of Mechanical System Engineering, College of Engineering, Jeju National University, Jeju, 63243, South Korea. kimsangj@jejunu.ac.kr. + + + Green Hydrogen Glocal Leading Research Center (gH2-RC), Jeju National University, Jeju, 63243, Republic of Korea. kimsangj@jejunu.ac.kr. + + + Research Institute of New Energy Industry (RINEI), Jeju National University, Jeju, 63243, South Korea. kimsangj@jejunu.ac.kr. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + Germany + Nanomicro Lett + 101727940 + 2150-5551 + + + Corrosion resistance + F-doping + H2 generation + Long short-term memory (LSTM) + Seawater electrolysis + + Declarations. Conflict of interest: The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 1 + 26 + + + 2026 + 4 + 29 + + + 2026 + 6 + 1 + 11 + 18 + + + epublish + + 42223736 + 10.1007/s40820-026-02230-8 + 10.1007/s40820-026-02230-8 + + + + Y. Liu, Y. Wang, P. Fornasiero, G. Tian, P. Strasser et al., Long-term durability of seawater electrolysis for hydrogen: from catalysts to systems. Angew. Chem. Int. Ed. 63(47), e202412087 (2024). https://doi.org/10.1002/anie.202412087 + + 10.1002/anie.202412087 + + + + F.-Y. Gao, P.-C. Yu, M.-R. Gao, Seawater electrolysis technologies for green hydrogen production: challenges and opportunities. Curr. Opin. Chem. Eng. 36, 100827 (2022). https://doi.org/10.1016/j.coche.2022.100827 + + 10.1016/j.coche.2022.100827 + + + + J. Li, G. Fu, X. Sheng, G. Li, H. Chen et al., A comprehensive review on catalysts for seawater electrolysis. Adv. Powder Mater. 3(5), 100227 (2024). https://doi.org/10.1016/j.apmate.2024.100227 + + 10.1016/j.apmate.2024.100227 + + + + H. Sun, L. Chen, Y. Lian, W. Yang, L. Lin et al., Topotactically transformed polygonal mesopores on ternary layered double hydroxides exposing under-coordinated metal centers for accelerated water dissociation. Adv. Mater. 32(52), 2006784 (2020). https://doi.org/10.1002/adma.202006784 + + 10.1002/adma.202006784 + + + + A.A. Saj, K. Bhunia, A. Sajeev, S.J. Kim, Doping-mediated interface engineered Ni3S2: economically viable electrochemical methanol-mediated water splitting. Chem. Eng. J. 499, 156284 (2024). https://doi.org/10.1016/j.cej.2024.156284 + + 10.1016/j.cej.2024.156284 + + + + A.Y. Faid, S. Sunde, Anion exchange membrane water electrolysis from catalyst design to the membrane electrode assembly. Energy Technol. 10(9), 2200506 (2022). https://doi.org/10.1002/ente.202200506 + + 10.1002/ente.202200506 + + + + W. Yan, Y. Mou, M. Li, K. Ma, Z. Xu et al., C15-phase platinum-lanthanide intermetallics for efficient hydrogen evolution: identifying lanthanide’s enhanced mechanism. Adv. Mater. 37(34), 2506936 (2025). https://doi.org/10.1002/adma.202506936 + + 10.1002/adma.202506936 + + + + C. Santoro, A. Lavacchi, P. Mustarelli, V. Di Noto, L. Elbaz et al., What is next in anion-exchange membrane water electrolyzers? bottlenecks, benefits, and future. Chemsuschem 15(8), e202200027 (2022). https://doi.org/10.1002/cssc.202200027 + + 10.1002/cssc.202200027 + + + + N.U.H.L. Ali, M.S.M. Saleem, A. Sathyaseelan, V. Krishnan, P. Pazhamalai et al., Thermo-electric powered high energy-density hybrid supercapattery for driving overall water splitting: a novel trifunctional builder for self-powered hydrogen production. Small 21(25), 2504667 (2025). https://doi.org/10.1002/smll.202504667 + + 10.1002/smll.202504667 + + + + M. Li, W. Dong, X. Zhang, L. Xu, X. Gao et al., Tuning metal/oxygen redox sequence through constructing [Eu-O-Co] unit for enhancing oxygen evolution. Adv. Funct. Mater. 35(47), 2507578 (2025). https://doi.org/10.1002/adfm.202507578 + + 10.1002/adfm.202507578 + + + + X. Wang, J. Hu, T. Lu, H. Wang, D. Sun et al., Importing atomic rare-earth sites to activate lattice oxygen of spinel oxides for electrocatalytic oxygen evolution. Angew. Chem. Int. Ed. 64(3), e202415306 (2025). https://doi.org/10.1002/anie.202415306 + + 10.1002/anie.202415306 + + + + N.R. Vempuluru, Y. Yoon, J.P. Das, V. Elumalai, A.A. Saj et al., Nanocluster catalyst driving ampere-level current density in direct seawater electrolysis quantum leap towards sustainable energy. Mater. Sci. Eng. R. Rep. 167, 101092 (2026). https://doi.org/10.1016/j.mser.2025.101092 + + 10.1016/j.mser.2025.101092 + + + + A. Lim, K. Ham, S. Elrefaei, I. Spanos, Operando interpretation of reaction mechanisms and local phenomena on OER catalysts in seawater electrolysis. Curr. Opin. Electrochem. 47, 101560 (2024). https://doi.org/10.1016/j.coelec.2024.101560 + + 10.1016/j.coelec.2024.101560 + + + + A. Sajeev, M. Perumalsamy, V. Elumalai, A. Sathyaseelan, S.A. Ayyappan et al., Harnessing wind energy for ultraefficient green hydrogen production with tin selenide/tin telluride heterostructures. Small Sci. 4(3), 2300222 (2024). https://doi.org/10.1002/smsc.202300222 + + 10.1002/smsc.202300222 + + + + A. Sathyaseelan, S. Ramasamy, V. Elumalai, P. Kumar, N.U.H.L. Ali et al., Electrosynthesis of formate coupled green hydrogen production on the interface of CuMoO4 nanostructures: a novel electrocatalyst for hybrid water electrolysis system. Appl. Catal. B: Environ. Energy 359, 124472 (2024). https://doi.org/10.1016/j.apcatb.2024.124472 + + 10.1016/j.apcatb.2024.124472 + + + + L. Yu, Q. Zhu, S. Song, B. McElhenny, D. Wang et al., Non-noble metal-nitride based electrocatalysts for high-performance alkaline seawater electrolysis. Nat. Commun. 10(1), 5106 (2019). https://doi.org/10.1038/s41467-019-13092-7 + + 10.1038/s41467-019-13092-7 + + + + S. Mahadik, S. Surendran, J. Choi, G.H. Jeong, H. Lim et al., Oxyanion-regulated Fe–NiMoN electrocatalyst for efficient and durable alkaline seawater electrolysis: advancing energy chemistry through interface engineering. Int. J. Hydrog. Energy 203, 153017 (2026). https://doi.org/10.1016/j.ijhydene.2025.153017 + + 10.1016/j.ijhydene.2025.153017 + + + + L. Shao, X. Han, L. Shi, T. Wang, Y. Zhang et al., In situ generation of molybdate-modulated nickel-iron oxide electrodes with high corrosion resistance for efficient seawater electrolysis. Adv. Energy Mater. 14(4), 2303261 (2024). https://doi.org/10.1002/aenm.202303261 + + 10.1002/aenm.202303261 + + + + S.C. Jesudass, S. Surendran, G. Janani, T.-H. Kim, Y.I. Park et al., Defect-induced bimetallic cubic-spinel NiO/NiCo2O4 heterostructures via Na-incorporation towards efficient electrochemical water splitting performances. Appl. Surf. Sci. 688, 162352 (2025). https://doi.org/10.1016/j.apsusc.2025.162352 + + 10.1016/j.apsusc.2025.162352 + + + + H.-Y. Wang, J.-T. Ren, L. Wang, M.-L. Sun, H.-M. Yang et al., Synergistically enhanced activity and stability of bifunctional nickel phosphide/sulfide heterointerface electrodes for direct alkaline seawater electrolysis. J. Energy Chem. 75, 66–73 (2022). https://doi.org/10.1016/j.jechem.2022.08.019 + + 10.1016/j.jechem.2022.08.019 + + + + M.A. Khan, Y. Liu, M. Hayat, F. Lu, M. Zhou, Tuning the sulfide interface of MnCo2O4-based nanostructures enables efficient water/seawater electrolysis. Int. J. Hydrog. Energy 89, 1–9 (2024). https://doi.org/10.1016/j.ijhydene.2024.09.315 + + 10.1016/j.ijhydene.2024.09.315 + + + + X. Sun, W. Shen, H. Liu, P. Xi, M. Jaroniec et al., Corrosion-resistant NiFe anode towards kilowatt-scale alkaline seawater electrolysis. Nat. Commun. 15(1), 10351 (2024). https://doi.org/10.1038/s41467-024-54754-5 + + 10.1038/s41467-024-54754-5 + + + + S. Mahadik, S. Surendran, J. Choi, G. Janani, D.J. Moon et al., Seawater electrolysis: unlocking a new path for hydrogen production. EnergyChem 7(6), 100173 (2025). https://doi.org/10.1016/j.enchem.2025.100173 + + 10.1016/j.enchem.2025.100173 + + + + H. Liu, W. Shen, H. Jin, J. Xu, P. Xi et al., High-performance alkaline seawater electrolysis with anomalous chloride promoted oxygen evolution reaction. Angew. Chem. Int. Ed. Engl. 62(46), e202311674 (2023). https://doi.org/10.1002/anie.202311674 + + 10.1002/anie.202311674 + + + + S. Song, Y. Wang, P. Tian, J. Zang, Activating lattice oxygen in local amorphous S-modified NiFe-LDH ultrathin nanosheets toward superior alkaline/natural seawater oxygen evolution. J. Colloid Interface Sci. 677(Pt A), 853–862 (2025). https://doi.org/10.1016/j.jcis.2024.08.031 + + 10.1016/j.jcis.2024.08.031 + + + + Y. Yu, W. Zhou, J. Yuan, X. Zhou, X. Meng et al., A hydrogen-bond network sieve enables selective OH/Cl discrimination for stable seawater splitting at 2.0 A cm–2. Energy Environ. Sci. 18(22), 9949–9958 (2025). https://doi.org/10.1039/d5ee04595a + + 10.1039/d5ee04595a + + + + Q. Niu, F.-Y. Gao, X. Sun, Y. Zheng, S.-Z. Qiao, Chloride-mediated electron buffering on Ni-Fe anodes for ampere-level alkaline seawater electrolysis. Adv. Funct. Mater. 35(36), 2504872 (2025). https://doi.org/10.1002/adfm.202504872 + + 10.1002/adfm.202504872 + + + + M. Rong, H. Zhong, S. Wang, X. Ma, Z. Cao, La/Ce doped CoFe layered double hydroxides (LDH) highly enhanced oxygen evolution performance of water splitting. Colloids Surf. A Physicochem. Eng. Aspects 625, 126896 (2021). https://doi.org/10.1016/j.colsurfa.2021.126896 + + 10.1016/j.colsurfa.2021.126896 + + + + J.P. Das, S.S. Nardekar, V. Ravichandran, S.-J. Kim, From friction to function: a high-voltage sliding triboelectric nanogenerator for highly efficient energy autonomous IoTs and self-powered actuation. Small 20(48), 2405792 (2024). https://doi.org/10.1002/smll.202405792 + + 10.1002/smll.202405792 + + + + J.P. Das, S.S. Nardekar, D. Kesavan, K. Bhunia, V. Ravichandran et al., Unveiling the effect of growth time on bifunctional layered hydroxide electrodes for high-performance energy storage and green energy conversion. J. Mater. Chem. A Mater. Energy Sustain. 12(31), 20179–20190 (2024). https://doi.org/10.1039/D4TA02940B + + 10.1039/D4TA02940B + + + + A.M.P. Sakita, R.D. Noce, E. Vallés, A.V. Benedetti, Pulse electrodeposition of CoFe thin films covered with layered double hydroxides as a fast route to prepare enhanced catalysts for oxygen evolution reaction. Appl. Surf. Sci. 434, 1153–1160 (2018). https://doi.org/10.1016/j.apsusc.2017.11.042 + + 10.1016/j.apsusc.2017.11.042 + + + + L. Peng, N. Yang, Y. Yang, Q. Wang, X. Xie et al., Atomic cation-vacancy engineering of NiFe-layered double hydroxides for improved activity and stability towards the oxygen evolution reaction. Angew. Chem. Int. Ed. Engl. 60(46), 24612–24619 (2021). https://doi.org/10.1002/anie.202109938 + + 10.1002/anie.202109938 + + + + Z.-L. Wang, G.-Y. Huang, G.-R. Zhu, H.-C. Hu, C. Li et al., La-exacerbated lattice distortion of high entropy alloys for enhanced electrocatalytic water splitting. Appl. Catal. B: Environ. Energy 361, 124585 (2025). https://doi.org/10.1016/j.apcatb.2024.124585 + + 10.1016/j.apcatb.2024.124585 + + + + Y. Bao, J. Xiao, Y. Huang, Y. Li, S. Yao et al., Regulating spin polarization via axial nitrogen traction at Fe−N5 sites enhanced electrocatalytic CO2 reduction for Zn−CO2 batteries. Angew. Chem. Int. Ed. Engl. 63(43), e202406030 (2024). https://doi.org/10.1002/anie.202406030 + + 10.1002/anie.202406030 + + + + X. He, Y. Yao, M. Zhang, Y. Zhou, L. Zhang et al., Engineered PW(12)-polyoxometalate docked Fe sites on CoFe hydroxide anode for durable seawater electrolysis. Nat. Commun. 16(1), 5541 (2025). https://doi.org/10.1038/s41467-025-60620-9 + + 10.1038/s41467-025-60620-9 + + + + L. Wen, X. Zhang, J. Liu, X. Li, C. Xing et al., Cr-dopant induced breaking of scaling relations in CoFe layered double hydroxides for improvement of oxygen evolution reaction. Small 15(35), 1902373 (2019). https://doi.org/10.1002/smll.201902373 + + 10.1002/smll.201902373 + + + + M. Wang, X. Li, Y. Su, J. Wu, T. Sun et al., Satisfactory degradation of tetracycline by a pH-universal CoFe-LDH/MoS2 heterojunction catalyst in Fenton process. iScience 27(2), 108996 (2024). https://doi.org/10.1016/j.isci.2024.108996 + + 10.1016/j.isci.2024.108996 + + + + S. Jung, R.A. Senthil, C.J. Moon, A. Kumar, M. Ubaidullah et al., Laser-regulated CoFeRu-LDH nanostructures: nitrite-to-ammonia production in Zn–nitrite battery and oxygen evolution in water electrolysis. Small 21(32), 2502821 (2025). https://doi.org/10.1002/smll.202502821 + + 10.1002/smll.202502821 + + + + J. Li, J. Shi, Y. Hu, M. Li, Y. Kang, Plasma-induced vacancy defects of Ru-doped CoFe layered double hydroxide for superior oxygen evolution activity. J. Alloys Compd. 976, 173076 (2024). https://doi.org/10.1016/j.jallcom.2023.173076 + + 10.1016/j.jallcom.2023.173076 + + + + J. Mu, C. Yu, X. Song, L. Chen, J. Zhao et al., A super-chlorophobic yet weak-reconstructed electrocatalyst by fluorination engineering toward chlorine oxidation-free and high-stability seawater electrolysis. Adv. Funct. Mater. 35(23), 2423965 (2025). https://doi.org/10.1002/adfm.202423965 + + 10.1002/adfm.202423965 + + + + J.W. Min, J. Gim, J. Song, W.-H. Ryu, J.-W. Lee et al., Simple, robust metal fluoride coating on layered Li1.23Ni0.13Co0.14Mn0.56O2 and its effects on enhanced electrochemical properties. Electrochim. Acta 100, 10–17 (2013). https://doi.org/10.1016/j.electacta.2013.03.085 + + 10.1016/j.electacta.2013.03.085 + + + + C. Ren, M. Zhou, Z. Liu, L. Liang, X. Li et al., Enhanced fluoride uptake by layered double hydroxides under alkaline conditions: solid-state NMR evidence of the role of surface >MgOH sites. Environ. Sci. Technol. 55(22), 15082–15089 (2021). https://doi.org/10.1021/acs.est.1c01247 + + 10.1021/acs.est.1c01247 + + + + Y. Ni, D. Shi, B. Mao, S. Wang, Y. Wang et al., Under-coordinated CoFe layered double hydroxide nanocages derived from nanoconfined hydrolysis of bimetal organic compounds for efficient electrocatalytic water oxidation. Small 19(45), 2302556 (2023). https://doi.org/10.1002/smll.202302556 + + 10.1002/smll.202302556 + + + + T. Zhang, H.-F. Zhao, Z.-J. Chen, Q. Yang, N. Gao et al., High-entropy alloy enables multi-path electron synergism and lattice oxygen activation for enhanced oxygen evolution activity. Nat. Commun. 16, 3327 (2025). https://doi.org/10.1038/s41467-025-58648-y + + 10.1038/s41467-025-58648-y + + + + L. Tan, H. Wang, C. Qi, X. Peng, X. Pan et al., Regulating Pt electronic properties on NiFe layered double hydroxide interface for highly efficient alkaline water splitting. Appl. Catal. B Environ. 342, 123352 (2024). https://doi.org/10.1016/j.apcatb.2023.123352 + + 10.1016/j.apcatb.2023.123352 + + + + M. Ranz, B. Grabner, B. Schweighofer, H. Wegleiter, A. Trattner, Dynamics of anion exchange membrane electrolysis: unravelling loss mechanisms with electrochemical impedance spectroscopy, reference electrodes and distribution of relaxation times. J. Power. Sources 605, 234455 (2024). https://doi.org/10.1016/j.jpowsour.2024.234455 + + 10.1016/j.jpowsour.2024.234455 + + + + K. Sharma, K. Bhunia, S. Chatterjee, M. Perumalsamy, A.A. Saj et al., Deep learning-assisted organogel pressure sensor for alphabet recognition and bio-mechanical motion monitoring. Nano-Micro Lett. 18(1), 63 (2025). https://doi.org/10.1007/s40820-025-01912-z + + 10.1007/s40820-025-01912-z + + + + +
+ + + 42223693 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1438-7948 + + 26 + 1 + + 2026 + Jun + 01 + + + Functional & integrative genomics + Funct Integr Genomics + + Exploring the potential targets and mechanisms of artemisinin in the treatment of diabetic kidney disease using network pharmacology and molecular docking. + 120 + 10.1007/s10142-026-01894-0 + + Diabetic kidney disease (DKD) is a secondary glomerular disease caused by diabetes, and its incidence is increasing annually. Artemisinin is an organic compound with multiple pharmacological effects. This study aims to investigate the potential therapeutic effects of artemisinin on DKD and its molecular mechanisms. Common targets were identified using network pharmacology, transcriptome data from the Gene Expression Omnibus (GEO) database, and three machine learning algorithms, including Least Absolute Shrinkage and Selection Operator (LASSO), Support Vector Machine Recursive Feature Elimination (SVM-RFE), and Random Forest (RF). Target expression profiles were examined through single-cell sequencing data analysis. Molecular docking and cellular assays, including western blot, 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT), terminal deoxynucleotidyl transferase-mediated dUTP nick end labeling (TUNEL), enzyme-linked immunosorbent assay (ELISA), and reactive oxygen species (ROS) detection, validated the effects of artemisinin and Fms related receptor tyrosine kinase 1(FLT1) on human renal glomerular endothelial cells (HRGECs) under a high-glucose (HG) injury model. A total of 64 common targets between artemisinin and DKD were identified, and machine learning identified FLT1 as a key target. Single-cell analysis revealed high FLT1 expression in DKD endothelial cells. More importantly, artemisinin exhibited stable binding to FLT1. HG reduced FLT1 expression and cell viability in HRGECs. Besides, HG-induced decrease in cell viability, increase in proportion of TUNEL-positive cells, elevation in the levels of interleukin-6 (IL-6) and tumor necrosis factor-α (TNF-α) and lipid ROS production were reversed by FLT1 overexpression or artemisinin treatment, and these protective effects of artemisinin were significantly attenuated upon FLT1 knockdown. Artemisinin alleviates HG-induced HRGEC injury by restoring FLT1 expression, providing a potential therapeutic target for DKD treatment. + © 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature. + + + + Li + Hongning + H + + Department of Endocrinology, Lishui District People's Hospital, No. 85 Chongwen Road Nanjing, Jiangsu, 211200, China. + + + + Cai + Xiangzeng + X + + Department of Endocrinology, Lishui District People's Hospital, No. 85 Chongwen Road Nanjing, Jiangsu, 211200, China. + + + + Yu + Shuqin + S + + Department of Endocrinology, Lishui District People's Hospital, No. 85 Chongwen Road Nanjing, Jiangsu, 211200, China. yushuqinzx20@163.com. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + Germany + Funct Integr Genomics + 100939343 + 1438-793X + + + + 0 + Artemisinins + + + 9RMU91N5K2 + artemisinin + + + 0 + Reactive Oxygen Species + + + IY9XDZ35W2 + Glucose + + + IM + + + Humans + + + Artemisinins + pharmacology + therapeutic use + chemistry + + + Molecular Docking Simulation + + + Diabetic Nephropathies + drug therapy + metabolism + genetics + pathology + + + Network Pharmacology + + + Reactive Oxygen Species + metabolism + + + Glucose + toxicity + + + Apoptosis + drug effects + + + + Artemisinin + Diabetic kidney disease + Fms related receptor tyrosine kinase 1 + Machine learning + Molecular docking + + Declarations. Ethics approval and consent to participate: Not applicable. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 2 + 5 + + + 2026 + 5 + 22 + + + 2026 + 5 + 22 + + + 2026 + 6 + 1 + 11 + 16 + + + epublish + + 42223693 + 10.1007/s10142-026-01894-0 + 10.1007/s10142-026-01894-0 + + + + Addissouky TA (2025) Artemisinin and its derivatives throughout the therapeutic mechanisms and clinical potential. Discover Chem 2:10 + + 10.1007/s44371-025-00084-4 + + + + Adeva-Andany MM, Adeva-Contreras L, Fernández-Fernández C, Carneiro-Freire N, Domínguez-Montero A (2023) Histological Manifestations of Diabetic Kidney Disease and its Relationship with Insulin Resistance. Curr Diabetes Rev 19:e280322202705 + + 35346008 + 10.2174/1573399818666220328145046 + + + + Chakraborty MP, Das D (2024) Molecular basis of VEGFR1 autoinhibition at the plasma membrane. Nat Commun 15:1346 + + 38355851 + 10866885 + 10.1038/s41467-024-45499-2 + + + + Chatterjee A, Tumarin J, Prabhakar S (2024) Cellular cross-talk drives mesenchymal transdifferentiation in diabetic kidney disease. Front Med (Lausanne) 11:1499473 + + 39839616 + 10.3389/fmed.2024.1499473 + + + + Chen C, Xu B, Li W et al (2025) New perspectives on the treatment of diabetic nephropathy: Challenges and prospects of mesenchymal stem cell therapy. Eur J Pharmacol 998:177543 + + 40139419 + 10.1016/j.ejphar.2025.177543 + + + + Chen M, Fang Y, Ge Y et al (2024) The redox-sensitive GSK3β is a key regulator of glomerular podocyte injury in type 2 diabetic kidney disease. Redox Biol 72:103127 + + 38527400 + 10979123 + 10.1016/j.redox.2024.103127 + + + + Dwivedi S, Sikarwar MS (2025) Diabetic nephropathy: pathogenesis, mechanisms, and therapeutic strategies. Horm Metab Res 57:7–17 + + 39572154 + 10.1055/a-2435-8264 + + + + Feng B, Liang J, Cai X et al (2025) Elucidating the therapeutic mechanisms of Angelica dahurica in knee osteoarthritis: An integrative network pharmacology and molecular docking approach. Curr Proteomics 22:100017 + + 10.1016/j.curpro.2025.100017 + + + + Feng C, Chun L, KeLei S et al (2025) Exploring the mechanism of plasticizers action in liver damage based on network toxicology, molecular docking, and molecular dynamic simulation. Sci Rep 15:42333 + + 41309766 + 12660709 + 10.1038/s41598-025-26361-x + + + + Feng H, Wu T (2022) Protective effect and possible mechanisms of artemisinin and its derivatives for diabetic nephropathy: a systematic review and meta-analysis in animal models. Oxid Med Cell Longev 2022:5401760 + + 35528521 + 9073547 + 10.1155/2022/5401760 + + + + Georgios SP (2024) SGLT2 Inhibitors and diabetic kidney disease: targeting multiple and interrelated signaling pathways for renal protection. Curr Mol Pharmacol 17:1–26 + + + Han Y, Chen Y, Xiao X et al (2025) Exploring the mechanism of Grifolin in inhibiting the malignant progression of colon cancer cells mediated by the PDGFRB/PI3K/AKT signaling pathway based on bioinformatics analysis and network pharmacology. Lett Drug Des Discovery 22:100018 + + 10.1016/j.lddd.2025.100018 + + + + Hou G, Dong Y, Jiang Y et al (2025) Immune inflammation and metabolic interactions in the pathogenesis of diabetic nephropathy. Front Endocrinol (Lausanne) 16:1602594 + + 40698245 + 12279506 + 10.3389/fendo.2025.1602594 + + + + Huang M, Chang J, Liu Y, Yin J, Zeng X (2025) Apelin/APJ alleviates diabetic nephropathy by improving glomerular endothelial cells dysfunction via SIRT3–KLF15. Mol Med Rep 31:122 + + 40052569 + 11920778 + 10.3892/mmr.2025.13487 + + + + Jin Q, Liu T, Chen D et al (2023) Therapeutic potential of artemisinin and its derivatives in managing kidney diseases. Front Pharmacol 14:1097206 + + 36874000 + 9974673 + 10.3389/fphar.2023.1097206 + + + + Kaushik M, Kaushik A, Chaudhary J, Jain A (2024) Terpenoids in diabetic nephropathy: advances and therapeutic opportunities. Endocr Metab Immune Disord Drug Targets 24:13–30 + + 37680163 + 10.2174/1871530323666230901164219 + + + + Li K, Tang H, Wang Y (2025) Identification of hub genes involved in the pathogenesis of diabetic nephropathy: A multi-omics study integrating machine learning, mendelian randomization and mediation analysis. Diabetes Obes Metab 27:4927–4941 + + 40555691 + 10.1111/dom.16536 + + + + Li M, Deng L, Xu G (2021) METTL14 promotes glomerular endothelial cell injury and diabetic nephropathy via m6A modification of α-klotho. Mol Med 27:106 + + 34503454 + 8427885 + 10.1186/s10020-021-00365-5 + + + + Li S, Wang H, Zhang Y (2025) Bioinformatics and experimental validation of MAPK pathway activation in diabetic kidney disease induced by glucose variability. J Genet Eng Biotechnol 23:100598 + + 41386864 + 12590137 + 10.1016/j.jgeb.2025.100598 + + + + Liu C, Liu X, Duan J (2025) Artemisinin and its derivatives: promising therapeutic agents for age-related macular degeneration. Pharmaceuticals (Basel) 18:535 + + 40283970 + 12030120 + 10.3390/ph18040535 + + + + Liu S, Han S, Wang C et al (2024) MAPK1 Mediates MAM disruption and mitochondrial dysfunction in diabetic kidney disease via the PACS-2-dependent mechanism. Int J Biol Sci 20:569–584 + + 38169625 + 10758092 + 10.7150/ijbs.89291 + + + + Liu Z, Hu H, Jin Y et al (2025) Artesunate enhances DUSP1-dependent mitochondrial integrity to mitigate renal fibrosis in diabetic kidney disease. Phytother Res 39:5085–5101 + + 40936329 + 10.1002/ptr.70091 + + + + Martinez Leon V, Hilburg R, Susztak K (2026) Mechanisms of diabetic kidney disease and established and emerging treatments. Nat Rev Endocrinol 22:21–35 + + 40935879 + 10.1038/s41574-025-01171-3 + + + + Moore CM, Wang J, Lin Q et al (2022) Selective inhibition of plasmodium falciparum ATPase 6 by artemisinins and identification of new classes of inhibitors after expression in yeast. Antimicrob Agents Chemother 66:e0207921 + + 35465707 + 9112895 + 10.1128/aac.02079-21 + + + + Pardina E, Tondo M, Escolà-Gil JC et al (2024) Molecular mechanisms involved in hyperglycemia-induced cellular damage. Chronic Complications Diabetes Mellitus 2024:25–38 + + 10.1016/B978-0-323-88426-6.00012-9 + + + + Pei F, Duan J, Tan L et al (2025) Swietenine attenuates renal tubular injury by activating mitophagy in diabetic nephropathy. Phytomedicine 150:157668 + + 41385947 + 10.1016/j.phymed.2025.157668 + + + + Sanglard A, Miranda BCB (2025) The role of renin-angiotensin system in diabetic nephropathy: an update Mini Rev Med Chem 25:591–60 + + + Song R, Xiong C, Bai J, Bai Z, Liu W (2024) Artemisinin attenuates isoproterenol-induced cardiac hypertrophy via the ERK1/2 and p38 MAPK signaling pathways. Curr Mol Pharmacol 17:e18761429244886 + + 38258596 + 10.2174/0118761429244886230927070818 + + + + Sun H, Saeedi P, Karuranga S et al (2022) IDF Diabetes Atlas: Global, regional and country-level diabetes prevalence estimates for 2021 and projections for 2045. Diabetes Res Clin Pract 183:109119 + + 34879977 + 10.1016/j.diabres.2021.109119 + + + + Wang D, Zhang Q, Dong W et al (2024) SGLT2 knockdown restores the Th17/Treg balance and suppresses diabetic nephropathy in db/db mice by regulating SGK1 via Na+. Mol Cell Endocrinol 584:112156 + + 38278341 + 10.1016/j.mce.2024.112156 + + + + Wang L, Zhao B, Wang J et al (2025) Epigollatecatechin gallate alleviates rheumatoid arthritis through PI3K-Akt pathway by inhibiting FLT1. Int Immunopharmacol 160:114958 + + 40449273 + 10.1016/j.intimp.2025.114958 + + + + Wang S, Tang C, Zhao H et al (2021) Network pharmacological analysis and experimental validation of the mechanisms of action of Si-Ni-San against liver fibrosis. Front Pharmacol 12:656115 + + 34276360 + 8281251 + 10.3389/fphar.2021.656115 + + + + Wani ZA, Ahmed S, Saleh A et al (2025) Biomarkers in diabetic nephropathy: A comprehensive review of their role in early detection and disease progression monitoring. Diabetes Res Clin Pract 226:112292 + + 40466742 + 10.1016/j.diabres.2025.112292 + + + + Wu D, Zeng H, Tan J et al (2025) Repurposing artemisinin-based drugs from antimalarial to pan-therapeutic: pharmacological promise and therapeutic challenges. Drug Des Devel Ther 19:9199–9226 + + 41104396 + 12526406 + 10.2147/DDDT.S545163 + + + + Wu X, Guo B, Chang X et al (2024) Identification and validation of glycolysis-related diagnostic signatures in diabetic nephropathy: a study based on integrative machine learning and single-cell sequence. Front Immunol 15:1427626 + + 39916957 + 10.3389/fimmu.2024.1427626 + + + + Xia Y, Shi C, Lu J et al (2025) Artemisinin and its derivatives from molecular mechanisms to clinical applications. New Horizons Beyond Antimalarials 26:8409 + + + Xie X, Chen Q, Guo C, Zeng J, He Q (2025) Artemisinin and its derivatives: all-rounders that may prevent the progression from lung injury to lung cancer. Front Pharmacol 16:1602581 + + 41347152 + 12673225 + 10.3389/fphar.2025.1602581 + + + + Xiong X, Feng X, Ding Y (2024) Periostin induces epithelial-mesenchymal transition via p38-MAPK pathway in human renal tubular cells by high glucose. Immun Inflamm Dis 12:e70077 + + 39570100 + 11580286 + 10.1002/iid3.70077 + + + + Yang J, Liu Z (2022) Mechanistic pathogenesis of endothelial dysfunction in diabetic nephropathy and retinopathy. Front Endocrinol (Lausanne) 13:816400 + + 35692405 + 9174994 + 10.3389/fendo.2022.816400 + + + + Yin Q, Xiang L, Han X et al (2025) The evolutionary advantage of artemisinin production by Artemisia annua. Trends Plant Sci 30:213–226 + + 39362811 + 10.1016/j.tplants.2024.09.006 + + + + Yue J, Guo J, Wang X et al (2025) Acupuncture for diabetic nephropathy: mechanisms, clinical evidence, and future perspectives. Front Endocrinol (Lausanne) 16:1335495 + + 41323976 + 12657198 + 10.3389/fendo.2025.1335495 + + + + Yue Y, Yiying T, Jiaxin W et al (2024) Circulating exosomes studied by label-free proteomics analysis reveal transition signatures from diabetes mellitus to diabetic kidney disease. Curr Proteomics 21:187–203 + + 10.2174/0115701646309538240805093732 + + + + Zhang H, Yang S, Wang H et al (2024) Assessing the diagnostic utility of urinary albumin-to-creatinine ratio as a potential biomarker for diabetic peripheral neuropathy in type 2 diabetes mellitus patients. Sci Rep 14:27198 + + 39516711 + 11549456 + 10.1038/s41598-024-78828-y + + + + Zhang T, Huo H, Zhang Y et al (2024) Th17 cells: A new target in kidney disease research. Int Rev Immunol 43:263–279 + + 38439681 + 10.1080/08830185.2024.2321901 + + + + Zhang X, Chao P, Zhang L et al (2025) Integrating network pharmacology, molecular docking and simulation approaches with machine learning reveals the multi-target pharmacological mechanism of Berberis integerrima against diabetic nephropathy. J Biomol Struct Dyn 43:2092–2108 + + 38379386 + 10.1080/07391102.2023.2294165 + + + + Zhang X, Li L, Xue R et al (2025) Artemether attenuates high glucose-induced inflammation and fibrogenesis in renal tubular epithelial cells by modulating the TGF-β/Smad pathway Via PPARγ. Activation 2025:5052561 + + + Zhou Q, Ge X, Chen Z et al (2025) Distinct types of protein modifications in diabetic endothelial dysfunction. Cardiovasc Diabetol 24:287 + + 40660266 + 12257670 + 10.1186/s12933-025-02836-z + + + + Zhu S, Zhang M, Qu Z et al (2025) Moscatilin alleviates oxidative stress and inflammatory response of Müller cells in diabetic retinopathy through suppressing the p38 mitogen-activated protein kinase/c-Jun N-terminal kinase and nuclear factor kappa-B signaling pathways. J Cell Commun Signal 19:e12059 + + 39975983 + 11837732 + 10.1002/ccs3.12059 + + + + +
+ + + 42223560 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1936-0568 + + 20 + 1 + + 2026 + Jun + 01 + + + Head and neck pathology + Head Neck Pathol + + Predicting Metastatic Potential from Histopathological Whole Slide Images of Primary Tumors in Head and Neck Squamous Cell Carcinoma Using Attention-Based Deep Learning and Signaling Pathway Alterations. + 59 + 10.1007/s12105-026-01920-4 + + Head and Neck Squamous Cell Carcinoma (HNSCC) ranks as the 6th most prevalent cancer worldwide, imposing a significant burden on global healthcare systems. The progression to metastasis poses a substantial challenge in the clinical management of HNSCC and is a leading cause of patient mortality. Patients diagnosed with distant metastasis (DM) often have limited treatment options and predominantly receive palliative care. Therefore, timely detection of HNSCC patients at risk of metastasis is paramount for proactive intervention and close monitoring, offering the potential for early-stage treatments and enhancing patient survival rates. + The pre-processing of Whole Slide Images (WSIs) involved patching, segmentation, background removal, and color normalization. A novel diagnostic framework was introduced using deep learning to predict the likelihood of DM in patients with HNSCC. The proposed model integrates a Self-Attention mechanism with a Residual Network (ResNet), enhancing performance and addressing challenges arising from patch-level variability during pre-processing. + The proposed model outperformed convolutional neural networks (CNNs), ensemble methods, and classical classifiers such as multilayer perceptrons (MLPs) and logistic regression. It achieved an accuracy of 82.14%, an AUC of 0.80, and an F1 score of 0.82 in predicting metastasis. Robustness and generalizability were further confirmed through stratified 10-fold cross-validation on the TCGA-HNSCC dataset and external validation on the TCGA-ESCA dataset, demonstrating consistent performance across diverse patient subgroups and cancer types. + The proposed framework showcases potential of using Deep Learning in enhancing clinical decision-making. These findings highlight the use of attention-based models when integrated with deep residual networks offering insights for oncological diagnostics. Future work may focus on improving explainability and interpretability, incorporating multimodal data, and generalizing the approach to other cancer types. + © 2026. The Author(s), under exclusive licence to Springer Science+Business Media, LLC, part of Springer Nature. + + + + Majeed + Tabasum + T + + Centre for Artificial Intelligence, Islamic University of Science and Technology, Awantipora, India. tabasum.majeed@iust.ac.in. + + + + Aalam + Syed Wajid + SW + + Centre for Artificial Intelligence, Islamic University of Science and Technology, Awantipora, India. + + + + Masoodi + Tariq Ahmad + TA + + Human Immunology Department, Research Branch, Sidra Medicine, Doha, Qatar. + + + + Ahanger + Abdul Basit + AB + + Department of Computer Science, Islamic University of Science and Technology, Awantipora, India. + + + + Misra + Deepika + D + + Department of Oral Pathology and Microbiology, Centre for Dental Education and Research, All India Institute of Medical Sciences, New Delhi, India. + + + + Nayyar + Vivek + V + + Department of Oral Pathology and Microbiology, Centre for Dental Education and Research, All India Institute of Medical Sciences, New Delhi, India. + + + + Khan + Meraj Alam + MA + + DigiBiomics Inc, 3052 Owls Foot Drive, Mississauga, ON, Canada. + + + + Bhat + Ajaz A + AA + + Department of Human Genetics-Precision Medicine in Diabetes, Obesity and Cancer Program, Sidra Medicine, Doha, Qatar. + + + + Bhat + Muzafar Rasool + MR + + Department of Computer Science, Islamic University of Science and Technology, Awantipora, India. + + + + Macha + Muzafar Ahmad + MA + + Watson-Crick Centre for Molecular Medicine, Islamic University of Science and Technology, Awantipora, India. muzafar.macha@iust.ac.in. + + + + Assad + Assif + A + + Centre for Artificial Intelligence, Islamic University of Science and Technology, Awantipora, India. assif.assad@islamicuniversity.edu.in. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + United States + Head Neck Pathol + 101304010 + 1936-055X + + IM + + + Humans + + + Deep Learning + + + Head and Neck Neoplasms + pathology + + + Squamous Cell Carcinoma of Head and Neck + pathology + + + Neoplasm Metastasis + diagnosis + pathology + + + Convolutional Neural Networks + + + Signal Transduction + physiology + + + + Attention mechanism + Head and neck squamous cell carcinoma + Metastasis + Transfer learning + + Declarations. Conflict of interest: The authors declare no conflict of interest. Ethical Approval: This study utilized publicly available, de-identified data from The Cancer Genome Atlas (TCGA) and therefore did not require ethical approval. Consent to Participate: Informed consent was obtained from all individual participants included in the study. Consent for Publication: All participants provided consent for publication of anonymized data. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 11 + 9 + + + 2026 + 4 + 17 + + + 2026 + 6 + 1 + 11 + 5 + + + epublish + + 42223560 + 10.1007/s12105-026-01920-4 + 10.1007/s12105-026-01920-4 + + + + Mehanna H, Paleri V, West C, Nutting C (2010) Head and neck cancer—Part 1: Epidemiology, presentation, and prevention. BMJ, 341 + + + Bray F, Ferlay J, Soerjomataram I, Siegel RL, Torre LA, Jemal A (2018) Global cancer statistics 2018: GLOBOCAN estimates of incidence and mortality worldwide for 36 cancers in 185 countries. CA Cancer J Clin 68:394–424 + + 30207593 + + + + Mesia R, Iglesias L, Lambea J, Martínez-Trufero J, Soria A, Taberna M, Trigo J, Chaves M, García-Castaño A, Cruz J (2021) SEOM clinical guidelines for the treatment of head and neck cancer (2020). Clin Transl Oncol 23:913–921 + + 33635468 + 8057973 + 10.1007/s12094-020-02533-1 + + + + Marur S, Forastiere AA (2016) Head and neck squamous cell carcinoma: update on epidemiology, diagnosis, and treatment. In: Mayo clinic proceedings, Elsevier, pp. 386–396 + + + Lechner M, Liu J, Masterson L, Fenton TR (2022) HPV-associated oropharyngeal cancer: epidemiology, molecular biology and clinical management. Nat reviews Clin Oncol 19:306–327 + + 10.1038/s41571-022-00603-7 + + + + Ang KK, Harris J, Wheeler R, Weber R, Rosenthal DI, Nguyen-Tân PF, Westra WH, Chung CH, Jordan RC, Lu C (2010) Human papillomavirus and survival of patients with oropharyngeal cancer. N Engl J Med 363:24–35 + + 20530316 + 2943767 + 10.1056/NEJMoa0912217 + + + + Johnson DE, Burtness B, Leemans CR, Lui VWY, Bauman JE, Grandis JR (2020) Head and neck squamous cell carcinoma. Nat reviews Disease primers 6:92 + + 33243986 + 7944998 + 10.1038/s41572-020-00224-3 + + + + Chow LQ (2020) Head and neck cancer. N Engl J Med 382:60–72 + + 31893516 + 10.1056/NEJMra1715715 + + + + Pisani P, Airoldi M, Allais A, Valletti PA, Battista M, Benazzo M, Briatore R, Cacciola S, Cocuzza S, Colombo A (2020) Metastatic disease in head & neck oncology. Acta Otorhinolaryngol Ital 40:S1 + + 32469009 + 7263073 + 10.14639/0392-100X-suppl.1-40-2020 + + + + Yao M, Lu M, Savvides PS, Rezaee R, Zender CA, Lavertu P, Buatti JM, Machtay M (2012) Distant metastases in head-and-neck squamous cell carcinoma treated with intensity-modulated radiotherapy. Int J Radiat Oncol Biol Phys 83:684–689 + + 22169673 + 10.1016/j.ijrobp.2011.07.014 + + + + Takes RP, Rinaldo A, Silver CE, Haigentz M Jr., Woolgar JA, Triantafyllou A, Mondin V, Paccagnella D, de Bree R, Shaha AR, Hartl DM, Ferlito A (2012) Distant metastases from head and neck squamous cell carcinoma. Part I. Basic aspects. Oral Oncol 48:775–779 + + 22520054 + 10.1016/j.oraloncology.2012.03.013 + + + + Pisani P, Airoldi M, Allais A, Aluffi Valletti P, Battista M, Benazzo M, Briatore R, Cacciola S, Cocuzza S, Colombo A, Conti B, Costanzo A, Della Vecchia L, Denaro N, Fantozzi C, Galizia D, Garzaro M, Genta I, Iasi GA, Krengli M, Landolfo V, Lanza GV, Magnano M, Mancuso M, Maroldi R, Masini L, Merlano MC, Piemonte M, Pisani S, Prina-Mello A, Prioglio L, Rugiu MG, Scasso F, Serra A, Valente G, Zannetti M, Zigliani A (2020) Metastatic disease in head & neck oncology, Acta otorhinolaryngologica Italica: organo ufficiale della Societa italiana di otorinolaringologia e chirurgia cervico-facciale. 40:S1–s86 + + + Chung MS, Choi YJ, Kim SO, Lee YS, Hong JY, Lee JH, Baek JH (2019) A scoring system for prediction of cervical lymph node metastasis in patients with head and neck squamous cell carcinoma. AJNR Am J Neuroradiol 40:1049–1054 + + 31072971 + 7028583 + 10.3174/ajnr.A6066 + + + + Shen Y, Li L, Lu Y, Zhang M, Huang X, Tang X (2021) Establishment and validation of a comprehensive prognostic model for patients with hnscc metastasis. Front Genet 12:685104 + + 34322156 + 8312248 + 10.3389/fgene.2021.685104 + + + + Gao XW, Hui R, Tian Z (2017) Classification of CT brain images based on deep learning networks. Comput Methods Programs Biomed 138:49–56 + + 27886714 + 10.1016/j.cmpb.2016.10.007 + + + + Jakubicek R, Chmelik J, Jan J, Ourednicek P, Lambert L, Gavelli G (2020) Learning-based vertebra localization and labeling in 3D CT data of possibly incomplete and pathological spines. Comput Methods Programs Biomed 183:105081 + + 31600607 + 10.1016/j.cmpb.2019.105081 + + + + King AD, Thoeny HC (2016) Functional MRI for the prediction of treatment response in head and neck squamous cell carcinoma: potential and limitations. Cancer imaging: official publication Int Cancer Imaging Soc 16:23 + + 10.1186/s40644-016-0080-6 + + + + Ebrahimighahnavieh MA, Luo S, Chiong R (2020) Deep learning to detect Alzheimer’s disease from neuroimaging: a systematic literature review. Comput Methods Programs Biomed 187:105242 + + 31837630 + 10.1016/j.cmpb.2019.105242 + + + + Lapa C, Nestle U, Albert NL, Baues C, Beer A, Buck A, Budach V, Bütof R, Combs SE, Derlin T, Eiber M, Fendler WP, Furth C, Gani C, Gkika E, Grosu AL, Henkenberens C, Ilhan H, Löck S, Marnitz-Schulze S, Miederer M, Mix M, Nicolay NH, Niyazi M, Pöttgen C, Rödel CM, Schatka I, Schwarzenboeck SM, Todica AS, Weber W, Wegen S, Wiegel T, Zamboglou C, Zips D, Zöphel K, Zschaeck S, Thorwarth D, Troost EGC (2021) Value of PET imaging for radiation therapy, vol 197. Organ der Deutschen Rontgengesellschaft … et al], Strahlentherapie und Onkologie, pp 1–23 + + + Jiang H, Tan Q, He F, Yang W, Liu J, Zhou F, Zhang M (2021) Ultrasound in patients with treated head and neck carcinomas: a retrospective analysis for effectiveness of follow-up care. Medicine 100:e25496 + + 33879682 + 8078385 + 10.1097/MD.0000000000025496 + + + + Torres HR, Morais P, Oliveira B, Birdir C, Rüdiger M, Fonseca JC, Vilaça JL (2022) A review of image processing methods for fetal head and brain analysis in ultrasound images. Comput Methods Programs Biomed 215:106629 + + 35065326 + 10.1016/j.cmpb.2022.106629 + + + + Castelli J, De Bari B, Depeursinge A, Simon A, Devillers A, Jimenez GR, Prior J, Ozsahin M, De Crevoisier R, Bourhis J (2016) Overview of the predictive value of quantitative 18 FDG PET in head and neck cancer treated with chemoradiotherapy. Crit Rev Oncol/Hematol 108:40–51 + + 27931839 + 10.1016/j.critrevonc.2016.10.009 + + + + Majeed T, Assad A (2025) Advances in deep learning for head and neck cancer: datasets and applied methods. ENT Updates 15(1):1–26 + + 10.54963/entu.v15i1.871 + + + + Bera K, Schalper KA, Rimm DL, Velcheti V, Madabhushi A (2019) Artificial intelligence in digital pathology - new tools for diagnosis and precision oncology, Nature reviews. Clin Oncol 16:703–715 + + + Troyanskaya O, Trajanoski Z, Carpenter A, Thrun S, Razavian N, Oliver N (2020) Artificial intelligence and cancer. Nat cancer 1:149–152 + + 35122011 + 10.1038/s43018-020-0034-6 + + + + Hameed Z, Garcia-Zapirain B, Aguirre JJ, Isaza-Ruget MA (2022) Multiclass classification of breast cancer histopathology images using multilevel features of deep convolutional neural network. Sci Rep 12:15600 + + 36114214 + 9649689 + 10.1038/s41598-022-19278-2 + + + + Kandel I, Castelli M (2020) A novel architecture to classify histopathology images using convolutional neural networks. Appl Sci 10:2929 + + 10.3390/app10082929 + + + + Baxi V, Edwards R, Montalto M, Saha S (2022) Digital pathology and artificial intelligence in translational medicine and clinical practice. Mod Pathol 35:23–32 + + 34611303 + 10.1038/s41379-021-00919-2 + + + + Alom MZ, Yakopcic C, Nasrin MS, Taha TM, Asari VK (2019) Breast cancer classification from histopathological images with inception recurrent residual convolutional neural network. J Digit Imaging 32:605–617 + + 30756265 + 6646497 + 10.1007/s10278-019-00182-7 + + + + Levy-Jurgenson A, Tekpli X, Kristensen VN, Yakhini Z (2020) Spatial transcriptomics inferred from pathology whole-slide images links tumor heterogeneity to survival in breast and lung cancer. Sci Rep 10:18802 + + 33139755 + 7606448 + 10.1038/s41598-020-75708-z + + + + George K, Sankaran P, K PJ (2020) Computer assisted recognition of breast cancer in biopsy images via fusion of nucleus-guided deep convolutional features. Comput Methods Programs Biomed 194:105531 + + 32422473 + 10.1016/j.cmpb.2020.105531 + + + + Hu Y, Su F, Dong K, Wang X, Zhao X, Jiang Y, Li J, Ji J, Sun Y (2021) Deep learning system for lymph node quantification and metastatic cancer identification from whole-slide pathology images. Gastric cancer: official J Int Gastric Cancer Association Japanese Gastric Cancer Association 24:868–877 + + 10.1007/s10120-021-01158-9 + + + + Wang X, Chen Y, Gao Y, Zhang H, Guan Z, Dong Z, Zheng Y, Jiang J, Yang H, Wang L, Huang X, Ai L, Yu W, Li H, Dong C, Zhou Z, Liu X, Yu G (2021) Predicting gastric cancer outcome from resected lymph node histopathology images using deep learning. Nat Commun 12:1637 + + 33712598 + 7954798 + 10.1038/s41467-021-21674-7 + + + + Chuang WY, Chen CC, Yu WH, Yeh CJ, Chang SH, Ueng SH, Wang TH, Hsueh C, Kuo CF, Yeh CY (2021) Identification of nodal micrometastasis in colorectal cancer using deep learning on annotation-free whole-slide images. Mod Pathol 34:1901–1911 + + 34103664 + 8443445 + 10.1038/s41379-021-00838-2 + + + + Pinckaers H, van Ginneken B, Litjens G (2022) Streaming convolutional neural networks for end-to-end learning with multi-megapixel images. IEEE Trans Pattern Anal Mach Intell 44:1581–1590 + + 32845835 + 10.1109/TPAMI.2020.3019563 + + + + Pinckaers H, Bulten W, van der Laak J, Litjens G (2021) Detection of prostate cancer in whole-slide images through end-to-end training with image-level labels. IEEE Trans Med Imaging 40:1817–1826 + + 33729928 + 10.1109/TMI.2021.3066295 + + + + Tang H, Li G, Liu C et al (2022) Diagnosis of lymph node metastasis in head and neck squamous cell carcinomausing deep learning. Laryngoscope Investig Otolaryngol 7:161–169 + + 35155794 + 8823170 + 10.1002/lio2.742 + + + + Woo S, Park J, Lee J-Y, Kweon IS (2018) Cbam: convolutional block attention module. In: Proceedings of the European conference on computer vision (ECCV), pp. 3–19 + + + Brauwers G, Frasincar F (2021) A general survey on attention mechanisms in deep learning. IEEE Trans Knowl Data Eng 35:3279–3298 + + 10.1109/TKDE.2021.3126456 + + + + Guo M-H, Xu T-X, Liu J-J, Liu Z-N, Jiang P-T, Mu T-J, Zhang S-H, Martin RR, Cheng M-M, Hu S-M (2022) Attention mechanisms in computer vision: a survey. Comput visual media 8:331–368 + + 10.1007/s41095-022-0271-y + + + + Alzubaidi L, Zhang J, Humaidi AJ, Al-Dujaili A, Duan Y, Al-Shamma O, Santamaría J, Fadhel MA, Al-Amidie M, Farhan L (2021) Review of deep learning: concepts, CNN architectures, challenges, applications, future directions. J big Data 8:1–74 + + 10.1186/s40537-021-00444-8 + + + + Xie Y, Yang B, Guan Q, Zhang J, Wu Q, Xia Y (2023) Attention mechanisms in medical image segmentation: a survey, arXiv preprint arXiv:2305.17937 + + + Ehteshami Bejnordi B, Veta M, van Diest PJ, van Ginneken B, Karssemeijer N, Litjens G, van der Laak J, Hermsen M, Manson QF, Balkenhol M, Geessink O, Stathonikos N, van Dijk MC, Bult P, Beca F, Beck AH, Wang D, Khosla A, Gargeya R, Irshad H, Zhong A, Dou Q, Li Q, Chen H, Lin HJ, Heng PA, Haß C, Bruni E, Wong Q, Halici U, Öner M, Cetin-Atalay R, Berseth M, Khvatkov V, Vylegzhanin A, Kraus O, Shaban M, Rajpoot N, Awan R, Sirinukunwattana K, Qaiser T, Tsang YW, Tellez D, Annuscheit J, Hufnagl P, Valkonen M, Kartasalo K, Latonen L, Ruusuvuori P, Liimatainen K, Albarqouni S, Mungal B, George A, Demirci S, Navab N, Watanabe S, Seno S, Takenaka Y, Matsuda H, Ahmady Phoulady H, Kovalev V, Kalinovsky A, Liauchuk V, Bueno G, Fernandez-Carrobles MM, Serrano I, Deniz O, Racoceanu D, Venâncio R (2017) Diagnostic Assessment of Deep Learning Algorithms for Detection of Lymph Node Metastases in Women With Breast Cancer. JAMA 318:2199–2210 + + 29234806 + 5820737 + 10.1001/jama.2017.14585 + + + + Wang D, Khosla A, Gargeya R, Irshad H, Beck AH (2016) Deep learning for identifying metastatic breast cancer. arXiv preprint arXiv :160605718 + + + Elmannai H, Hamdi M, AlGarni A (2021) Deep learning models combining for breast cancer histopathology image classification. Int J Comput Intell Syst 14:1003 + + 10.2991/ijcis.d.210301.002 + + + + Majeed T, Assad A (2025) Advances in Deep Learning for Head and Neck Cancer: Datasets and Applied Methods. ENT Updates 15(1):1–26 + + 10.54963/entu.v15i1.871 + + + + Chen RJ, Lu MY, Wang J, Williamson DF, Rodig SJ, Lindeman NI, Mahmood F (2020) Pathomic fusion: an integrated framework for fusing histopathology and genomic features for cancer diagnosis and prognosis. IEEE Trans Med Imaging 41(4):757–770 + + 10.1109/TMI.2020.3021387 + + + + Muñoz-Aguirre M, Ntasis VF, Rojas S, Guigó R (2020) PyHIST: a histological image segmentation tool. PLoS Comput Biol 16:e1008349 + + 33075075 + 7647117 + 10.1371/journal.pcbi.1008349 + + + + Goode A, Gilbert B, Harkes J, Jukic D, Satyanarayanan M (2013) OpenSlide: a vendor-neutral software foundation for digital pathology. J Pathol Inf 4:27 + + 10.4103/2153-3539.119005 + + + + Cao L-L, Ding S, Fu X-W, Chen L (2016) Otsu multilevel thresholding segmentation based on quantum particle swarm optimisation algorithm. Int J Wireless Mobile Comput 10:272–277 + + 10.1504/IJWMC.2016.077215 + + + + Reinhard E, Adhikhmin M, Gooch B, Shirley P (2001) Color transfer between images. IEEE Comput Graph Appl 21:34–41 + + 10.1109/38.946629 + + + + Lakshmanan B, Anand S, Jenitha T (2019) Stain removal through color normalization of haematoxylin and eosin images: a review. In: Journal of physics: conference series, IOP Publishing, p. 012108 + + + Qu H, Zhou M, Yan Z, Wang H, Rustgi VK, Zhang S, Gevaert O, Metaxas DN (2021) Genetic mutation and biological pathway prediction based on whole slide images in breast carcinoma using deep learning. NPJ precision Oncol 5:87 + + 10.1038/s41698-021-00225-9 + + + + He K, Zhang X, Ren S, Sun J (2016) Deep residual learning for image recognition. In: Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778 + + + Russakovsky O, Deng J, Su H, Krause J, Satheesh S, Ma S, Huang Z, Karpathy A, Khosla A, Bernstein M (2015) Imagenet large scale visual recognition challenge. Int J Comput Vision 115:211–252 + + 10.1007/s11263-015-0816-y + + + + Martin TA, Ye L, Sanders AJ, Lane J, Jiang WG (2013) Cancer invasion and metastasis: molecular and cellular perspective. Madame Curie Bioscience Database. Landes Bioscience + + + Takamatsu M, Yamamoto N, Kawachi H, Nakano K, Saito S, Fukunaga Y, Takeuchi K (2022) Prediction of lymph node metastasis in early colorectal cancer based on histologic images by artificial intelligence. Sci Rep 12:2963 + + 35194184 + 8863850 + 10.1038/s41598-022-07038-1 + + + + Kiehl L, Kuntz S, Höhn J, Jutzi T, Krieghoff-Henning E, Kather JN, Holland-Letz T, Kopp-Schneider A, Chang-Claude J, Brobeil A (2021) Deep learning can predict lymph node status directly from histology in colorectal cancer. Eur J Cancer 157:464–473 + + 34649117 + 10.1016/j.ejca.2021.08.039 + + + + Wessels F, Schmitt M, Krieghoff-Henning E, Jutzi T, Worst TS, Waldbillig F, Neuberger M, Maron RC, Steeg M, Gaiser T (2021) Deep learning approach to predict lymph node metastasis directly from primary tumour histology in prostate cancer. BJU Int 128:352–360 + + 33706408 + 10.1111/bju.15386 + + + + Zhao Y, Yang F, Fang Y, Liu H, Zhou N, Zhang J, Sun J, Yang S, Menze B, Fan X (2020) Predicting lymph node metastasis using histopathological images based on multiple instance learning with deep graph convolution. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp. 4837–4846 + + + Yang J, Ju J, Guo L, Ji B, Shi S, Yang Z, Gao S, Yuan X, Tian G, Liang Y (2022) Prediction of HER2-positive breast cancer recurrence and metastasis risk from histopathological images and clinical information via multimodal deep learning. Comput Struct Biotechnol J 20:333–342 + + 35035786 + 10.1016/j.csbj.2021.12.028 + + + + Muti HS, Röcken C, Behrens H-M, Löffler CM, Reitsam NG, Grosser B, Märkl B, Stange DE, Jiang X, Veldhuizen GP (2023) Deep learning trained on lymph node status predicts outcome from gastric cancer histopathology: a retrospective multicentric study. Eur J Cancer 194:113335 + + 37862795 + 10.1016/j.ejca.2023.113335 + + + + Ahanger AB, Aalam SW, Assad A, Macha MA, Bhat MR (2024) Alzhinet: an explainable self-attention based classification model to detect alzheimer from 3d volumetric MRI data. Int J Syst Assur Eng Manage, pp. 1–10 + + + +
+ + + 42223558 + + 2026 + 06 + 01 + +
+ + 1528-0691 + + + 2026 + Jun + 01 + + + Chemical record (New York, N.Y.) + Chem Rec + + Heterojunction Engineering of Electrodes and Membranes in Redox Flow Batteries. + + e70183 + e70183 + + 10.1002/tcr.70183 + + Redox flow batteries (RFBs) have demonstrated considerable potential for application prospects in the domain of large-scale energy storage. This potential can be attributed to their notable advantages, which include the decoupling of power and capacity, a prolonged cycle life, and a high level of safety. However, the enhancement of their energy efficiency and power density remains significantly constrained by critical issues, including sluggish reaction kinetics, the shuttle effect of active species, and inadequate interfacial stability. In recent years, heterojunctions have emerged as an efficient interfacial engineering strategy, providing novel solutions for enhancing the key performance of RFBs. This enhancement is achieved through the reconstruction of the interfacial electronic structure and modulation of the built-in electric field. This study provides a comprehensive review of the research progress related to heterojunctions in RFBs. The study focuses on summarizing the construction strategies and action mechanisms of heterojunction electrodes and heterojunction ion exchange membranes. It also discusses the regulatory effects of these materials on redox reaction kinetics, ion transport behavior, and cycling stability of RFBs. Additionally, the development trend of machine learning-assisted rational design of heterojunctions is discussed in detail. The objective of this work is to establish a theoretical framework and to elucidate the research insights pertinent to the precision design and engineering application of heterojunction materials in high-performance RFBs. + © 2026 The Chemical Society of Japan and Wiley‐VCH GmbH. + + + + Dan + Xiaoxin + X + + Guangxi Key Laboratory of Processing for Non-ferrous Metals and Featured Materials, MOE Key Laboratory of New Processing Technology for Nonferrous Metals and Materials, School of Resources, Environment and Materials, Guangxi University, Nanning, China. + + + + Li + Zanbin + Z + + Guangxi Key Laboratory of Processing for Non-ferrous Metals and Featured Materials, MOE Key Laboratory of New Processing Technology for Nonferrous Metals and Materials, School of Resources, Environment and Materials, Guangxi University, Nanning, China. + + + + Chen + Mingying + M + + Guangxi Key Laboratory of Processing for Non-ferrous Metals and Featured Materials, MOE Key Laboratory of New Processing Technology for Nonferrous Metals and Materials, School of Resources, Environment and Materials, Guangxi University, Nanning, China. + + + + Hou + Xianghua + X + 0000-0001-8973-5297 + + Guangxi Key Laboratory of Processing for Non-ferrous Metals and Featured Materials, MOE Key Laboratory of New Processing Technology for Nonferrous Metals and Materials, School of Resources, Environment and Materials, Guangxi University, Nanning, China. + + + + Luo + Yang + Y + 0000-0003-4536-3457 + + Department of Physics, City University of Hong Kong, Hong Kong, China. + + + China Huadian Corporation Ltd. (CHD), Beijing, China. + + + + Zhuo + Longchao + L + 0000-0003-3396-3893 + + School of Materials Science and Engineering, Xi'an University of Technology, Xi'an, China. + + + + Liu + Wenxian + W + 0000-0002-2808-1864 + + College of Materials Science and Engineering, Zhejiang University of Technology, Hangzhou, China. + + + + Feng + Ligang + L + 0000-0001-9879-0773 + + Faculty of Materials Science and Engineering, Kunming University of Science and Technology, Kunming, China. + + + + Liu + Xijun + X + 0009-0007-7379-3901 + + Guangxi Key Laboratory of Processing for Non-ferrous Metals and Featured Materials, MOE Key Laboratory of New Processing Technology for Nonferrous Metals and Materials, School of Resources, Environment and Materials, Guangxi University, Nanning, China. + + + + eng + + + 22469002 + National Natural Science Foundation of China + + + + + Journal Article + Review + + + 2026 + 06 + 01 + +
+ + United States + Chem Rec + 101085550 + 1528-0691 + + IM + + electrode design + heterojunctions + machine learning + redox flow batteries + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 5 + 18 + + + 2026 + 4 + 2 + + + 2026 + 5 + 21 + + + 2026 + 6 + 1 + 11 + 5 + + + aheadofprint + + 42223558 + 10.1002/tcr.70183 + + + + M. Shoaib, P. Vallayil, N. Jaiswal, et al., “Advances in Redox Flow Batteries – A Comprehensive Review on Inorganic and Organic Electrolytes and Engineering Perspectives,” Advanced Energy Materials 14 (2024): 2400721. + + + B. Hu, T. Zhou, L. Hu, et al., “Multi‐Redox Organic Species for High‐Energy‐Density Aqueous Redox Flow Batteries: Mechanism, Characteristics, and Applications,” Energy Storage Materials 83 (2025): 104684. + + + W. Sharmoukh, “Redox Flow Batteries as Energy Storage Systems: Materials, Viability, and Industrial Applications,” RSC Advances 15 (2025): 10106–10143. + + + R. B. Jethwa, D. Hey, R. N. Kerber, A. D. Bond, D. S. Wright, and C. P. Grey, “Exploring the Landscape of Heterocyclic Quinones for Redox Flow Batteries,” ACS Applied Energy Materials 7 (2024): 414–426. + + + W. Ma, T. Jian, J. Ma, X. Li, H. Gao, and H. Liu, “Research Progress on Transition Metals and their Alloy Catalysts for Li‐CO2 Batteries,” China Powder Sci. Technol 30 (2024): 1–14. + + + Z. Ju, T. Zheng, B. Zhang, and G. Yu, “Interfacial Chemistry in Multivalent Aqueous Batteries: Fundamentals, Challenges, and Advances,” Chemical Society Reviews 53 (2024): 8980–9028. + + + J. Yang, X. Zhang, M. Hou, et al., “Research Advances in Interface Engineering of Solid‐State Lithium Batteries,” Carbon Neutralization 4 (2025): e188. + + + W. Wu, S. Yang, H. Qian, et al., “Interface Engineering of Advanced Electrocatalysts toward Alkaline Hydrogen Evolution Reactions,” Chinese Journal of Catalysis 66 (2024): 1–19. + + + D. Ding, Y. Liu, and F. Xia, “Interface Engineering via Molecules/Ions/Groups for Electrocatalytic Water Splitting,” Nano Research 17 (2024): 7864–7879. + + + X.‐Q. Tan, S.‐F. Ng, A. R. Mohamed, and W.‐J. Ong, “Point‐to‐face Contact Heterojunctions: Interfacial Design of 0D Nanomaterials on 2D g‐C3N4 towards Photocatalytic Energy Applications,” Carbon Energy 4 (2022): 665–730. + + + K. Wang, Z. Guan, Y. He, and M. Fan, “Harnessing Zinc Stannate for Sustainable Energy and Environment Solutions: Advances in Photocatalytic, Piezocatalytic, and Piezo‐Photocatalytic Technologies,” Nano Energy 133 (2025): 110518. + + + B. Wang, L. Wang, J. H. Lee, T. T. Isimjan, H. M. Jeong, and X. Yang, “Enabling Built‐in Electric Fields on Rhenium‐vacancy‐rich Heterojunction Interfaces of Transition‐metal Dichalcogenides for pH‐universal Efficient Hydrogen and Electric Energy Generation,” Carbon Energy 6 (2024): e526. + + + Z. Gu, P. Lu, Z. Zhang, et al., “Effectively Enhancing the Performance of Solar Flow Battery via Constructing TiO2‐g‐C3N4 Heterojunction Photoanode,” Journal of Power Sources 640 (2025): 236696. + + + X. Wu, Q. Yan, H. Wang, et al., “Heterostructured Catalytic Materials as Advanced Electrocatalysts: Classification, Synthesis, Characterization, and Application,” Advanced Functional Materials 34 (2024): 2404535. + + + M. Bartolozzi, “Development of Redox Flow Batteries. A Historical Bibliography,” Journal of Power Sources 27 (1989): 219–234. + + + M. Gao, Z. Wang, D. G. Lek, and Q. Wang, “Towards High Power Density Aqueous Redox Flow Batteries,” Nano Research Energy 2 (2023): e9120045. + + + L. Zhang, R. Feng, W. Wang, and G. Yu, “Emerging Chemistries and Molecular Designs for Flow Batteries,” Nature Reviews Chemistry 6 (2022): 524–543. + + + F. Yang, S. M. A. Mousavie, T. K. Oh, et al., “Sodium–Sulfur Flow Battery for Low‐Cost Electrical Storage,” Advanced Energy Materials 8 (2018): 1701991. + + + P. Wang, Y. Zhao, Y. Ban, and M. Zheng, “A Review of Porous Electrode Structural Parameters and Optimization for Redox Flow Batteries,” Journal of Energy Storage 97 (2024): 112859. + + + R. Mu, W. Zhang, Q. Shi, Q. Cui, B. Wang, and D. Gu, “Engineering Carbon Electrodes for High‐Efficiency Vanadium Redox Flow Battery: Multi‐Faceted Approaches to Electrocatalytic Interfaces,” Journal of Energy Storage 132 (2025): 117923. + + + L. Li, X. Chen, Z. Feng, et al., “Recent advances and perspectives of practical modifications of vanadium redox flow battery electrodes,” Green Chemistry 26 (2024): 6339–6360. + + + K. Brahma, R. Nayak, S. K. Verma, Sonika, “Recent Advances in Development and Application of Polymer Nanocomposite Ion Exchange Membrane for High Performance Vanadium Redox Flow Battery,” Journal of Energy Storage 97 (2024): 112850. + + + Y. Yang, Q. Wang, S. Xiong, and Z. Song, “Research Progress on Optimized Membranes for Vanadium Redox Flow Batteries,” Inorganic Chemistry Frontiers 11 (2024): 4049–4079. + + + N. Zhao, A. Platt, H. Riley, R. Qiao, R. Neagu, and Z. Shi, “Strategy towards High Ion Selectivity Membranes for All‐Vanadium Redox Flow Batteries,” Journal of Energy Storage 72 (2023): 108321. + + + C. H. L. Tempelman, J. F. Jacobs, R. M. Balzer, and V. Degirmenci, “Membranes for All Vanadium Redox Flow Batteries,” Journal of Energy Storage 32 (2020): 101754. + + + C. Ye, A. Wang, C. Breakwell, et al., “Development of Efficient Aqueous Organic Redox Flow Batteries Using Ion‐Sieving Sulfonated Polymer Membranes,” Nature Communications 13 (2022): 3184. + + + A. Barzigar, E. Ebadati, A. S. Mujumdar, and S. M. Hosseinalipour, “A Comprehensive Review of Vanadium Redox Flow Batteries: Principles, Benefits, and Applications,” Next Research 2 (2025): 100767. + + + Y. Jiang, Y. Wang, G. Cheng, et al., “Multiple‐dimensioned Defect Engineering for Graphite Felt Electrode of Vanadium Redox Flow Battery,” Carbon Energy 6 (2024): e537. + + + Y. Su, K. Pan, T. Gu, B. Peng, G. Wang, and F. Yu, “Multidimensional electrode engineering for high‐performance vanadium redox flow batteries: Bridging atomic‐scale design to macroscopic durability,” Chemical Engineering Journal 498 (2025): 100767. + + + T. T. Bui, M. Shin, M. Rahimi, A. Bentien, Y. Kwon, and D. Henkensmeier, “Highly Efficient Vanadium Redox Flow Batteries Enabled by a Trilayer Polybenzimidazole Membrane Assembly,” Carbon Energy 6 (2024): e473. + + + X. Zhao, X. Niu, X. Liu, et al., “Unraveling the coordination behavior and transformation mechanism of Cr3+ in Fe–Cr redox flow battery electrolytes,” Materials Reports: Energy 4 (2024): 100271. + + + Y. Niu, C. Guo, Y. Liu, et al., “Fabrication of Highly Effective Electrodes for Iron Chromium Redox Flow Battery,” Nano Research 17 (2024): 3988–3996. + + + Y. Niu, Q. Gao, R. Zhao, et al., “A High Current Density and Long Cycle Life Iron‐Chromium Redox Flow Battery Electrolyte,” Green Chemical Engineering 7 (2026): 61–69. + + + Y. Liu, Y. Niu, X. Ouyang, et al., “Progress of Organic, Inorganic Redox Flow Battery and Mechanism of Electrode Reaction,” Nano Research Energy 2 (2023): e9120081. + + + P. Wang, “Molecular Design and Redox Chemistries for Aqueous Organic Redox Flow Batteries (AORFBs),” Angewandte Chemie International Edition 64 (2025): e202515639. + + + C. N. Gannett, L. Melecio‐Zambrano, M. J. Theibault, B. M. Peterson, B. P. Fors, and H. D. Abruña, “Organic electrode materials for fast‐rate, high‐power battery applications,” Materials Reports: Energy 1 (2021): 100008. + + + Z. Wei, Z. Chen, Y. Wang, et al., “Catalytic Electrolytes Enable Fast Reaction Kinetics and Temperature Adaptability for Aqueous Zinc‐Bromine Flow Batteries,” Nature Communications 16 (2025): 10097. + + + Y. Xu, T. Li, Z. Peng, C. Xie, and X. Li, “Grid‐Scale Corrosion‐Free Zn/Br Flow Batteries Enabled by a Multi‐Electron Transfer Reaction,” Nature Energy 10 (2025): 1470–1481. + + + X. He, X.‐Y. Kong, and L. Wen, “A Promising Solution for Highly Reversible Zinc Metal Anode Chemistry: Functional Gradient Interphase,” Nano Research Energy 3 (2024): e9120100. + + + Z. Wei, Y. Wang, H. Hong, et al., “Long‐Life Aqueous Zinc‐Iodine Flow Batteries Enabled by Selectively Intercepting Hydrated Ions,” Nature Communications 16 (2025): 9301. + + + W. Li, S. Xu, Y. Chen, B. Wang, and Q. Wang, “Numerical Insight into Characteristics and Performance of Zinc‐Bromine Redox Flow Battery,” Energy 335 (2025): 137896. + + + J. Wang, Y. Zhong, X. Zhang, et al., “PANI/BiVO4 Photoanode Drived Fe‐Br Solar Redox Flow Battery System for Efficient Solar Energy Conversion and Storage,” Nano Energy 145 (2025): 111411. + + + K. Wedege, D. Bae, W. A. Smith, A. Mendes, and A. Bentien, “Solar Redox Flow Batteries with Organic Redox Couples in Aqueous Electrolytes: A Minireview,” Journal of Physical Chemistry C 122 (2018): 25729–25740. + + + B. Liu, Y. Li, G. Jia, and T. Zhao, “Recent Advances in Redox Flow Batteries Employing Metal Coordination Complexes as Redox‐Active Species,” Electrochemical Energy Reviews 7 (2024): 7. + + + Y. Xu, Y. Zhao, S. Peng, et al., “Constructing a NiCoP/FeP p–n Heterojunction with Built‐in Electric Field Regulation as an Efficient Alkaline Hydrogen Evolution Electrode,” Journal of Materials Chemistry A 13 (2025): 18714–18721. + + + A. Huang, L. Kong, B. Zhang, et al., “Electrochemical Restructuring Driven Catalytic Cycle of Bi‐Based Heterojunctions for High‐Performance Lithium–Sulfur Batteries,” ACS Nano 18 (2024): 12795–12807. + + + C. Ding, Y. Ding, K. Wang, et al., “Regulating the Polysulfide Behavior by a Large‐Scale Two‐Dimensional Superlattice Interface in Li–S Chemistry,” ACS Nano 19 (2025): 26818–26830. + + + H. Mao, X. Liu, S. Wu, et al., “WC/Co7Fe3 Heterojunction Embedded in N,P Co‐Doped Hierarchical Carbon Enables Rechargeable/Flexible Zn‐Air Battery,” Nano Research 16 (2023): 2519–2527. + + + X. Zheng, M. Yuan, D. Guo, et al., “Theoretical Design and Structural Modulation of a Surface‐Functionalized Ti3C2Tx MXene‐Based Heterojunction Electrocatalyst for a Li–Oxygen Battery,” ACS Nano 16 (2022): 4487–4499. + + + S. Wang, Y. Ji, J. Yang, et al., “Built‐in Electric Fields in Electrochemical Energy Storage: Mechanisms, Construction Strategies, and Future Prospects,” Coordination Chemistry Reviews 549 (2026): 217340. + + + Y. Yan, H. Wang, W.‐J. Qin, Y.‐X. Guo, and S.‐L. Ma, “MoS2/Au0/N‐CNT Derived from Au(III) Extraction by Polypyrrole/MoS4 as an Electrocatalyst for Hydrogen Evolution Reaction,” Journal of Colloid and Interface Science 561 (2019): 298‐306. + + + S. Chen, T. Zhang, J. Han, et al., “Interface Engineering of Fe‐Sn‐Co Sulfide/Oxyhydroxide Heterostructural Electrocatalyst for Synergistic Water Splitting,” Nano Research Energy 3 (2024): e9120106. + + + K. Wang, T. Zhou, J. He, Z. Cao, and Z. Jiang, “Regulating the atomic ratio of Pt/Ru to enhance CO anti‐poisoning of Pt based electrocatalysts toward methanol oxidation reaction,” Molecular Catalysis 556 (2024): 113927. + + + B. Wang, Z. Xing, S. Jia, et al., “Coupling Ultrafine Transition Metal and Rare Earth Oxide Nanocrystals toward Highly Active and Stable Catalysts for Lithium–Sulfur Batteries,” ACS Nano 19 (2025): 15120–15129. + + + F. Dong, M. Wu, Z. Chen, et al., “In Situ Reconstruction of Bimetallic Heterojunctions Encapsulated in N/P Co‐Doped Carbon Nanotubes for Long‐Life Rechargeable Zinc‐Air Batteries,” Nano Energy 133 (2025): 110497. + + + L. Ye, W. Chen, Z.‐J. Jiang, and Z. Jiang, “Co/CoO Heterojunction Rich in Oxygen Vacancies Introduced by O2 Plasma Embedded in Mesoporous Walls of Carbon Nanoboxes Covered with Carbon Nanotubes for Rechargeable Zinc–air Battery,” Carbon Energy 6 (2024): e457. + + + Y. Du, W. Chen, L. Zhou, et al., “One‐Step, In Situ Formation of WN‐W2C Heterojunctions Implanted on N Doped Carbon Nanorods as Efficient Oxygen Reduction Catalyst for Metal‐Air Battery,” Nano Research 16 (2023): 8773–8781. + + + T. Jian, W. Ma, J. Hou, J. Ma, C. Xu, and H. Liu, “From Ru to RuAl Intermetallic/Ru Heterojunction: Enabling High Reversibility of the CO2 Redox Reaction in Li–CO2 Battery Based on Lowered Interface Thermodynamic Energy Barrier,” Nano Energy 118 (2023): 108998. + + + F. Lian, Z. Fan, J. Li, and Z. Wang, “Research progress on preparation of sulfide solid electrolyte particles,” China Powder Science and Technology 31 (2025): 49–58. + + + L.‐L. Liu, Z.‐X. Han, Y.‐F. Lv, et al., “MIL‐100(Fe) Supported Pt−Co Nanoparticles as Active and Selective Heterogeneous Catalysts for Hydrogenation of 1,3‐Butadiene,” ChemistryOpen 11 (2022): 288. + + + A. Balapure, J. Ray Dutta, and R. Ganesan, “Recent Advances in Semiconductor Heterojunctions: A Detailed Review of the Fundamentals of Photocatalysis, Charge Transfer Mechanism and Materials,” RSC Applied Interfaces 1 (2024): 43–69. + + + Y. Li, J. Zhang, Q. Chen, X. Xia, and M. Chen, “Emerging of Heterostructure Materials in Energy Storage: A Review,” Advanced Materials 33 (2021): e2100855. + + + Z. Wang, Z. Yang, J. He, et al., “Bioinspired Bi2 MoO6 Electron Bridge and Carbon Nano‐Island Heterojunctions for Enhanced Photothermal Catalytic CO2 Reduction,” Carbon Energy 7 (2025): e70032. + + + T. Guo, G. Hu, C. Wang, J. Liu, G. Ren, and Q. Guo, “Construction of a 1 T/2H‐WS2 and ZnCdS Type II Heterojunction with a Built‐in Electric Field for Efficient Photocatalytic Hydrogen Evolution,” Journal of Alloys and Compounds 1022 (2025): 179965. + + + J. Li, T. Lu, Y. Fang, et al., “The Manipulation of Rectifying Contact of Co and Nitrogen‐doped Carbon Hierarchical Superstructures toward High‐performance Oxygen Reduction Reaction,” Carbon Energy 6 (2024): e529. + + + J. Tang, N. Tian, C. Xiao, and Z. Zhou, “Morphological Transformation of Pt Nanocrystals by an Electrochemical Method in Alkaline Media and Performance of Ethanol Electrooxidation,” Inorganic Chemistry Frontiers 12 (2025): 7548–7555. + + + Z. Han, Y. Song, Y. Jia, et al., “Classification and Characterization Methods for Heterojunctions,” Advanced Materials Interfaces 12 (2025): 2500191. + + + Z. Li, M. Hu, P. Wang, J. Liu, J. Yao, and C. Li, “Heterojunction Catalyst in Electrocatalytic Water Splitting,” Coordination Chemistry Reviews 439 (2021): 213953. + + + M. Wu, G. Zhang, N. Chen, et al., “Self‐Reconstruction of Co/Co2P Heterojunctions Confined in N‐Doped Carbon Nanotubes for Zinc–Air Flow Batteries,” ACS Energy Letters 6 (2021): 1153–1161. + + + Y. Lv, P. Chen, J. J. Foo, et al., “Dimensionality‐Dependent MoS2 toward Efficient Photocatalytic Hydrogen Evolution: From Synthesis to Modifications in Doping, Surface and Heterojunction Engineering,” Materials Today Nano 18 (2022): 100191. + + + T. Yuan, X. Chen, Y. Zhao, et al., “Bridging the Charge Gap: Nb2CT /Nb2O5 Schottky Heterojunctions as Electronic Highways in Vanadium Redox Flow Battery,” Journal of Energy Chemistry 113 (2026): 771–779. + + + J. Lan, S. Zhang, L. Yang, et al., “High‐Power Polysulfide Redox Flow Batteries via an Interfacial Electron Field on a 2D Mesoporous Heterojunction,” ACS Nano 19 (2025): 31699–31708. + + + Z. Wang, G. Lu, T. Wei, et al., “Synergy of Single Atoms and Sulfur Vacancies for Advanced Polysulfide–iodide Redox Flow Battery,” Nature Communications 16 (2025): 2885. + + + J. Wu, X. Cao, Y. Ji, et al., “Boosting Kinetics of Ce3+/Ce4+ Redox Reaction by Constructing TiC/TiO2 Heterojunction for Cerium‐Based Flow Batteries,” Advanced Functional Materials 34 (2024): 2309825. + + + D. Ma, B. Hu, W. Wu, et al., “Highly Active Nanostructured CoS2/CoS Heterojunction Electrocatalysts for Aqueous Polysulfide/Iodide Redox Flow Batteries,” Nature Communications 10 (2019): 3367. + + + H. Gao, M. Song, S. Wang, et al., “Engineering of Interface‐Assisted Oxygen Vacancies to Enhance Electrode Activity in Aqueous Anthraquinone Redox Flow Batteries,” Journal of Colloid and Interface Science 703 (2026): 139184. + + + J. Li, S. Yuan, X. Zhang, et al., “Enhanced Photoelectric Desalination of Co3O4@NC/BiVO4 Photoanode via in‐Situ Construction of Hole Transport Layer,” Journal of Colloid and Interface Science 680 (2025): 11–23. + + + J. Ma, M. Sabzehparvar, Z. Pan, and G. Tagliabue, “Nanostructured Fe2O3/CuxO Heterojunction for Enhanced Solar Redox Flow Battery Performance,” Journal of Materials Chemistry A 13 (2025): 1320–1329. + + + Z. Zhang, P. Lu, Z. Gu, et al., “Cu2O‐Electrodeposited TiO2 Photoelectrode for Integrated Solar Redox Flow Battery,” Processes 11 (2023): 2631. + + + R. Pärnamäe, S. Mareev, V. Nikonenko, et al., “Bipolar Membranes: A Review on Principles, Latest Developments, and Applications,” Journal of Membrane Science 617 (2021): 118538. + + + K. Wang, P. Liu, M. Wang, et al., “Modulating dd orbitals coupling in PtPdCu medium‐entropy alloy aerogels to boost pH‐general methanol electrooxidation performance,” Chinese Chemical Letters 36 (2025): 110532. + + + R. A. Tufa, M. A. Blommaert, D. Chanda, Q. Li, D. A. Vermaas, and D. Aili, “Bipolar Membrane and Interface Materials for Electrochemical Energy Systems,” ACS Applied Energy Materials 4 (2021): 7419–7439. + + + T. T. K. Huynh, T. Yang, N. P S, Y. Yang, J. Ye, and H. Wang, “Construction of High‐Performance Membranes for Vanadium Redox Flow Batteries: Challenges, Development, and Perspectives,” Nano‐Micro Letters 17 (2025): 260. + + + M. Houben, T. Jansman, Z. Borneman, and K. Nijmeijer, “Polyelectrolyte Multilayer Catalysts in Electrospun Bipolar Membranes,” Polymer 307 (2024): 127283. + + + X. Zhou, X. Li, D. Yang, X. Jing, W. Yan, and H. Xu, “Bipolar Membranes: A review on principles, preparation methods and applications in environmental and resource recovery,” Chemical Engineering Journal 507 (2025): 160184. + + + T. Xu, R. Fu, W. Yang, and Y. Xue, “Fundamental studies on a novel series of bipolar membranes prepared from poly(2,6‐dimethyl‐1,4‐phenylene oxide) (PPO),” Journal of Membrane Science 279 (2006): 288–290. + + + M. A. Blommaert, D. Aili, R. A. Tufa, Q. Li, W. A. Smith, and D. A. Vermaas, “Insights and Challenges for Applying Bipolar Membranes in Advanced Electrochemical Energy Systems,” ACS Energy Letters 6 (2021): 2539–2548. + + + B. Eswaraswamy, P. Mandal, P. Goel, A. Suhag, and S. Chattopadhyay, “Heterogenous Bipolar Membrane with Amino Methyl Phosphonic Acid Functionalized Cation Exchange Layer and Montmorillonite Nanoclay Based Interfacial Layer,” Chemical Engineering Journal Advances 12 (2022): 100406. + + + J. Dai, Y. Dong, P. Gao, et al., “A Sandwiched Bipolar Membrane for All Vanadium Redox Flow Battery with High Coulombic Efficiency,” Polymer 140 (2018): 233–239. + + + Z. Yan, R. J. Wycisk, A. S. Metlay, et al., “High‐Voltage Aqueous Redox Flow Batteries Enabled by Catalyzed Water Dissociation and Acid–Base Neutralization in Bipolar Membranes,” ACS Central Science 7 (2021): 1028–1035. + + + W. L. Toh, H. Q. Dinh, A. T. Chu, E. R. Sauvé, and Y. Surendranath, “The Role of Ionic Blockades in Controlling the Efficiency of Energy Recovery in Forward Bias Bipolar Membranes,” Nature Energy 8 (2023): 1405–1416. + + + Y. Xia, M. Ouyang, V. Yufit, et al., “A Cost‐Effective Alkaline Polysulfide‐Air Redox Flow Battery Enabled by a Dual‐Membrane Cell Architecture,” Nature Communications 13 (2022): 2388. + + + A. Çelik, Y. Aksoy, Ö. Hanay, et al., “The Evaluation of Potential Usage of Ti4N3Tx MXene as Interface Layer Catalyst of Bipolar Membrane,” Journal of Inorganic and Organometallic Polymers and Materials 35 (2025): 6466–6478. + + + X. Liu, Y. Li, X. Zhang, et al., “High‐Throughput Computation and Machine Learning Screening of Van der Waals Heterostructures for Z‐Scheme Photocatalysis,” Journal of Materials Chemistry A 13 (2025): 5649–5660. + + + S. Wang, W. Hao, Z. Liu, X. Niu, L. Wang, and Q. Zhao, “Two‐Dimensional Direct Z‐Scheme Heterojunction Photocatalysts for Highly Efficient Energy Conversion and Chemical Synthesis,” ACS Nano 20 (2026): 137–162. + + + Z. Qiu, L. Li, W. Zhang, J. Ren, X. Guo, and X. Lu, “Unlock the Electrochemical Performance of g‐SiC/Nb2CO2 Heterostructure as Lithium/Sodium Ion Storage Anode with First‐Principles and Machine Learning,” Applied Surface Science 709 (2025): 163882. + + + Q. Wang, J. He, B. Sun, et al., “Recent Advances and Strategies of Metal Sulfides for Accelerating Polysulfide Redox and Regulating Li Plating,” ACS Nano 19 (2025): 28992–29027. + + + G. Yan, H. Tang, Y. Shen, L. Han, and Q. Han, “AI‐Generated Ammonium Ligands for High‐Efficiency and Stable 2D/3D Heterojunction Perovskite Solar Cells,” Advanced Materials 37 (2025): 2503154. + + + X. Tong, K. Sun, H. Ye, et al., “Recent advances in the high entropy materials for advanced energy storage with machine learning,” Materials Reports: Energy 5 (2025): 100379. + + + U. M. Baeck, M.‐C. Kim, D. N. Nguyen, et al., “Machine‐Learning‐Assisted Design and Optimization of Single‐Atom Transition Metal‐Incorporated Carbon Quantum Dot Catalysts for Electrocatalytic Hydrogen Evolution Reaction,” Carbon Energy 7 (2025): e70006. + + + X. Wan, Z. Zhang, W. Yu, and Y. Guo, “A density‐functional‐theory‐based and machine‐learning‐accelerated hybrid method for intricate system catalysis,” Materials Reports: Energy 1 (2021): 100046. + + + C. Sui, Z. Jiang, G. Higueros, D. Carlson, and P.‐C. Hsu, “Designing Electrodes and Electrolytes for Batteries by Leveraging Deep Learning,” Nano Research Energy 3 (2024): e9120102. + + + B. Poswell and A. S. Barnard, “Materials “Economatics”: Combining Chemical, Financial, Environmental, and Social Factors Using Machine Learning,” ACS Nano 19 (2025): 9440–9451. + + + M. Tamtaji, M. G. Kim, Z. Li, et al., “High‐Throughput Screening of Dual Atom Catalysts for Oxygen Reduction and Evolution Reactions and Rechargeable Zinc‐Air Battery,” Nano Energy 126 (2024): 109634. + + + G.‐H. Kim, C. Lee, K. Kim, and D.‐H. Ko, “Novel Structural Feature‐Descriptor Platform for Machine Learning to Accelerate the Development of Organic Photovoltaics,” Nano Energy 106 (2023): 108108. + + + C. H. Liow, H. Kang, S. Kim, et al., “Machine Learning Assisted Synthesis of Lithium‐Ion Batteries Cathode Materials,” Nano Energy 98 (2022): 107214. + + + Y. Shi, Y. Bao, S. Cao, Y. Su, and P. Qian, “Design of Transition Metal Dichalcogenides Using General‐Purpose Machine‐Learned Interatomic Potentials,” Chemistry of Materials 37 (2025): 9919–9931. + + + Y. Shaidu, M. H. Naik, S. G. Louie, and J. B. Neaton, “Transferable Dispersion‐Aware Machine Learning Interatomic Potentials for Multilayer Transition Metal Dichalcogenide Heterostructures,” npj Computational Materials 11 (2025): 273. + + + L. Wang, T. Yang, B. Feng, et al., “Constructing Dual Electron Transfer Channels to Accelerate CO2 Photoreduction Guided by Machine Learning and First‐Principles Calculation,” Chinese Journal of Catalysis 54 (2023): 265–277. + + + M. Zeeshan, S. Akram Khan, S. Ali, et al., “Toward Sustainable Redox‐Flow Batteries: The Role of Aqueous Organic Polymeric Electrolytes,” Chemical Record 25 (2025): e202500010. + + + X. Zhu, L. Tang, J. Wu, J. Gao, and Z. Yuan, “Research progress on three‐dimensional zinc anodes in aqueous zinc‐ion batteries,” China Powder Science and Technology 32 (2026): 44–52. + + + M. Mansha, A. Anam, S. Akram Khan, et al., “Recent Developments on Electroactive Organic Electrolytes for Non‐Aqueous Redox Flow Batteries: Current Status, Challenges, and Prospects,” Chemical Record 24 (2024): e202300233. + + + Y. Song, H. Li, Y. Kang, and S. Wang, “3D Zn‐Sn alloy design for stabilizing aqueous zinc⁃ ion battery anodes,” China Powder Science and Technology 32 (2026): 113–123. + + + Y. Guan, D. Su, Y. Zhang, et al., “Ligand Effect of PdRu on Pt‐Enriched Surface for Glucose Complete Electro‐Oxidation to Carbon Dioxide and Abiotic Direct Glucose Fuel Cells,” ChemSusChem 18 (2025): e202401108. + + + H. Hu, Y. Feng, Z. Wang, et al., “Orbital Engineering‐Activated Intrinsic Conduction Enables Ultra‐High‐Rate Performance Zinc Storage in Manganese Dioxide,” Energy & Environmental Science 19 (2026): 1603–1615. + + + Y. Chen and Y. Wang, “Applications of Artificial Intelligence in Lithium‐ion Batteries Research,” China Powder Science and Technology 32 (2026): 67–79. + + + +
+ + + 42223557 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1573-6792 + + 39 + 4 + + 2026 + Jun + 01 + + + Brain topography + Brain Topogr + + Dictionary Learning Methods for Brain Activity Mapping with MEG Data. + 63 + 10.1007/s10548-026-01205-7 + + A central goal in many brain studies is the identification of those brain regions that are activated during an observation window that may correspond to a motor task, a stimulus, or simply a resting state. While functional MRI is currently the most commonly employed modality for such task, methods based on the electromagnetic activity of the brain are valuable alternatives because of their excellent time resolution and of the fact that the measured signals are directly related to brain activation and not to a secondary effect such as the hemodynamic response. In this work we focus on the MEG modality, investigating the performance of a recently proposed Bayesian dictionary learning (BDL) algorithm for brain region identification. The partitioning of the source space into the 148 regions of interest (ROI) corresponding to parcellation of the Destrieux atlas provides a natural determination of the subdictionaries necessary for the BDL algorithm. We design a simulation protocol where a small randomly selected patch in each ROI is activated, the MEG signal is computed and the inverse problem of active brain region identification is solved using the BDL algorithm. The BDL algorithm consists of two phases, the first one comprising dictionary compression and Bayesian compression error analysis, and the second one performing dictionary coding with a deflated dictionary built on the output of the first phase, both steps relying on Bayesian sparsity promoting computations. For assessing the performance, we give a probabilistic interpretation of the confusion matrix, and consider different impurity measures for a multi-class classifier.Key words: Sparse coding, Bayesian approximation error, Matrix factorization, Impurity index, Bayesian hierarchical models. + © 2026. The Author(s). + + + + Calvetti + Daniela + D + + Case Western Reserve University, Department of Mathematics, Applied Mathematics, and Statistics, Cleveland, OH, USA. + + + + Somersalo + Erkki + E + + Case Western Reserve University, Department of Mathematics, Applied Mathematics, and Statistics, Cleveland, OH, USA. ejs49@case.edu. + + + + eng + + + 1951446 + Division of Mathematical Sciences + + + + + Journal Article + + + 2026 + 06 + 01 + +
+ + United States + Brain Topogr + 8903034 + 0896-0267 + + IM + + + Magnetoencephalography + methods + + + Humans + + + Brain Mapping + methods + + + Brain + physiology + + + Algorithms + + + Bayes Theorem + + + Machine Learning + + + Computer Simulation + + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 11 + 10 + + + 2026 + 4 + 7 + + + 2026 + 6 + 1 + 11 + 5 + + + epublish + + 42223557 + 10.1007/s10548-026-01205-7 + 10.1007/s10548-026-01205-7 + + + + Aharon M, Elad M, Bruckstein A (2006) K-SVD: an algorithm for designing overcomplete dictionaries for sparse representation. IEEE Trans Signal Process 54:4311–4322 + + 10.1109/TSP.2006.881199 + + + + Baillet S, Mosher JC, Leahy RM (2001) Electromagnetic brain mapping. IEEE Signal Process Mag 18:14–30 + + 10.1109/79.962275 + + + + Bocchinfuso A, Calvetti D, Somersalo E (2024) Bayesian sparsity and class sparsity priors for dictionary learning and coding. J Comput Math Data Sci 11:100094 + + 10.1016/j.jcmds.2024.100094 + + + + Calvetti D, Pascarella A, Pitolli F, Somersalo E, Vantaggi B (2015) A hierarchical Krylov-Bayes iterative inverse solver for MEG with physiological preconditioning. Inverse Probl 31:125005 + + 10.1088/0266-5611/31/12/125005 + + + + Calvetti D, Pascarella A, Pitolli F, Somersalo E, Vantaggi B (2019) Brain activity mapping from MEG data via a hierarchical Bayesian algorithm with automatic depth weighting. Brain Topogr 32:363–393 + + 10.1007/s10548-018-0670-7 + 30121834 + + + + Calvetti D, Pascarella A, Pitolli F, Somersalo E, Vantaggi B (2023) The IAS-MEEG package: a flexible inverse source reconstruction platform for reconstruction and visualization of brain activity from M/EEG data. Brain Topogr 36:10–22 + + 10.1007/s10548-022-00926-9 + 36460892 + + + + Calvetti D, Pragliola M, Somersalo E (2020) Sparsity promoting hybrid solvers for hierarchical Bayesian inverse problems. SIAM J Sci Comput 42:A3761–A3784 + + 10.1137/20M1326246 + + + + Calvetti D, Pragliola M, Somersalo E, Strang A (2020) Sparse reconstructions from few noisy data: analysis of hierarchical Bayesian models with generalized gamma hyperpriors. Inverse Probl 36:025010 + + 10.1088/1361-6420/ab4d92 + + + + Calvetti D, Somersalo E (2023) Bayesian Scientific Computing, vol 215. Springer Nature + + + Calvetti D, Somersalo E (2025) Distributed Tikhonov regularization for ill-posed inverse problems from a Bayesian perspective. Comput Optim Appl. https://doi.org/10.1007/s10589-025-00675-y + + 10.1007/s10589-025-00675-y + + + + Calvetti D, Somersalo E (2025) Subspace splitting fast sampling from Gaussian posterior distributions of linear inverse problems, SIAM/ASA Journal on Uncertainty Quantification 14: 111-141 https://doi.org/10.1137/25M1744605 + + + Calvetti D, Somersalo E, Strang A (2019) Hierachical Bayesian models and sparsity: [Formula: see text]-magic. Inverse Problems 35:035003 + + 10.1088/1361-6420/aaf5ab + + + + Desikan RS, Ségonne F, Fischl B, Quinn BT, Dickerson BC, Blacker D, Buckner RL, Dale AM, Maguire RP, Hyman BT et al (2006) An automated labeling system for subdividing the human cerebral cortex on mri scans into gyral based regions of interest. Neuroimage 31:968–980 + + 10.1016/j.neuroimage.2006.01.021 + 16530430 + + + + Destrieux C, Fischl B, Dale A, Halgren E (2010) Automatic parcellation of human cortical gyri and sulci using standard anatomical nomenclature. Neuroimage 53:1–15 + + 10.1016/j.neuroimage.2010.06.010 + 20547229 + 2937159 + + + + Doucet G, Naveau M, Petit L, Delcroix N, Zago L, Crivello F, Jobard G, Tzourio-Mazoyer N, Mazoyer B, Mellet E et al (2011) Brain activity at rest: a multiscale hierarchical functional organization. J Neurophysiol 105:2753–2763 + + 10.1152/jn.00895.2010 + 21430278 + + + + Gillis N (2020) Nonnegative matrix factorization. SIAM + + 10.1137/1.9781611976410 + + + + Giri A, Hecker L, Mosher JC, Adler A, Pantazis D (2025) Localization of realistic spatial patches of complex source activity in meg and eeg. IEEE Trans Neural Syst Rehabil Eng 33:4241–4254 + + 10.1109/TNSRE.2025.3622587 + 41105545 + 12700762 + + + + Hämäläinen M, Hari R, Ilmoniemi RJ, Knuutila J, Lounasmaa OV (1993) Magnetoencephalography-theory, instrumentation, and applications to noninvasive studies of the working human brain. Rev Mod Phys 65:413 + + 10.1103/RevModPhys.65.413 + + + + Hilgetag CC, Goulas A (2020) ‘Hierarchy’ in the organization of brain networks. Philos Trans R Soc B 375:20190319 + + 10.1098/rstb.2019.0319 + + + + Ilmoniemi RJ, Sarvas J (2019) Brain signals: physics and mathematics of MEG and EEG. MIT Press + + 10.7551/mitpress/10745.001.0001 + + + + Kaipio J, Somersalo E (2006) Statistical and computational inverse problems, vol 160. Springer Science & Business Media + + + Kaipio J, Somersalo E (2007) Statistical inverse problems: discretization, model reduction and inverse crimes. J Comput Appl Math 198:493–504 + + 10.1016/j.cam.2005.09.027 + + + + Krishnaswamy P, Obregon-Henao G, Ahveninen J, Khan S, Babadi B, Iglesias JE, Hämäläinen MS, Purdon PL (2017) Sparsity enables estimation of both subcortical and cortical activity from MEG and EEG. Proc Natl Acad Sci 114:E10465–E10474 + + 10.1073/pnas.1705414114 + 29138310 + 5715738 + + + + Lancaster JL, Woldorff MG, Parsons LM, Liotti M, Freitas CS, Rainey L, Kochunov PV, Nickerson D, Mikiten SA, Fox PT (2000) Automated Talairach atlas labels for functional brain mapping. Hum Brain Mapp 10:120–131 + + 10.1002/1097-0193(200007)10:3<120::AID-HBM30>3.0.CO;2-8 + 10912591 + 6871915 + + + + Lim M, Ales JM, Cottereau BR, Hastie T, Norcia AM (2017) Sparse EEG/MEG source estimation via a group lasso. PloS one 12:e0176835 + + 10.1371/journal.pone.0176835 + 28604790 + 5467834 + + + + Logothetis NK (2008) What we can do and what we cannot do with fMRI. Nature 453:869–878 + + 10.1038/nature06976 + 18548064 + + + + Menon V (2023) 20 years of the default mode network: a review and synthesis. Neuron 111:2469–2487 + + 10.1016/j.neuron.2023.04.023 + 37167968 + 10524518 + + + + Niso G, Rogers C, Moreau JT, Chen L-Y, Madjar C, Das S, Bock E, Tadel F, Evans AC, Jolicoeur P et al (2016) OMEGA: the open MEG archive. Neuroimage 124:1182–1187 + + 10.1016/j.neuroimage.2015.04.028 + 25896932 + + + + Pascarella A, Pitolli F (2019) An inversion method based on random sampling for real-time MEG neuroimaging. Commun Appl Ind Math 10:25–34 + + + Raichle ME (2009) A brief history of human brain mapping. Trends Neurosci 32:118–126 + + 10.1016/j.tins.2008.11.001 + 19110322 + + + + Raichle ME (2015) The brain’s default mode network. Annu Rev Neurosci 38:433–447 + + 10.1146/annurev-neuro-071013-014030 + 25938726 + + + + Salehi M, Greene AS, Karbasi A, Shen X, Scheinost D, Constable RT (2020) There is no single functional atlas even for a single individual: functional parcel definitions change with task. Neuroimage 208:116366 + + 10.1016/j.neuroimage.2019.116366 + 31740342 + + + + Tadel F, Baillet S, Mosher JC, Pantazis D, Leahy RM (2011) Brainstorm: a user-friendly application for MEG/EEG analysis. Comput Intell Neurosci 2011:879716 + + 10.1155/2011/879716 + 21584256 + 3090754 + + + + Uutela K, Hämäläinen M, Somersalo E (1999) Visualization of magnetoencephalographic data using minimum current estimates. Neuroimage 10:173–180 + + 10.1006/nimg.1999.0454 + 10417249 + + + + Wolters CH, Grasedyck L, Hackbusch W (2004) Efficient computation of lead field bases and influence matrix for the FEM-based EEG and MEG inverse problem. Inverse Probl 20:1099 + + 10.1088/0266-5611/20/4/007 + + + + Yuan M, Lin Y (2006) Model selection and estimation in regression with grouped variables. J R Stat Soc B Stat Methodol 68:49–67 + + 10.1111/j.1467-9868.2005.00532.x + + + + +
+ + + 42223532 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1573-4951 + + 40 + 1 + + 2026 + Jun + 01 + + + Journal of computer-aided molecular design + J Comput Aided Mol Des + + Reproducibility, validation, and failure modes across classical and AI-driven molecular docking. + 137 + 10.1007/s10822-026-00849-8 + + Molecular docking is indispensable across computer‑aided discovery. However, its conclusions often hinge more on modeling choices than on software brand or nominal score. In this review, we argue that docking should be treated explicitly as conditional modeling whose interpretability depends on structural provenance, ligand‑state definition, search‑space design, and validation under deployment‑relevant conditions. This framework is intended as a practical reference for evaluating docking rigor across both academic and applied workflows. We highlight recurrent failure modes, cross‑target score comparisons under non‑comparable states, over‑read scores as affinities, under‑modeled solvation/flexibility, and uncritical use of predicted structures, and show how AI both exacerbates and mitigates these risks. We then propose best practices for modern validation (self‑docking as necessary but insufficient; cross‑docking, decoys, apo/predicted structures, and out‑of‑distribution tests as essential complements) and offer a concise FAIR reporting checklist enabling reuse and audit. Looking forward, we contend that the most valuable advances are those that improve deployment‑relevant reliability, pose plausibility, enrich screening, and enhance robustness across receptor uncertainty, rather than tool novelty alone. This review reframes docking success from "obtaining a pose and a score" to earning confidence through transparent workflows and evaluation aligned with real use. In this context, the term "AI-driven" does not imply replacing physics-based docking, but rather expanding the workflow landscape in which classical and machine learning approaches coexist. This review, therefore, treats docking as a unified decision framework spanning both paradigms, with emphasis on how validation, generalization, and reproducibility requirements evolve in AI-assisted workflows. + © 2026. The Author(s). + + + + Kittelson + Katiana Simões + KS + 0000-0002-8082-4469 + + Department of Pharmaceutical Sciences, College of Health and Human Sciences, North Dakota State University, Fargo, ND, USA. + + + + Martins + Allana C F + ACF + 0000-0001-5647-2187 + + Department of Pharmaceutical Sciences, College of Health and Human Sciences, North Dakota State University, Fargo, ND, USA. + + + + Santos + Raquel Possemozer + RP + 0009-0005-1807-175X + + Department of Pharmaceutical Sciences, College of Health and Human Sciences, North Dakota State University, Fargo, ND, USA. + + + + Celante + Gizele + G + 0000-0003-2654-4332 + + Department of Pharmaceutical Sciences, College of Health and Human Sciences, North Dakota State University, Fargo, ND, USA. gizele.celante@ndsu.edu. + + + + da Silva Gomes + Roberto + R + 0000-0002-8075-9716 + + Department of Pharmaceutical Sciences, College of Health and Human Sciences, North Dakota State University, Fargo, ND, USA. roberto.gomes@ndsu.edu. + + + + eng + + + 3P20GM109024 + GM + NIGMS NIH HHS + United States + + + 3P20GM109024 + GM + NIGMS NIH HHS + United States + + + 3P20GM109024 + GM + NIGMS NIH HHS + United States + + + + Journal Article + Review + + + 2026 + 06 + 01 + +
+ + Netherlands + J Comput Aided Mol Des + 8710425 + 0920-654X + + + + 0 + Ligands + + + 0 + Proteins + + + IM + + + Molecular Docking Simulation + methods + + + Ligands + + + Reproducibility of Results + + + Software + + + Artificial Intelligence + + + Proteins + chemistry + + + Humans + + + Protein Binding + + + Computer-Aided Design + + + + Computer-aided drug design + Docking validation + Machine learning + Molecular docking + Protein-ligand interactions + Reproducibility benchmarking + Scoring functions + Virtual screening + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 25 + + + 2026 + 5 + 20 + + + 2026 + 6 + 1 + 11 + 5 + + + epublish + + 42223532 + 10.1007/s10822-026-00849-8 + 10.1007/s10822-026-00849-8 + + + + Zhou G, Rusnac DV, Park H, Canzani D, Nguyen HM, Stewart L, Bush MF, Nguyen PT, Wulff H, Yarov-Yarovoy V, Zheng N, DiMaio F (2024) An artificial intelligence accelerated virtual screening platform for drug discovery. Nat Commun 15(1):7761. https://doi.org/10.1038/s41467-024-52061-7 + + 10.1038/s41467-024-52061-7 + 39237523 + 11377542 + + + + Varsou DD, Kolokathis PD, Antoniou M, Sidiropoulos NK, Tsoumanis A, Papadiamantis AG, Melagraki G, Lynch I, Afantitis A (2024) Silico assessment of nanoparticle toxicity powered by the enalos cloud platform: integrating automated machine learning and synthetic data for enhanced nanosafety evaluation. Comput Struct Biotechnol J 25:47–60. https://doi.org/10.1016/J.CSBJ.2024.03.020 + + 10.1016/J.CSBJ.2024.03.020 + 38646468 + 11026727 + + + + Wei Z, Xu T, Strickland J, Zhang L, Fang Y, Tao D, Simeonov A, Huang R, Kleinstreuer NC, Xia M (2024) Use of in vitro methods combined with in silico analysis to identify potential skin sensitizers in the Tox21 10K compound library. Front Toxicol 6. https://doi.org/10.3389/FTOX.2024.1321857 + + + Ghersi D, Sanchez R (2009) Improving accuracy and efficiency of blind protein-ligand docking by focusing on predicted binding sites. Proteins Struct Funct Bioinform 74(2):417–424. https://doi.org/10.1002/prot.22154 + + 10.1002/prot.22154 + + + + Eberhardt J, Santos-Martins D, Tillack AF, Forli S, AutoDock (2021) Vina 1.2.0: new docking methods, expanded force field, and Python bindings. J Chem Inf Model 61(8):3891–3898. https://doi.org/10.1021/ACS.JCIM.1C00203 + + 10.1021/ACS.JCIM.1C00203 + 34278794 + 10683950 + + + + Xu M, Shen C, Yang J, Wang Q, Huang N (2022) Systematic investigation of docking failures in large-scale structure-based virtual screening. ACS Omega 7(43):39417–39428. https://doi.org/10.1021/acsomega.2c05826 + + 10.1021/acsomega.2c05826 + 36340123 + 9632257 + + + + Agu PC, Afiukwa CA, Orji OU, Ezeh EM, Ofoke IH, Ogbu CO, Ugwuja EI, Aja PM (2023) Molecular docking as a tool for the discovery of molecular targets of nutraceuticals in diseases management. Sci Rep 13(1):13398. https://doi.org/10.1038/s41598-023-40160-2 + + 10.1038/s41598-023-40160-2 + 37592012 + 10435576 + + + + Shamsian S, Sokouti B, Dastmalchi S (2023) Benchmarking different docking protocols for predicting the binding poses of ligands complexed with cyclooxygenase enzymes and screening chemical libraries. Bioimpacts 14(2):29955. https://doi.org/10.34172/BI.2023.29955 + + 10.34172/BI.2023.29955 + 38505677 + 10945300 + + + + Pagadala NS, Syed K, Tuszynski J (2017) Software for molecular docking: a review. Biophys Rev 9(2):91–102. https://doi.org/10.1007/s12551-016-0247-1 + + 10.1007/s12551-016-0247-1 + 28510083 + 5425816 + + + + Mohanty M, Mohanty PS (2023) Molecular docking in organic, inorganic, and hybrid systems: a tutorial review. Monatshefte für Chemie - Chem Monthly 154(7):683–707. https://doi.org/10.1007/s00706-023-03076-1 + + 10.1007/s00706-023-03076-1 + + + + Paggi JM, Pandit A, Dror RO (2024) The art and science of molecular docking. Annu Rev Biochem 93(1):389–410. https://doi.org/10.1146/annurev-biochem-030222-120000 + + 10.1146/annurev-biochem-030222-120000 + 38594926 + 13198409 + + + + Chatterjee A, Walters R, Shafi Z, Ahmed OS, Sebek M, Gysi D, Yu R, Eliassi-Rad T, Barabási AL, Menichetti G (2023) Improving the generalizability of protein-ligand binding predictions with AI-Bind. Nat Commun,14 (1), 1989. https://doi.org/10.1038/s41467-023-37572-z + + 10.1038/s41467-023-37572-z + 37031187 + 10082765 + + + + Huang X, Jin Y, Lian J (2025) Integrated network pharmacology, molecular docking and experimental validation to explore the mechanism of Dingji Fumai decoction against LQTS. Sci Rep 15(1):23037. https://doi.org/10.1038/s41598-025-06515-7 + + 10.1038/s41598-025-06515-7 + 40596125 + 12215522 + + + + Zhang C, Liu J, Sui Y, Liu S, Yang M (2023) In silico drug repurposing carvedilol and its metabolites against SARS-CoV-2 infection using molecular docking and molecular dynamic simulation approaches. Sci Rep 13(1):21404. https://doi.org/10.1038/s41598-023-48398-6 + + 10.1038/s41598-023-48398-6 + 38049492 + 10696093 + + + + Burley SK, Berman HM, Bhikadiya C, Bi C, Chen L, Costanzo LD, Christie C, Duarte JM, Dutta S, Feng Z, Ghosh S, Goodsell DS, Green RK, Guranovic V, Guzenko D, Hudson BP, Liang Y, Lowe R, Peisach E, Periskova I, Randle C, Rose A, Sekharan M, Shao C, Tao Y-P, Valasatava Y, Voigt M, Westbrook J, Young J, Zardecki C, Zhuravleva M, Kurisu G, Nakamura H, Kengaku Y, Cho H, Sato J, Kim JY, Ikegawa Y, Nakagawa A, Yamashita R, Kudou T, Bekker G-J, Suzuki H, Iwata T, Yokochi M, Kobayashi N, Fujiwara T, Velankar S, Kleywegt GJ, Anyango S, Armstrong DR, Berrisford JM, Conroy MJ, Dana JM, Deshpande M, Gane P, Gáborová R, Gupta D, Gutmanas A, Koča J, Mak L, Mir S, Mukhopadhyay A, Nadzirin N, Nair S, Patwardhan A, Paysan-Lafosse T, Pravda L, Salih O, Sehnal D, Varadi M, Vařeková R, Markley JL, Hoch JC, Romero PR, Baskaran K, Maziuk D, Ulrich EL, Wedell JR, Yao H, Livny M, Ioannidis YE (2019) Protein data bank: the single global archive for 3D macromolecular structure data. Nucleic Acids Res 47(D1):D520–D528. https://doi.org/10.1093/nar/gky949 + + 10.1093/nar/gky949 + + + + Abramson J, Adler J, Dunger J, Evans R, Green T, Pritzel A, Ronneberger O, Willmore L, Ballard AJ, Bambrick J, Bodenstein SW, Evans DA, Hung C-C, O’Neill M, Reiman D, Tunyasuvunakool K, Wu Z, Žemgulytė A, Arvaniti E, Beattie C, Bertolli O, Bridgland A, Cherepanov A, Congreve M, Cowen-Rivers AI, Cowie A, Figurnov M, Fuchs FB, Gladman H, Jain R, Khan YA, Low CMR, Perlin K, Potapenko A, Savy P, Singh S, Stecula A, Thillaisundaram A, Tong C, Yakneen S, Zhong ED, Zielinski M, Žídek A, Bapst V, Kohli P, Jaderberg M, Hassabis D, Jumper JM (2024) Accurate structure prediction of biomolecular interactions with AlphaFold 3. Nature 630(8016):493–500. https://doi.org/10.1038/s41586-024-07487-w + + 10.1038/s41586-024-07487-w + 38718835 + 11168924 + + + + Mazhibiyeva A, Pham TT, Pats K, Lukac M, Molnár F (2025) Bridging prediction and reality: comprehensive analysis of experimental and AlphaFold 2 full-length nuclear receptor structures. Comput Struct Biotechnol J 27:1998–2013. https://doi.org/10.1016/J.CSBJ.2025.05.010 + + 10.1016/J.CSBJ.2025.05.010 + 40496892 + 12149446 + + + + Dang K, Lan J, Wang Y, Pan D, Du L, Suo S, Dang Y, Gao X (2025) Screening and evaluation of novel DPP-IV inhibitory peptides in goat milk based on molecular docking and molecular dynamics simulation. Food Chem X 25. https://doi.org/10.1016/J.FOCHX.2025.102217 + + + Liu H, Hu B, Chen P, Wang X, Wang H, Wang S, Wang J, Lin B, Cheng M, Docking Score ML (2024) Target-specific machine learning models improving docking-based virtual screening in 155 targets. J Chem Inf Model 64(14):5413–5426. https://doi.org/10.1021/ACS.JCIM.4C00072 + + 10.1021/ACS.JCIM.4C00072 + 38958413 + + + + Wang H, Gao H, Zhang Z, Zhang X, Chen X, Wu K, Li J, Qi Y, Li Y, Hao Z, Duan Z, Wang RCOMET (2025) A machine-learning framework integrating ligand-based and target-based algorithms for elucidating drug targets. J Med Chem 68(24):26466–26477. https://doi.org/10.1021/ACS.JMEDCHEM.5C02652/SUPPL_FILE/JM5C02652_SI_004.CSV + + 10.1021/ACS.JMEDCHEM.5C02652/SUPPL_FILE/JM5C02652_SI_004.CSV + 41355247 + + + + Morehead A, Giri N, Liu J, Neupane P, Cheng J Assessing the potential of deep learning for protein–ligand docking. Nat Mach Intell (2025) 2025, 1–10. https://doi.org/10.1038/s42256-025-01160-1 + + 10.1038/s42256-025-01160-1 + + + + Wang J, Wolf RM, Caldwell JW, Kollman PA, Case DA (2004) Development and testing of a general amber force field. J Comput Chem 25(9):1157–1174. https://doi.org/10.1002/JCC.20035 + + 10.1002/JCC.20035 + 15116359 + + + + Halgren TA (1996) Merck molecular force field. III. Molecular geometries and vibrational frequencies for MMFF94. J Comput Chem 17(5–6):553–586. + + 10.1002/(SICI)1096-987X(199604)17:5/6<553::AID-JCC3>3.0.CO;2-T + + + + Jakalian A, Jack DB, Bayly CI, Fast (2002) Efficient generation of high-quality atomic charges. AM1-BCC Model: II. Parameterization and validation. J Comput Chem 23(16):1623–1641. https://doi.org/10.1002/JCC.10128 + + 10.1002/JCC.10128 + 12395429 + + + + Park H, Zhou G, Baek M, Baker D, Dimaio F (2021) Force field optimization guided by small molecule crystal lattice data enables consistent sub-angstrom protein–ligand docking. J Chem Theory Comput 17(3):2000–2010. https://doi.org/10.1021/ACS.JCTC.0C01184 + + 10.1021/ACS.JCTC.0C01184 + 33577321 + 8218654 + + + + Allen WJ, Balius TE, Mukherjee S, Brozell SR, Moustakas DT, Lang PT, Case DA, Kuntz ID, Rizzo RC (2015) DOCK 6: impact of new features and current docking performance. J Comput Chem 36(15):1132–1156. https://doi.org/10.1002/jcc.23905 + + 10.1002/jcc.23905 + 25914306 + 4469538 + + + + Alberca LN, Prada Gori DN, Fallico MJ, Fassio AV, Talevi A, Bellera CL (2025) LIDEB’s useful decoys (LUDe): a freely available decoy-generation tool. Benchmarking and Scope. Artif Intell Life Sci 7:100129. https://doi.org/10.1016/J.AILSCI.2025.100129 + + 10.1016/J.AILSCI.2025.100129 + + + + Stein RM, Yang Y, Balius TE, O’Meara MJ, Lyu J, Young J, Tang K, Shoichet BK, Irwin JJ (2021) Property-unmatched decoys in docking benchmarks. J Chem Inf Model 61(2):699. https://doi.org/10.1021/ACS.JCIM.0C00598 + + 10.1021/ACS.JCIM.0C00598 + 33494610 + 7913603 + + + + Trott O, Olson AJ, AutoDock, Vina (2010) Improving the speed and accuracy of docking with a new scoring function, efficient optimization, and multithreading. J Comput Chem 31(2):455–461. https://doi.org/10.1002/jcc.21334 + + 10.1002/jcc.21334 + 19499576 + 3041641 + + + + Buccheri R, Rescifina A (2025) High-Throughput, high-quality: benchmarking gnina and autodock vina for precision virtual screening workflow. Molecules 2025 30(16). https://doi.org/10.3390/MOLECULES30163361 + + + Kurczab R (2024) Halogen bonding hot spots as a constraint in virtual screening: a case study of 5-HT7R. J Med Chem 67(16):14007–14015. https://doi.org/10.1021/ACS.JMEDCHEM.4C00816/SUPPL_FILE/JM4C00816_SI_003.CSV + + 10.1021/ACS.JMEDCHEM.4C00816/SUPPL_FILE/JM4C00816_SI_003.CSV + 39082690 + + + + Schaller DA, Christ CD, Chodera JD, Volkamer A (2024) Benchmarking cross-docking strategies in kinase drug discovery. J Chem Inf Model 64(23):8848–8858. https://doi.org/10.1021/ACS.JCIM.4C00905/SUPPL_FILE/CI4C00905_SI_002.XLSX + + 10.1021/ACS.JCIM.4C00905/SUPPL_FILE/CI4C00905_SI_002.XLSX + 39558632 + 11661510 + + + + Ercan S, Çınar EA, Molecular Docking (2021) Study of potential inhibitors and repurposed drugs against SARS-CoV-2 main protease enzyme. J Indian Chem Soc 98(3):100041. https://doi.org/10.1016/j.jics.2021.100041 + + 10.1016/j.jics.2021.100041 + + + + Agrawal P, Singh H, Srivastava HK, Singh S, Kishore G, Raghava GPS (2019) Benchmarking of different molecular docking methods for protein-peptide docking. BMC Bioinformatics 19(Suppl 13):426. https://doi.org/10.1186/s12859-018-2449-y + + 10.1186/s12859-018-2449-y + 30717654 + 7394329 + + + + Hevener KE, Zhao W, Ball DM, Babaoglu K, Qi J, White SW, Lee RE (2009) Validation of molecular docking programs for virtual screening against dihydropteroate synthase. J Chem Inf Model 49(2):444–460. https://doi.org/10.1021/ci800293n + + 10.1021/ci800293n + 19434845 + 2788795 + + + + Zhang J, Li H, Zhao X, Wu Q, Huang S-Y (2022) Holo protein conformation generation from apo structures by ligand binding site refinement. J Chem Inf Model 62(22):5806–5820. https://doi.org/10.1021/acs.jcim.2c00895 + + 10.1021/acs.jcim.2c00895 + 36342197 + + + + Dequeker C, Mohseni Behbahani Y, David L, Laine E, Carbone A (2022) From complete cross-docking to partners identification and binding sites predictions. PLoS Comput Biol 18(1):e1009825. https://doi.org/10.1371/journal.pcbi.1009825 + + 10.1371/journal.pcbi.1009825 + 35089918 + 8827487 + + + + Mysinger MM, Carchia M, Irwin JJ, Shoichet BK (2012) Directory of useful decoys, enhanced (DUD-E): better ligands and decoys for better benchmarking. J Med Chem 55(14):6582–6594. https://doi.org/10.1021/jm300687e + + 10.1021/jm300687e + 22716043 + 3405771 + + + + Graves AP, Brenk R, Shoichet BK (2005) Decoys for docking. J Med Chem 48(11):3714–3728. https://doi.org/10.1021/jm0491187 + + 10.1021/jm0491187 + 15916423 + 1557646 + + + + Xiao Y, Woods RJ (2023) Protein–Ligand CH – π Interactions: structural informatics, energy function development, and docking implementation. J Chem Theory Comput 19(16):5503–5515. https://doi.org/10.1021/acs.jctc.3c00300 + + 10.1021/acs.jctc.3c00300 + 37493980 + 10448718 + + + + Wani TA, Zargar S, Hussain A, Spectroscopic (2022) Thermodynamic and molecular docking studies on molecular mechanisms of drug binding to proteins. Molecules 27(23):8405. https://doi.org/10.3390/molecules27238405 + + 10.3390/molecules27238405 + 36500497 + 9738057 + + + + Elokely KM, Doerksen RJ (2013) Docking challenge: protein sampling and molecular docking performance. J Chem Inf Model 53(8):1934–1945. https://doi.org/10.1021/ci400040d + + 10.1021/ci400040d + 23530568 + 3755091 + + + + Masocha W, Khedr MA (2025) Correlation between in silico docking/simulation results and in vitro MAGL inhibition potency of selected triterpenes. Curr Issues Mol Biol 47(9):2025–2047. https://doi.org/10.3390/CIMB47090691 + + 10.3390/CIMB47090691 + + + + Dallakyan S, Olson AJ (2015) Small-molecule library screening by docking with PyRx. Methods Mol Biol 1263:243–250. https://doi.org/10.1007/978-1-4939-2269-7_19 + + 10.1007/978-1-4939-2269-7_19 + 25618350 + + + + Lemkul JA (2024) Introductory tutorials for simulating protein dynamics with GROMACS. J Phys Chem B 128:9435. https://doi.org/10.1021/ACS.JPCB.4C04901 + + 10.1021/ACS.JPCB.4C04901 + + + + Case DA, Cerutti DS, Cruzeiro VWD, Darden TA, Duke RE, Ghazimirsaeed M, Giambaşu GM, Giese TJ, Götz AW, Harris JA, Kasavajhala K, Lee TS, Li Z, Lin C, Liu J, Miao Y, Salomon-Ferrrer R, Shen J, Snyder R, Swails J, Walker RC, Wang J, Wu X, Zeng J, Cheatham TE, Roe DR, Roitberg A, Simmerling C, York DM, Nagan MC, Merz KM (2025) Recent developments in amber biomolecular simulations. J Chem Inf Model 65(15):7835–7843. https://doi.org/10.1021/ACS.JCIM.5C01063 + + 10.1021/ACS.JCIM.5C01063 + 40728386 + 12344759 + + + + King E, Aitchison E, Li H, Luo R (2021) Recent developments in free energy calculations for drug discovery. Front Mol Biosci 8. https://doi.org/10.3389/fmolb.2021.712085 + + + Ross GA, Lu C, Scarabelli G, Albanese SK, Houang E, Abel R, Harder ED, Wang L (2023) The maximal and current accuracy of rigorous protein-ligand binding free energy calculations. Commun Chem 6(1):222. https://doi.org/10.1038/s42004-023-01019-9 + + 10.1038/s42004-023-01019-9 + 37838760 + 10576784 + + + + Baek M, DiMaio F, Anishchenko I, Dauparas J, Ovchinnikov S, Lee GR, Wang J, Cong Q, Kinch LN, Dustin Schaeffer R, Millán C, Park H, Adams C, Glassman CR, DeGiovanni A, Pereira JH, Rodrigues AV, Van Dijk AA, Ebrecht AC, Opperman DJ, Sagmeister T, Buhlheller C, Pavkov-Keller T, Rathinaswamy MK, Dalwadi U, Yip CK, Burke JE, Christopher Garcia K, Grishin NV, Adams PD, Read RJ, Baker D (2021) Accurate prediction of protein structures and interactions using a three-track neural network. Science 373(6557):871–876. https://doi.org/10.1126/SCIENCE.ABJ8754 + + 10.1126/SCIENCE.ABJ8754 + 34282049 + 7612213 + + + + Harris BJ, Nguyen PT, Zhou G, Wulff H, DiMaio F, Yarov-Yarovoy V (2024) Toward high-resolution modeling of small molecule–ion channel interactions. Front Pharmacol. 15 https://doi.org/10.3389/fphar.2024.1411428 + + + Zhang X, Shen C, Guo X, Wang Z, Weng G, Ye Q, Wang G, He Q, Yang B, Cao D, Hou T (2021) ASFP (Artificial intelligence based scoring function platform): a web server for the development of customized scoring functions. J Cheminform 13(1):6. https://doi.org/10.1186/S13321-021-00486-3 + + 10.1186/S13321-021-00486-3 + 33541407 + 7860246 + + + + Krivák R, Hoksza D (2018) P2Rank: machine learning based tool for rapid and accurate prediction of ligand binding sites from protein structure. J Cheminform 10(1):39. https://doi.org/10.1186/S13321-018-0285-8 + + 10.1186/S13321-018-0285-8 + 30109435 + 6091426 + + + + Shen C, Du H, Zhang X, Gu S, Cai H, Kang Y, Pan P, Zhao Q, Hou T (2025) CarsiDock-Cov: A deep learning-guided approach for automated covalent docking and screening. Acta Pharm Sin B 15(11):5758–5771. https://doi.org/10.1016/J.APSB.2025.07.043 + + 10.1016/J.APSB.2025.07.043 + 41311379 + 12647997 + + + + da Silva GM, Yang J, Leang B, Huang J, Weinreich DM, Rubenstein BM (2022) Covalent docking and molecular dynamics simulations reveal the specificity-shifting mutations Ala237Arg and Ala237Lys in TEM Beta-Lactamase. PLoS Comput Biol 18(6). https://doi.org/10.1371/JOURNAL.PCBI.1009944 + + + Scarpino A, Ferenczy GG, Keserű GM (2018) Comparative evaluation of covalent docking tools. J Chem Inf Model 58(7):1441–1458. https://doi.org/10.1021/acs.jcim.8b00228 + + 10.1021/acs.jcim.8b00228 + 29890081 + + + + Blaschke T, Arús-Pous J, Chen H, Margreitter C, Tyrchan C, Engkvist O, Papadopoulos K, Patronov A (2020) REINVENT 2.0: an AI tool for de novo drug design. J Chem Inf Model 60(12):5918–5922. https://doi.org/10.1021/ACS.JCIM.0C00915 + + 10.1021/ACS.JCIM.0C00915 + 33118816 + + + + Özçelik R, Brinkmann H, Criscuolo E, Grisoni F (2025) Generative deep learning for de novo drug designa chemical space odyssey. J Chem Inf Model 65(14):7352–7372. https://doi.org/10.1021/ACS.JCIM.5C00641 + + 10.1021/ACS.JCIM.5C00641 + 40632942 + 12308806 + + + + Jamal QMS, Khan MI, Alharbi AH, Ahmad V, Yadav BS (2023) Identification of natural compounds of the apple as inhibitors against cholinesterase for the treatment of Alzheimer’s disease: an in silico molecular docking simulation and ADMET study. Nutrients 15(7):1579. https://doi.org/10.3390/NU15071579/S1 + + 10.3390/NU15071579/S1 + 37049419 + 10097405 + + + + Luo L, Zhong A, Wang Q, Zheng T, Structure-Based Pharmacophore Modeling V, Screening (2021) Molecular docking, ADMET, and molecular dynamics (MD) simulation of potential inhibitors of PD-L1 from the library of marine natural products. Mar Drugs 20(1):29. https://doi.org/10.3390/md20010029 + + 10.3390/md20010029 + 35049884 + 8777599 + + + + Melancon K, Pliushcheuskaya P, Meiler J, Künze G (2024) Targeting Ion channels with ultra-large library screening for hit discovery. Front Mol Neurosci 16. https://doi.org/10.3389/fnmol.2023.1336004 + + + Yang C, Yang Z, Tong K, Wang J, Yang W, Yu R, Jiang F, Ji Y (2022) Homology modeling and molecular docking simulation of martentoxin as a specific inhibitor of the BK channel. Ann Transl Med 10(2):71–71. https://doi.org/10.21037/atm-21-6967 + + 10.21037/atm-21-6967 + 35282126 + 8848368 + + + + Minibaeva G, Ivanova A, Polishchuk P, EasyDock (2023) Customizable and scalable docking tool. J Cheminform 15(1):102. https://doi.org/10.1186/s13321-023-00772-2 + + 10.1186/s13321-023-00772-2 + 37915072 + 10619229 + + + + El-Sayed AF, Aboulthana WM, Sherief MA, El-Bassyouni GT, Mousa SM, Synthesis (2024) Structural, molecular docking, and in vitro biological activities of Cu-doped ZnO nanomaterials. Sci Rep 14(1):9027. https://doi.org/10.1038/s41598-024-59088-2 + + 10.1038/s41598-024-59088-2 + 38641640 + 11031592 + + + + Chen W, He H, Wang J, Wang J, Chang C-EA (2023) Uncovering water effects in protein-ligand recognition: importance in the second hydration shell and binding kinetics. Phys Chem Chem Phys 25(3):2098–2109. https://doi.org/10.1039/d2cp04584b + + 10.1039/d2cp04584b + 36562309 + 9970846 + + + + Chen T, Shu X, Zhou H, Beckford FA, Misir M (2023) Algorithm selection for protein–ligand docking: strategies and analysis on ACE. Sci Rep 13(1):8219. https://doi.org/10.1038/s41598-023-35132-5 + + 10.1038/s41598-023-35132-5 + 37217655 + 10201035 + + + + Li Y, Zhan R, Rao J, Liu M, Sang P, Zeng X, Zheng M, Li X, Yang L (2026) Structure-informed machine learning for drug discovery: a task-centric perspective. Brief Bioinform 27(1). https://doi.org/10.1093/bib/bbag081 + + + Wang Y, Jiao Q, Wang J, Cai X, Zhao W, Cui X (2023) Prediction of protein-ligand binding affinity with deep learning. Comput Struct Biotechnol J 21:5796–5806. https://doi.org/10.1016/J.CSBJ.2023.11.009 + + 10.1016/J.CSBJ.2023.11.009 + 38213884 + 10782002 + + + + Bayarri G, Andrio P, Gelpí JL, Hospital A, Orozco M (2024) Using interactive jupyter notebooks and bioconda for FAIR and reproducible biomolecular simulation workflows. PLoS Comput Biol 20(6):e1012173. https://doi.org/10.1371/JOURNAL.PCBI.1012173 + + 10.1371/JOURNAL.PCBI.1012173 + 38900779 + 11189206 + + + + Vitalis A, Winkler S, Zhang Y, Widmer J, Caflisch A (2025) A FAIR-compliant management solution for molecular simulation trajectories. J Chem Inf Model 65(5):2443–2455. https://doi.org/10.1021/ACS.JCIM.4C01301 + + 10.1021/ACS.JCIM.4C01301 + 39977657 + 11898051 + + + + Wilkinson MD, Dumontier M, Sansone S-A, Bonino da Silva Santos LO, Prieto M, Batista D, McQuilton P, Kuhn T, Rocca-Serra P, Crosas M, Schultes E (2019) Evaluating FAIR maturity through a scalable, automated, community-governed framework. Sci Data 6(1):174. https://doi.org/10.1038/s41597-019-0184-5 + + 10.1038/s41597-019-0184-5 + 31541130 + 6754447 + + + + +
+ + + 42223509 + + 2026 + 06 + 01 + +
+ + 1741-0134 + + + 2026 + Jun + 01 + + + Protein engineering, design & selection : PEDS + Protein Eng Des Sel + + Examining Selection Dynamics and Limitations in Multi-round Protein Selection of High Diversity Libraries. + gzag012 + 10.1093/protein/gzag012 + + Proteins and peptides underpin essential biological functions and technological applications, from targeting disease-relevant interactions to providing broad enzymatic activities. However, engineering molecules with desired properties remains difficult, owing to complex sequence-structure-function relationships and the lack of data on specific systems. Experimental selection strategies, including directed evolution, phage display, and mRNA display, address this challenge by leveraging high diversity libraries and iterative enrichment under defined selection pressures. This allows for the identification of candidates without requiring extensive prior knowledge, and can generate extensive datasets for use in machine learning. While many selection systems exist, comparisons across different selection approaches are hindered by the lack of a unifying analytical framework. Here, we developed a toolset of broadly applicable analyses for assessing selection dynamics in multi-round or multi-condition experiments, ranging from position level analysis of sequence properties to full sequence space mappings through protein language model embeddings. Performing analyses across different systems, we identify desirable traits in selection experiments including enrichment of distinct sequence patterns and correlation between enrichment and final desired functions. Notably, even under weak selection regimes with all sequences <1% frequency, functional sequences (e.g., 70nM IC50 binder to SARS-CoV-2 main protease) are still consistently enriched. We also find repeated selections of the same starting library can help differentiate selection effects of varying conditions (e.g., different delivery of metal ligand) from system noise. These findings, along with the toolset, can be used to guide experimental design, interpretation, and troubleshooting across protein and peptide discovery platforms. + © The Author(s) 2026. Published by Oxford University Press. + + + + Chen + John Z + JZ + 0000-0002-2628-5820 + + Research School of Chemistry, Australian National University, Canberra, Australia. + + + ARC Centre of Excellence in Synthetic Biology, Australia. + + + + Gall + Barnabas + B + + Research School of Chemistry, Australian National University, Canberra, Australia. + + + ARC Centre for Innovations in Peptide & Protein Science, Australia. + + + + Lu + Tommy Y + TY + + ARC Centre for Innovations in Peptide & Protein Science, Australia. + + + School of Chemistry, The University of Sydney, Sydney, Australia. + + + + Heslop + Isabella + I + + Research School of Chemistry, Australian National University, Canberra, Australia. + + + + Hesselson + Daniel + D + + Centenary Institute and Faculty of Medicine and Health, Charles Perkins Centre, The University of Sydney, Sydney, Australia. + + + + Nitsche + Christoph + C + + Research School of Chemistry, Australian National University, Canberra, Australia. + + + + Tham + Wai-Hong + WH + + The Walter and Eliza Hall Institute of Medical Research, Parkville, Australia. + + + Department of Medical Biology, The University of Melbourne, Melbourne, Australia. + + + + Payne + Richard J + RJ + + ARC Centre for Innovations in Peptide & Protein Science, Australia. + + + School of Chemistry, The University of Sydney, Sydney, Australia. + + + + Jackson + Colin J + CJ + 0000-0001-6150-3822 + + Research School of Chemistry, Australian National University, Canberra, Australia. + + + ARC Centre of Excellence in Synthetic Biology, Australia. + + + ARC Centre for Innovations in Peptide & Protein Science, Australia. + + + Research School of Biology, Australian National University, Canberra, Australia. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + England + Protein Eng Des Sel + 101186484 + 1741-0126 + + IM + + Computational pipeline + Deep sequencing + Protein engineering + Protein libraries + Selection + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 12 + 20 + + + 2026 + 4 + 24 + + + 2026 + 5 + 9 + + + 2026 + 6 + 1 + 11 + 4 + + + aheadofprint + + 42223509 + 10.1093/protein/gzag012 + 8699381 + + +
+ + + 42223485 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1433-0350 + + 42 + 1 + + 2026 + Jun + 01 + + + Child's nervous system : ChNS : official journal of the International Society for Pediatric Neurosurgery + Childs Nerv Syst + + The role of machine learning, deep learning, and MRI findings in the classification of pediatric posterior fossa tumors. + 237 + 10.1007/s00381-026-07316-7 + + Pediatric posterior fossa tumors represent a major subset of childhood central nervous system neoplasms; however, overlapping MRI features often hinder accurate non-invasive characterization. This study aimed to evaluate machine learning (ML) and deep learning (DL) models for classifying these tumors using MRI-derived radiomic features. + This retrospective study analyzed MRI data from 63 pediatric patients with confirmed posterior fossa tumors, including 21 medulloblastoma (MB), 20 pilocytic astrocytoma (PA), 11 ependymoma (EP), and 11 diffuse midline glioma (DMG) cases. T2-weighted imaging, diffusion-weighted imaging, and apparent diffusion coefficient sequences showing the best single-model performance were used to construct gradient boosting machine (GBM), decision tree (DT), and random forest (RF) models and their ensemble combinations. Model performance was evaluated using standard classification metrics. A ResNet101V2-based DL model was developed using multiple MRI sequences. ML models were validated using fivefold cross-validation, whereas the DL model was trained using a 67/33 train-test split with data augmentation. + The RF + GBM ensemble achieved the highest ML performance, with an overall accuracy of 78%, and showed the strongest classification for MB and PA, whereas EP and DMG remained difficult to distinguish. The DL model demonstrated high performance on T1-weighted imaging and contrast-enhanced T1-weighted imaging, achieving accuracies of 98% and 96%, respectively, but showed lower performance on diffusion-based sequences. + ML and DL approaches improve MRI-based classification of pediatric posterior fossa tumors; however, accurate differentiation of EP and DMG remains challenging. These findings support the potential of AI-driven methods as clinically relevant, non-invasive decision-support tools in pediatric neuro-oncology. + © 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature. + + + + Çapar + Emre + E + + Department of Radiology, School of Medicine, Erciyes University, Kayseri, Turkey. + + + + Karaman + Zehra Filiz + ZF + + Department of Radiology, School of Medicine, Erciyes University, Kayseri, Turkey. dr.fkaraman@gmail.com. + + + + Ünalan + Serhat + S + + Department of Biomedical Engineering, Yildiz Technical University, Istanbul, Turkey. + + + + Aytan + Miray + M + + Department of Biomedical Engineering, Yildiz Technical University, Istanbul, Turkey. + + + + Topkaraoğlu + Mehmet Kutalmış + MK + + Department of Biomedical Engineering, Yildiz Technical University, Istanbul, Turkey. + + + + Akkuş + Tekin + T + + Department of Biomedical Sciences and Engineering, Koc University, Istanbul, Turkey. + + + + Keserci + Ali + A + + Department of Biomedical Engineering, Erciyes University, Kayseri, Turkey. + + + + Coşkun + Abdulhakim + A + + Department of Radiology, School of Medicine, Erciyes University, Kayseri, Turkey. + + + + Keserci + Bilgin + B + + Department of Biomedical Engineering, Yildiz Technical University, Istanbul, Turkey. + + + Department of Radiology, School of Medical Sciences, Universiti Sains Malaysia, Kelantan, Malaysia. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + Germany + Childs Nerv Syst + 8503227 + 0256-7040 + + IM + + + Humans + + + Child + + + Magnetic Resonance Imaging + methods + + + Machine Learning + + + Infratentorial Neoplasms + diagnostic imaging + classification + + + Female + + + Deep Learning + + + Retrospective Studies + + + Male + + + Child, Preschool + + + Adolescent + + + Random Forest + + + Radiomics + + + Classification Algorithms + + + Predictive Learning Models + + + Boosting Machine Learning Algorithms + + + + Artificial intelligence + Magnetic resonance imaging + Pediatric neuro-oncology + Radiomics + + Declarations. Competing interests: The authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 12 + 19 + + + 2026 + 5 + 9 + + + 2026 + 6 + 1 + 11 + 3 + + + epublish + + 42223485 + 10.1007/s00381-026-07316-7 + 10.1007/s00381-026-07316-7 + + + + Gurney JG, Kadan-Lottick N (2001) Brain and other central nervous system tumors: rates, trends, and epidemiology. Curr Opin Oncol 13:160–166. https://doi.org/10.1097/00001622-200105000-00005 + + 10.1097/00001622-200105000-00005 + 11307058 + + + + Ostrom QT, Gittleman H, Kruchko C et al (2019) Primary brain and other central nervous system tumors in Appalachia: regional differences in incidence, mortality, and survival. J Neurooncol 142:27–38. https://doi.org/10.1007/s11060-018-03073-z + + 10.1007/s11060-018-03073-z + 30543034 + + + + Ostrom QT, Cioffi G, Waite K et al (2021) CBTRUS statistical report: primary brain and other central nervous system tumors diagnosed in the United States in 2014–2018. Neuro Oncol 23:iii1–iii105. https://doi.org/10.1093/neuonc/noab200 + + 10.1093/neuonc/noab200 + 34608945 + 8491279 + + + + Orphanidou‐Vlachou E, Vlachos N, Davies NP et al (2014) Texture analysis of T1‐and T2‐weighted MR images and use of probabilistic neural network to discriminate posterior fossa tumours in children. NMR Biomed 27:632–639. https://doi.org/10.1002/nbm.3099 + + 10.1002/nbm.3099 + 24729528 + 4529665 + + + + Di Ieva A, Russo C, Liu S et al (2021) Application of deep learning for automatic segmentation of brain tumors on magnetic resonance imaging: a heuristic approach in the clinical scenario. Neuroradiology 63:1253–1262. https://doi.org/10.1007/s00234-021-02649-3 + + 10.1007/s00234-021-02649-3 + 33501512 + + + + Bodalal Z, Trebeschi S, Nguyen-Kim TDL et al (2019) Radiogenomics: bridging imaging and genomics. Abdom Radiol 44:1960–1984. https://doi.org/10.1007/s00261-019-02028-w + + 10.1007/s00261-019-02028-w + + + + Gillies RJ, Kinahan PE, Hricak H (2016) Radiomics: images are more than pictures, they are data. Radiology 278:563–577. https://doi.org/10.1148/radiol.2015151169 + + 10.1148/radiol.2015151169 + 26579733 + + + + Grech‐Sollars M, Hales PW, Miyazaki K et al (2015) Multi‐centre reproducibility of diffusion MRI parameters for clinical sequences in the brain. NMR Biomed 28:468–485. https://doi.org/10.1002/nbm.3269 + + 10.1002/nbm.3269 + 25802212 + 4403968 + + + + Formentin C, Joaquim AF, Ghizoni E (2023) Posterior fossa tumors in children: current insights. Eur J Pediatr 182:4833–4850. https://doi.org/10.1007/s00431-023-05189-5 + + 10.1007/s00431-023-05189-5 + 37679511 + + + + Plaza MJ, Borja MJ, Altman N et al (2013) Conventional and advanced MRI features of pediatric intracranial tumors: posterior fossa and suprasellar tumors. AJR Am J Roentgenol 200:1115–1124. https://doi.org/10.2214/AJR.12.9725 + + 10.2214/AJR.12.9725 + 23617498 + + + + Panigrahy A, Blüml S (2009) Neuroimaging of pediatric brain tumors: from basic to advanced magnetic resonance imaging (MRI). J Child Neurol 24:1343–1365. https://doi.org/10.1177/0883073809342129 + + 10.1177/0883073809342129 + 19841424 + + + + Poretti A, Meoded A, Huisman TA (2012) Neuroimaging of pediatric posterior fossa tumors including review of the literature. J Magn Reson Imaging 35:32–47. https://doi.org/10.1002/jmri.22722 + + 10.1002/jmri.22722 + 21989968 + + + + Koral K, Mathis D, Gimi B et al (2013) Common pediatric cerebellar tumors: correlation between cell densities and apparent diffusion coefficient metrics. Radiology 268:532–537. https://doi.org/10.1148/radiol.13121362 + + 10.1148/radiol.13121362 + 23564715 + + + + Hohm A, Karremann M, Gielen GH et al (2022) Magnetic resonance imaging characteristics of molecular subgroups in pediatric H3 K27M mutant diffuse midline glioma. Clin Neuroradiol 32:249–258. https://doi.org/10.1007/s00062-021-01120-3 + + 10.1007/s00062-021-01120-3 + 34919158 + + + + Szychot E, Youssef A, Ganeshan B et al (2021) Predicting outcome in childhood diffuse midline gliomas using magnetic resonance imaging based texture analysis. J Neuroradiol 48:243–247. https://doi.org/10.1016/j.neurad.2020.02.005 + + 10.1016/j.neurad.2020.02.005 + 32184119 + + + + Tanyel T, Nadarajan C, Duc NM et al (2023) Deciphering machine learning decisions to distinguish between posterior fossa tumor types using MRI features: what do the data tell us? Cancers (Basel) 15:4015. https://doi.org/10.3390/cancers15164015 + + 10.3390/cancers15164015 + 37627043 + 10452543 + + + + Zitouni S, Koc G, Doganay S et al (2017) Apparent diffusion coefficient in differentiation of pediatric posterior fossa tumors. Jpn J Radiol 35:448–453. https://doi.org/10.1007/s11604-017-0652-9 + + 10.1007/s11604-017-0652-9 + 28550357 + + + + Gutierrez DR, Awwad A, Meijer L et al (2014) Metrics and textural features of MRI diffusion to improve classification of pediatric posterior fossa tumors. AJNR Am J Neuroradiol 35:1009–1015. https://doi.org/10.3174/ajnr.A3784 + + 10.3174/ajnr.A3784 + + + + Novak J, Zarinabad N, Rose H et al (2021) Classification of paediatric brain tumours by diffusion weighted imaging and machine learning. Sci Rep 11:2987. https://doi.org/10.1038/s41598-021-82214-3 + + 10.1038/s41598-021-82214-3 + 33542327 + 7862387 + + + + Fetit AE, Novak J, Peet AC et al (2015) Three‐dimensional textural features of conventional MRI improve diagnostic classification of childhood brain tumours. NMR Biomed 28:1174–1184. https://doi.org/10.1002/nbm.3353 + + 10.1002/nbm.3353 + 26256809 + + + + Zhou H, Hu R, Tang O et al (2020) Automatic machine learning to differentiate pediatric posterior fossa tumors on routine MR imaging. AJNR Am J Neuroradiol 41:1279–1285. https://doi.org/10.3174/ajnr.A6621 + + 10.3174/ajnr.A6621 + 32661052 + 7357647 + + + + Ünalan S, Onat FE, Şahin F, et al. (2024) Revealing distinctive insights: machine learning-enhanced ensembled MRI sequences for pediatric posterior fossa tumor classification. https://doi.org/10.21203/rs.3.rs-3831163/v1 + + + Garaba A, Ponzio F, Grasso EA et al (2023) Radiomics for differentiation of pediatric posterior fossa tumors: a meta-analysis and systematic review of the literature. Cancers (Basel) 15:5891. https://doi.org/10.3390/cancers15245891 + + 10.3390/cancers15245891 + 38136435 + 10742196 + + + + Yearley AG, Blitz SE, Patel RV et al (2022) Machine learning in the classification of pediatric posterior fossa tumors: a systematic review. Cancers (Basel) 14:5608. https://doi.org/10.3390/cancers14225608 + + 10.3390/cancers14225608 + 36428701 + 9688156 + + + + Quon J, Bala W, Chen L et al (2020) Deep learning for pediatric posterior fossa tumor detection and classification: a multi-institutional study. AJNR Am J Neuroradiol 41:1718–1725. https://doi.org/10.3174/ajnr.A6704 + + 10.3174/ajnr.A6704 + 32816765 + 7583118 + + + + Yimit Y, Yasin P, Hao Y et al (2025) MRI-based deep learning with clinical and imaging features to differentiate medulloblastoma and ependymoma in children. Front Mol Biosci 12:1570860. https://doi.org/10.3389/fmolb.2025.1570860 + + 10.3389/fmolb.2025.1570860 + 40356719 + 12066621 + + + + Yimit Y, Yasin P, Tuersun A et al (2024) Multiparametric MRI-based interpretable radiomics machine learning model differentiates medulloblastoma and ependymoma in children: a two-center study. Acad Radiol 31:3384–3396. https://doi.org/10.1016/j.acra.2024.02.040 + + 10.1016/j.acra.2024.02.040 + 38508934 + + + + Button KS, Ioannidis JP, Mokrysz C et al (2013) Power failure: why small sample size undermines the reliability of neuroscience. Nat Rev Neurosci 14:365–376. https://doi.org/10.1038/nrn3475 + + 10.1038/nrn3475 + 23571845 + + + + +
+ + + 42223356 + + 2026 + 06 + 01 + +
+ + 1535-3907 + + + 2026 + Jun + 01 + + + Journal of proteome research + J Proteome Res + + In-Depth Plasma Proteomics Identifies SNCA as a Discriminating Biomarker of PDAC. + 10.1021/acs.jproteome.5c01286 + + Pancreatic ductal adenocarcinoma (PDAC) carries a poor prognosis largely due to lack of efficient diagnostic means. We applied mass spectrometry-based high-coverage plasma proteome analysis accompanying with machine learning to develop a 5-protein diagnostic model: SNCA, GCLC, LBP, ALAD, and SORD. For differentiating PDAC from healthy controls (HCs), this model reached an area under the curve (AUC) of 0.973 with 100% sensitivity and 85% specificity in the discovery cohort, with nested cross-validation confirming robust performance (AUC = 0.958). Further validation centered on SNCA achieved an AUC of 0.835 in an independent validation cohort. SNCA also showed good diagnostic performance in PDAC patients with low CA19-9 level (AUC = 0.868), underscoring its potential value for this subgroup. Overall, these findings indicate SNCA as a promising candidate plasma diagnostic marker for PDAC. + + + + Yu + Jiaqi + J + 0009-0001-5047-7531 + + School of Basic Medicine, Qingdao University, Qingdao, Shandong Province 266071, China. + + + + Luo + Wenhui + W + + The Second Department of Hepatobiliary Surgery, Yantai Yuhuangding Hospital, Qingdao University, Yantai, Shandong Province 264000, China. + + + + Zhang + Jian + J + + Beijing Proteome Research Center, Beijing 102206, China. + + + State Key Laboratory of Medical Proteomics, National Center for Protein Sciences (Beijing), Academy of Military Medical Sciences, Beijing 102206, China. + + + + Qin + Baoyi + B + + Beijing Proteome Research Center, Beijing 102206, China. + + + + Wang + Xiaoxin + X + + Central Laboratory, Yantai Yuhuangding Hospital, Qingdao University, Yantai, Shandong Province 264000, China. + + + + Yang + Guoqian + G + + Beijing Proteome Research Center, Beijing 102206, China. + + + + Hou + Wenhao + W + + Beijing Proteome Research Center, Beijing 102206, China. + + + + Li + Chaoying + C + + Beijing Proteome Research Center, Beijing 102206, China. + + + + Liu + Fujun + F + + Central Laboratory, Yantai Yuhuangding Hospital, Qingdao University, Yantai, Shandong Province 264000, China. + + + + Sun + Shijie + S + + The Second Department of Hepatobiliary Surgery, Yantai Yuhuangding Hospital, Qingdao University, Yantai, Shandong Province 264000, China. + + + + Liu + Xin + X + + Central Laboratory, Yantai Yuhuangding Hospital, Qingdao University, Yantai, Shandong Province 264000, China. + + + + Ying + Wantao + W + 0000-0001-8309-2198 + + School of Basic Medicine, Qingdao University, Qingdao, Shandong Province 266071, China. + + + Beijing Proteome Research Center, Beijing 102206, China. + + + State Key Laboratory of Medical Proteomics, National Center for Protein Sciences (Beijing), Academy of Military Medical Sciences, Beijing 102206, China. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + United States + J Proteome Res + 101128775 + 1535-3893 + + IM + + diagnosis biomarker + machine learning + pancreatic ductal adenocarcinoma + plasma proteomics + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 10 + 2 + + + aheadofprint + + 42223356 + 10.1021/acs.jproteome.5c01286 + + +
+ + + 42223265 + + 2026 + 06 + 01 + +
+ + 1520-8524 + + 159 + 6 + + 2026 + Jun + 01 + + + The Journal of the Acoustical Society of America + J Acoust Soc Am + + Estimating mechanical impedance from hydrophone measurements. + + 4904 + 4913 + 4904-4913 + + 10.1121/10.0043957 + + Integrating machine learning or deep learning models into autonomous underwater vehicles often requires extra steps with an accuracy trade-off, and the scarcity of training datasets makes it inconvenient. This work introduces a reduced-order identification approach for thin spherical shells using sparse hydrophone measurements. Because these impedances are unique to a given scatterer, the central hypothesis is that they provide strong identification potential. The method begins by using established techniques to analytically reconstruct the scattered field from hydrophone measurements. From this field, the surface pressures and velocities corresponding to each spherical harmonic are obtained and used to compute the in vacuo mechanical impedance. The method's effectiveness is then evaluated using synthetic data with added noise. Results demonstrate that Modal Mechanical Impedance Estimation can approximate the first two modal mechanical impedances with absolute percentage error less than 10% in the low-frequency range (ka ≤ 2.1) with only 10 hydrophones. Its performance is limited by directivity due to increasing frequency. By enabling efficient computation without any training phase, the proposed method stands out as a promising candidate for real-time and low-energy applications. + © 2026 Acoustical Society of America. + + + + Polat + Halim + H + 0009-0007-6041-0916 + + Department of Mechanical Engineering, Boston University, Boston, Massachusetts 02215, USA. + + + + McDaniel + James G + JG + 0000-0002-7980-2051 + + Department of Mechanical Engineering, Boston University, Boston, Massachusetts 02215, USA. + + + + Gilbert + Jeff + J + + Triton Systems, Chelmsford, Massachusetts 01824, USA. + + + + Lucifredi + Irena + I + + SOFAR Acoustics, LLC, Woburn, Massachusetts 01801, USA. + + + + eng + + Journal Article + +
+ + United States + J Acoust Soc Am + 7503051 + 0001-4966 + + IM +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 9 + 12 + + + 2026 + 5 + 14 + + + 2026 + 6 + 1 + 9 + 3 + + + ppublish + + 42223265 + 10.1121/10.0043957 + 3393437 + + +
+ + + 42223163 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1934-6638 + + 134 + 6 + + 2026 + Jun + + + Cancer cytopathology + Cancer Cytopathol + + Artificial intelligence-assisted urine cytology based on the Paris System for Reporting Urothelial Carcinoma. + + e70120 + e70120 + + 10.1002/cncy.70120 + + Urine cytology is a noninvasive and valuable tool for detecting urothelial carcinoma but suffers from variable sensitivity and observer dependency. Artificial intelligence (AI) may enhance the diagnostic accuracy and efficiency of urine cytology. The objective of this study was to develop and validate an AI-based cytology system for urothelial carcinoma detection in both clinical and screening contexts. + In total, 328 retrospective clinical cases and 1489 prospective health screening samples were analyzed. All specimens underwent liquid-based cytology and were digitized at ×20 magnification. For model development, ed 269 annotated training slides (56,710 cells) were used. The AI pipeline mimicked cytopathologist workflow, integrating deep learning-based cell detection and segmentation with feature extraction and support vector machine classification into AI-negative, AI-atypical, and AI-positive categories according to The Paris System for Reporting the Urinary Cytology. Agreement was assessed using weighted κ values and prevalence-adjusted, bias-adjusted κ values. + In the clinical cohort, AI achieved 83.0% agreement with histopathology and 82.6% agreement with expert cytology. Weighted κ values (κ, 0.631-0.661) reflected substantial agreement, with discrepancies mainly between adjacent categories. In the health screening cohort, the prevalence-adjusted, bias-adjusted κ was 0.647 despite low prevalence. AI demonstrated a high negative predictive value of 99.7% and negative percent agreement of 82.3%, with a minimal false-omission rate (0.25%). + AI-assisted urine cytology exhibited substantial concordance with expert interpretation and histopathologic standards. Its capability of screen-out and high negative predictive value support its potential as a reliable triage tool, improving workflow efficiency while maintaining diagnostic reliability in large-scale screening. + © 2026 American Cancer Society. All rights reserved, including rights for text and data mining and training of artificial intelligence technologies or similar technologies. + + + + Chen + Lan + L + 0000-0002-9247-4988 + + Department of Pathology, Beijing Hospital, National Center of Gerontology, Institute of Geriatric Medicine, Chinese Academy of Medical Sciences, Beijing, China. + + + + Cao + Xinyi + X + + Department of Medical Development, Hangzhou Zhiwei Information Technology Co., Ltd., Hangzhou, China. + + + + Lu + Zongyue + Z + + Department of Medical Development, Hangzhou Zhiwei Information Technology Co., Ltd., Hangzhou, China. + + + + Liu + Longteng + L + + Department of Pathology, Beijing Hospital, National Center of Gerontology, Institute of Geriatric Medicine, Chinese Academy of Medical Sciences, Beijing, China. + + + + Sun + Mingjun + M + + Department of Pathology, Beijing Hospital, National Center of Gerontology, Institute of Geriatric Medicine, Chinese Academy of Medical Sciences, Beijing, China. + + + + Wu + Yulong + Y + + Department of Pathology, Beijing Hospital, National Center of Gerontology, Institute of Geriatric Medicine, Chinese Academy of Medical Sciences, Beijing, China. + + + + Zhang + Wei + W + 0000-0003-1515-964X + + Department of Pathology, Beijing Hospital, National Center of Gerontology, Institute of Geriatric Medicine, Chinese Academy of Medical Sciences, Beijing, China. + + + + eng + + + BJ2022-14 + National High Level Hospital Clinical Research Funding + + + + mnzl202024 + Bethune·Urinary Tumor Special Research Fund Project + + + + + Journal Article + +
+ + United States + Cancer Cytopathol + 101499453 + 1934-662X + + IM + + + Humans + + + Female + + + Artificial Intelligence + + + Retrospective Studies + + + Cytodiagnosis + methods + + + Male + + + Urologic Neoplasms + urine + diagnosis + pathology + + + Aged + + + Middle Aged + + + Intelligent Systems + + + Carcinoma, Transitional Cell + urine + diagnosis + pathology + + + Prospective Studies + + + Urine + cytology + + + Urothelium + pathology + + + Deep Learning + + + Urinary Bladder Neoplasms + urine + diagnosis + pathology + + + + The Paris System for Reporting Urinary Cytology (TPS) + artificial intelligence (AI) + deep learning + urine cytology + urothelial carcinoma (UC) + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 5 + 7 + + + 2026 + 2 + 9 + + + 2026 + 5 + 11 + + + 2026 + 6 + 1 + 8 + 4 + + + ppublish + + 42223163 + 10.1002/cncy.70120 + + + + Gontero P, Birtle A, Capoun O, et al. European Association of Urology guidelines on non–muscle‐invasive bladder cancer (TaT1 and carcinoma in situ)—a summary of the 2024 guidelines update. Eur Urol. 2024;86(6):531‐549. doi:10.1016/j.eururo.2024.07.027 + + + Jubber I, Ong S, Bukavina L, et al. Epidemiology of bladder cancer in 2023: a systematic review of risk factors. Eur Urol. 2023;84(2):176‐190. doi:10.1016/j.eururo.2023.03.029 + + + Antoni S, Ferlay J, Soerjomataram I, Znaor A, Jemal A, Bray F. Bladder cancer incidence and mortality: a global overview and recent trends. Eur Urol. 2017;71(1):96‐108. doi:10.1016/j.eururo.2016.06.010 + + + Bray F, Laversanne M, Sung H, et al. Global cancer statistics 2022: GLOBOCAN estimates of incidence and mortality worldwide for 36 cancers in 185 countries. CA Cancer J Clin. 2024;74(3):229‐263. doi:10.3322/caac.21834 + + + Rosenthal DL, Wojcik EM, Kurtycz DFI, eds. The Paris System for Reporting Urinary Cytology. 1st ed. Springer International Publishing; 2016. + + + Wojcik EM, Kurtycz DFI, Rosenthal DL, eds. The Paris System for Reporting Urinary Cytology. 2nd ed. Springer International Publishing; 2022. + + + Nikas IP, Seide S, Proctor T, Kleinaki Z, Kleinaki M, Reynolds JP. The Paris System for Reporting Urinary Cytology: a meta‐analysis. J Pers Med. 2022;12(2):170. doi:10.3390/jpm12020170 + + + Bakkar R, Mirocha J, Fan X, et al. Impact of the Paris system for reporting urine cytopathology on predictive values of the equivocal diagnostic categories and interobserver agreement. Cytojournal. 2019;16:21. doi:10.4103/cytojournal.cytojournal_30_19 + + + Khorsandi N, Porten S, VandenBussche CJ, Greenland N, Vohra P. Bridging perspectives: integrating urologist and cytopathologist insights of urine cytology. Semin Diagn Pathol. 2025;42(6):150960. doi:10.1016/j.semdp.2025.150960 + + + Sahoo SR, Sahu S, Bhuyan P. Role of urine cytology and Paris system in detection of high‐grade urothelial carcinoma: a diagnostic re‐evaluation. J Contemp Clin Pract. 2025;11(8):616‐621. doi:10.61336/jccp/25‐08‐87 + + + Long T, Layfield LJ, Esebua M, Frazier SR, Giorgadze DT, Schmidt RL. Interobserver reproducibility of The Paris System for Reporting Urinary Cytology. Cytojournal. 2017;14:17. doi:10.4103/cytojournal.cytojournal_12_17 + + + Niazi MKK, Parwani AV, Gurcan MN. Digital pathology and artificial intelligence. Lancet Oncol. 2019;20(5):e253‐e261. doi:10.1016/s1470‐2045(19)30154‐8 + + + Capitanio A, Dina RE, Treanor D. Digital cytology: a short review of technical and methodological approaches and applications. Cytopathology. 2018;29(4):317‐325. doi:10.1111/cyt.12554 + + + Allahqoli L, Laganà AS, Mazidimoradi A, et al. Diagnosis of cervical cancer and pre‐cancerous lesions by artificial intelligence: a systematic review. Diagnostics (Basel). 2022;12(11):2771. doi:10.3390/diagnostics12112771 + + + Giarnieri E, Scardapane S. Towards artificial intelligence applications in next generation cytopathology. Biomedicines. 2023;11(8):2225. doi:10.3390/biomedicines11082225 + + + Li J, Chong TW, Fong KY, et al. Will artificial intelligence (AI) replace cytopathologists: a scoping review of current applications and evidence of A.I. in urine cytology. World J Urol. 2025;43(1):200. doi:10.1007/s00345‐025‐05583‐8 + + + Wu S, Shen R, Hong G, et al. Development and validation of an artificial intelligence‐based model for detecting urothelial carcinoma using urine cytology images: a multicentre, diagnostic study with prospective validation. EClinicalMedicine. 2024;71:102566. doi:10.1016/j.eclinm.2024.102566 + + + Zhang Z, Fu X, Liu J, et al. Developing a machine learning algorithm for identifying abnormal urothelial cells: a feasibility study. Acta Cytol. 2021;65(4):335‐341. doi:10.1159/000510474 + + + Muralidaran C, Dey P, Nijhawan R, Kakkar N. Artificial neural network in diagnosis of urothelial cell carcinoma in urine cytology. Diagn Cytopathol. 2015;43(6):443‐449. doi:10.1002/dc.23244 + + + Sanghvi AB, Allen EZ, Callenberg KM, Pantanowitz L. Performance of an artificial intelligence algorithm for reporting urine cytopathology. Cancer Cytopathol. 2019;127(10):658‐666. doi:10.1002/cncy.22176 + + + Lyu C, Zhang W, Huang H, et al. RTMDet: an empirical study of designing real‐time object detectors (version 2). arXiv. 2022. doi:10.48550/ARXIV.2212.07784 + + + Liu S, Qi L, Qin H, Shi J, Jia J. Path aggregation network for instance segmentation (version 4). arXiv. 2018. doi:10.48550/ARXIV.1803.01534 + + + Bodla N, Singh B, Chellappa R, Davis LS. Soft‐NMS ‐‐ improving object detection with one line of code (version 2). arXiv. 2017. doi:10.48550/ARXIV.1704.04503 + + + Dumitru R‐G, Peteleaza D, Craciun C. Using DUCK‐net for polyp image segmentation. Sci Rep. 2023;13(1). doi:10.1038/s41598‐023‐36940‐5 + + + Skacel M, Fahmy M, Brainard JA, et al. Multitarget fluorescence in situ hybridization assay detects transitional cell carcinoma in the majority of patients with bladder cancer and atypical or negative urine cytology. J Urol. 2003;169(6):2101‐2105. doi:10.1097/01.ju.0000066842.45464.cc + + + Chen L, Liu L, Sun M, He S, Liu D. Practical application of The Paris System for Reporting Urinary Cytology. Chin J Pathol. 2024;53(5):470‐476. doi:10.3760/cma.j.cn112151‐20231012‐00251 + + + Danakas A, Sweeney M, Cheris S, Agrawal T. Urinary tract cytology: a cytologic‐histopathologic correlation with The Paris System, an institutional study. J Am Soc Cytopathol. 2021;10(1):56‐63. doi:10.1016/j.jasc.2020.09.013 + + + Zare S, Mirsadraei L, Reisian N, et al. A single institutional experience with The Paris System for Reporting Urinary Cytology: correlation of cytology and histology in 194 cases. Am J Clin Pathol. 2018;150(2):162‐167. doi:10.1093/ajcp/aqy043 + + + Phruttinarakorn B, Plumworasawat S, Kayankarnnavee J, Lualon J, Pongtippan A. Application of the Paris reporting system for urine cytology: the three‐year experience of a single tertiary care institute in Thailand. Acta Cytol. 2022;66(2):134‐141. doi:10.1159/000521139 + + + Zhang ML, Miki Y, Hang J, et al. A review of upper urinary tract cytology performance before and after the implementation of The Paris System. Cancer Cytopathol. 2021;129(4):264‐274. doi:10.1002/cncy.22343 + + + Sokolova IA, Halling KC, Jenkins RB, et al. The development of a multitarget, multicolor fluorescence in situ hybridization assay for the detection of urothelial carcinoma in urine. J Mol Diagn. 2000;2(3):116‐123. doi:10.1016/s1525‐1578(10)60625‐3 + + + Lobo N, Afferi L, Moschini M, et al. Epidemiology, screening, and prevention of bladder cancer. Eur Urol Oncol. 2022;5(6):628‐639. doi:10.1016/j.euo.2022.10.003 + + + U.S. Preventive Services Task Force. Recommendation: Bladder Cancer in Adults: Screening. U.S. Preventive Services Taskforce; 2011. Accessed February 6, 2026. https://www.uspreventiveservicestaskforce.org/uspstf/recommendation/bladder‐cancer‐in‐adults‐screening。 + + + Nojima S, Terayama K, Shimoura S, et al. A deep learning system to diagnose the malignant potential of urothelial carcinoma cells in cytology specimens. Cancer Cytopathol. 2021;129(12):984‐995. doi:10.1002/cncy.22443 + + + Vaickus LJ, Suriawinata AA, Wei JW, Liu X. Automating the Paris system for urine cytopathology—a hybrid deep‐learning and morphometric approach. Cancer Cytopathol. 2019;127(2):98‐115. doi:10.1002/cncy.22099 + + + Kaneko M, Tsuji K, Masuda K, et al. Urine cell image recognition using a deep‐learning model for an automated slide evaluation system. BJU Int. 2022;130(2):235‐243. doi:10.1111/bju.15518 + + + Lebret T, Pignot G, Colombel M, et al. Artificial intelligence to improve cytology performances in bladder carcinoma detection: results of the VisioCyt test. BJU Int. 2022;129(3):356‐363. doi:10.1111/bju.15382 + + + Lebret T, Paoletti X, Pignot G, et al. Artificial intelligence to improve cytology performance in urothelial carcinoma diagnosis: results from validation phase of the French, multicenter, prospective VISIOCYT1 trial. World J Urol. 2023;41(9):2381‐2388. doi:10.1007/s00345‐023‐04519‐4 + + + +
+ + + 42223123 + + 2026 + 06 + 01 + +
+ + 1096-3669 + + + 2026 + Jun + 01 + + + Waste management & research : the journal of the International Solid Wastes and Public Cleansing Association, ISWA + Waste Manag Res + + Analysis of waste disposal and recycling processes in Türkiye with machine learning and artificial neural networks. + + 734242X261453689 + 734242X261453689 + + 10.1177/0734242X261453689 + + This study aims to analyze waste disposal and recovery data for 2022 and 2024 in Türkiye to reveal changes in national waste management and to make future predictions using multivariate machine learning and artificial neural network (ANN) models. Trends in disposal and recovery capacity were identified, and the main variables affecting waste processing volumes were modeled. Multiple linear regression and feedforward ANN models were created using the capacity and processing quantities obtained from Türkiye İstatistik Kurumu's data. The ANN model was trained with three hidden layers and a 64-32-16 neuron structure, with a learning rate of 0.001. The dataset was divided into 80% training and 20% testing. The machine learning model's test set accuracy coefficient was calculated as R + 2 = 0.87, and the mean absolute error (MAE) was 1.96 million tons. The ANN model demonstrated even higher performance, reaching R + 2 = 0.93 and an MAE of 1.41 million tons. ANNs accurately predicted total recycled waste to be 51.5 million tons in 2024, while the amount of landfilled waste was predicted with only a 3.2% margin of error. Model analyses revealed that increasing landfill capacity significantly increases disposal volume, while increasing the number of recycling facilities affects recovery volume through a strong, nonlinear relationship. The results show that ANN models can predict Türkiye's waste management trends with high accuracy and prove that they provide a powerful decision support tool that can be used in future policy planning. + + + + Parlakkiliç + Alaattin + A + 0000-0002-6834-6839 + + Management Information Systems, Faculty of Economics and Administrative Sciences, Ufuk University, Ankara, Turkey. + + + + eng + + Journal Article + + + 2026 + 06 + 01 + +
+ + England + Waste Manag Res + 9881064 + + IM + + artificial neural networks + disposal + machine learning + recycling + waste management + +
+ + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 7 + 52 + + + aheadofprint + + 42223123 + 10.1177/0734242X261453689 + + +
+ + + 42223102 + + 2026 + 06 + 01 + +
+ + 1089-7690 + + 164 + 21 + + 2026 + Jun + 07 + + + The Journal of chemical physics + J Chem Phys + + Machine learning accelerated nonadiabatic molecular dynamics of defect-mediated recombination in alkali metal passivated Cu2ZnSnS4. + 214111 + 10.1063/5.0336824 + + Nonradiative electron-hole recombination mediated by defects is a critical loss mechanism in semiconductors and requires computationally demanding nonadiabatic (NA) molecular dynamics simulations. In this work, we develop a machine learning-accelerated framework to model long-time NA couplings in Cu2ZnSnS4 containing CuZn antisites and CuZn + ZnCu antisite pairs, with and without alkali metal passivation. By formulating NA coupling evolution as a time-series prediction problem, we benchmark 37 representative deep learning architectures, including recurrent neural networks, convolutional neural networks, transformers, and hybrid models. Among them, the extended long short-term memory model achieves the best overall performance, yielding an average test set R2 of 0.98 while maintaining high computational efficiency. This approach enables accurate reconstruction of long-time NA coupling trajectories at a prediction cost reduced by over five orders of magnitude relative to repeated direct first-principles NA coupling evaluations. The application of the framework shows that alkali metal doping systematically reduces the NA coupling strength and accelerates decoherence, with Li exhibiting the strongest suppression of recombination, which is associated with enhanced charge localization and lattice fluctuations. The predicted recombination lifetimes agree closely with first-principles results, validating the reliability of the machine learning approach. This work establishes a generalizable strategy for machine learning-assisted NA dynamics simulations and provides mechanistic insights into defect-mediated recombination processes. + © 2026 Author(s). Published under an exclusive license by AIP Publishing. + + + + Zhang + Zhaosheng + Z + 0000-0002-4080-0884 + + College of Chemistry and Materials Science, Hebei University, Baoding 071002, People's Republic of China. + + + + Xiong + Qing + Q + + College of Chemistry and Materials Science, Hebei University, Baoding 071002, People's Republic of China. + + + + Liu + Yanbo + Y + 0009-0002-3717-9262 + + College of Chemistry and Materials Science, Hebei University, Baoding 071002, People's Republic of China. + + + + Liu + Jiadong + J + + College of Chemistry and Materials Science, Hebei University, Baoding 071002, People's Republic of China. + + + + Zhang + Wutong + W + + College of Chemistry and Materials Science, Hebei University, Baoding 071002, People's Republic of China. + + + + eng + + Journal Article + +
+ + United States + J Chem Phys + 0375360 + 0021-9606 + + IM +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 4 + 2 + + + 2026 + 5 + 19 + + + 2026 + 6 + 1 + 7 + 33 + + + ppublish + + 42223102 + 10.1063/5.0336824 + 3393121 + + +
+ + + 42223099 + + 2026 + 06 + 01 + +
+ + 1089-7690 + + 164 + 21 + + 2026 + Jun + 07 + + + The Journal of chemical physics + J Chem Phys + + Physics-informed machine learning model for accurate prediction of electron affinities. + 214108 + 10.1063/5.0334579 + + Accurate wavefunction methods such as CCSD(T) can predict chemical and thermodynamic properties of small molecules with near-experimental precision. However, their steep computational cost limits their use for large systems or extensive datasets. In contrast, density functional theory (DFT) is faster and more practical for large molecules but often fails to accurately capture electronic changes with quantitative accuracy. To address these limitations, we have developed a machine learning model for the prediction of electron affinities with physics-based structural features (RDKit and SMARTS) and quantum chemistry-based electronic features (Mulliken charge analysis). These features, which capture both local bonding motifs and global electronic context, are used as input descriptors to an XGBR (eXtreme Gradient Boosting Regressor) model in a ΔML framework. By embedding QM-based electronic features to the ΔML model, our enhanced ΔML+ model attains a mean absolute error of 0.03 eV with respect to G4MP2 values, surpassing conventional chemical accuracy targets while exhibiting markedly reduced dependence on the underlying DFT functional. By analyzing both vertical and adiabatic EAs within the same framework, we highlight the crucial role of geometry relaxation in predictive modeling. Overall, our approach offers an efficient and transferable route to benchmark accurate electron affinity predictions, pointing toward next generation computational protocols that overcome the limitations of standalone DFT. + © 2026 Author(s). Published under an exclusive license by AIP Publishing. + + + + Swain + Debashis + D + 0009-0000-3233-2382 + + Department of Chemistry, Indiana University, Bloomington, Indiana 47405, USA. + + + + Manna + Surya Sekhar + SS + 0000-0002-8496-109X + + Department of Chemistry, Indiana University, Bloomington, Indiana 47405, USA. + + + + Maier + Sarah + S + + Department of Chemistry, Indiana University, Bloomington, Indiana 47405, USA. + + + + Raghavachari + Krishnan + K + 0000-0003-3275-1426 + + Department of Chemistry, Indiana University, Bloomington, Indiana 47405, USA. + + + + eng + + Journal Article + +
+ + United States + J Chem Phys + 0375360 + 0021-9606 + + IM +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 18 + + + 2026 + 5 + 13 + + + 2026 + 6 + 1 + 7 + 33 + + + ppublish + + 42223099 + 10.1063/5.0334579 + 3393116 + + +
+ + + 42223029 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1600-0625 + + 35 + 6 + + 2026 + Jun + + + Experimental dermatology + Exp Dermatol + + Identification of Polyamine Metabolism-Related Biomarkers in Psoriasis: A Study Based on Transcriptomics and Single-Cell Sequencing. + + e70289 + e70289 + + 10.1111/exd.70289 + + Psoriasis (PS) is linked to altered polyamine metabolism, which may drive chronic inflammation and abnormal keratinocyte proliferation. We integrated transcriptomics and single-cell RNA sequencing (scRNA-seq) to identify polyamine metabolism-related genes (PMRGs) as biomarkers for PS and elucidate their mechanisms. Through the application of differential expression analysis, three machine learning algorithms, combined with receiver operating characteristic (ROC) analysis and expression quantification, biomarkers related to polyamine metabolism in PS were identified. Furthermore, the expression of these biomarkers was verified through western blotting. These biomarkers were subsequently incorporated into a diagnostic nomogram. Further investigations of these biomarkers included enrichment analysis and immune infiltration analysis. Additionally, scRNA-seq analysis was conducted to annotate the cell types in PS, providing insights into the cellular mechanisms underlying the progression of PS. In PS samples, biomarkers PSME2, PSMB5, PSMC4, PSMB10 and SMOX were significantly upregulated, achieving an area under the ROC curve (AUC) > 0.9 in GSE13355. Western blotting confirmed their upregulation, aligning with bioinformatics results. These biomarkers were closely associated with inflammation, cell proliferation, energy metabolism and signalling pathways. scRNA-seq identified 11 cell types, with mature dendritic cell (mDC) showing notable proportional differences between PS patients and controls, marking them as key cells. mDC exhibited distinct developmental trajectories with branching heterogeneity, featuring a reduction in early stages and an increase in later stages. Biomarker expression levels were higher in the later stages of mDC differentiation. The five PMRGs-PSME2, PSMB5, PSMC4, PSMB10 and SMOX-identified through comprehensive analyses, emerged as significant biomarkers for PS, providing promising diagnostic targets and mechanistic insights for the early detection and targeted treatment of PS. + © 2026 John Wiley & Sons A/S. Published by John Wiley & Sons Ltd. + + + + Zhang + Li + L + 0009-0005-6305-0712 + + Department of Dermatology, The Second Hospital of Shanxi Medical University, Taiyuan, Shanxi Province, China. + + + + Jia + Xiaoqiang + X + 0009-0005-1471-7269 + + Department of Dermatology, The Second Hospital of Shanxi Medical University, Taiyuan, Shanxi Province, China. + + + + Liu + Xia + X + 0000-0002-6951-3520 + + Department of Dermatology, The Second Hospital of Shanxi Medical University, Taiyuan, Shanxi Province, China. + + + + Yang + Yanni + Y + 0009-0005-5427-2372 + + Department of Dermatology, The Second Hospital of Shanxi Medical University, Taiyuan, Shanxi Province, China. + + + + eng + + Journal Article + +
+ + Denmark + Exp Dermatol + 9301549 + 0906-6705 + + + + 0 + Biomarkers + + + 0 + Polyamines + + + IM + + + Psoriasis + metabolism + genetics + + + Humans + + + Biomarkers + metabolism + + + Single-Cell Analysis + + + Polyamines + metabolism + + + Single-Cell Gene Expression Analysis + + + Transcriptome + + + Gene Expression Profiling + + + Sequence Analysis, RNA + + + Dendritic Cells + metabolism + + + + biomarkers + mature dendritic cell + polyamine metabolism + psoriasis + single‐cell RNA sequencing + transcriptomic + +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 5 + 6 + + + 2025 + 5 + 22 + + + 2026 + 5 + 19 + + + 2026 + 6 + 1 + 7 + 3 + + + ppublish + + 42223029 + 10.1111/exd.70289 + + + + E. Christophers, “Psoriasis–Epidemiology and Clinical Spectrum,” Clinical and Experimental Dermatology 26, no. 4 (2001): 314–320. + + + A. Rendon and K. Schäkel, “Psoriasis Pathogenesis and Treatment,” International Journal of Molecular Sciences 20, no. 6 (2019): 1475. + + + W. H. Boehncke and M. P. Schön, “Psoriasis,” Lancet 386, no. 9997 (2015): 983–994. + + + S. Pannu and D. Rosmarin, “Psoriasis in Patients With Metabolic Syndrome or Type 2 Diabetes Mellitus: Treatment Challenges,” American Journal of Clinical Dermatology 22, no. 3 (2021): 293–300. + + + J. M. Gelfand, “Psoriasis, Type 2 Diabetes Mellitus, and Obesity: Weighing the Evidence,” JAMA Dermatology 152, no. 7 (2016): 753–754. + + + K. Kamiya, M. Kishimoto, J. Sugai, M. Komine, and M. Ohtsuki, “Risk Factors for the Development of Psoriasis,” International Journal of Molecular Sciences 20, no. 18 (2019): 4347. + + + S. Kurihara, “Polyamine Metabolism and Transport in Gut Microbes,” Bioscience, Biotechnology, and Biochemistry 86, no. 8 (2022): 957–966. + + + M. Xuan, X. Gu, J. Li, D. Huang, C. Xue, and Y. He, “Polyamines: Their Significance for Maintaining Health and Contributing to Diseases,” Cell Communication and Signaling: CCS 21, no. 1 (2023): 348. + + + C. E. Holbert, M. T. Cullen, R. A. Casero, Jr., and T. M. Stewart, “Polyamines in Cancer: Integrating Organismal Metabolism and Antitumour Immunity,” Nature Reviews. Cancer 22, no. 8 (2022): 467–480. + + + F. Lou, Y. Sun, Z. Xu, et al., “Excessive Polyamine Generation in Keratinocytes Promotes Self‐RNA Sensing by Dendritic Cells in Psoriasis,” Immunity 53, no. 1 (2020): 204–216.e210. + + + N. J. Lowe, J. Breeding, and D. Russell, “Cutaneous Polyamines in Psoriasis,” British Journal of Dermatology 107, no. 1 (1982): 21–25. + + + V. Broshtilova, V. Lozanov, and L. Miteva, “Polyamine Metabolism Changes in Psoriasis,” Indian Journal of Dermatology 58, no. 4 (2013): 306–309. + + + J. Lauharanta and K. Käpyaho, “Arginase Activity and Polyamine Biosynthesis in Psoriasis,” Acta Dermato‐Venereologica 63, no. 4 (1983): 277–282. + + + M. E. Ritchie, B. Phipson, D. Wu, et al., “Limma Powers Differential Expression Analyses for RNA‐Sequencing and Microarray Studies,” Nucleic Acids Research 43, no. 7 (2015): e47. + + + E. K. Gustavsson, D. Zhang, R. H. Reynolds, S. Garcia‐Ruiz, and M. Ryten, “Ggtranscript: An R Package for the Visualization and Interpretation of Transcript Isoforms Using ggplot2,” Bioinformatics 38, no. 15 (2022): 3844–3846. + + + Z. Gu and D. Hübschmann, “Make Interactive Complex Heatmaps in R,” Bioinformatics 38, no. 5 (2022): 1460–1462. + + + H. Chen and P. C. Boutros, “VennDiagram: A Package for the Generation of Highly‐Customizable Venn and Euler Diagrams in R,” BMC Bioinformatics 12 (2011): 35. + + + G. Yu, L. G. Wang, Y. Han, and Q. Y. He, “clusterProfiler: An R Package for Comparing Biological Themes Among Gene Clusters,” OMICS 16, no. 5 (2012): 284–287. + + + Q. Cheng, X. Chen, H. Wu, and Y. Du, “Three Hematologic/Immune System‐Specific Expressed Genes Are Considered as the Potential Biomarkers for the Diagnosis of Early Rheumatoid Arthritis Through Bioinformatics Analysis,” Journal of Translational Medicine 19, no. 1 (2021): 18. + + + J. Gortler, C. Schulz, D. Weiskopf, and O. Deussen, “Bubble Treemaps for Uncertainty Visualization,” IEEE Transactions on Visualization and Computer Graphics 24, no. 1 (2018): 719–728. + + + P. Liu, H. Xu, Y. Shi, L. Deng, and X. Chen, “Potential Molecular Mechanisms of Plantain in the Treatment of Gout and Hyperuricemia Based on Network Pharmacology,” Evidence‐Based Complementary and Alternative Medicine 2020 (2020): 3023127. + + + H. Ohanyan, L. Portengen, O. Kaplani, et al., “Associations Between the Urban Exposome and Type 2 Diabetes: Results From Penalised Regression by Least Absolute Shrinkage and Selection Operator and Random Forest Models,” Environment International 170 (2022): 107592. + + + Y. Li, F. Lu, and Y. Yin, “Applying Logistic LASSO Regression for the Diagnosis of Atypical Crohn's Disease,” Scientific Reports 12, no. 1 (2022): 11340. + + + S. Guan, Z. Xu, T. Yang, et al., “Identifying Potential Targets for Preventing Cancer Progression Through the PLA2G1B Recombinant Protein Using Bioinformatics and Machine Learning Methods,” International Journal of Biological Macromolecules 276, no. Pt 1 (2024): 133918. + + + M. Cinelli, Y. Sun, K. Best, et al., “Feature Selection Using a One Dimensional Naïve Bayes' Classifier Increases the Accuracy of Support Vector Machine Classification of CDR3 Repertoires,” Bioinformatics 33, no. 7 (2017): 951–955. + + + X. Ding, F. Yan, W. Wang, J. Qin, and L. Luo, “Integration of Transcriptomics and Metabolomics Identify Biomarkers of Aberrant Lipid Metabolism in Ulcerative Colitis,” International Immunopharmacology 131 (2024): 111865. + + + Z. Wei, M. Li, C. Zhang, J. Miao, W. Wang, and H. Fan, “Machine Learning‐Based Predictive Model for Post‐Stroke Dementia,” BMC Medical Informatics and Decision Making 24, no. 1 (2024): 334. + + + X. Wang, J. Ren, H. Ren, et al., “Diabetes Mellitus Early Warning and Factor Analysis Using Ensemble Bayesian Networks With SMOTE‐ENN and Boruta,” Scientific Reports 13, no. 1 (2023): 12718. + + + S. Yue, S. Li, X. Huang, et al., “Machine Learning for the Prediction of Acute Kidney Injury in Patients With Sepsis,” Journal of Translational Medicine 20, no. 1 (2022): 215. + + + X. Robin, N. Turck, A. Hainard, et al., “pROC: An Open‐Source Package for R and S+ to Analyze and Compare ROC Curves,” BMC Bioinformatics 12 (2011): 77. + + + M. C. Sachs, “plotROC: A Tool for Plotting ROC Curves,” Journal of Statistical Software 79 (2017): 2. + + + S. Orifjon, J. Jammatov, C. Sousa, R. Barros, O. Vasconcelos, and P. Rodrigues, “Translation and Adaptation of the Adult Developmental Coordination Disorder/Dyspraxia Checklist (ADC) Into Asian Uzbekistan,” Sports (Basel) 11, no. 7 (2023): 135. + + + Y. R. Miao, Q. Zhang, Q. Lei, et al., “ImmuCellAI: A Unique Method for Comprehensive T‐Cell Subsets Abundance Prediction and Its Application in Cancer Immunotherapy,” Advanced Science 7, no. 7 (2020): 1902880. + + + O. Trott and A. J. Olson, “AutoDock Vina: Improving the Speed and Accuracy of Docking With a New Scoring Function, Efficient Optimization, and Multithreading,” Journal of Computational Chemistry 31, no. 2 (2010): 455–461. + + + S. Saikia and M. Bordoloi, “Molecular Docking: Challenges, Advances and Its Use in Drug Discovery Perspective,” Current Drug Targets 20, no. 5 (2019): 501–521. + + + D. Seeliger and B. L. de Groot, “Ligand Docking and Binding Site Analysis With PyMOL and Autodock/Vina,” Journal of Computer‐Aided Molecular Design 24, no. 5 (2010): 417–422. + + + R. Satija, J. A. Farrell, D. Gennert, A. F. Schier, and A. Regev, “Spatial Reconstruction of Single‐Cell Gene Expression Data,” Nature Biotechnology 33, no. 5 (2015): 495–502. + + + J. Kim, J. Lee, H. J. Kim, et al., “Single‐Cell Transcriptomics Applied to Emigrating Cells From Psoriasis Elucidate Pathogenic Versus Regulatory Immune Cell Subsets,” Journal of Allergy and Clinical Immunology 148, no. 5 (2021): 1281–1292. + + + J. Du, X. Yuan, H. Deng, et al., “Single‐Cell and Spatial Heterogeneity Landscapes of Mature Epicardial Cells,” Journal of Pharmaceutical Analysis 13, no. 8 (2023): 894–907. + + + S. Jin, C. F. Guerrero‐Juarez, L. Zhang, et al., “Inference and Analysis of Cell‐Cell Communication Using CellChat,” Nature Communications 12, no. 1 (2021): 1088. + + + F. Imam, N. O. Al‐Harbi, M. M. Al‐Harbi, et al., “Apremilast Ameliorates Carfilzomib‐Induced Pulmonary Inflammation and Vascular Injuries,” International Immunopharmacology 66 (2019): 260–266. + + + H. M. Wallace and A. V. Fraser, “Inhibitors of Polyamine Metabolism: Review Article,” Amino Acids 26, no. 4 (2004): 353–365. + + + M. Bandyopadhyay and A. T. Larregina, “Keratinocyte‐Polyamines and Dendritic Cells: A Bad Duet for Psoriasis,” Immunity 53, no. 1 (2020): 16–18. + + + Y. F. Ding, J. Wei, X. Quan, et al., “Hyaluronic Acid‐Based Supramolecular Medicine With Polyamines Sequestration Capability for Cooperative Anti‐Psoriasis,” Carbohydrate Polymers 296 (2022): 119968. + + + M. D. Hogarty, M. D. Norris, K. Davis, et al., “ODC1 Is a Critical Determinant of MYCN Oncogenesis and a Therapeutic Target in Neuroblastoma,” Cancer Research 68, no. 23 (2008): 9735–9745. + + + J. Erales and P. Coffino, “Ubiquitin‐Independent Proteasomal Degradation,” Biochimica et Biophysica Acta 1843, no. 1 (2014): 216–221. + + + J. A. M. Bard, E. A. Goodall, E. R. Greene, E. Jonsson, K. C. Dong, and A. Martin, “Structure and Function of the 26S Proteasome,” Annual Review of Biochemistry 87 (2018): 697–724. + + + R. Li, L. Yan, J. Jiu, et al., “PSME2 Offers Value as a Biomarker of M1 Macrophage Infiltration in Pan‐Cancer and Inhibits Osteosarcoma Malignant Phenotypes,” International Journal of Biological Sciences 20, no. 4 (2024): 1452–1470. + + + X. Wang, F. Wu, Y. Deng, et al., “Increased Expression of PSME2 Is Associated With Clear Cell Renal Cell Carcinoma Invasion by Regulating BNIP3‐Mediated Autophagy,” International Journal of Oncology 59, no. 6 (2021): 106. + + + K. Liu, S. Zhang, Y. Gong, P. Zhu, W. Shen, and Q. Zhang, “PSMC4 Promotes Prostate Carcinoma Progression by Regulating the CBX3‐EGFR‐PI3K‐AKT‐mTOR Pathway,” Journal of Cellular and Molecular Medicine 27, no. 16 (2023): 2437–2447. + + + C. A. Ware, C. S. Buhimschi, G. Zhao, Y. El Helou, and I. A. Buhimschi, “Amniotic Fluid Proteasome and Immunoproteasome in the Setting of Intra‐Amniotic Infection, Inflammation, and Preterm Birth,” Reproductive Sciences 28, no. 9 (2021): 2562–2573. + + + J. Liu, J. Mi, S. Liu, H. Chen, and L. Jiang, “PSMB5 Overexpression Is Correlated With Tumor Proliferation and Poor Prognosis in Hepatocellular Carcinoma,” FEBS Open Bio 12, no. 11 (2022): 2025–2041. + + + L. Han, Y. Hao, X. Wu, and D. Hu, “PSMB5 Alleviates Ulcerative Colitis by Inhibiting ROS‐Dependent NLRP3 Inflammasome‐Mediated Pyroptosis,” Disease Markers 2022 (2022): 2329904. + + + L. C. Zaba, J. Fuentes‐Duculan, N. J. Eungdamrong, et al., “Psoriasis Is Characterized by Accumulation of Immunostimulatory and Th1/Th17 Cell‐Polarizing Myeloid Dendritic Cells,” Journal of Investigative Dermatology 129, no. 1 (2009): 79–88. + + + E. P. Brandum, A. S. Jørgensen, M. M. Rosenkilde, and G. M. Hjortø, “Dendritic Cells and CCR7 Expression: An Important Factor for Autoimmune Diseases, Chronic Inflammation, and Cancer,” International Journal of Molecular Sciences 22, no. 15 (2021): 8340. + + + H. D. Nguyen, Y. E. Kim, L. T. Nhat Nguyen, et al., “Upregulation of Immunoproteasome PSMB8 Is Associated With Parkinson's Disease,” Parkinsonism & Related Disorders 114 (2023): 105797. + + + N. Willemsen, I. Arigoni, M. Studencka‐Turski, E. Krüger, and A. Bartelt, “Proteasome Dysfunction Disrupts Adipogenesis and Induces Inflammation via ATF3,” Molecular Metabolism 62 (2022): 101518. + + + S. P. Narayanan, E. Shosha, and C. D Palani, “Spermine Oxidase: A Promising Therapeutic Target for Neurodegeneration in Diabetic Retinopathy,” Pharmacological Research 147 (2019): 104299. + + + T. Hu, W. Tang, W. Hong, et al., “Spermine Oxidase Regulates Liver Inflammation and Fibrosis Through β‐Catenin Pathway,” Clinics and Research in Hepatology and Gastroenterology 48, no. 7 (2024): 102421. + + + J. C. Sierra, M. B. Piazuelo, P. B. Luis, et al., “Spermine Oxidase Mediates Helicobacter pylori‐Induced Gastric Inflammation, DNA Damage, and Carcinogenic Signaling,” Oncogene 39, no. 22 (2020): 4465–4474. + + + M. Marcoli, C. Cervetto, S. Amato, et al., “Transgenic Mouse Overexpressing Spermine Oxidase in Cerebrocortical Neurons: Astrocyte Dysfunction and Susceptibility to Epileptic Seizures,” Biomolecules 12, no. 2 (2022): 204. + + + D. Luo, X. Lu, H. Li, et al., “The Spermine Oxidase/Spermine Axis Coordinates ATG5‐Mediated Autophagy to Orchestrate Renal Senescence and Fibrosis,” Advanced Science 11, no. 29 (2024): e2306912. + + + R. Chaturvedi, T. de Sablet, R. M. Peek, and K. T. Wilson, “Spermine Oxidase, a Polyamine Catabolic Enzyme That Links Helicobacter pylori CagA and Gastric Cancer Risk,” Gut Microbes 3, no. 1 (2012): 48–56. + + + M. Alfarhan, F. Liu, S. Shan, P. Pichavaram, P. R. Somanath, and S. P. Narayanan, “Pharmacological Inhibition of Spermine Oxidase Suppresses Excitotoxicity Induced Neuroinflammation in Mouse Retina,” International Journal of Molecular Sciences 23, no. 4 (2022): 2133. + + + H. Zeng, R. Zhang, B. Jin, and L. Chen, “Type 1 Regulatory T Cells: A New Mechanism of Peripheral Immune Tolerance,” Cellular & Molecular Immunology 12, no. 5 (2015): 566–571. + + + L. Nussbaum, Y. L. Chen, and G. S. Ogg, “Role of Regulatory T Cells in Psoriasis Pathogenesis and Treatment,” British Journal of Dermatology 184, no. 1 (2021): 14–24. + + + J. Saura‐Esteller, M. de Jong, L. A. King, et al., “Gamma Delta T‐Cell Based Cancer Immunotherapy: Past‐Present‐Future,” Frontiers in Immunology 13 (2022): 915837. + + + C. Qi, Y. Wang, P. Li, and J. Zhao, “Gamma Delta T Cells and Their Pathogenic Role in Psoriasis,” Frontiers in Immunology 12 (2021): 627139. + + + A. Said and G. Weindl, “Regulation of Dendritic Cell Function in Inflammation,” Journal of Immunology Research 2015 (2015): 743169. + + + C. Macri, B. Fancke, K. J. Radford, and M. O'Keeffe, “Monitoring Dendritic Cell Activation and Maturation,” in Methods in Molecular Biology, vol. 1988 (Springer New York, 2019), 403–418. + + + Q. Xu, L. Sheng, X. Zhu, et al., “Jingfang Granules Exert Anti‐Psoriasis Effect by Targeting MAPK‐Mediated Dendritic Cell Maturation and PPARγ‐Mediated Keratinocytes Cell Cycle Progression In Vitro and In Vivo,” Phytomedicine 117 (2023): 154925. + + + Y. Li, Y. Li, S. Xu, et al., “N‐Acylethanolamine Acid Amidase (NAAA) Exacerbates Psoriasis Inflammation by Enhancing Dendritic Cell (DCs) Maturation,” Pharmacological Research 185 (2022): 106491. + + + A. Psarras, A. Antanaviciute, A. Alase, et al., “TNF‐α Regulates Human Plasmacytoid Dendritic Cells by Suppressing IFN‐α Production and Enhancing T Cell Activation,” Journal of Immunology 206, no. 4 (2021): 785–796. + + + Y. D. Xu, M. Cheng, P. P. Shang, and Y. Q. Yang, “Role of IL‐6 in Dendritic Cell Functions,” Journal of Leukocyte Biology 111, no. 3 (2022): 695–709. + + + Y. W. Lin, X. X. Li, F. H. Fu, et al., “Notch1/Hes1‐PTEN/AKT/IL‐17A Feedback Loop Regulates Th17 Cell Differentiation in Mouse Psoriasis‐Like Skin Inflammation,” Molecular Medicine Reports 26, no. 1 (2022): 223. + + + M. Vičić, M. Kaštelan, I. Brajac, V. Sotošek, and L. P. Massari, “Current Concepts of Psoriasis Immunopathogenesis,” International Journal of Molecular Sciences 22, no. 21 (2021): 11574. + + + J. M. Fletcher, B. Moran, A. Petrasca, and C. M. Smith, “IL‐17 in Inflammatory Skin Diseases Psoriasis and Hidradenitis Suppurativa,” Clinical and Experimental Immunology 201, no. 2 (2020): 121–134. + + + +
+ + + 42223010 + + 2026 + 06 + 01 + +
+ + 1944-8252 + + + 2026 + Jun + 01 + + + ACS applied materials & interfaces + ACS Appl Mater Interfaces + + Emerging Trends in Additive Manufacturing for Thermoelectric Devices: Materials, Structures, and Engineering Approaches. + 10.1021/acsami.6c04499 + + Energy harvesting is gaining importance in the 21st century, with thermoelectric (TE) technology offering a promising method for converting thermal energy into electrical energy. However, the application of TE devices remains relatively low because of the limitations of conventional manufacturing methods. Fabricating complex-shaped TE devices using traditional manufacturing processes is challenging and leads to a low efficiency. Unlike conventional subtractive methods, additive manufacturing (AM) builds three-dimensional (3D) objects layer by layer, enabling the creation of intricate and complex structures with precision. This study explores recent trends in AM of thermoelectric systems, with a focus on materials, synthesis methods, and device fabrication. It also discusses the challenges associated with these AM techniques and explores potential areas for improvement. Recent studies have shown that AM can produce thermoelectric units with hollow and layered structures, enhancing temperature gradients and power density compared with conventional designs. The ability to customize geometries through AM offers promising opportunities to enhance the performance of the TE materials and devices. AM technologies can produce highly efficient, functionally graded TE devices. By enabling rapid prototyping and high-performance structures, AM can improve the efficiency and application of the TE materials. Future work focuses on further advancing these AM techniques by integration with machine learning (ML) and development of multimaterial TE devices. + + + + Kondaguli + R S + RS + + B.L.D.E A's V.P Dr. P G Halakatti College of Engg & Technology, (Affiliated to Visvesvaraya Technological University), Vijayapur, Karnataka586103, India. + + + + Kumar + Inder + I + + Thermoelectric Materials and Devices Laboratory, Department of Physics, Indian Institute of Science, Bangalore560012, India. + + + + Hiremath + C R + CR + + B.L.D.E A's V.P Dr. P G Halakatti College of Engg & Technology, (Affiliated to Visvesvaraya Technological University), Vijayapur, Karnataka586103, India. + + + + Malaji + P V + PV + + B.L.D.E A's V.P Dr. P G Halakatti College of Engg & Technology, (Affiliated to Visvesvaraya Technological University), Vijayapur, Karnataka586103, India. + + + + Adinarayanappa + Somashekara Makireddypalli + SM + + Additive Manufacturing and 4D Printing Laboratory, Department of Mechanical, Materials and Aerospace Engineering, Indian Institute of Technology Dharwad (IIT Dh) Dharwad, Dharwad580011, India. + + + + Mallik + Ramesh Chandra + RC + 0000-0002-8383-7812 + + Thermoelectric Materials and Devices Laboratory, Department of Physics, Indian Institute of Science, Bangalore560012, India. + + + + eng + + Journal Article + Review + + + 2026 + 06 + 01 + +
+ + United States + ACS Appl Mater Interfaces + 101504991 + 1944-8244 + + IM + + 3D printing + additive manufacturing + direct ink writing + sustainable energy + thermoelectric devices + thermoelectric materials + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 6 + 52 + + + aheadofprint + + 42223010 + 10.1021/acsami.6c04499 + + +
+ + + 42222992 + + 2026 + 06 + 01 + +
+ + 0009-4293 + + 80 + 5 + + 2026 + May + 27 + + + Chimia + Chimia (Aarau) + + Delta-Augmented Subsystem Density Functional Theory: A Study Across Diverse Systems. + + 319 + 326 + 319-326 + + 10.2533/chimia.2026.319 + + In this study, we expand upon and benchmark the Kim-Gordon method (KG), a subsystem density functional theory (DFT) approach appended with a machine-learned correction to compensate for errors in the kinetic energy term and thereby match Kohn-Sham (KS) DFT accuracy. This correction is obtained through 'delta- learning' based on KS-DFT data. The method promises sampling of configurations for condensed molecular systems at the Kohn-Sham DFT level of accuracy at a fraction of the computational cost. Despite encouraging results for liquid water, it was not obvious whether the scheme had more general appeal. In this work, we show that the approach allows for a broad range of applications. In particular, we successfully apply it to complex molecular liquids, such as bulk ammonia and methanol. As a bonus, the correction trained on the bulk KS data is applicable to clusters, illustrating its transferability. By focusing on 'delta-learning'-predicting small corrections rather than full Kohn-Sham (KS) energies and forces-we significantly reduce the required training data. This approach, especially when combined with linear-scaling self-consistent field (LS-SCF) techniques, establishes the method as a highly efficient computational tool for molecular dynamics. + Copyright 2026 Michela Pauletti, Marcella Iannuzzi, Vladimir V. Rybkin. License: This work is licensed under a Creative Commons Attribution 4.0 International License. + + + + Pauletti + Michela + M + 0009-0001-3518-6277 + + Physical Chemistry Institute, University of Zurich, Winterthurerstrasse 190, Zurich, Switzerland. michela.pauletti@live.it. + + + Current address: Interventional and Experimental Endoscopy (InExEn), Department of Internal Medicine 2, University Hospital Würzburg, Würzburg, Germany. + + + + Iannuzzi + Marcella + M + + Physical Chemistry Institute, University of Zurich, Winterthurerstrasse 190, Zurich, Switzerland. marcella.iannuzzi@chem.uzh.ch. + + + + Rybkin + Vladimir V + VV + 0000-0001-5136-6035 + + Physical Chemistry Institute, University of Zurich, Winterthurerstrasse 190, Zurich, Switzerland. vladimir.rybkin@quantumsimulations.de. + + + Current address: HQS Quantum Simulations GmbH, Rintheimer Strasse 23, 76131 Karlsruhe, Germany. + + + + eng + + + 200021_162432 + SNSF_ + Swiss National Science Foundation + Switzerland + + + PZ00P2_174227 + SNSF_ + Swiss National Science Foundation + Switzerland + + + + Journal Article + + + 2026 + 05 + 27 + +
+ + Switzerland + Chimia (Aarau) + 0373152 + 0009-4293 + + IM + + Delta-learning + Kim-Gordon method + Machine-learning potentials + Molecular liquids + Subsystem DFT + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 3 + 8 + + + 2026 + 3 + 24 + + + 2026 + 6 + 1 + 6 + 44 + + + epublish + + 42222992 + 10.2533/chimia.2026.319 + + +
+ + + 42222991 + + 2026 + 06 + 01 + +
+ + 0009-4293 + + 80 + 5 + + 2026 + May + 27 + + + Chimia + Chimia (Aarau) + + Physics-Informed and Equivariant Machine Learning for Molecular Dipole Moment Prediction. + + 314 + 318 + 314-318 + + 10.2533/chimia.2026.314 + + Accurate prediction of molecular electric dipole moments is crucial for determining molecular properties and understanding molecular reactivity. Recent developments in equivariant machine learning enable direct prediction of electric dipole moments as vector quantities. This raises the question as to whether it is still necessary to consider physics-informed charge-based principles in the model to achieve satisfactory performance. In this work, we systematically compare direct equivariant electric dipole prediction using MACE with charge-based approaches using adapted MACE which incorporates a variant charge equilibrium equation (QEq) into the MACE framework. Across diverse datasets including QM7b, QM9, as well as subsets of the SPICE and SN2 data sets, we demonstrate that both direct equivariant electric dipole prediction and physics-informed QEq approaches show good performance for short-to-medium range interaction datasets. The charge-based QEq model shows slightly better performance than direct prediction beyond small training data sizes. Notably, the charge-based QEq model outperforms direct electric dipole prediction for the systems with long range interactions. Our results highlight the importance of incorporating physics into the model for improved model interpretability and transferability. + Copyright 2026 Ke Chen, Sandra Luber. License: This work is licensed under a Creative Commons Attribution 4.0 International License. + + + + Chen + Ke + K + + Department of Chemistry, University of Zurich, Zurich, CH-8057, Switzerland. ke.chen2@chem.uzh.ch. + + + + Luber + Sandra + S + + Department of Chemistry, University of Zurich, Zurich, CH-8057, Switzerland. sandra.luber@chem.uzh.ch. + + + + eng + + + lp11 + Centro Svizzero di Calcolo Scientifico + + + + + Journal Article + + + 2026 + 05 + 27 + +
+ + Switzerland + Chimia (Aarau) + 0373152 + 0009-4293 + + IM + + Charge equilibrium equation + Dipole moment + Direct equivariant prediction + Machine learning + Physics-informed model + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 3 + 3 + + + 2026 + 3 + 18 + + + 2026 + 6 + 1 + 6 + 44 + + + epublish + + 42222991 + 10.2533/chimia.2026.314 + + +
+ + + 42222990 + + 2026 + 06 + 01 + +
+ + 0009-4293 + + 80 + 5 + + 2026 + May + 27 + + + Chimia + Chimia (Aarau) + + From Experimental Planning to Autonomous Discovery: The Changing Role of Design of Experiments in Nanotechnology. + + 305 + 313 + 305-313 + + 10.2533/chimia.2026.305 + + Design of Experiments (DoE) is increasingly reshaping how nanomaterials are discovered, optimized, and understood, enabling a shift from empirical trial-and-error toward predictive, knowledge-driven design. As nanotechnology advances toward multifunctional and highly coupled systems, unstructured experimentation struggles to deliver reproducibility, efficiency, or transferability. This perspective highlights the evolution of DoE from classical factorial designs and response surface methodology to Bayesian, adaptive, and machine-learning-enabled frameworks. We discuss how structured experimentation reveals hidden interactions, supports multi-objective optimization, and enables uncertainty-aware decision-making across complex synthesis spaces. + Copyright 2026 Miroslava Nedyalkova, Vasil Simeonov, Marco Lattuada. License: This work is licensed under a Creative Commons Attribution 4.0 International License. + + + + Nedyalkova + Miroslava + M + 0000-0003-0793-3340 + + Department of Chemistry, University of Fribourg, Fribourg, CH-1700, Switzerland. miroslava.nedyalkova@unifr.ch. + + + + Simeonov + Vasil + V + + University of Sofia. vsimeonov@chem.uni-sofia.bg. + + + + Lattuada + Marco + M + + Department of Chemistry, University of Fribourg, Fribourg, CH-1700, Switzerland. marco.lattuada@unifr.ch. + + + + eng + + + BG-RRP-2.004-0008 + NextGenerationEU + + + + + Journal Article + + + 2026 + 05 + 27 + +
+ + Switzerland + Chimia (Aarau) + 0373152 + 0009-4293 + + IM + + Design of experiments + Nanoparticles + Nanotechnology + Self-driving labs + +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 20 + + + 2026 + 3 + 16 + + + 2026 + 6 + 1 + 6 + 44 + + + epublish + + 42222990 + 10.2533/chimia.2026.305 + + +
+ + + 42222989 + + 2026 + 06 + 01 + +
+ + 0009-4293 + + 80 + 5 + + 2026 + May + 27 + + + Chimia + Chimia (Aarau) + + Leveraging the Potential of Machine-Learning Interatomic Potentials for QM/MM Simulations. + + 298 + 304 + 298-304 + + 10.2533/chimia.2026.298 + + Machine-learning interatomic potentials (MLIPs) are increasingly used to replace computationally expensive quantum-mechanical (QM) calculations to obtain the energies and forces in ab initio or multiscale molecular dynamics (MD) simulations. While the computational cost of MLIPs lies between that of QM methods and classical force fields (molecular mechanics, MM), their accuracy is close to that of the chosen reference method (e.g. density functional theory, DFT) with sufficient training data. However, for large biological systems in solution, MLIPs are still too costly to perform long MD simulations, where the full system (i.e. including the solvent) is described by the MLIP. Instead, multiscale approaches analogous to QM/MM (i.e. ML/MM) offer a viable compromise between computational effort and accessible system size and time scales. In this review, we provide a brief overview of recent advances and current developments in this field. + Copyright 2026 Antonia S. Kuhn, Igor Gordiy, Felix Pultar, Sereina Riniker. License: This work is licensed under a Creative Commons Attribution 4.0 International License. + + + + Kuhn + Antonia S + AS + 0000-0002-4616-4428 + + Department of Chemistry and Applied Biosciences, ETH Zürich, Vladimir-Prelog-Weg 2, 8093 Zürich, Switzerland. antonia.kuhn@phys.chem.ethz.ch. + + + + Gordiy + Igor + I + 0000-0002-6540-1804 + + Department of Chemistry and Applied Biosciences, ETH Zürich, Vladimir-Prelog-Weg 2, 8093 Zürich, Switzerland. igor.gordiy@phys.chem.ethz.ch. + + + + Pultar + Felix + F + 0000-0001-8900-4734 + + Department of Chemistry and Applied Biosciences, ETH Zürich, Vladimir-Prelog-Weg 2, 8093 Zürich, Switzerland. felix.pultar@alumni.ethz.ch. + + + + Riniker + Sereina + S + + Department of Chemistry and Applied Biosciences, ETH Zürich, Vladimir-Prelog-Weg 2, 8093 Zürich, Switzerland. sriniker@ethz.ch. + + + + eng + + + 200021_212732 + SNSF_ + Swiss National Science Foundation + Switzerland + + + + Journal Article + + + 2026 + 05 + 27 + +
+ + Switzerland + Chimia (Aarau) + 0373152 + 0009-4293 + + IM + + Machine learning + Molecular dynamics + Multiscale simulations + Neural network potentials + QM/MM + + There are no conflicts of interest to declare. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 2 + 15 + + + 2026 + 3 + 16 + + + 2026 + 6 + 1 + 6 + 44 + + + epublish + + 42222989 + 10.2533/chimia.2026.298 + + +
+ + + 42222988 + + 2026 + 06 + 01 + +
+ + 0009-4293 + + 80 + 5 + + 2026 + May + 27 + + + Chimia + Chimia (Aarau) + + High-Accuracy Molecular Simulations with Machine-Learning Potentials and Semiclassical Approximations to Quantum Dynamics. + + 292 + 297 + 292-297 + + 10.2533/chimia.2026.292 + + Accurate simulations of molecules require high-level electronic-structure theory in combination with rigorous methods for approximating the quantum dynamics. Machine-learning approaches can significantly reduce the computational expense of this workflow without any loss of accuracy. We discuss various methods for constructing potential energy surfaces including transfer learning, which requires a minimal number of expensive training points. In this way, we can study chemical reactions at a high level but at a low cost. In particular, as the potentials are smooth and differentiable, they enable the use of more advanced semiclassical approximations to quantum dynamics, such as perturbatively corrected instanton theory, which can capture both tunnelling and anharmonicity. + Copyright 2026 Valerii Andreichev, Jindra Dušek, Markus Meuwly, Jeremy O. Richardson. License: This work is licensed under a Creative Commons Attribution 4.0 International License. + + + + Andreichev + Valerii + V + 0000-0003-2071-2964 + + Department of Chemistry, University of Basel, CH-4056 Basel, Switzerland. valerii.andreichev@unibas.ch. + + + + Dušek + Jindra + J + 0009-0008-5168-1623 + + Department of Chemistry and Applied Biosciences, ETH Zurich, CH-8093 Zurich, Switzerland. jindra.dusek@phys.chem.ethz.ch. + + + + Meuwly + Markus + M + 0000-0001-7930-8806 + + Department of Chemistry, University of Basel, CH-4056 Basel, Switzerland. m.meuwly@unibas.ch. + + + + Richardson + Jeremy O + JO + 0000-0002-9429-151X + + Department of Chemistry and Applied Biosciences, ETH Zurich, CH-8093 Zurich, Switzerland. jeremy.richardson@phys.chem.ethz.ch. + + + + eng + + + 207772 + SNSF_ + Swiss National Science Foundation + Switzerland + + + 200020_219779 + SNSF_ + Swiss National Science Foundation + Switzerland + + + 200021_215088 + SNSF_ + Swiss National Science Foundation + Switzerland + + + + Journal Article + + + 2026 + 05 + 27 + +
+ + Switzerland + Chimia (Aarau) + 0373152 + 0009-4293 + + IM + + Machine learning + Reaction dynamics + Tunnelling + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 2 + 16 + + + 2026 + 3 + 17 + + + 2026 + 6 + 1 + 6 + 44 + + + epublish + + 42222988 + 10.2533/chimia.2026.292 + + +
+ + + 42222902 + + 2026 + 06 + 01 + +
+ + 1349-7006 + + + 2026 + Jun + 01 + + + Cancer science + Cancer Sci + + Organ-Specific Cancer-Associated Fibroblast Subtypes Across the Digestive System Linked to Cancer Hallmarks. + 10.1111/cas.70435 + + Cancer-associated fibroblasts (CAFs) are major stromal components of the tumor microenvironment (TME) and play diverse roles in gastrointestinal (GI) cancer progression, immunity, and therapeutic resistance. However, the heterogeneity, tissue specificity, and clinical relevance of CAFs across GI cancers remain incompletely defined. We integrated 14 independent single-cell RNA-sequencing datasets comprising 239 GI adenocarcinoma samples to define the subtypes of CAFs. Machine learning-based deconvolution was applied to 18 bulk transcriptomic cohorts (3396 patients) to estimate CAF subtype abundance and assess prognostic associations by meta-analysis. Functional states, differentiation trajectories, cell-cell communication, and spatial organization were analyzed using gene-set enrichment, transcription factor activity inference, pseudotime modeling, ligand-receptor analysis, and spatial transcriptomics. We identified eight CAF subtypes with distinct transcriptional programs and organ-specific distributions. Two myofibroblastic CAF subtypes (myCAF1 and myCAF2) were consistently associated with poor prognosis, characterized by extracellular matrix remodeling, TGF-β signaling, hypoxia adaptation, and close crosstalk with immunosuppressive macrophages, as well as tumor cells displaying epithelial-mesenchymal transition and hypoxia signatures. In contrast, inflammatory CAF (iCAF) 1 was associated with a favorable prognosis and increased infiltration of antitumor immune cells. Spatial transcriptomic analyses further revealed that distinct CAF subtypes preferentially occupied discrete spatial domains within the GI TME. Our study demonstrated that the functional state and spatial context of CAFs jointly affect tumor progression and outcomes in patients with GI cancers. myCAF-driven stromal niches promote immune suppression and poor prognosis, whereas a balanced inflammatory CAF program may support antitumor immunity. + © 2026 The Author(s). Cancer Science published by John Wiley & Sons Australia, Ltd on behalf of Japanese Cancer Association. + + + + Wang + Huaitao + H + + Division of Carcinogenesis, The Cancer Institute, Japanese Foundation for Cancer Research, Tokyo, Japan. + + + Department of Gastroenterological Surgery, Graduate School of Medical Sciences, Kumamoto University, Kumamoto, Japan. + + + Department of General Surgery, Shengjing Hospital of China Medical University, Shenyang, China. + + + + Semba + Takashi + T + + Division of Carcinogenesis, The Cancer Institute, Japanese Foundation for Cancer Research, Tokyo, Japan. + + + + Yonemura + Atsuko + A + + Division of Carcinogenesis, The Cancer Institute, Japanese Foundation for Cancer Research, Tokyo, Japan. + + + + Naito + Hiroshi + H + + Division of Carcinogenesis, The Cancer Institute, Japanese Foundation for Cancer Research, Tokyo, Japan. + + + + Fu + Lingfeng + L + + Division of Carcinogenesis, The Cancer Institute, Japanese Foundation for Cancer Research, Tokyo, Japan. + + + + Tajiri + Takuya + T + + Division of Carcinogenesis, The Cancer Institute, Japanese Foundation for Cancer Research, Tokyo, Japan. + + + Department of Gastroenterological Surgery, Graduate School of Medical Sciences, Kumamoto University, Kumamoto, Japan. + + + + Iwatsuki + Masaaki + M + + Department of Gastroenterological Surgery, Graduate School of Medical Sciences, Kumamoto University, Kumamoto, Japan. + + + + Ishimoto + Takatsugu + T + 0000-0003-1852-1835 + + Division of Carcinogenesis, The Cancer Institute, Japanese Foundation for Cancer Research, Tokyo, Japan. + + + International Research Center of Medical Sciences, Kumamoto University, Kumamoto, Japan. + + + + eng + + + JPMJFR200H + Fusion Oriented REsearch for disruptive Science and Technology + + + + 25ama221442 + Japan Agency for Medical Research and Development + + + + 25ama221446 + Japan Agency for Medical Research and Development + + + + JP256f0137010 + Japan Agency for Medical Research and Development + + + + 23K27463 + Japan Society for the Promotion of Science + + + + 23K27689 + Japan Society for the Promotion of Science + + + + 24K22151 + Japan Society for the Promotion of Science + + + + 24KK0162 + Japan Society for the Promotion of Science + + + + 25K19750 + Japan Society for the Promotion of Science + + + + + Journal Article + + + 2026 + 06 + 01 + +
+ + England + Cancer Sci + 101168776 + 1347-9032 + + IM + + cancer‐associated fibroblasts + gastrointestinal cancer + patient prognosis + single‐cell RNA sequencing + spatial transcriptomics + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 5 + 20 + + + 2026 + 3 + 9 + + + 2026 + 5 + 24 + + + 2026 + 6 + 1 + 6 + 19 + + + aheadofprint + + 42222902 + 10.1111/cas.70435 + + + + K. E. de Visser and J. A. Joyce, “The Evolving Tumor Microenvironment: From Cancer Initiation to Metastatic Outgrowth,” Cancer Cell 41 (2023): 374–403. + + + L. Bu, H. Baba, N. Yoshida, et al., “Biological Heterogeneity and Versatility of Cancer‐Associated Fibroblasts in the Tumor Microenvironment,” Oncogene 38 (2019): 4887–4901. + + + L. Bu, H. Baba, T. Yasuda, T. Uchihara, and T. Ishimoto, “Functional Diversity of Cancer‐Associated Fibroblasts in Modulating Drug Resistance,” Cancer Science 111 (2020): 3468–3477. + + + M. Yamazaki and T. Ishimoto, “Targeting Cancer‐Associated Fibroblasts: Eliminate or Reprogram?,” Cancer Science 116 (2025): 613–621. + + + R. Kalluri, “The Biology and Function of Fibroblasts in Cancer,” Nature Reviews. Cancer 16 (2016): 582–598. + + + E. Sahai, I. Astsaturov, E. Cukierman, et al., “A Framework for Advancing Our Understanding of Cancer‐Associated Fibroblasts,” Nature Reviews. Cancer 20 (2020): 174–186. + + + T. Akiyama, T. Yasuda, T. Uchihara, et al., “Stromal Reprogramming Through Dual PDGFRalpha/Beta Blockade Boosts the Efficacy of Anti‐PD‐1 Immunotherapy in Fibrotic Tumors,” Cancer Research 83 (2023): 753–770. + + + J. Song, R. Wei, C. Liu, et al., “Antigen‐Presenting Cancer Associated Fibroblasts Enhance Antitumor Immunity and Predict Immunotherapy Response,” Nature Communications 16 (2025): 2175. + + + M. Gerling, N. V. Buller, L. M. Kirn, et al., “Stromal Hedgehog Signalling Is Downregulated in Colon Cancer and Its Restoration Restrains Tumour Growth,” Nature Communications 7 (2016): 12321. + + + B. C. Ozdemir, T. Pentcheva‐Hoang, J. L. Carstens, et al., “Depletion of Carcinoma‐Associated Fibroblasts and Fibrosis Induces Immunosuppression and Accelerates Pancreas Cancer With Reduced Survival,” Cancer Cell 25 (2014): 719–734. + + + D. Lavie, A. Ben‐Shmuel, N. Erez, and R. Scherz‐Shouval, “Cancer‐Associated Fibroblasts in the Single‐Cell Era,” Nature Cancer 3 (2022): 793–807. + + + D. Ohlund, A. Handly‐Santana, G. Biffi, et al., “Distinct Populations of Inflammatory Fibroblasts and Myofibroblasts in Pancreatic Cancer,” Journal of Experimental Medicine 214 (2017): 579–596. + + + E. Elyada, M. Bolisetty, P. Laise, et al., “Cross‐Species Single‐Cell Analysis of Pancreatic Ductal Adenocarcinoma Reveals Antigen‐Presenting Cancer‐Associated Fibroblasts,” Cancer Discovery 9 (2019): 1102–1123. + + + X. Chen, Z. Zhou, L. Xie, et al., “Single‐Cell Resolution Spatial Analysis of Antigen‐Presenting Cancer‐Associated Fibroblast Niches,” Cancer Cell 43 (2025): 2224–2240. + + + Y. Gao, J. Li, W. Cheng, et al., “Cross‐Tissue Human Fibroblast Atlas Reveals Myofibroblast Subtypes With Distinct Roles in Immune Modulation,” Cancer Cell 42 (2024): 1764–1783. + + + Y. Liu, A. Sinjab, J. Min, et al., “Conserved Spatial Subtypes and Cellular Neighborhoods of Cancer‐Associated Fibroblasts Revealed by Single‐Cell Spatial Multi‐Omics,” Cancer Cell 43 (2025): 905–924. + + + P. Danpanichkul, K. Suparan, P. Tothanarungroj, et al., “Epidemiology of Gastrointestinal Cancers: A Systematic Analysis From the Global Burden of Disease Study 2021,” Gut 74 (2024): 26–34. + + + R. Sundar, I. Nakayama, S. R. Markar, et al., “Gastric Cancer,” Lancet 405 (2025): 2087–2102. + + + C. Eng, T. Yoshino, E. Ruiz‐Garcia, et al., “Colorectal Cancer,” Lancet 404 (2024): 294–310. + + + T. F. Stoop, A. A. Javed, A. Oba, et al., “Pancreatic Cancer,” Lancet 405 (2025): 1182–1202. + + + A. K. Patel, N. S. Sethi, and H. Park, “Gastric Cancer: A Review,” Journal of the American Medical Association 335 (2026): 439–450. + + + Y. Wu, H. Grabsch, T. Ivanova, et al., “Comprehensive Genomic Meta‐Analysis Identifies Intra‐Tumoural Stroma as a Predictor of Survival in Patients With Gastric Cancer,” Gut 62 (2013): 1100–1111. + + + A. Huijbers, R. A. Tollenaar, G. W. v Pelt, et al., “The Proportion of Tumor‐Stroma as a Strong Prognosticator for Stage II and III Colon Cancer Patients: Validation in the VICTOR Trial,” Annals of Oncology 24 (2013): 179–185. + + + S. Mascharak, J. L. Guo, D. S. Foster, et al., “Desmoplastic Stromal Signatures Predict Patient Outcomes in Pancreatic Ductal Adenocarcinoma,” Cell Reports Medicine 4 (2023): 101248. + + + I. Korsunsky, N. Millard, J. Fan, et al., “Fast, Sensitive and Accurate Integration of Single‐Cell Data With Harmony,” Nature Methods 16 (2019): 1289–1296. + + + C. Dominguez Conde, C. Xu, L. B. Jarvis, et al., “Cross‐Tissue Immune Cell Analysis Reveals Tissue‐Specific Features in Humans,” Science 376 (2022): eabl5197. + + + C. B. Steen, C. L. Liu, A. A. Alizadeh, and A. M. Newman, “Profiling Cell Type Abundance and Expression in Bulk Tissues With CIBERSORTx,” Methods in Molecular Biology 2117 (2020): 135–157. + + + L. A. Torre‐Healy, R. R. Kawalerski, K. Oh, et al., “Open‐Source Curation of a Pancreatic Ductal Adenocarcinoma Gene Expression Analysis Platform (pdacR) Supports a Two‐Subtype Model,” Communications Biology 6 (2023): 163. + + + T. Biancalani, G. Scalia, L. Buffoni, et al., “Deep Learning and Alignment of Spatially Resolved Single‐Cell Transcriptomes With Tangram,” Nature Methods 18 (2021): 1352–1362. + + + C. X. Dominguez, S. Muller, S. Keerthivasan, et al., “Single‐Cell RNA Sequencing Reveals Stromal Evolution Into LRRC15(+) Myofibroblasts as a Determinant of Patient Response to Cancer Immunotherapy,” Cancer Discovery 10 (2020): 232–253. + + + A. T. Krishnamurty, J. A. Shyer, M. Thai, et al., “LRRC15(+) Myofibroblasts Dictate the Stromal Setpoint to Suppress Tumour Immunity,” Nature 611 (2022): 148–154. + + + A. Subramanian, P. Tamayo, V. K. Mootha, et al., “Gene Set Enrichment Analysis: A Knowledge‐Based Approach for Interpreting Genome‐Wide Expression Profiles,” Proceedings of the National Academy of Sciences of the United States of America 102 (2005): 15545–15550. + + + A. Liberzon, C. Birger, H. Thorvaldsdottir, M. Ghandi, J. P. Mesirov, and P. Tamayo, “The Molecular Signatures Database (MSigDB) Hallmark Gene Set Collection,” Cell Systems 1 (2015): 417–425. + + + S. Muller‐Dott, E. Tsirvouli, M. Vazquez, et al., “Expanding the Coverage of Regulons From High‐Confidence Prior Knowledge for Accurate Estimation of Transcription Factor Activities,” Nucleic Acids Research 51 (2023): 10934–10949. + + + O. Kanisicak, H. Khalil, M. J. Ivey, et al., “Genetic Lineage Tracing Defines Myofibroblast Origin and Function in the Injured Heart,” Nature Communications 7 (2016): 12260. + + + B. Piersma, S. de Rond, P. M. Werker, et al., “YAP1 Is a Driver of Myofibroblast Differentiation in Normal and Diseased Fibroblasts,” American Journal of Pathology 185 (2015): 3326–3337. + + + C. Gross, H. Dubois‐Pot, and B. Wasylyk, “The Ternary Complex Factor Net/Elk‐3 Participates in the Transcriptional Response to Hypoxia and Regulates HIF‐1 Alpha,” Oncogene 27 (2008): 1333–1341. + + + A. J. Whitehead, H. Atcha, J. D. Hocker, B. Ren, and A. J. Engler, “AP‐1 Signaling Modulates Cardiac Fibroblast Stress Responses,” Journal of Cell Science 136 (2023): 1152. + + + S. Chen, S. Jiang, W. Zheng, et al., “RelA/p65 Inhibition Prevents Tendon Adhesion by Modulating Inflammation, Cell Proliferation, and Apoptosis,” Cell Death & Disease 8 (2017): e2710. + + + C. J. Lee, H. J. An, E. S. Cho, et al., “Stat2 Stability Regulation: An Intersection Between Immunity and Carcinogenesis,” Experimental & Molecular Medicine 52 (2020): 1526–1536. + + + M. Bonelli, K. Dalwigk, A. Platzer, et al., “IRF1 Is Critical for the TNF‐Driven Interferon Response in Rheumatoid Fibroblast‐Like Synoviocytes: JAKinibs Suppress the Interferon Response in RA‐FLSs,” Experimental & Molecular Medicine 51 (2019): 1–11. + + + J. Massague, “TGFbeta in Cancer,” Cell 134 (2008): 215–230. + + + M. H. Yang, M. Z. Wu, S. H. Chiou, et al., “Direct Regulation of TWIST by HIF‐1alpha Promotes Metastasis,” Nature Cell Biology 10 (2008): 295–305. + + + Y. Mizutani, H. Kobayashi, T. Iida, et al., “Meflin‐Positive Cancer‐Associated Fibroblasts Inhibit Pancreatic Carcinogenesis,” Cancer Research 79 (2019): 5367–5381. + + + T. Iida, Y. Mizutani, N. Esaki, et al., “Pharmacologic Conversion of Cancer‐Associated Fibroblasts From a Protumor Phenotype to an Antitumor Phenotype Improves the Sensitivity of Pancreatic Cancer to Chemotherapeutics,” Oncogene 41 (2022): 2764–2777. + + + L. Faure, R. Soldatov, P. V. Kharchenko, and I. Adameyko, “scFates: A Scalable Python Package for Advanced Pseudotime and Bifurcation Analysis From Single‐Cell Data,” Bioinformatics 39 (2023): btac746. + + + M. Setty, V. Kiseliovas, J. Levine, A. Gayoso, L. Mazutis, and D. Pe'er, “Characterization of Cell Fate Probabilities in Single‐Cell Data With Palantir,” Nature Biotechnology 37 (2019): 451–460. + + + M. Lange, V. Bergen, M. Klein, et al., “CellRank for Directed Single‐Cell Fate Mapping,” Nature Methods 19 (2022): 159–170. + + + D. G. DeNardo and B. Ruffell, “Macrophages as Regulators of Tumour Immunity and Immunotherapy,” Nature Reviews. Immunology 19 (2019): 369–382. + + + S. Jin, M. V. Plikus, and Q. Nie, “CellChat for Systematic Analysis of Cell‐Cell Communication From Single‐Cell Transcriptomics,” Nature Protocols 20 (2025): 180–219. + + + P. Nan, X. Dong, X. Bai, et al., “Tumor‐Stroma TGF‐beta1‐THBS2 Feedback Circuit Drives Pancreatic Ductal Adenocarcinoma Progression via Integrin Alpha(v)beta(3)/CD36‐Mediated Activation of the MAPK Pathway,” Cancer Letters 528 (2022): 59–75. + + + A. Yonemura, T. Semba, J. Zhang, et al., “Mesothelial Cells With Mesenchymal Features Enhance Peritoneal Dissemination by Forming a Protumorigenic Microenvironment,” Cell Reports 43 (2024): 113613. + + + H. Li, I. S. Batth, X. Qu, et al., “IGF‐IR Signaling in Epithelial to Mesenchymal Transition and Targeting IGF‐IR Therapy: Overview and New Insights,” Molecular Cancer 16 (2017): 6. + + + D. Gong, J. M. Arbesfeld‐Qiu, E. Perrault, J. W. Bae, and W. L. Hwang, “Spatial Oncology: Translating Contextual Biology to the Clinic,” Cancer Cell 42 (2024): 1653–1675. + + + Z. Chen, F. Han, Y. Du, H. Shi, and W. Zhou, “Hypoxic Microenvironment in Cancer: Molecular Mechanisms and Therapeutic Interventions,” Signal Transduction and Targeted Therapy 8 (2023): 70. + + + F. Castro, A. P. Cardoso, R. M. Goncalves, K. Serre, and M. J. Oliveira, “Interferon‐Gamma at the Crossroads of Tumor Immune Surveillance or Evasion,” Frontiers in Immunology 9 (2018): 847. + + + R. Tulsawani, L. S. Kelly, N. Fatma, et al., “Neuroprotective Effect of Peroxiredoxin 6 Against Hypoxia‐Induced Retinal Ganglion Cell Damage,” BMC Neuroscience 11 (2010): 125. + + + Z. Chen, A. Inague, K. Kaushal, et al., “PRDX6 Contributes to Selenocysteine Metabolism and Ferroptosis Resistance,” Molecular Cell 84 (2024): 4645–4659. + + + L. Cords, S. Engler, M. Haberecker, et al., “Cancer‐Associated Fibroblast Phenotypes Are Associated With Patient Outcome in Non‐Small Cell Lung Cancer,” Cancer Cell 42 (2024): 396–412. + + + F. R. Greten and S. I. Grivennikov, “Inflammation and Cancer: Triggers, Mechanisms, and Consequences,” Immunity 51 (2019): 27–41. + + + K. Hosaka, Y. Yang, T. Seki, et al., “Pericyte‐Fibroblast Transition Promotes Tumor Growth and Metastasis,” Proceedings of the National Academy of Sciences of the United States of America 113 (2016): E5618–E5627. + + + X. Wang, K. Shinjo, K. Kumegawa, et al., “Transgelin Defines Pro‐Tumorigenic Cancer‐Associated Fibroblasts in Pancreatic Cancer,” British Journal of Cancer 134 (2026): 577–588. + + + M. Zhang, H. Yang, L. Wan, et al., “Single‐Cell Transcriptomic Architecture and Intercellular Crosstalk of Human Intrahepatic Cholangiocarcinoma,” Journal of Hepatology 73 (2020): 1118–1130. + + + +
+ + + 42222869 + + 2026 + 06 + 01 + +
+ + 1463-9262 + + + 2026 + May + 14 + + + Green chemistry : an international journal and green chemistry resource : GC + Green Chem + + Machine learning to predict plasma-based CO2 conversion in dielectric barrier discharge reactors. + 10.1039/d6gc01077f + + Plasma-based CO2 conversion is an emerging defossilization technology that converts a potent greenhouse gas into valuable chemical feedstocks, yet its optimization is hampered by complex nonlinear behavior and resource-intensive experimentation. In this work, we collected a comprehensive database, comprising 358 data points with six key operational and geometric parameters, published in literature between 2010 and 2025. Leveraging this dataset, we developed a hybrid machine learning (ML) model integrating physics-informed neural network (PINN), random forest (RF) and extreme gradient boost (XGB) algorithms to predict CO2 conversion and energy efficiency (EE) in dielectric barrier discharge (DBD) reactors. Under a rigorous group 5-fold cross-validation (CV) protocol, the ensemble consistently outperformed all individual models, with the best-fold model achieving an R + 2 of 0.791. Error-correlation analysis revealed that the ensemble weights adapt to the pairwise error correlation structure: PINN consistently provides complementary information, while RF and XGB, being largely interchangeable, are selected according to their individual performance. When applied to prospective experimental validation, the hybrid model achieves an R + 2 of 0.92 on unseen data within the explored domain, and it eliminates unphysical predictions in data-sparse regimes, yielding strictly non-negative CO2 conversion estimates. SHapley Additive exPlanations (SHAP) analysis further identified flow rate and power as the dominant input features, collectively accounting for 61%-71% of the model's predictions. This work establishes a robust and interpretable framework while quantifying the generalizability of ML models in heterogeneous data environments, offering a practical tool to accelerate plasma-based gas conversion optimization. + This journal is © The Royal Society of Chemistry. + + + + Li + Jiayin + J + 0000-0002-1179-1077 + + Research Group PLASMANT and Center of Excellence PLASMA, University of Antwerp, Department of Chemistry Antwerp 2610 Belgium annemie.bogaerts@uantwerpen.be. + + + Electrification Institute, University of Antwerp Olieweg 97 2020 Antwerp Belgium. + + + + Lu + Xinpei + X + + School of Electrical and Electronic Engineering, Huazhong University of Science and Technology Wuhan Hubei 430074 China. + + + + Arun + Pranav + P + 0009-0002-0312-3519 + + Department of Chemical Engineering and Chemistry, Eindhoven University of Technology Eindhoven 5612 AZ the Netherlands S.Li1@tue.nl. + + + + Xu + Jing + J + + School of Electronic Information and Communications, Huazhong University of Science and Technology Wuhan Hubei 430074 People's Republic of China. + + + + Gallucci + Fausto + F + + Department of Chemical Engineering and Chemistry, Eindhoven University of Technology Eindhoven 5612 AZ the Netherlands S.Li1@tue.nl. + + + + Li + Sirui + S + 0000-0002-2267-4335 + + Department of Chemical Engineering and Chemistry, Eindhoven University of Technology Eindhoven 5612 AZ the Netherlands S.Li1@tue.nl. + + + + Bogaerts + Annemie + A + 0000-0001-9875-6460 + + Research Group PLASMANT and Center of Excellence PLASMA, University of Antwerp, Department of Chemistry Antwerp 2610 Belgium annemie.bogaerts@uantwerpen.be. + + + Electrification Institute, University of Antwerp Olieweg 97 2020 Antwerp Belgium. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + England + Green Chem + 101307052 + 1463-9262 + + The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 19 + + + 2026 + 5 + 11 + + + 2026 + 6 + 1 + 6 + 18 + + + aheadofprint + + 42222869 + PMC13216855 + 10.1039/d6gc01077f + d6gc01077f + + +
+ + + 42222848 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2624-8212 + + 9 + + 2026 + + + Frontiers in artificial intelligence + Front Artif Intell + + Federated learning with dynamic weighted aggregation for multi-crop disease detection: a hybrid CNN-transformer approach. + + 1751118 + 1751118 + + 10.3389/frai.2026.1751118 + + Crop diseases pose a significant threat to agriculture globally, causing a loss of 220 billion dollars annually. The problem can be solved through traditional machine learning methods which run on central servers but face two main obstacles: farmers refuse to provide their farming information and the uneven distribution of crop diseases across different regions. This paper introduces a federated learning framework that addresses these challenges through a novel approach that combines hybrid CNN-Transformer architectures with dynamic weighted aggregation. Our system applies EfficientNet-B0 and MobileNetV2 lightweight models which use MobileViT blocks together with CBAM and ESA attention mechanisms to extract detailed features from crop images. The innovation lies in the dynamic aggregation strategy, "AdaClass"-Adaptive Class-Aware aggregation, that identifies the underperforming classes in each round using class-wise F1 score and emphasizes the clients that are having a stronger performance on challenging disease classes.This approach helps in promoting a balanced performance across different disease classes. This particularly benefits the disease classes that are difficult to detect. Extensive experiments on two standard datasets demonstrate strong results: the proposed EfficientNet-B0 hybrid model achieves 99.32% accuracy on PlantVillage and 92.5% on CCMT datasets, while the MobileNetV2 achieves 99.17% and 91.4% respectively. Importantly, these models remain efficient enough for deployment on edge devices, with the MobileNetV2 hybrid requiring only 7.63 MB storage and processing images in 41.2 milliseconds. + Copyright © 2026 Shashank and Bhavadharini. + + + + Shashank + Ragoor + R + + School of Computer Science and Engineering, Vellore Institute of Technology, Chennai, India. + + + + Bhavadharini + R M + RM + + School of Computer Science and Engineering, Vellore Institute of Technology, Chennai, India. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Artif Intell + 101770551 + 2624-8212 + + + CNN-transformer + agriculture + crop disease detection + dynamic aggregation + federated learning + machine learning + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 11 + 21 + + + 2026 + 4 + 2 + + + 2026 + 4 + 9 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222848 + PMC13219276 + 10.3389/frai.2026.1751118 + + +
+ + + 42222846 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2624-8212 + + 9 + + 2026 + + + Frontiers in artificial intelligence + Front Artif Intell + + Dynamic nested hierarchies: self-evolving machine learning architectures for lifelong learning. + + 1804338 + 1804338 + + 10.3389/frai.2026.1804338 + + Contemporary machine learning models, including large language models, exhibit remarkable capabilities in static tasks yet falter in non-stationary environments due to rigid architectures that hinder continual adaptation and lifelong learning. Building upon the nested learning (NL) paradigm, which decomposes models into multi-level optimization problems with fixed update frequencies, this work proposes Dynamic Nested Hierarchies (DNH) as an extension enabling autonomous structural adaptation. Unlike static nested learning where hierarchy depth and update frequencies are fixed at initialization, DNH introduces three biologically-grounded mechanisms: (1) level addition triggered by meta-loss thresholds, analogous to adult neurogenesis in the hippocampal dentate gyrus; (2) level pruning based on gradient contribution, analogous to synaptic elimination; and (3) frequency modulation driven by local surprise signals, analogous to neural oscillation adaptation. We provide explicit mappings between these mechanisms and neuroplasticity processes, moving beyond superficial analogy to principled design. Through rigorous mathematical formulations, we prove convergence bounds of O(1/T + δ2) in non-stationary environments, expressivity improvements bounded by ϵ ≤ O(1/L + + t + ) + γδ, and sublinear regret + O + + ( + + + + T + + + + ) + + compared to static architectures' linear regret. Empirical evaluations on language modeling, continual learning benchmarks-including comparisons with Elastic Weight Consolidation (EWC) and Synaptic Intelligence (SI) as well as modern methods (DER++, MEMO) on Split ImageNet, CLEAR-100, and CORe50-and long-context reasoning validate the theoretical advantages. Comprehensive ablation studies verify the contribution of each component, including the Self-Modifying Memory (SMM) module and Evolutionary Adam (EAdam) optimizer. We provide detailed computational cost analysis and parameter trajectory visualizations demonstrating bounded growth through self-regulating pruning. + Copyright © 2026 Jafari, Ozcinar and Anbarjafari. + + + + Jafari + Akbar Anbar + AA + + Institute of Technology, University of Tartu, Tartu, Estonia. + + + + Ozcinar + Cagri + C + + Institute of Technology, University of Tartu, Tartu, Estonia. + + + + Anbarjafari + Gholamreza + G + + Estonian Business School, Tallinn, Estonia. + + + 3S Holding, Tartu, Estonia. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Artif Intell + 101770551 + 2624-8212 + + + catastrophic forgetting + class-incremental learning + continual learning + dynamic nested hierarchies + lifelong learning + nested optimization + neurogenesis + neuroplasticity-inspired AI + + GA is employed by 3S Holding. The remaining author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 5 + + + 2026 + 4 + 1 + + + 2026 + 4 + 7 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222846 + PMC13216184 + 10.3389/frai.2026.1804338 + + +
+ + + 42222842 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2624-8212 + + 9 + + 2026 + + + Frontiers in artificial intelligence + Front Artif Intell + + Artificial intelligence and data analytics in human talent management. + + 1793296 + 1793296 + + 10.3389/frai.2026.1793296 + + Digital transformation has reshaped human talent management, with Artificial Intelligence (AI) and Data Analytics emerging as key tools for optimizing recruitment, retention, performance evaluation, and employee development. Despite growing interest, the literature remains fragmented across technical, managerial, and ethical perspectives. This study provides an integrated bibliometric and qualitative analysis of research on AI and Data Analytics in human talent management from 2015 to 2025, aiming to map evolution, thematic trends, methodological developments, and research gaps. + A mixed-methods approach combined bibliometric analysis with qualitative synthesis. A structured search in Scopus and Web of Science retrieved 137 records using Boolean operators combining AI/machine learning terms with People/HR Analytics and talent management concepts. After removing duplicates and irrelevant studies based on predefined inclusion criteria (peer-reviewed articles and reviews in English or Spanish), a final dataset of 82 documents was analyzed. Bibliometric techniques in R (v4.4.2) and VOSviewer (v1.6.20) examined scientific productivity, citation patterns, collaboration networks, and keyword co-occurrence. Additionally, the 30 most cited articles underwent qualitative synthesis to extract key conceptual and methodological contributions. + Scientific production showed exponential growth, particularly after 2020, with peaks in 2024 (21 articles) and 2025 (27 articles). Research concentrated in India, Germany, the United States, and the United Kingdom, with limited contributions from Latin America and Africa. Four thematic clusters emerged: (1) People Analytics and process optimization, (2) predictive models and machine learning, (3) data governance and ethical considerations, and (4) convergence of AI, Big Data, and advanced analytics. Highly cited studies highlighted advances in predictive modeling for turnover and recruitment, while also emphasizing ethical risks such as algorithmic bias and the need for explainable AI (XAI). + The field is evolving toward the integration of predictive capabilities with organizational decision-making and ethical frameworks, shifting human talent management from reactive to proactive, data-driven practices. However, gaps persist in empirical validation of models, standardization of ethical guidelines, interdisciplinary collaboration, and geographic diversity. This study contributes a unified socio-technical perspective that links technological innovation with organizational processes and governance. The findings offer a foundation for future research on context-specific, ethically grounded AI applications in emerging markets and support organizations in leveraging analytics for more adaptive and responsible talent management. + Copyright © 2026 Sarmiento Orna, Apolo-Silva, Solís-Naranjo, Borja-Salinas, Espinoza-Solis and Peralta-Gamboa. + + + + Sarmiento Orna + Diana Alexandra + DA + + Universidad Estatal de Milagro, Milagro, Ecuador. + + + + Apolo-Silva + Mariuxi Fernanda + MF + + Universidad Tecnica Estatal de Quevedo, Quevedo, Ecuador. + + + + Solís-Naranjo + Alvaro Paul + AP + + Universidad Estatal de Bolívar, Bolívar, Ecuador. + + + + Borja-Salinas + Ely Israel + EI + + Universidad Estatal de Milagro, Milagro, Ecuador. + + + + Espinoza-Solis + Eduardo Javier + EJ + + Universidad Estatal de Milagro, Milagro, Ecuador. + + + + Peralta-Gamboa + Dennis Alfredo + DA + + Universidad Estatal de Milagro, Milagro, Ecuador. + + + + eng + + Journal Article + Systematic Review + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Artif Intell + 101770551 + 2624-8212 + + + data-driven decision-making + digital transformation + emerging technologies + human resources innovation + intelligent automation + predictive analytics + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 1 + 21 + + + 2026 + 4 + 8 + + + 2026 + 4 + 13 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222842 + PMC13219358 + 10.3389/frai.2026.1793296 + + +
+ + + 42222841 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2624-8212 + + 9 + + 2026 + + + Frontiers in artificial intelligence + Front Artif Intell + + Transformer-based NLP approaches for credit risk prediction: a systematic review. + + 1819994 + 1819994 + + 10.3389/frai.2026.1819994 + + This study systematically reviews transformer based Natural Language Processing (NLP) and Large Language Model (LLM) approaches for credit risk prediction, addressing limitations of traditional structured data credit scoring models. + A PRISMA guided systematic literature review was conducted across Scopus, ScienceDirect, and Web of Science, covering English language studies published between 2015 and 2025. A total of 284 records were identified and screened using semantic similarity filtering, resulting in 63 eligible studies for qualitative synthesis. + The findings show that transformer based architectures, including Bidirectional Encoder Representations from Transformers (BERT), Robustly Optimized BERT Pretraining Approach (RoBERTa), and Large Language Model Meta AI (LLaMA), consistently outperform traditional statistical and machine learning baselines across financial prediction tasks. Attention based Long Short Term Memory (LSTM) models reported Area Under the Curve (AUC) improvements of 3.08% and KS increases of 10.3% over classical methods, while hybrid Convolutional Neural Network (CNN) Transformer architectures achieved accuracy levels up to 96.9% and F1 scores of 0.995 in credit risk datasets. Multimodal and transformer based systems also reported accuracy levels exceeding 95% in financial risk monitoring tasks. However, only a limited subset of studies incorporates formal explainability frameworks or fairness evaluations. + Transformer based NLP approaches improve credit risk prediction by effectively leveraging unstructured textual data. Nevertheless, challenges remain in interpretability, transparency, regulatory alignment, and ethical deployment. Future research should prioritize bias mitigation and governance aware model design to support responsible use in regulated financial environments. + Copyright © 2026 Raliphada, Olukanmi and Olusanya. + + + + Raliphada + Pfarelo + P + + School of Computer Science and Applied Mathematics, University of the Witwatersrand, Johannesburg, Gauteng, South Africa. + + + + Olukanmi + Seun + S + + School of Computer Science and Applied Mathematics, University of the Witwatersrand, Johannesburg, Gauteng, South Africa. + + + + Olusanya + Micheal + M + + Department of Computer Science and Information Technology, Sol Plaatje University, Kimberley, Northern Cape, South Africa. + + + + eng + + Journal Article + Systematic Review + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Artif Intell + 101770551 + 2624-8212 + + + BERT + LLaMA + Natural Language Processing (NLP) + RoBERTa + classification + credit risk + sentiment analysis + transformer models + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 28 + + + 2026 + 4 + 13 + + + 2026 + 4 + 20 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222841 + PMC13219308 + 10.3389/frai.2026.1819994 + + +
+ + + 42222818 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2470-1343 + + 11 + 20 + + 2026 + May + 26 + + + ACS omega + ACS Omega + + Machine Learning in Non-fullerene Organic Solar Cells: Accelerating Discovery, Design, and Understanding. + + 29307 + 29333 + 29307-29333 + + 10.1021/acsomega.6c01194 + + The emergence of nonfullerene acceptors (NFAs) has transformed the performance of organic solar cells (OSCs), driving laboratory power conversion efficiencies beyond 19%. Yet the immense combinatorial space of possible donor-acceptor materials renders exhaustive experimental exploration impractical. Machine learning (ML) and artificial intelligence have therefore become powerful tools for accelerating materials discovery, performance prediction, and molecular design in organic photovoltaics. This review provides a critical and systematic assessment of predictive and generative ML approaches applied to OSCs, encompassing methods ranging from random forests and gradient boosting to deep learning architectures such as graph neural networks, transformers, variational autoencoders, generative adversarial networks, and genetic algorithms. We examine advances in molecular representation and feature engineering, evaluate model performance in predicting key device metricsincluding power conversion efficiency, open-circuit voltage, short-circuit current density, and fill factorand assess the extent to which computational predictions translate into experimentally validated devices. We further discuss key limitations, including data set bias, distribution shift, morphology-related effects, chemical validity, and the synthetic accessibility of generated candidates, as well as the persistent gap between predicted and realized performance. Finally, we highlight emerging directions poised to shape the next phase of ML-guided OSC research, including physics-informed learning, multiobjective optimization, interpretable models, active learning coupled with first-principles calculations, and human-in-the-loop discovery pipelines. Collectively, these advances position machine learning as a central component in the rational design and accelerated development of next-generation organic photovoltaic materials. + © 2026 The Authors. Published by American Chemical Society. + + + + Das + Bibhas + B + 0000-0002-9671-5275 + + Department of Chemistry, Indian Institute of Technology Gandhinagar, Gandhinagar 382355, Gujarat, India. + 242275 + + + + Mondal + Anirban + A + 0000-0003-3029-8840 + + Department of Chemistry, Indian Institute of Technology Gandhinagar, Gandhinagar 382355, Gujarat, India. + 242275 + + + + eng + + Journal Article + Review + + + 2026 + 05 + 11 + +
+ + United States + ACS Omega + 101691658 + 2470-1343 + +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 1 + 31 + + + 2026 + 4 + 24 + + + 2026 + 5 + 5 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222818 + PMC13216995 + 10.1021/acsomega.6c01194 + + +
+ + + 42222805 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2470-1343 + + 11 + 20 + + 2026 + May + 26 + + + ACS omega + ACS Omega + + Leveraging Neural Networks to Correct FoldX Free Energy Estimates. + + 30003 + 30013 + 30003-30013 + + 10.1021/acsomega.6c01409 + + Fast and accurate prediction of folding stability and binding affinity due to protein mutations is a critical need in structural biology. While experimental methods are accurate, they are often time-consuming and costly. Computational approaches like FoldX offer fast and inexpensive alternatives by estimating free energy changes (ΔΔG) from a single 3D structure, but their accuracy remains limited. In this work, we present dFX, a neural-network-based residual correction framework that improves FoldX free energy predictions by learning from its underlying energy terms. We first assembled a collection of experimentally measured ΔΔG values and their corresponding 3D structures. Using those structures, we obtained baseline ΔΔG predictions with FoldX, along with their contributing energy terms. We then trained dFX using these FoldX energy terms as input features and a correction factor as the target, where the correction factor is the difference between experimental and FoldX ΔΔG. Our dFX models improve the prediction accuracy relative to FoldX. The dFX correction leads to improvements in Pearson correlation between experimental and predicted ΔΔG relative to FoldX across folding and binding tasks. Models trained on lower-order mutations retain predictive capability for higher-order mutations in binding. Our dFX models also lead to improvements in epistasis prediction relative to FoldX, suggesting a better capture of nonadditive effects. To test the generalizability of our models, we used an external SARS-CoV-2 data set and found that the dFX model trained on single mutations for binding outperformed FoldX and other machine-learning approaches. Once trained, our neural network models add minimal computational time but provide improvements in accuracy, making them a valuable addition to any FoldX free energy prediction pipeline. Our dFX approach could be further optimized to predict antibody escape, aiding in the efficient development of watch lists. + © 2026 The Authors. Published by American Chemical Society. + + + + Barnes + Jonathan E + JE + 0000-0002-5434-1391 + + Institute for Modeling Collaboration and Innovation, University of Idaho, Moscow, Idaho 83844, United States. + 5640 + + + + Chi + L América + LA + 0000-0002-2606-0357 + + Institute for Modeling Collaboration and Innovation, University of Idaho, Moscow, Idaho 83844, United States. + 5640 + + + Department of Chemical and Biological Engineering, University of Idaho, Moscow, Idaho 83844, United States. + + + Department of Physics, University of Idaho, Moscow, Idaho 83844, United States. + + + + Pandey + Shubham Kumar + SK + 0000-0001-6138-0738 + + Department of Chemical and Biological Engineering, University of Idaho, Moscow, Idaho 83844, United States. + + + + Ytreberg + F Marty + FM + 0000-0001-7439-8224 + + Institute for Modeling Collaboration and Innovation, University of Idaho, Moscow, Idaho 83844, United States. + 5640 + + + Department of Physics, University of Idaho, Moscow, Idaho 83844, United States. + + + + Patel + Jagdish Suresh + JS + 0000-0003-4999-5347 + + Institute for Modeling Collaboration and Innovation, University of Idaho, Moscow, Idaho 83844, United States. + 5640 + + + Department of Chemical and Biological Engineering, University of Idaho, Moscow, Idaho 83844, United States. + + + + eng + + Journal Article + + + 2026 + 05 + 11 + +
+ + United States + ACS Omega + 101691658 + 2470-1343 + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 2 + 5 + + + 2026 + 5 + 4 + + + 2026 + 5 + 5 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222805 + PMC13216946 + 10.1021/acsomega.6c01409 + + +
+ + + 42222797 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2470-1343 + + 11 + 20 + + 2026 + May + 26 + + + ACS omega + ACS Omega + + Investigating the Optical Properties of Gold Nanorods Using Forward and Inverse Design. + + 29374 + 29389 + 29374-29389 + + 10.1021/acsomega.5c05623 + + Nanoparticles exhibit distinct optical properties due to their size, shape, and material composition, making them useful in photonics, sensing, and biological applications. Mie and Mie-Gans theory can be used to compute the optical properties of spherical and rod-shaped nanoparticles, which are limited by surface scattering and radiation damping; however, it cannot explain the optical properties of bipyramid, dumbbell, cube, and rectangular-shaped nanoparticles. Advanced computational techniques like Finite Difference Time Domain (FDTD) could be used to simulate the optical properties of complex-shaped nanoparticles, which is time-consuming and complex. To address this, we proposed to use a machine and deep learning-based forward and inverse design to explore the optical properties of gold nanorods. In forward design, we evaluated five different models and identified the XGB Regressor as the best performing model (MSE: 0.0041, MAE: 0.0190, R2: 0.994), which accurately predicts the absorption and scattering cross sections of the gold nanorod across a wavelength range of 400-1500 nm. For inverse design, we found the tandem model (MSE:0.000116, MAE: 0.004476, R2: 0.9521), which accurately identifies the length (L), width (W), and aspect ratio (AR) of the gold nanorod for achieving desired optical responses. The results provide critical insights into the underlying physics of optical effects in nanoparticles and demonstrate the capability of the integrated forward-inverse methodology for the systematic design of photonic devices and applications based on nanoparticles. The study's findings will aid in investigating the optical properties of complex-shaped nanoparticles by leveraging the synthesis and numerical complexity and optical response. The findings will pave the way for the use of specific-size-and-shape nanoparticles with specific optical properties (such as absorption and scattering) in photothermal therapy, bioimaging, biological sensing, solar cells, photonic devices, nanoantennas, and cell biology. + © 2026 The Authors. Published by American Chemical Society. + + + + Islam + Sabrina + S + 0009-0006-3584-6796 + + Nanotechnology, AI, IoT, and Applied Machine Learning Research Group, Department of Electrical and Electronic Engineering, BRAC University, Kha 224 Bir Uttam Rafiqul Islam Avenue, Merul Badda, Dhaka 1212, Bangladesh. + 118864 + + + + Mohsin + Abu S M + ASM + 0000-0001-9281-9088 + + Nanotechnology, AI, IoT, and Applied Machine Learning Research Group, Department of Electrical and Electronic Engineering, BRAC University, Kha 224 Bir Uttam Rafiqul Islam Avenue, Merul Badda, Dhaka 1212, Bangladesh. + 118864 + + + + Bhuian + Mohammed Belal Hossain + MBH + + Nanotechnology, AI, IoT, and Applied Machine Learning Research Group, Department of Electrical and Electronic Engineering, BRAC University, Kha 224 Bir Uttam Rafiqul Islam Avenue, Merul Badda, Dhaka 1212, Bangladesh. + 118864 + + + + Rahman + Md Mosaddequr + MM + + Nanotechnology, AI, IoT, and Applied Machine Learning Research Group, Department of Electrical and Electronic Engineering, BRAC University, Kha 224 Bir Uttam Rafiqul Islam Avenue, Merul Badda, Dhaka 1212, Bangladesh. + 118864 + + + + eng + + Journal Article + + + 2026 + 05 + 13 + +
+ + United States + ACS Omega + 101691658 + 2470-1343 + +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 7 + 20 + + + 2025 + 11 + 30 + + + 2025 + 12 + 2 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222797 + PMC13216947 + 10.1021/acsomega.5c05623 + + +
+ + + 42222787 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2470-1343 + + 11 + 20 + + 2026 + May + 26 + + + ACS omega + ACS Omega + + Deciphering Molecular and Solvent Effects on Aqueous and Organic Solubility through Interpretable Machine Learning Approaches. + + 29757 + 29771 + 29757-29771 + + 10.1021/acsomega.5c13630 + + Solubility of a chemical compound is highly dependent on both its molecular structure and the experimental conditions at which the solubility is measured, which makes it a challenging task to accurately predict solubility across aqueous and organic media. In this study, an interpretable machine learning framework was developed for predicting the solubility of drug-like compounds using large-scale curated data sets, including AqSolDB, AqSolDBc, BigSolDB, and BigSolDB 2.0. CatBoost models were trained and rigorously validated using repeated 5-fold cross-validation, employing scaffold-based splitting for aqueous solubility and cold solute-solvent pair splitting for organic solubility. Feature selection and hyperparameter tuning were systematically applied, with hyperparameter optimization emerging as the primary contributor to performance improvement. The optimized models demonstrated strong and statistically significant performance improvement over baseline configurations. Similarity-based domain-of-applicability analysis on the external data set revealed that prediction error increases with structural dissimilarity from the training set. SHAP analysis provided mechanistic insights, showing that aqueous solubility is primarily governed by polarity and hydrogen-bonding descriptors, whereas organic solubility is influenced by solvent characteristics, temperature, and molecular topology. The consistency of results across data sets demonstrates the robustness and transferability of the learned structure-property relationships and the applicability of the proposed approach for real-world solubility prediction tasks. + © 2026 The Authors. Published by American Chemical Society. + + + + Gopichand + Boinapalli + B + 0009-0001-6652-6326 + + Amrita School of Biotechnology, Amrita Vishwa Vidyapeetham, Amrithapuri, Kerala 690525, India. + + + + Nair + Gopika S + GS + + Amrita School of Biotechnology, Amrita Vishwa Vidyapeetham, Amrithapuri, Kerala 690525, India. + + + + Nair + Bipin G + BG + 0000-0002-4944-8805 + + Amrita School of Biotechnology, Amrita Vishwa Vidyapeetham, Amrithapuri, Kerala 690525, India. + + + + Melethadathil + Nidheesh + N + 0000-0002-1451-979X + + Amrita School of Biotechnology, Amrita Vishwa Vidyapeetham, Amrithapuri, Kerala 690525, India. + + + + eng + + Journal Article + + + 2026 + 05 + 13 + +
+ + United States + ACS Omega + 101691658 + 2470-1343 + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 1 + 3 + + + 2026 + 4 + 21 + + + 2026 + 4 + 29 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222787 + PMC13216938 + 10.1021/acsomega.5c13630 + + +
+ + + 42222777 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2470-1343 + + 11 + 20 + + 2026 + May + 26 + + + ACS omega + ACS Omega + + Design of Multifunctional Bioactive Peptides for Potential Application in Food Packaging: A Machine-Learning-Integrated Optimization Framework. + + 29979 + 29991 + 29979-29991 + + 10.1021/acsomega.6c01238 + + Multifunctional bioactive peptides with antioxidant, antifungal, and antibacterial properties can be highly effective for the development of active packaging systems, thereby playing a pivotal role in alleviating foodborne diseases. With peptide design being a combinatorial problem, it is an extremely arduous process to screen the entire sequence space and discover peptides with multifunctional properties. In this study, a computational framework that integrates machine learning and optimization for the design of multifunctional bioactive peptides was proposed. Three machine-learning-based binary classification models were developed to screen antioxidant, antifungal, and antibacterial peptides, respectively. Accuracies for models 1, 2, and 3 were found to be 82.37%, 95.49%, and 96.75%, respectively. These models are then incorporated into an optimization framework to design new bioactive peptides with antioxidant, antifungal, and antibacterial properties. Analysis of amino acid compositions for these newly generated peptides revealed that amino acids that are characteristic of antioxidant, antifungal, and antibacterial peptides are present in significant proportions in these newly generated peptide sequences. This shows that the proposed computational framework indeed generates peptides with multifunctional properties, thereby indicating their potential applications in food packaging. A free-to-use executable tool that can expedite the design of such multifunctional bioactive peptides has also been developed. + © 2026 The Authors. Published by American Chemical Society. + + + + Gunapati + Sree Nithish Reddy + SNR + + Chemical Engineering Department Birla, Institute of Technology and Science (BITS) Pilani, Hyderabad Campus, Jawahar Nagar, Medchal District, Hyderabad 500078, Telangana, India. + 209298 + + + + Gunaseelan + Sathish Kumar + SK + + Chemical Engineering Department Birla, Institute of Technology and Science (BITS) Pilani, Hyderabad Campus, Jawahar Nagar, Medchal District, Hyderabad 500078, Telangana, India. + 209298 + + + + Dutta + Arnab + A + 0000-0001-8596-0112 + + Chemical Engineering Department Birla, Institute of Technology and Science (BITS) Pilani, Hyderabad Campus, Jawahar Nagar, Medchal District, Hyderabad 500078, Telangana, India. + 209298 + + + + Mitra + Debirupa + D + 0000-0001-5280-0761 + + Chemical Engineering Department Birla, Institute of Technology and Science (BITS) Pilani, Hyderabad Campus, Jawahar Nagar, Medchal District, Hyderabad 500078, Telangana, India. + 209298 + + + + eng + + Journal Article + + + 2026 + 05 + 12 + +
+ + United States + ACS Omega + 101691658 + 2470-1343 + +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 2 + + + 2026 + 4 + 20 + + + 2026 + 5 + 4 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222777 + PMC13216959 + 10.1021/acsomega.6c01238 + + +
+ + + 42222760 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2752-6542 + + 5 + 5 + + 2026 + May + + + PNAS nexus + PNAS Nexus + + Uncovering controlling factors on rock glacier velocities in the Pamir-Karakoram-Kunlun region using explainable machine learning. + + pgag177 + pgag177 + + 10.1093/pnasnexus/pgag177 + + Rock glaciers are ice-debris landforms commonly found in high mountain environments. Shaped by long-term creep of ice-rich permafrost, they provide critical information for permafrost studies, mountain hydrology, and hazard assessment. Although the characteristics and controlling factors of rock glacier velocities across various temporal scales have been studied at individual sites, their environmental drivers in the spatial domain over large regions remain poorly understood. In this study, we employ four machine learning methods, i.e. support vector machine, extreme gradient boost, random forest, and backpropagation neural network, to model the relationship between rock glacier velocities and environmental variables for 5,163 rock glaciers in the Pamir-Karakoram-Kunlun region. Subsequently, we use SHapley Additive exPlanations to quantify variable importance. Results show that the upslope connection to a glacier is a critical factor controlling rock glacier velocities. In our study area, glacier-connected rock glaciers exhibit on average faster movement (median velocity = 38 cm/year) than talus-connected ones (median velocity = 28 cm/year). We also find that geomorphological properties exert stronger controls on the spatial variability of rock glacier velocities than regional climate variability. Rock glacier area and slope are identified as the second and third most important variables, with larger areas and steeper slopes associated with higher velocities. The snow cover duration ranks fourth, followed by precipitation, while air temperature shows minimal influence on velocity. Overall, these findings bridge a critical knowledge gap regarding the environmental controls on rock glacier dynamics at the regional scale, extending our understanding of rock glacier kinematics beyond site-specific investigations. + © The Author(s) 2026. Published by Oxford University Press on behalf of National Academy of Sciences. + + + + Sun + Zhangyu + Z + 0009-0009-9762-3311 + + Jiangsu Key Laboratory of Soil and Water Processes in Watershed, College of Geography and Remote Sensing, Hohai University, Nanjing 211100, China. + + + Department of Earth and Environmental Sciences, Faculty of Science, The Chinese University of Hong Kong, Hong Kong 999077, China. + + + Institute of Geodesy, Graz University of Technology, Graz 8010, Austria. + + + + Liu + Lin + L + 0000-0002-9581-1337 + + Department of Earth and Environmental Sciences, Faculty of Science, The Chinese University of Hong Kong, Hong Kong 999077, China. + + + Institute of Environment, Energy and Sustainability, The Chinese University of Hong Kong, Hong Kong 999077, China. + + + + Bolch + Tobias + T + 0000-0002-8201-5059 + + Institute of Geodesy, Graz University of Technology, Graz 8010, Austria. + + + + eng + + Journal Article + + + 2026 + 05 + 20 + +
+ + England + PNAS Nexus + 9918367777906676 + 2752-6542 + + + High Mountain Asia + SHAP + control factor + machine learning + rock glacier velocity + + The authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 3 + + + 2026 + 5 + 5 + + + 2026 + 6 + 1 + 6 + 18 + + + epublish + + 42222760 + PMC13220748 + 10.1093/pnasnexus/pgag177 + pgag177 + + +
+ + + 42222720 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2771-9316 + + 4 + 5 + + 2026 + May + 25 + + + Precision chemistry + Precis Chem + + Benchmarking Foundation Potentials against Quantum Chemistry Methods for Predicting Molecular Redox Potentials. + + 612 + 621 + 612-621 + + 10.1021/prechem.5c00258 + + Computational high-throughput virtual screening is essential for identifying redox-active molecules for sustainable applications, such as electrochemical carbon capture. A primary challenge in this approach is the high computational cost associated with accurate quantum chemistry calculations. Machine learning foundation potentials (FPs) trained on extensive density functional theory (DFT) calculations offer a computationally efficient alternative. Here, we benchmark the MACE-OMol-0 and UMA FPs against a hierarchy of DFT functionals for predicting experimental molecular redox potentials for both electron transfer (ET) and proton-coupled electron transfer (PCET) reactions. We find that these FPs achieve exceptional accuracy for PCET processes, rivaling their target DFT method. However, the performance is diminished for ET reactions, particularly for multielectron transfers involving reactive ions that are underrepresented in the OMol25 training data, revealing a key out-of-distribution limitation. To overcome this, we propose an optimal hybrid workflow that uses the FPs for efficient geometry optimization and thermochemical analysis, followed by a crucial single-point DFT energy refinement and an implicit solvation correction. This pragmatic approach provides a robust and scalable strategy for accelerating high-throughput virtual screening in sustainable chemistry. + © 2026 The Authors. Co-published by University of Science and Technology of China and American Chemical Society. + + + + Chen + Yicheng + Y + + Department of Materials Science and Engineering, National University of Singapore, Singapore 117575, Singapore. + 37580 + + + + Cheng + Lixue + L + 0000-0002-7329-0585 + + Department of Chemistry, Hong Kong University of Science and Technology, Kowloon, Hong Kong 999077, China. + 58207 + + + + Jing + Yan + Y + 0000-0002-5669-4609 + + Department of Materials Science and Engineering, National University of Singapore, Singapore 117575, Singapore. + 37580 + + + + Zhong + Peichen + P + 0000-0003-1921-1628 + + Department of Materials Science and Engineering, National University of Singapore, Singapore 117575, Singapore. + 37580 + + + + eng + + Journal Article + + + 2026 + 01 + 23 + +
+ + United States + Precis Chem + 9918574281706676 + 2771-9316 + + + carbon capture + high-throughput screening + machine learning interatomic potential + proton-coupled electron transfer + redox potential + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 10 + 28 + + + 2026 + 1 + 17 + + + 2026 + 1 + 18 + + + 2026 + 6 + 1 + 6 + 17 + + + epublish + + 42222720 + PMC13217336 + 10.1021/prechem.5c00258 + + +
+ + + 42222666 + + 2026 + 06 + 01 + +
+ + 2667-3215 + + 7 + + 2025 + Jun + + + SSM. Qualitative research in health + SSM Qual Res Health + + Anticipatory moral distress in machine learning-based clinical decision support tool development: A qualitative analysis. + 100540 + 10.1016/j.ssmqr.2025.100540 + + Ongoing interest in machine learning systems include the emerging capability to integrate electronic health records to develop clinical decision support (CDS) tools that improve medical care, diagnostics, and therapy. Such CDS tools, which can handle a large quantity of data sources, can advise clinicians and amplify insights on diverse patient risk factors, from physiological challenges to psychosocial vulnerabilities. Despite a growing interest, there are various challenges that hinder the successful use of CDS tools in clinical practice. Among these, a key challenge is hesitance or resistance among end-users to take up tools and integrate their use into practice. The current inquiry applied a framework of the symbolic interaction of participatory experience-based co-design and used an interpretive descriptive approach to analysis of qualitative data, investigating the ethical issues brought to light by clinicians participating in three participatory experience-based co-design focus groups, as a part of the initial development of a CDS tool for detecting risk factors for adverse health outcomes in outpatient obstetric care at a single academically affiliated medical institution. Findings revealed that participants describe their anticipated symbolic relationship with a ML-based CDS tool as either promising or morally distressing. Anticipatory moral distress includes three separate sub-categories: 1) clinical conflict with clinical assessment and judgment, 2) partial conflict with comprehensive clinical considerations, and 3) resource conflict with structural barriers related to care delivery. Future work should include utilizing participatory experience-based co-design with end users to identify relevant context and institution-specific priorities and concerns from the beginning of CDS tool development and to continue co-design throughout the development process. + + + + Whitney + Clare + C + 0000-0003-2219-8911 + + School of Nursing, Stony Brook University, 101 Nicolls Rd, Stony Brook, NY, 11794, USA. + + + + Preis + Heidi + H + 0000-0002-0459-290X + + Department of Obstetrics, Gynecology and Reproductive Medicine, Renaissance School of Medicine, Stony Brook University, 101 Nicolls Rd, Stony Brook, NY, 11794, USA. + + + Department of Psychology, Stony Brook University, 100 Nicolls Rd, Stony Brook, NY, 11794, USA. + + + + Vargas + Alessa Ramos + AR + + Department of Obstetrics, Gynecology and Reproductive Medicine, Renaissance School of Medicine, Stony Brook University, 101 Nicolls Rd, Stony Brook, NY, 11794, USA. + + + + eng + + Journal Article + + + 2025 + 02 + 21 + +
+ + England + SSM Qual Res Health + 9918300877606676 + 2667-3215 + + + Artificial intelligence + Bioethics + Clinical decision-making + Machine learning + Moral distress + Perinatal health + Qualitative research + + Declaration of competing interest The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 6 + 17 + + + ppublish + + 42222666 + PMC13218729 + 10.1016/j.ssmqr.2025.100540 + 100540 + + +
+ + + 42222663 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1179-5549 + + 20 + + 2026 + + + Clinical Medicine Insights. Oncology + Clin Med Insights Oncol + + Machine Learning-Based Identification and Validation of PYCR1 and PYGM as Prognostic Biomarkers for Osteosarcoma. + + 11795549261452567 + 11795549261452567 + + 10.1177/11795549261452567 + + Osteosarcoma (OS) is a malignant tumor originating in the bones, predominantly affecting children and adolescents, characterized by high aggressiveness and poor prognosis. Identifying new prognostic biomarkers is crucial for improving the diagnosis and treatment of OS. + In this study, we collected gene expression data from 88 OS samples from the UCSC Xena platform and normal tissue expression data from 396 Genotype-Tissue Expression (GTEx) samples. Prognosis-related genes were first screened by univariate Cox regression and then further selected using the Least Absolute Shrinkage and Selection Operator (LASSO) regression. Based on these candidate genes, non-negative matrix factorization (NMF) was used for molecular subtype identification, and the Kaplan-Meier analysis was applied to compare survival among subtypes. Tumor microenvironment and immune cell infiltration analyses were performed to characterize differences between risk groups. In addition, the expression patterns of key genes were validated by quantitative real-time polymerase chain reaction (qRT-PCR), hematoxylin-eosin staining, immunohistochemistry, and immunofluorescence. + Pyrroline-5-carboxylate reductase 1 (PYCR1) was consistently upregulated in OS and was associated with poor prognosis. In contrast, glycogen phosphorylase, muscle-associated (PYGM) showed analysis-level-dependent expression patterns: it was downregulated at the bulk transcriptomic and tumor cell levels compared with normal controls, whereas within the OS cohort, relatively higher PYGM expression was observed in the high-risk group. Tumor microenvironment and immune cell infiltration analyses revealed significant immune differences between high- and low-risk groups. Histological and protein-level assays further confirmed the presence and cellular localization of PYCR1 and PYGM in OS tissues. + This study systematically identified and validated PYCR1 and PYGM as potential prognostic biomarkers for OS using integrated statistical and machine learning approaches. The PYCR1 showed a consistently tumor-promoting expression pattern, whereas PYGM demonstrated context-dependent expression changes across bulk tissue, risk-stratified tumor samples, and tumor cell lines, highlighting the biological complexity of metabolic biomarkers in OS. + © The Author(s) 2026. + + + + Xu + Guoyong + G + 0000-0003-0636-6831 + + Guangxi Medical University, The First Clinical Medical College, Nanning, P. R. China. + + + + Liu + Chong + C + + Guangxi Medical University, The First Clinical Medical College, Nanning, P. R. China. + + + Spine and Osteopathy Ward, The First Affiliated Hospital of Guangxi Medical University, Nanning, P. R. China. + + + + Xue + Jiang + J + + Guangxi Medical University, The First Clinical Medical College, Nanning, P. R. China. + + + + Chen + Jiarui + J + + Guangxi Medical University, The First Clinical Medical College, Nanning, P. R. China. + + + + Zou + Zhuan + Z + + Guangxi Medical University, The First Clinical Medical College, Nanning, P. R. China. + + + + Mo + Sen + S + + Guangxi Medical University, The First Clinical Medical College, Nanning, P. R. China. + + + + Zhou + Zhongxian + Z + + Guangxi Medical University, The First Clinical Medical College, Nanning, P. R. China. + + + + Zhan + Xinli + X + + Guangxi Medical University, The First Clinical Medical College, Nanning, P. R. China. + + + Spine and Osteopathy Ward, The First Affiliated Hospital of Guangxi Medical University, Nanning, P. R. China. + + + + eng + + Journal Article + + + 2026 + 05 + 27 + +
+ + United States + Clin Med Insights Oncol + 101525771 + 1179-5549 + + + PYCR1 + PYGM + immune cell infiltration + osteosarcoma + prognostic biomarkers + tumor microenvironment + + The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 7 + 23 + + + 2026 + 5 + 4 + + + 2026 + 6 + 1 + 6 + 17 + + + epublish + + 42222663 + PMC13219957 + 10.1177/11795549261452567 + 10.1177_11795549261452567 + + +
+ + + 42222599 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-8021 + + 17 + + 2026 + + + Frontiers in genetics + Front Genet + + Tumor ecosystem subtyping of breast cancer based on somatic mutations and network propagation reveals distinct prognostic and genomic landscapes. + + 1847952 + 1847952 + + 10.3389/fgene.2026.1847952 + + Breast cancer is the most common malignancy in women worldwide, exhibiting high heterogeneity that complicates diagnosis, treatment, and prognosis. While somatic mutations stably reveal genetic characteristics of tumor cells, their application in breast cancer subtyping remains underexplored. + A total of 2,526 breast cancer patients from Memorial Sloan Kettering Cancer Center were classified into different tumor ecosystem subtypes (TESs) based on somatic mutation profiles using a network propagation algorithm. + The prognosis of breast cancer patients in TES 1 was significantly better than that of those in TES 2. Immunological characterization further revealed that the tumor microenvironment contained significantly more tumor immune cells in TES 1 than in TES 2, and that TES 2 had lower response to immunotherapy but was more sensitive to chemotherapeutic agents. Moreover, our tumor ecosystem subtyping method effectively classified patients across 20 cancer cohorts with good generalization. + This study proposes a stable, reproducible, and clinically applicable subtyping strategy based on somatic mutation data for tumor ecosystem subtyping, which can be used to guide personalized treatment for breast cancer patients and promote the development of precision medicine. + Copyright © 2026 Ding, Zhu, Huo, Li, Chen, Wang and Yang. + + + + Ding + Ke + K + + The First Affiliated Hospital of Harbin Medical University, School of Stomatology, Harbin Medical University, Harbin, China. + + + + Zhu + Zixuan + Z + + The First Affiliated Hospital of Harbin Medical University, School of Stomatology, Harbin Medical University, Harbin, China. + + + + Huo + Zhengchun + Z + + College of Bioinformatics Science and Technology, Harbin Medical University, Harbin, China. + + + + Li + Honghao + H + + College of Bioinformatics Science and Technology, Harbin Medical University, Harbin, China. + + + + Chen + Haoran + H + + The First Affiliated Hospital of Harbin Medical University, School of Stomatology, Harbin Medical University, Harbin, China. + + + + Wang + Shiyuan + S + + College of Bioinformatics Science and Technology, Harbin Medical University, Harbin, China. + + + + Yang + Lei + L + + College of Bioinformatics Science and Technology, Harbin Medical University, Harbin, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Genet + 101560621 + 1664-8021 + + + breast cancer + immunotherapy response + machine learning + network propagation + somatic mutation profile + tumor ecosystem + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 4 + 5 + + + 2026 + 4 + 19 + + + 2026 + 4 + 22 + + + 2026 + 6 + 1 + 6 + 16 + + + epublish + + 42222599 + PMC13218690 + 10.3389/fgene.2026.1847952 + 1847952 + + +
+ + + 42222576 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2832-3637 + + 4 + 5 + + 2026 + May + 25 + + + Chemical & biomedical imaging + Chem Biomed Imaging + + Machine-Learning-Based Automated Schlemm's Canal Volumetric Segmentation for Optical Coherence Tomography. + + 794 + 805 + 794-805 + + 10.1021/cbmi.5c00156 + + Volumetric segmentation of Schlemm's Canal (SC) in optical coherence tomography (OCT) is time-consuming, creating a barrier to experiments studying glaucoma and the anatomy of the trabecular outflow pathways in vivo. To this end, we developed an automated segmentation tool, Schlemm's Canal-Localization and Semantic Segmentation (SC-LSS), for the volumetric segmentation of SC in in vivo mice eyes from visible-light OCT (vis-OCT). SC-LSS first localizes the boundaries of SC and subsequently determines the boundaries of SC within the localized region. We used 324 B-scans from 16 mouse eyes for training, validation, and testing the model, and 203 additional B-scans to evaluate the model's accuracy. We found that the Dice coefficient between segmentations generated by SC-LSS and manual expert graders was 0.70 ± 0.20 and that the Dice coefficient between two expert graders was 0.73 ± 0.18 (p = 0.10). Furthermore, SC-LSS captured decreases in SC size with increasing intraocular pressure, yielding a 51.5% decrease in SC size at 20 mmHg compared to 5 mmHg. SC-LSS also identified a 20.1% increase in SC size following the administration of pilocarpine. We anticipate that SC-LSS will accelerate studies on factors regulating the trabecular outflow pathways and their role in glaucoma development and management. + © 2025 The Authors. Co-published by Nanjing University and American Chemical Society. + + + + Fang + Raymond + R + 0000-0002-0647-8537 + + Department of Biomedical Engineering, Northwestern University, Evanston, Illinois 60208, United States. + 3270 + + + Department of Ophthalmology, Northwestern University Feinberg School of Medicine, Chicago, Illinois 60611, United States. + + + + Xu + Fengyuanshan + F + + Department of Biomedical Engineering, Northwestern University, Evanston, Illinois 60208, United States. + 3270 + + + + Yan + Zihang + Z + + Department of Biomedical Engineering, Northwestern University, Evanston, Illinois 60208, United States. + 3270 + + + + Sun + Cheng + C + 0000-0002-2744-0896 + + Department of Mechanical Engineering, Northwestern University, Evanston, Illinois 60208, United States. + + + + Kume + Tsutomu + T + + Department of Medicine, Northwestern University Feinberg School of Medicine, Chicago, Illinois 60611, United States. + + + + Huang + Alex S + AS + + Department of Ophthalmology, University of California San Diego, La Jolla, California 92093, United States. + 8784 + + + + Zhang + Hao F + HF + + Department of Biomedical Engineering, Northwestern University, Evanston, Illinois 60208, United States. + 3270 + + + Department of Ophthalmology, Northwestern University Feinberg School of Medicine, Chicago, Illinois 60611, United States. + + + + eng + + Journal Article + + + 2025 + 11 + 11 + +
+ + United States + Chem Biomed Imaging + 9918574388106676 + 2832-3637 + + + Schlemm’s Canal + aqueous outflow + image processing + machine learning + optical coherence tomography + optical imaging + segmentation + volumetric + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 9 + 6 + + + 2025 + 11 + 3 + + + 2025 + 11 + 5 + + + 2026 + 6 + 1 + 6 + 16 + + + epublish + + 42222576 + PMC13217338 + 10.1021/cbmi.5c00156 + + +
+ + + 42222575 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2832-3637 + + 4 + 5 + + 2026 + May + 25 + + + Chemical & biomedical imaging + Chem Biomed Imaging + + An Automated Workflow Leveraging Machine Learning for Physical Titer Determination from Cryo-TEM Images of Adeno-Associated Virus Capsids. + + 767 + 775 + 767-775 + + 10.1021/cbmi.5c00070 + + The application of gene therapies could be life-changing for many previously untreatable health conditions, but it is currently both financially expensive and time-intensive. Controlling the quality of these gene products involves monitoring impurities, such as partially filled and empty viral vectors, aggregates, and debris from the desired productfull viral capsids containing the genetic material for the gene of interest. Transmission electron microscopy (TEM), with its ability to identify nanometer-sized structures, provides a good approximation of ground truth to determine the presence of each of these species in production samples. Unfortunately, TEM methods are limited by the potential for sample damage during preparation and the difficulty in distinguishing viruses from cellular debris. They can also incur significant monetary and labor costs, as the images are often manually screened by trained individuals using subjective classification. Here, computer vision (CV) has been utilized to automate the labeling and classification steps within this analysis process, thereby improving the accuracy of impurity measurements in TEM imaging techniques. The manual analysis step may be superseded by a machine-learned model that predicts the classification of objects in TEM images. In this study, a CV model was trained to classify individual capsid images into one of three categoriesfull, partially full, or emptybased on the amount of DNA they contained. This model was then used to predict capsid category distributions with a 72% accuracy. A graphical user interface, Capsidize, was developed as an accessible and standardized method of labeling full, partial, and empty capsid physical titers in cryo-TEM images, reducing the active working time for labeling by 95%. + © 2025 The Authors. Co-published by Nanjing University and American Chemical Society. + + + + Gutierrez + Lilianna C + LC + + Department of Chemical Engineering, Carnegie Mellon University, Pittsburgh, Pennsylvania 15213-3815, United States. + 6612 + + + + Robinson + Anne Skaja + AS + 0000-0001-7235-1481 + + Department of Chemical Engineering, Carnegie Mellon University, Pittsburgh, Pennsylvania 15213-3815, United States. + 6612 + + + + eng + + Journal Article + + + 2025 + 12 + 16 + +
+ + United States + Chem Biomed Imaging + 9918574388106676 + 2832-3637 + + + TEM imaging + adeno-associated virus capsids + computer vision + machine learning + physical titer + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 5 + 30 + + + 2025 + 11 + 23 + + + 2025 + 11 + 24 + + + 2026 + 6 + 1 + 6 + 16 + + + epublish + + 42222575 + PMC13217355 + 10.1021/cbmi.5c00070 + + +
+ + + 42222567 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2832-3637 + + 4 + 5 + + 2026 + May + 25 + + + Chemical & biomedical imaging + Chem Biomed Imaging + + Review of Machine Learning for Single-Particle Tracking: Methods, Challenges, and Biophysical Insights. + + 695 + 718 + 695-718 + + 10.1021/cbmi.5c00146 + + Single-particle tracking (SPT) provides a powerful approach for probing dynamic molecular processes in living cells with high spatial and temporal resolution. Yet traditional analysis pipelines, which often rely on manual tuning or simplified models, are limited by the complexity, noise, and heterogeneity inherent to biological systems. Recent advances in machine learning (ML), especially deep learning (DL), have reshaped the SPT workflow, including particle detection, trajectory linking, motion classification, denoising, and biophysical inference. In this review, we systematically assess how ML/DL methods, including convolutional neural networks (CNNs), recurrent architectures, and Bayesian deep learning, improve the accuracy, robustness, and interpretability of SPT analyses. We survey techniques ranging from CNN-based detection and linking to statistically principled frameworks for uncertainty quantification, highlighting the versatility and effectiveness of ML/DL in overcoming persistent challenges and revealing new biological insights. We also discuss practical considerations for deployment, including selection of suitable problem domains and construction of large, high-quality training data sets. This review aims to provide a comprehensive and accessible guide to the current landscape of ML in SPT, offering both a critical evaluation of existing state-of-the-art methods and a reference for future development. + © 2025 The Authors. Co-published by Nanjing University and American Chemical Society. + + + + Zhang + Chen + C + + Institute of Systems and Physical Biology, Shenzhen Bay Laboratory, Shenzhen 518132, China. + 551667 + + + Department of Computer Science, Duke University, Durham, North Carolina 27705, United States. + + + + Liu + Ran + R + + Institute of Systems and Physical Biology, Shenzhen Bay Laboratory, Shenzhen 518132, China. + 551667 + + + School of Life Science and Technology, Harbin Institute of Technology, Harbin 150001, China. + 47822 + + + + Ding + Zichen + Z + + Institute of Systems and Physical Biology, Shenzhen Bay Laboratory, Shenzhen 518132, China. + 551667 + + + School of Electronics and Information Engineering, Harbin Institute of Technology, Harbin 150001, China. + + + + Lu + Peng + P + + Institute of Systems and Physical Biology, Shenzhen Bay Laboratory, Shenzhen 518132, China. + 551667 + + + School of Life Science and Technology, Harbin Institute of Technology, Harbin 150001, China. + 47822 + + + + Tian + Weiming + W + 0000-0003-4958-4118 + + School of Life Science and Technology, Harbin Institute of Technology, Harbin 150001, China. + 47822 + + + + Zhao + Yan + Y + + Institute of Biomedical Health Technology and Engineering, Shenzhen Bay Laboratory, Shenzhen 518132, China. + + + + He + Jiaye + J + + National Innovation Center for Advanced Medical Devices, Shenzhen 518131, China. + + + Shenzhen Institute of Advanced Technology, Chinese Academy of Sciences, Shenzhen 518055, China. + + + Shenzhen University of Advanced Technology, Shenzhen 518107, China. + + + + Hou + Shangguo + S + 0000-0001-6394-6467 + + Institute of Systems and Physical Biology, Shenzhen Bay Laboratory, Shenzhen 518132, China. + 551667 + + + + eng + + Journal Article + Review + + + 2025 + 12 + 01 + +
+ + United States + Chem Biomed Imaging + 9918574388106676 + 2832-3637 + + + biophysical inference + deep learning + machine learning + motion classification + noise reduction + particle detection + single-particle tracking + uncertainty quantification + +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 8 + 28 + + + 2025 + 11 + 14 + + + 2025 + 11 + 24 + + + 2026 + 6 + 1 + 6 + 16 + + + epublish + + 42222567 + PMC13217339 + 10.1021/cbmi.5c00146 + + +
+ + + 42222507 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2405-5808 + + 46 + + 2026 + Jun + + + Biochemistry and biophysics reports + Biochem Biophys Rep + + Integrative single-cell and bulk transcriptomic analysis identifies lesion-associated gene signatures for prognostic stratification and therapeutic guidance in head and neck squamous cell carcinoma. + + 102641 + 102641 + + 10.1016/j.bbrep.2026.102641 + + Head and neck squamous cell carcinoma (HNSCC) is a highly heterogeneous malignancy with poor prognosis and variable response to therapy. Effective biomarkers for prognosis and treatment guidance remain limited. + We performed integrative analysis of single-cell and bulk RNA-seq data to dissect the tumor microenvironment and identify lesion-associated transcriptional changes. Gene modules related to lesion progression were identified using weighted gene co-expression network analysis (WGCNA) and integrated with differential expression and genomic data. Prognostic modeling was conducted using multiple machine learning algorithms, and the best-performing model was validated across independent cohorts. A nomogram combining the risk score and clinical features was developed. Multi-omics analyses were applied to characterize the genomic landscape, immune infiltration, and treatment response associated with the risk groups. + The final prognostic model effectively stratified patients by survival and was validated in an external cohort. The nomogram showed high predictive accuracy and clinical utility. High-risk tumors were enriched in oncogenic pathways such as hypoxia, glycolysis, and epithelial-mesenchymal transition, and displayed elevated genomic instability. Immune profiling revealed suppressed antitumor activity and increased infiltration of immunosuppressive cells in high-risk patients. Risk score was negatively associated with immunotherapy response and correlated with differential sensitivity to chemotherapy and targeted agents. + This study presents a robust prognostic model based on lesion-associated gene expression signatures in HNSCC. It offers valuable tools for individualized prognosis and therapeutic decision-making, with implications for advancing precision oncology in this challenging cancer type. + © 2026 Published by Elsevier B.V. + + + + Xiong + Meihua + M + + Jiangxi Province Hospital of Integrated Chinese&Western Medicine, Jiangxi, 330002, China. + + + + Luo + Yong + Y + + Nanchang Economic and Technological Development Zone People's Hospital, Nanchang, Jiangxi, 330013, China. + + + + Hu + Shiping + S + + Jiangxi Province Hospital of Integrated Chinese&Western Medicine, Jiangxi, 330002, China. + + + + eng + + Journal Article + + + 2026 + 05 + 22 + +
+ + Netherlands + Biochem Biophys Rep + 101660999 + 2405-5808 + + + Head and neck squamous cell carcinoma + Single-cell RNA sequencing + Tumor microenvironment + Weighted gene co-expression network analysis + + This study does not involve any conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 9 + 7 + + + 2026 + 4 + 24 + + + 2026 + 5 + 18 + + + 2026 + 6 + 1 + 6 + 15 + + + epublish + + 42222507 + PMC13217476 + 10.1016/j.bbrep.2026.102641 + S2405-5808(26)00201-3 + + +
+ + + 42222437 + + 2026 + 06 + 01 + +
+ + 2771-165X + + + 2026 + Mar + 19 + + + Journal of clinical and translational pathology + J Clin Transl Pathol + + Associations of Normalization and Regularization with Machine Learning Overfitting in Cross-dataset Classification of Deaths Using Transcriptomic and Clinical Data: A Secondary Analysis of Publicly Available Databases. + 10.14218/jctp.2025.00051 + + Normalization can standardize and improve machine learning (ML) performance on omics data. However, it is unclear whether normalization is associated with overfitting (i.e., worse cross-dataset performance than intra-dataset performance). Therefore, we aimed to examine associations of normalization and regularization with overfitting of ML on omics data. + Using three paired transcriptomic and clinical datasets (lung adenocarcinoma: the Cancer Genome Atlas (TCGA)/Oncology Singapore; melanoma: TCGA/Dana-Farber Cancer Institute; glioblastoma: TCGA/Clinical Proteomic Tumor Analysis Consortium), we applied ANOVA-based gene selection methods, six normalization methods, and six ML models to classify cancer patients' deaths. Balanced accuracy (BA) and area under the curve (AUC) in intra- and cross-dataset settings were compared using inferential analyses. + Normalization consistently improved intra-dataset performance (median BA/AUC changes: 0.035-0.214/0.115-0.279) on all data, particularly with Z_Raw, but decreased or slightly increased cross-dataset performance (median BA/AUC changes: -0.029-0.079/0.029-0.064). Least Absolute Shrinkage and Selection Operator (LASSO) model without normalization consistently outperformed most of the ML models in cross-dataset testing across cancer types. ML models on all and molecular-alone data showed similar best performances. + Normalization increases ML's intra-dataset performance and overfitting in three paired cancer transcriptomic and clinical datasets. Regularized models such as LASSO appear to mitigate overfitting and achieve robust cross-dataset performance. Therefore, cross-dataset evaluation and regularized models are recommended to assess and reduce overfitting, while normalization should be used cautiously. Adding clinical data seems to have little impact on ML models' performance. However, future work on other diseases and datasets is warranted. + + + + Deng + Fei + F + + Department of Chemical Biology, Ernest Mario School of Pharmacy, Rutgers University, Piscataway, NJ, USA. + + + + Zhang + Lanjing + L + 0000-0001-5436-887X + + Department of Chemical Biology, Ernest Mario School of Pharmacy, Rutgers University, Piscataway, NJ, USA. + + + Department of Pathology, Princeton Medical Center, Plainsboro, NJ, USA. + + + Rutgers Cancer Institute of New Jersey, New Brunswick, NJ, USA. + + + Department of Pathology and Laboratory Medicine, Perelman School of Medicine, University of Pennsylvania, Philadelphia, PA, USA. + + + + eng + + Journal Article + + + 2026 + 03 + 19 + +
+ + United States + J Clin Transl Pathol + 9918227267706676 + 2771-165X + + + Cancer + Clinical feature + Machine learning + Normalization + Overfitting + Regularization + Transcriptomics + + Conflict of interest Lanjing Zhang is a deputy editor-in-chief of Journal of Clinical and Translational Pathology. The authors declare no other conflicts of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 6 + 14 + + + aheadofprint + + 42222437 + PMC13221090 + 10.14218/jctp.2025.00051 + + +
+ + + 42222428 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2352-0477 + + 16 + + 2026 + Jun + + + European journal of radiology open + Eur J Radiol Open + + Radiomics analysis of restaging MRI for detection of pathological complete response in locally advanced rectal cancer. + + 100762 + 100762 + + 10.1016/j.ejro.2026.100762 + + magnetic resonance imaging (MRI)-based radiomics has emerged as a promising approach for non-invasive prediction of treatment response in rectal cancer. This study aimed to develop and validate a machine learning model based on radiomic features extracted from restaging MRI after neoadjuvant therapy in patients with locally advanced rectal cancer (LARC), to identify those achieving pathological complete response (pCR). + In this retrospective single-center study, patients with histologically confirmed rectal cancer treated between 2017 and 2022 were included if they underwent neoadjuvant therapy, staging and restaging MRI, and surgery. Tumor segmentation was performed on oblique axial T2-weighted images. Radiomic features were extracted using PyRadiomics following image resampling and intensity discretization. Feature selection was performed using the least absolute shrinkage and selection operator (LASSO), and a logistic regression model with Elastic Net regularization was trained. Model performance was evaluated using repeated stratified 5-fold cross-validation. Performance metrics included area under the receiver operating characteristic curve (AUC-ROC), accuracy, sensitivity, and specificity. + The final cohort included 86 patients (mean age 63 ± 12 years; 65% male) with 33 patients achieving pCR (38.37%) and 53 who did not (61.63%). The model demonstrated moderate discriminative performance, with a mean AUC-ROC of 0.74, accuracy of 67.4%, sensitivity of 60.1%, and specificity of 71.0%. Performance was higher for identifying non-responders compared with patients achieving pCR. + MRI-based radiomics from restaging MRI shows potential to predict treatment response in LARC, particularly in identifying non-responders to neoadjuvant therapy. Although performance remains moderate, this approach may support treatment stratification and personalized management. Further validation in larger, multicenter cohorts is warranted. + © 2026 The Authors. + + + + Ambrosini + Ilaria + I + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Francischello + Roberto + R + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Fanni + Salvatore Claudio + SC + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Faggioni + Lorenzo + L + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Aringhieri + Giacomo + G + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Fruzza + Rachele + R + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Cwiklinska + Karolina + K + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Caputo + Francesca Pia + FP + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Aghakhanyan + Gayane + G + + Nuclear Medicine Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Neri + Emanuele + E + + Academic Radiology Unit, Department of Translational Research, University of Pisa, Pisa, Italy. + + + + Lencioni + Riccardo + R + + Academic Radiology Unit, Department of Surgical, Medical, and Molecular Pathology, University of Pisa, Pisa, Italy. + + + + Cioni + Dania + D + + Academic Radiology Unit, Department of Surgical, Medical, and Molecular Pathology, University of Pisa, Pisa, Italy. + + + + eng + + Journal Article + + + 2026 + 05 + 21 + +
+ + England + Eur J Radiol Open + 101650225 + 2352-0477 + + + Radiomics + Rectal Cancer + Restaging + + The authors declare no conflicts of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 31 + + + 2026 + 5 + 6 + + + 2026 + 5 + 7 + + + 2026 + 6 + 1 + 6 + 14 + + + epublish + + 42222428 + PMC13217831 + 10.1016/j.ejro.2026.100762 + S2352-0477(26)00039-0 + + +
+ + + 42222408 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2234-943X + + 16 + + 2026 + + + Frontiers in oncology + Front Oncol + + Correction: Editorial: National Cancer Research Month 2025: Advances in Detection, Treatment and Therapies in Oncology. + + 1867092 + 1867092 + + 10.3389/fonc.2026.1867092 + + [This corrects the article DOI: 10.3389/fonc.2026.1834671.]. + Copyright © 2026 Chow, Bezerra, Colussi, Khan, Suárez and Kaoud. + + + + Chow + James C L + JCL + + Department of Radiation Oncology, University of Toronto, Toronto, ON, Canada. + + + Radiation Medicine Program, Princess Margaret Cancer Centre, University Health Network, Toronto, ON, Canada. + + + + Bezerra + Daniel P + DP + + Gonçalo Moniz Institute, Oswaldo Cruz Foundation (IGM-FIOCRUZ/BA), Salvador, Bahia, Brazil. + + + + Colussi + Valdir C + VC + + Department of Radiation Oncology, Case Western Reserve University, Cleveland, OH, United States. + + + Seidman Cancer Center, University Hospitals (UH) Cleveland, Cleveland, OH, United States. + + + + Khan + Matiullah + M + + Department of Pathology, Faculty of Medicine, AIMST University, Bedong, Malaysia. + + + + Suárez + Cecilia A + CA + + Physics Department, University of Buenos Aires, Buenos Aires, Argentina. + + + Interdisciplinary and Applied Physics Institute, University of Buenos Aires - National Scientific and Technical Research Council, Buenos Aires, Argentina. + + + + Kaoud + Tamer S + TS + + Department of Pharmaceutical Sciences, College of Pharmacy, University of Arkansas for Medical Sciences, Little Rock, AR, United States. + + + Winthrop P. Rockefeller Cancer Institute, University of Arkansas for Medical Sciences, Little Rock, AR, United States. + + + + eng + + Published Erratum + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Oncol + 101568867 + 2234-943X + + + + Front Oncol. 2026 Apr 20;16:1834671. doi: 10.3389/fonc.2026.1834671. + 42088199 + + + + cancer detection + genomic profiling + machine learning in oncology + molecular mechanisms + precision oncology + radiotherapy advances + rare cancers + translational cancer research + +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 4 + 28 + + + 2026 + 4 + 29 + + + 2026 + 4 + 30 + + + 2026 + 6 + 1 + 6 + 14 + + + epublish + + 42222408 + PMC13220092 + 10.3389/fonc.2026.1867092 + + +
+ + + 42222405 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2234-943X + + 16 + + 2026 + + + Frontiers in oncology + Front Oncol + + Integrated perspectives on colorectal carcinogenesis: molecular pathogenesis, genomic alterations, diagnostic paradigms, therapeutic interventions and AI-driven directions in precision oncology. + + 1770430 + 1770430 + + 10.3389/fonc.2026.1770430 + + Colorectal cancer (CRC) remains a leading cause of cancer-related morbidity and mortality worldwide, with a notable rise in incidence among younger populations and in developing nations. This review provides an integrative perspective on the molecular pathogenesis, epidemiology, classification, diagnosis, and therapeutic strategies in CRC. We emphasize the pivotal role of three major molecular pathways - chromosomal instability (CIN), microsatellite instability (MSI), and CpG island methylator phenotype (CIMP) and their association with tumor heterogeneity and clinical outcomes. The analysis highlights key risk factors including lifestyle-related variables and genetic predisposition, alongside emerging molecular subtypes that influence prognosis and therapeutic decision-making. Advances in non-invasive diagnostics, such as fecal immunochemical testing (FIT) and novel biomarker discovery, demonstrate potential for improving early detection and screening compliance. Preventive strategies encompassing lifestyle modification, chemoprevention, and vitamin D supplementation, coupled with tailored therapeutic interventions including monoclonal antibodies and targeted therapies, offer promising avenues for reducing disease burden. The review also explores recent advances in multi-omics integration and artificial intelligence driven analytics, which have transformed biomarker discovery, subtype classification, and therapeutic prediction in CRC. Emerging applications of machine learning (ML), radiogenomics, and quantum computing further highlight a paradigm shift toward precision oncology. This review underscores the need for precision oncology approaches that integrate molecular profiling, patient stratification, and personalized treatment to enhance health care delivery and clinical outcomes in CRC. + Copyright © 2026 N., S. and Ramasamy. + + + + N + Sidharth Kumar + SK + + Department of Biotechnology, Faculty of Biomedical Sciences & Technology, Sri Ramachandra Institute of Higher Education and Research (DU), Chennai, India. + + + + S + Sai Kiruthiga + SK + + Department of Biotechnology, Faculty of Biomedical Sciences & Technology, Sri Ramachandra Institute of Higher Education and Research (DU), Chennai, India. + + + + Ramasamy + Magesh + M + + Department of Biotechnology, Faculty of Biomedical Sciences & Technology, Sri Ramachandra Institute of Higher Education and Research (DU), Chennai, India. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Oncol + 101568867 + 2234-943X + + + chromosomal instability + colorectal cancer + health care + machine learning + microsatellite instability + quantum computing + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 12 + 18 + + + 2026 + 4 + 1 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 14 + + + epublish + + 42222405 + PMC13215890 + 10.3389/fonc.2026.1770430 + + +
+ + + 42222384 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2234-943X + + 16 + + 2026 + + + Frontiers in oncology + Front Oncol + + Prediction of myelosuppression risk in postoperative cervical cancer patients undergoing concurrent chemoradiotherapy using machine learning models. + + 1800585 + 1800585 + + 10.3389/fonc.2026.1800585 + + By integrating clinical features and pelvic bone marrow dose-volume parameters, this study developed and compared multiple machine learning models to predict the risk of bone marrow suppression (BMS) in postoperative cervical cancer patients receiving concurrent chemoradiotherapy (CCRT). + A total of 415 cervical cancer patients who received postoperative CCRT at Siyang Hospital and Shanxian Central Hospital between March 2022 and April 2025 were retrospectively enrolled. The primary outcome was BMS. Candidate predictors included baseline clinical characteristics, laboratory indices, and pelvic bone marrow dose-volume parameters. Feature selection was performed using the Least Absolute Shrinkage and Selection Operator (LASSO). Logistic regression (LR), random forest (RF), Extreme Gradient Boosting (XGBoost), Light Gradient Boosting Machine (LightGBM), support vector machines (SVM), and artificial neural networks (ANN) were constructed. Model performance was evaluated in an independent test set using the area under the curve (AUC), calibration curves, and decision curve analysis, and model interpretability was assessed using SHAP. + Among the 415 patients, 220 (53.0%) developed BMS. Significant differences were observed between patients with and without BMS in lymph node boost irradiation, body mass index (BMI), aspartate aminotransferase (AST), serum albumin (ALB), and low-dose pelvic bone marrow irradiated volume parameters (V10, V20, and V30). LASSO retained BMI, AST, ALB, V10, V20, and lymph node boost irradiation as key predictors. Among the six models, the RF model achieved the best performance (AUC = 0.799). Calibration curves and decision curve analysis demonstrated good calibration and potential clinical net benefit of the RF model. + Machine learning models integrating routine clinical indicators and pelvic bone marrow dose-volume parameters can effectively predict the risk of myelosuppression in postoperative cervical cancer patients receiving CCRT. The random forest model demonstrated optimal performance and may serve as a practical tool for individualised risk stratification and early intervention. + Copyright © 2026 Wang, Li, Shen, Zhang, Shi, Shen and Qiu. + + + + Wang + Qingkai + Q + + Department of Laboratory Medicine, Shanxian Central Hospital, Heze, China. + + + + Li + Yaling + Y + + Department of Clinical Medicine, School of Medicine, Nantong University, Nantong, China. + + + + Shen + Liran + L + + Department of Laboratory Medicine, Shanxian Central Hospital, Heze, China. + + + + Zhang + Yunbiao + Y + + Department of Laboratory Medicine, Shanxian Central Hospital, Heze, China. + + + + Shi + Qianjin + Q + + Department of Radiation Oncology, Siyang Hospital, Suqian, China. + + + + Shen + Kang + K + + Department of Radiation Oncology, Siyang Hospital, Suqian, China. + + + + Qiu + Hao + H + + Department of Radiation Oncology, Siyang Hospital, Suqian, China. + + + + eng + + Journal Article + + + 2026 + 05 + 13 + +
+ + Switzerland + Front Oncol + 101568867 + 2234-943X + + + bone marrow suppression + cervical cancer + concurrent chemoradiotherapy + dose–volume histogram + machine learning + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 1 + 31 + + + 2026 + 3 + 14 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 14 + + + epublish + + 42222384 + PMC13216769 + 10.3389/fonc.2026.1800585 + + +
+ + + 42222381 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2234-943X + + 16 + + 2026 + + + Frontiers in oncology + Front Oncol + + Hybrid handcrafted and deep feature fusion for automated acute myeloid leukemia classification using TCMA-Net on a class-balanced dataset. + + 1774702 + 1774702 + + 10.3389/fonc.2026.1774702 + + Acute myeloid leukemia (AML) is a life-threatening hematological malignancy that requires accurate and timely diagnosis for effective clinical management. However, conventional cytomorphological analysis is time-consuming, subjective, and highly dependent on expert interpretation. Existing artificial intelligence-based approaches are often limited by severe class imbalance and inadequate feature representation, which restrict their generalization capability. To address these challenges, this study proposes a robust and high-performance AML classification framework based on hybrid feature fusion and deep learning. The proposed approach integrates handcrafted features with deep representations extracted from DenseNet201 and MobileNetV2 to form the Hybrid AML Descriptor Network (HADNet), which is further combined with the Transformer-based Tri block Convolutional Multi head Attention Network (TCMA-Net) classifier to capture both local and global contextual information. In addition, a Synthetic Acquisition Artifact Augmentation (S3A) strategy is introduced to mitigate class imbalance by generating realistic variations in illumination and noise. Extensive experiments were conducted on the AML cytomorphology Ludwig Maximilian University (LMU) dataset, where the proposed framework achieved a testing accuracy of 99.20%, outperforming traditional machine learning models and deep learning baselines. The effectiveness of the approach is further validated through ablation studies and external evaluation on the acute lymphoblastic leukemia (ALL) dataset, demonstrating strong robustness and generalization across different data distributions. Overall, the results indicate that the integration of handcrafted and deep features significantly enhances classification performance, stability, and reliability. The proposed framework provides a promising solution for automated AML diagnosis and has the potential to support clinical decision-making systems. + Copyright © 2026 Alshehri, Mushtaq, Taha, Ijaz, Irfan, Altayar, Jalal, Abu-Alghayth, Al Shmrany and Eltayb Hassan. + + + + Alshehri + Osama M + OM + + Department of Clinical Laboratory Sciences, College of Applied Medical Sciences, Najran University, Najran, Saudi Arabia. + + + + Mushtaq + Zohaib + Z + + Department of Electrical, Electronics and Computer Systems, University of Sargodha, Sargodha, Pakistan. + + + + Taha + Muhammad + M + + Department of Electronics Engineering, Islamia University of Bahawalpur, Bahawalpur, Pakistan. + + + + Ijaz + Maham + M + + Department of Food Science and Technology, Islamia University of Bahawalpur, Bahawalpur, Pakistan. + + + + Irfan + Muhammad + M + + Electrical Engineering Department, College of Engineering, Najran University, Najran, Saudi Arabia. + + + + Altayar + Malik A + MA + + Department of Medical Laboratory Technology, Faculty of Applied Medical Sciences, University of Tabuk, Tabuk, Saudi Arabia. + + + + Jalal + Mohammed M + MM + + Department of Medical Laboratory Technology, Faculty of Applied Medical Sciences, University of Tabuk, Tabuk, Saudi Arabia. + + + + Abu-Alghayth + Mohammed H + MH + + Department of Medical Laboratory Sciences, College of Applied Medical Sciences, University of Bisha, Bisha, Saudi Arabia. + + + + Al Shmrany + Humood + H + + Department of Medical Laboratory, College of Applied Medical Sciences, Prince Sattam bin Abdulaziz University, Alkharj, Saudi Arabia. + + + + Eltayb Hassan + Elhashimi + E + + Department of Clinical Laboratory Science, College of Applied Medical Sciences, Najran University, Najran, Saudi Arabia. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Oncol + 101568867 + 2234-943X + + + DenseNet201 + HADNet + MobileNetV2 + TCMA-Net + acute myeloid leukemia + convolutional neural network + handcrafted features + vision transformer + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 1 + 8 + + + 2026 + 3 + 30 + + + 2026 + 4 + 6 + + + 2026 + 6 + 1 + 6 + 14 + + + epublish + + 42222381 + PMC13215842 + 10.3389/fonc.2026.1774702 + + +
+ + + 42222375 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2234-943X + + 16 + + 2026 + + + Frontiers in oncology + Front Oncol + + Predicting the efficacy of recombinant human thrombopoietin in treating cancer therapy-related thrombocytopenia: based on stacking ensemble methods. + + 1751214 + 1751214 + + 10.3389/fonc.2026.1751214 + + Cancer treatment-induced thrombocytopenia (CTIT) is a common adverse effect of cancer therapy. CTIT increases the risk of bleeding, prolongs hospital stays, raises medical costs, and can negatively impact anti-tumor treatment outcomes, potentially leading to patient death. Therefore, it is crucial to initiate platelet-boosting therapy in a timely manner based on the individual circumstances of patients experiencing CTIT. + Patients who developed cancer treatment-induced thrombocytopenia and received Rh-TPO treatment from January 2023 and December 2023 were obtained for establishing the dataset. With absolute platelets increase as the outcome variable, univariate analysis was performed to screen out statistically significant factors, and 18 clinical variables were selected as initial features. The least absolute shrinkage and selection operator (LASSO) regression analysis was then used to identify the most important features. Based on this, a stacking ensemble model was constructed using cross-validation with out-of-fold predictions to prevent information leakage, and the predictive performance of the model was evaluated. Finally, the SHapley Additive exPlanations (SHAP) algorithm was used to explain the model, and a visual analysis of the features was conducted. + A total of 400 inpatients who developed cancer treatment-induced thrombocytopenia and received Rh-TPO treatment were included, of which 280 inpatients were assigned to the training set and 1,20 to the testing set. After LASSO regression screening, the study identified 7 key features: ethnicity, height, baseline serum creatinine, pre-chemotherapy platelet count, follow-up days after chemotherapy, platelet count before Rh-TPO, and duration of Rh-TPO treatment. We compared the performance of different machine learning models and selected the best three models as base models. Combined with Linear Regression as the meta-learner, we built a stacking ensemble model using 3-fold cross-validation with out-of-fold predictions. The stacking ensemble model showed best prediction ability compared to independent models with R² of 0.77 (training) and 0.74 (testing), MAE of 6.39 (training) and 8.34 (testing), MSE of 62.17 (training) and 97.70 (testing), RMSE of 7.88 (training) and 9.88 (testing), and MAPE of 0.09 (training) and 0.12 (testing). SHAP analysis showed that pre-chemotherapy PLT value and the follow-up days after chemotherapy were the important features affecting the prediction results. + The predictive model developed in this study could be beneficial for accurately predicting the improvement in platelet count in patients with CTIT who use Rh-TPO, facilitating timely assistance for patients in avoiding the risks caused by a drop in platelet count in a timely manner. + Copyright © 2026 Hou, Huangfu, Guo, Gao, Lu, Li and Wang. + + + + Hou + Kun + K + + Department of Pharmacy, Peking University Cancer Hospital/Affiliated Cancer Hospital of Inner Mongolia Medical University, Hohhot, Inner Mongolia, China. + + + The Laboratory for Inheritance and Development of Integrated Chinese (Mongolian) and Western Medicine in Anti-Tumor Therapy, Peking University Cancer Hospital/Affiliated Cancer Hospital of Inner Mongolia Medical University, Hohhot, Inner Mongolia, China. + + + + Huangfu + Rui + R + + School of Pharmacy, Inner Mongolia Medical University, Hohhot, Inner Mongolia, China. + + + + Guo + Zhijuan + Z + + Pathology Department, Peking University Cancer Hospital/Affiliated Cancer Hospital of Inner Mongolia Medical University, Hohhot, Inner Mongolia, China. + + + + Gao + Yan + Y + + Department of Pharmacy, Peking University Cancer Hospital/Affiliated Cancer Hospital of Inner Mongolia Medical University, Hohhot, Inner Mongolia, China. + + + + Lu + Haiwen + H + + Department of Medical Simulated Center, Inner Mongolia Medical University, Hohhot, Inner Mongolia, China. + + + + Li + Zhongwu + Z + + Key Laboratory of Carcinogenesis and Translational Research (Ministry of Education), Department of Pathology, Peking University Cancer Hospital & Institute, Beijing, China. + + + + Wang + Zhenfei + Z + + The Laboratory for Inheritance and Development of Integrated Chinese (Mongolian) and Western Medicine in Anti-Tumor Therapy, Peking University Cancer Hospital/Affiliated Cancer Hospital of Inner Mongolia Medical University, Hohhot, Inner Mongolia, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Oncol + 101568867 + 2234-943X + + + cancer treatment-induced thrombocytopenia + machine learning + predictive models + recombinant human thrombopoietin + stacking ensemble mode + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 11 + 21 + + + 2026 + 4 + 20 + + + 2026 + 4 + 28 + + + 2026 + 6 + 1 + 6 + 14 + + + epublish + + 42222375 + PMC13218961 + 10.3389/fonc.2026.1751214 + + +
+ + + 42222353 + + 2026 + 06 + 01 + +
+ + 1432-9840 + + 29 + 3 + + 2026 + + + Ecosystems (New York, N.Y.) + Ecosystems + + Topography is a Major Determinant of Forest-Savanna Distributions in Mosaic Landscapes in Central Africa. + + 51 + 51 + + 10.1007/s10021-026-01070-2 + + Forests and savannas frequently co-occur as patches within tropical landscape mosaics, yet the mechanisms controlling their spatial configuration remain unclear. The presence of both vegetation states under similar climatic conditions is often attributed to fire-vegetation feedbacks, but could also reflect variation in overlooked external drivers. In Central Africa, forest-savanna mosaics become more common with increasing topographic roughness, but how well topographic heterogeneity explains the forest-savanna configuration within mosaic landscapes is unknown. Here we address this question and examine the role of individual topographic variables that may influence tree cover by, for instance, changing water availability and fire spread. We identify mosaic landscapes from remotely sensed tree cover data and derive topographic variables from a digital elevation model. We use these variables to develop machine learning algorithms predicting vegetation state within mosaic landscapes. Models achieved an average prediction accuracy of 0.75, with local elevation (relative to the surrounding 500 m or 5000 m) emerging as the strongest predictor of vegetation state. Both model accuracy and the role of topographic predictors varied strongly among landscapes, reflecting the diverse pathways by which topography can influence tree cover. Overall, our findings indicate that topographic heterogeneity is a major driver of forest-savanna mosaics in Central Africa. Mosaic landscapes are more deterministic than previously assumed, suggesting that their response to disturbances and climate change will be spatially heterogeneous, thereby reducing the likelihood of abrupt large-scale shifts between forest and savanna states. + The online version contains supplementary material available at 10.1007/s10021-026-01070-2. + © The Author(s) 2026. + + + + Zwaan + Aart + A + 0009-0001-1213-006X + + Copernicus Institute of Sustainable Development, Utrecht University, Utrecht, The Netherlands. + https://ror.org/04pp8hn57 + grid.5477.1 + 0000 0000 9637 0671 + + + + Staal + Arie + A + + Copernicus Institute of Sustainable Development, Utrecht University, Utrecht, The Netherlands. + https://ror.org/04pp8hn57 + grid.5477.1 + 0000 0000 9637 0671 + + + + Te Beest + Mariska + M + + Copernicus Institute of Sustainable Development, Utrecht University, Utrecht, The Netherlands. + https://ror.org/04pp8hn57 + grid.5477.1 + 0000 0000 9637 0671 + + + Centre for African Conservation Ecology, Nelson Mandela University, Gqeberha, South Africa. + https://ror.org/03r1jm528 + grid.412139.c + 0000 0001 2191 3608 + + + + Rietkerk + Max + M + + Copernicus Institute of Sustainable Development, Utrecht University, Utrecht, The Netherlands. + https://ror.org/04pp8hn57 + grid.5477.1 + 0000 0000 9637 0671 + + + + eng + + Journal Article + + + 2026 + 05 + 27 + +
+ + United States + Ecosystems + 100955213 + 1432-9840 + + + alternative ecosystem states + bistability + ecotone + feedbacks + forest–savanna mosaics + tipping points + topography + tropical ecosystems + + Conflict of interestThe authors declare that they have no conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 1 + 28 + + + 2026 + 4 + 26 + + + 2026 + 6 + 1 + 6 + 14 + + + ppublish + + 42222353 + PMC13216132 + 10.1007/s10021-026-01070-2 + 1070 + + +
+ + + 42222348 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2950-3299 + + 34 + 2 + + 2026 + Jun + 18 + + + Molecular therapy. Oncology + Mol Ther Oncol + + Integrating multi-omics analysis and machine learning to refine molecular subtypes and prognostic assessment of lower-grade glioma. + + 201227 + 201227 + + 10.1016/j.omton.2026.201227 + + Lower-grade glioma (LGG) is a highly heterogeneous disease, making accurate prognosis prediction and the development of precise, personalized treatment plans for patients challenging. The multi-omics data from patients with LGG were analyzed using 10 clustering algorithms to identify subgroups at very high resolution. Ten machine learning algorithms were subsequently integrated to develop a robust artificial intelligence model (AIM). We identified two cancer subtypes (CSs) linked to prognosis through multi-omics clustering. After screening 46 hub genes, we integrated 10 machine learning algorithms into 117 combinations to select the AIM with the highest average C-index. The gradient boosting machine (GBM)-based AIM outperformed previous prognostic signatures in nearly all cohorts. Patients in the low-AIM group had a better prognosis and greater sensitivity to immunotherapy, whereas those in the high-AIM group had a poorer prognosis and lower immunotherapy sensitivity. However, MG132 showed promise as a potential therapeutic agent. In vitro studies confirmed the oncogenic role of the hub gene CSDC2 in LGG cells; its knockdown reduced the proliferation, invasion, and migration of these cells. In summary, the AIM we developed is highly valuable for predicting the prognosis of patients with LGG and identifying those who are sensitive to immunotherapy. + © 2026 The Authors. + + + + Jiang + Qian + Q + + Department of Neurosurgery, Guangxi Medical University Cancer Hospital, Nanning, Guangxi, China. + + + + Yang + Ai-Yu + AY + + Department of Radiation Oncology, Guangxi Medical University Cancer Hospital, Nanning, Guangxi, China. + + + + Mo + Guan-Ling + GL + + Department of Neurosurgery, Guangxi Medical University Cancer Hospital, Nanning, Guangxi, China. + + + + Mo + Li-Gen + LG + + Department of Neurosurgery, Guangxi Medical University Cancer Hospital, Nanning, Guangxi, China. + + + + Deng + Teng + T + + Department of Neurosurgery, Guangxi Medical University Cancer Hospital, Nanning, Guangxi, China. + + + + Huang + Su-Ning + SN + + Department of Radiation Oncology, Guangxi Medical University Cancer Hospital, Nanning, Guangxi, China. + + + + Hou + Sheng-Tao + ST + + Brain Research Centre, Department of Neuroscience, School of Life Sciences, Southern University of Science and Technology, Shenzhen, Guangdong, China. + + + + Huang + Qian-Rong + QR + + Department of Neurosurgery, Guangxi Medical University Cancer Hospital, Nanning, Guangxi, China. + + + School of Pre-clinical Medicine, Guangxi Medical University, Nanning, Guangxi, China. + + + + eng + + Journal Article + + + 2026 + 05 + 07 + +
+ + United States + Mol Ther Oncol + 9918752083706676 + 2950-3299 + + + artificial intelligence + lower-grade glioma + machine learning + multi-omics + prognosis + + The authors declare that they have no known competing financial interests or personal relationships that could have appeared to influence the work reported in this paper. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 12 + 14 + + + 2026 + 4 + 22 + + + 2026 + 5 + 5 + + + 2026 + 6 + 1 + 6 + 13 + + + epublish + + 42222348 + PMC13217492 + 10.1016/j.omton.2026.201227 + S2950-3299(26)00103-7 + + +
+ + + 42222296 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1178-1998 + + 21 + + 2026 + + + Clinical interventions in aging + Clin Interv Aging + + A Preliminary Predictive Panel for Pre-Frailty Based on Serum Proteomic Biomarkers: A Two-Phase Cross-Sectional Study. + + 608726 + 608726 + + 10.2147/CIA.S608726 + + Prefrailty is associated with anomalies in protein metabolism; however, the serum proteomic signatures remain unclear. This study investigated protein profiles across different health statuses and evaluated their potential for the early identification of prefrailty. + Older adults were categorized as robust, prefrail, and frail. Untargeted proteomic screening in a discovery cohort (n = 30) was followed by parallel reaction monitoring (PRM) validation (n = 99). Multidimensional clinical parameters and differentially expressed proteins were integrated within machine learning pipelines to refine the search for characteristic features of prefrailty. + 166 proteins were found to be differentially expressed across frailty statuses, with 15 significantly prefrailty-associated proteins subsequently confirmed by PRM validation. These proteins were functionally enriched in pathways related to cell signaling, protein metabolism, immune regulation, and skeletal muscle function maintenance. A Random Forest model, further assembled from gait speed, skeletal muscle mass, E3-independent E2 ubiquitin-conjugating enzyme (UBE2O), Timed Up and Go test time, alpha-actinin-3 (ACTN3), and Mini-Mental State Examination score, exhibited the most robust performance for early frailty identification among multiple algorithms compared. + This exploratory study identified candidate serum protein biomarkers associated with prefrailty. Preliminary machine learning models incorporating UBE2O and ACTN3 suggested the feasibility of discriminating prefrailty from robust status, reflecting underlying proteomic heterogeneity among community-dwelling older adults. + © 2026 Ye et al. + + + + Ye + Yu + Y + + Medical School, Chinese PLA General Hospital, Beijing, People's Republic of China. + + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + Liu + Jinwei + J + + Medical School, Chinese PLA General Hospital, Beijing, People's Republic of China. + + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + Zhang + Zhen + Z + + Medical School, Chinese PLA General Hospital, Beijing, People's Republic of China. + + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + Xu + Shuaixuan + S + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + Chang + Chenghao + C + + Medical School, Chinese PLA General Hospital, Beijing, People's Republic of China. + + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + Cao + Mengyu + M + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + Zhang + Yongyi + Y + + Medical School, Chinese PLA General Hospital, Beijing, People's Republic of China. + + + Department of Anaesthesiology, No. 962 Hospital of the PLA Joint Logistic Support Force, Harbin, Heilongjiang, People's Republic of China. + + + + Wang + Fang + F + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + Zhang + Nihui + N + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + Wang + Guibin + G + + State Key Laboratory of Medical Proteomics, Beijing Institute of Lifeomics, Beijing, People's Republic of China. + + + + Peng + Nan + N + + Medical School, Chinese PLA General Hospital, Beijing, People's Republic of China. + + + Department of Rehabilitation Medicine, second Medical Center of Chinese PLA General Hospital, Beijing, People's Republic of China. + + + + eng + + Journal Article + + + 2026 + 05 + 26 + +
+ + New Zealand + Clin Interv Aging + 101273480 + 1176-9092 + + + + 0 + Biomarkers + + + EC 2.3.2.23 + Ubiquitin-Conjugating Enzymes + + + IM + + + Humans + + + Biomarkers + blood + + + Female + + + Proteomics + methods + + + Cross-Sectional Studies + + + Aged + + + Male + + + Frailty + blood + diagnosis + + + Machine Learning + + + Aged, 80 and over + + + Geriatric Assessment + methods + + + Random Forest + + + Ubiquitin-Conjugating Enzymes + blood + + + + frailty + machine learning + older adults + pre-frailty + proteomics + + The authors report no conflicts of interest in this work. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 13 + + + 2026 + 5 + 15 + + + 2026 + 6 + 1 + 6 + 13 + + + epublish + + 42222296 + PMC13222000 + 10.2147/CIA.S608726 + 608726 + + +
+ + + 42222284 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-042X + + 17 + + 2026 + + + Frontiers in physiology + Front Physiol + + Interpretable multi-center machine learning model driven by facial image features for non-invasive early risk assessment of lung cancer. + + 1835790 + 1835790 + + 10.3389/fphys.2026.1835790 + + Early identification of lung cancer is critical for improving patient survival and prognosis. Conventional pathological biopsy is invasive, and computed tomography (CT) involves ionizing radiation risks. Facial imaging, as a non-invasive and accessible biological signal, is a promising novel approach for lung cancer auxiliary diagnosis. + To develop and validate a non-invasive lung cancer auxiliary diagnosis model based on facial image features, and explore the value of facial imaging in lung cancer early screening. + Multi-center patients with benign pulmonary nodules and lung cancer were enrolled in this study. Facial images were collected via the TFDA-1 Digital Tongue and Face Diagnosis Instrument, with 124 features extracted. Logistic regression was used for feature selection and simple correlation analysis of facial image features, based on which four machine learning models (XGBoost, LightGBM, SVM, GBDT) were constructed. Model training and optimization were performed using 10-fold cross-validation combined with grid search for hyperparameter tuning. Model performance was comprehensively evaluated using Accuracy, Precision, Sensitivity, Specificity, F1-Score, area under the curve (AUC), average precision (AP), and Brier Score; pairwise comparisons of AUCs among models were conducted using the DeLong test. Clinical utility was assessed using calibration curves and decision curves; model interpretability was analyzed via the SHapley Additive exPlanations (SHAP) method; and generalization capability was validated using an independent external validation cohort. + The XGBoost model achieved the best overall performance, with an AUC of 0.900 and accuracy of 0.807 in the internal test set, and an AUC of 0.906 and accuracy of 0.813 in the external validation set, demonstrating favorable generalization stability. DeLong test showed that XGBoost achieved the highest AUC in the internal test set without significant differences among models (all P ≥ 0.05). In external validation, its AUC was significantly higher than GBDT, LightGBM (P < 0.001) and SVM (P < 0.05). + We successfully constructed a non-invasive auxiliary screening model for lung cancer using facial image features. Facial imaging shows significant value in early lung cancer screening, providing a novel, accessible strategy to improve the popularization and availability of lung cancer early screening in clinical practice. + Copyright © 2026 Shi, Chun, Zhang, Xu, Chen, Jiao, Wang, Tu and Xu. + + + + Shi + Yulin + Y + + Teaching Experiment and Training Center, Academic Affairs Office, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + Shanghai Key Laboratory of Health Identification and Assessment, School of Traditional Chinese Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Chun + Yi + Y + + Shanghai Key Laboratory of Health Identification and Assessment, School of Traditional Chinese Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Zhang + Shuyi + S + + Shanghai Key Laboratory of Health Identification and Assessment, School of Traditional Chinese Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Xu + Xiaoyan + X + + Shanghai Key Laboratory of Health Identification and Assessment, School of Traditional Chinese Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Chen + Wenlian + W + + Longhua Hospital Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Jiao + Lijing + L + + Yueyang Hospital of Integrated Traditional Chinese and Western Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Wang + Lixin + L + + Shanghai Pulmonary Hospital, Shanghai, China. + + + + Tu + Liping + L + + Shanghai Key Laboratory of Health Identification and Assessment, School of Traditional Chinese Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + School of Artificial Intelligence in Traditional Chinese Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Xu + Jiatuo + J + + Shanghai Key Laboratory of Health Identification and Assessment, School of Traditional Chinese Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + School of Artificial Intelligence in Traditional Chinese Medicine, Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + Seventh People's Hospital of Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Physiol + 101549006 + 1664-042X + + + benign pulmonary nodule + facial image feature + interpretable machine learning + lung cancer + multicenter study + non-invasive diagnosis + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 21 + + + 2026 + 4 + 21 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 13 + + + epublish + + 42222284 + PMC13218986 + 10.3389/fphys.2026.1835790 + + +
+ + + 42222274 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2692-3114 + + 7 + + 2026 + + + Exploration of targeted anti-tumor therapy + Explor Target Antitumor Ther + + + ESR1 mutations in ER-positive breast cancer: from endocrine resistance to ctDNA-guided therapeutic interception. + + 1002375 + 1002375 + + 10.37349/etat.2026.1002375 + + Endocrine resistance in estrogen receptor-positive (ER+) breast cancer has undergone a fundamental reconceptualization over the past decade. The discovery that activating mutations in the ESR1 gene encoding ERα emerge under aromatase inhibitor (AI) selection pressure and drive ligand-independent receptor activation established a shift from empirical treatment sequencing to molecularly guided intervention. This review provides a synopsis of the structural biology underlying constitutive ER activation, the evolutionary dynamics of ESR1-mutant clones detectable through circulating tumor DNA (ctDNA), and the clinical evidence demonstrating that early molecular detection can trigger therapeutic switches that alter disease trajectory. The regulatory approval of elacestrant for ESR1-mutant disease and randomized trial data showing progression-free survival (PFS) benefit from ctDNA-guided endocrine switching (PADA-1, SERENA-6) position ESR1 genotyping as a dynamic biomarker with direct therapeutic implications. We examine the integration of oral selective ER degraders (SERDs) into treatment algorithms, the role of co-occurring alterations in the phosphatidylinositol 3-kinase/protein kinase B (PI3K/AKT) pathway, and emerging directions, including machine learning approaches to ctDNA kinetics and adaptive trial designs that treat clonal evolution as an actionable target. The convergence of structural mechanisms, liquid biopsy technology, and biomarker-driven drug development provides a framework for precision oncology in endocrine-resistant breast cancer. While these advances are substantial, important challenges remain, including the lack of mature overall survival (OS) data from interception trials, cost and accessibility barriers to serial ctDNA monitoring in diverse global healthcare settings, the unresolved question of optimal therapeutic sequencing in patients with concurrent ESR1 and PI3K pathway alterations, and the need to distinguish clinically actionable low-variant allele frequency (VAF) ESR1 calls from background noise in liquid biopsies. + © The Author(s) 2026. + + + + Martinez + Thais + T + + Herbert Wertheim College of Medicine, Florida International University, Miami, FL 33199, USA. + + + + Wegner + Samantha + S + + Campbell University School of Osteopathic Medicine, Lillington, NC 27546, USA. + + + + Bahmad + Hisham F + HF + 0000-0003-3799-2595 + + Department of Pathology and Laboratory Medicine, University of Miami Miller School of Medicine, Miami, FL 33136, USA. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 26 + +
+ + United States + Explor Target Antitumor Ther + 101770662 + 2692-3114 + + + ESR1 + breast cancer + ctDNA + endocrine resistance + estrogen receptor + review + + The authors declare that they have no conflicts of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 1 + 28 + + + 2026 + 5 + 7 + + + 2026 + 6 + 1 + 6 + 13 + + + epublish + + 42222274 + PMC13220126 + 10.37349/etat.2026.1002375 + + +
+ + + 42222122 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2297-055X + + 13 + + 2026 + + + Frontiers in cardiovascular medicine + Front Cardiovasc Med + + Artificial intelligence optimizes immune rejection prediction and management in heart transplantation: a structured narrative review. + + 1790244 + 1790244 + + 10.3389/fcvm.2026.1790244 + + Heart transplantation remains the definitive therapy for end-stage heart failure, yet long-term outcomes are limited by three core clinical bottlenecks in immune rejection management: imprecise preoperative donor-recipient matching, overreliance on invasive endomyocardial biopsy (EMB) for postoperative rejection surveillance, and high inter-observer variability in manual pathological diagnosis of rejection. Artificial intelligence (AI) has emerged as a promising tool to address these gaps, but the methodological quality and clinical translation readiness of supporting evidence have not been comprehensively synthesized. + This structured narrative review synthesized original research published between October 1, 2020, and October 1, 2025, identified via a targeted PubMed search and manual reference screening. Two independent reviewers performed study selection and data extraction, with discrepancies resolved by consensus. Common methodological limitations across included studies were synthesized qualitatively. + A total of 42 studies were included in the final qualitative synthesis. Preoperatively, 3D-Convolutional Neural Networks (3D-CNNs) enabled automated, accurate total cardiac volume (TCV) measurement for anatomical matching, while machine learning models identified non-linear synergistic risk factors for postoperative adverse events, outperforming traditional regression models. Postoperatively, AI models integrating non-invasive biomarkers (gene expression profiles, extracellular vesicles, donor-derived cell-free DNA) showed high diagnostic accuracy for rejection, with one single-center retrospective study estimating a 56.8% reduction in unnecessary EMB procedures (prospective clinical validation is still required). For pathological diagnosis, AI models improved the sensitivity of high-grade acute cellular rejection (ACR) detection from 39.5% to 74.4% compared with manual assessment, generative adversarial networks (GANs) addressed rare rejection sample scarcity with a rejection region detection AUROC of 98.84%, and explainable AI tools aligned model decisions with pathologists' judgment. The overall methodological quality of included studies was suboptimal, with most studies limited by single-center retrospective design, small sample size, and lack of independent external validation. + AI has demonstrated promising potential to optimize donor-recipient matching, enable non-invasive rejection surveillance, and standardize pathological diagnosis in heart transplantation. However, most current evidence comes from exploratory, single-center retrospective studies with important methodological limitations that restrict their immediate clinical translation. Future research should prioritize prospective, multi-center clinical validation, standardized biomarker and model reporting, and federated learning data ecosystems to translate AI innovations into routine clinical practice. + © 2026 Chen, Lai, Luo, Li and Wang. + + + + Chen + Kaixin + K + + Department of Cardiovascular Surgery, Union Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China. + + + + Lai + Junlin + J + + Department of Cardiovascular Surgery, Union Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China. + + + + Luo + Yijie + Y + + Department of Cardiovascular Surgery, Union Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China. + + + + Li + Chenghao + C + + Department of Cardiovascular Surgery, Zhongnan Hospital, Wuhan University, Wuhan, Hubei, China. + + + + Wang + Guohua + G + + Department of Cardiovascular Surgery, Union Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Cardiovasc Med + 101653388 + 2297-055X + + + artificial intelligence + deep learning + donor-recipient matching + heart transplantation + immune rejection + machine learning + non-invasive monitoring + pathological diagnosis + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 26 + + + 2026 + 4 + 16 + + + 2026 + 4 + 24 + + + 2026 + 6 + 1 + 6 + 11 + + + epublish + + 42222122 + PMC13216486 + 10.3389/fcvm.2026.1790244 + + +
+ + + 42222119 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2297-055X + + 13 + + 2026 + + + Frontiers in cardiovascular medicine + Front Cardiovasc Med + + Development and validation of the C-reactive protein-triglyceride-glucose index for predicting short- and long-term mortality in critically ill patients with coronary artery disease: a multicenter cohort study. + + 1763569 + 1763569 + + 10.3389/fcvm.2026.1763569 + + The C-reactive protein-triglyceride glucose index (CTI) has been proposed as a novel biomarker of insulin resistance and inflammation, but its association with mortality in critically ill patients with coronary artery disease (CAD) remains unclear. This study aimed to evaluate the associations between the CTI and both short- and long-term all-cause mortality and to assess the predictive value of this index. + Patients with CAD were identified from the MIMIC-IV database and divided into internal training and testing cohorts, while an external validation cohort was derived from the eICU-CRD and Shenzhen Regional Health Information Platform (SRHIP) database. Based on the optimal CTI cut-off values, patients were grouped into three categories. The primary outcomes were short-term (30-day) and long-term (365-day) all-cause mortality. Associations between the CTI and mortality were examined using Kaplan-Meier curves, restricted cubic spline regression, and Cox proportional hazards models. Subgroup, mediation and sensitivity analyses tested result robustness. The CTI was further compared with other single predictors, and six machine learning (ML) models were built to assess its predictive performance. Finally, the SHapley Additive exPlanations (SHAP) analysis identified feature contributions, and a user-friendly web application was developed. + The primary cohort included 1,561 patients, and two external validation cohorts included 242 and 105 patients from the eICU-CRD and SRHIP databases. High CTI values were significantly associated with increased short- and long-term mortality, demonstrating a nonlinear dose-response relationship. The CTI exhibited particularly high predictive value for short-term outcomes. The incorporation of the CTI into ML models notably improved the predictive performance, and this improvement was confirmed in the external validation cohort. + The CTI was identified as an independent predictor of short- and long-term mortality in critically ill patients with CAD, with a particularly high predictive value for short-term risk stratification. Integrating the CTI into predictive models significantly increased the prognostic accuracy. + © 2026 Yang, Xia, Guo, Wu, Wu and Li. + + + + Yang + Jian + J + + Department of Biomedical Informatics, School of Life Sciences, Central South University, Changsha, China. + + + + Xia + Yilin + Y + + Department of Biomedical Informatics, School of Life Sciences, Central South University, Changsha, China. + + + + Guo + Weixi + W + + Department of Biomedical Informatics, School of Life Sciences, Central South University, Changsha, China. + + + + Wu + Liqun + L + + Shenzhen Health Development Research and Data Management Center, Shenzhen, China. + + + + Wu + Xusheng + X + + Shenzhen Health Development Research and Data Management Center, Shenzhen, China. + + + + Li + Bei + B + + Department of Biomedical Informatics, School of Life Sciences, Central South University, Changsha, China. + + + + eng + + Journal Article + + + 2026 + 05 + 13 + +
+ + Switzerland + Front Cardiovasc Med + 101653388 + 2297-055X + + + c-reactive protein-triglyceride-glucose index + coronary artery disease + inflammation + insulin resistance + machine learning + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 12 + 9 + + + 2026 + 4 + 11 + + + 2026 + 4 + 29 + + + 2026 + 6 + 1 + 6 + 11 + + + epublish + + 42222119 + PMC13216771 + 10.3389/fcvm.2026.1763569 + + +
+ + + 42222117 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2297-055X + + 13 + + 2026 + + + Frontiers in cardiovascular medicine + Front Cardiovasc Med + + A novel glycolipid composite index predicting cardiovascular disease in Chinese adults with abnormal glucose metabolism: a nationwide cohort study. + + 1791890 + 1791890 + + 10.3389/fcvm.2026.1791890 + + Cardiovascular disease (CVD) is the leading cause of mortality among individuals with abnormal glucose metabolism. Existing insulin resistance (IR) surrogate indexes show limited predictive capacity in Chinese populations and fail to capture comprehensive glycolipid metabolic dysregulation. We developed and validated TyG-GLM6, a composite index integrating six metabolic parameters (fasting glucose, triglycerides, HDL-C, LDL-C, Age, and BMI), and compared its predictive performance against nine conventional IR indexes. + This prospective cohort study analyzed 3,684 participants aged ≥45 years with abnormal glucose metabolism from the China Health and Retirement Longitudinal Study (2011-2020). Associations between TyG-GLM6 and incident CVD were evaluated using multivariate logistic regression and restricted cubic splines. Seven machine learning algorithms were implemented, with performance assessed via ROC curves and SHAP analysis. External validation was conducted in 2,105 participants from a tertiary hospital. + During 9-year follow-up, 824 (22.4%) participants developed CVD. After full adjustment including biochemical markers, TyG-GLM6 was the only index retaining independent predictive significance (OR: 1.04, 95% CI: 1.01-1.08, P = 0.028), while eGDR, TyG-WC, and CVAI were attenuated to non-significance. TyG-GLM6 exhibited a linear dose-response relationship with CVD risk (P for nonlinear = 0.768, P for overall < 0.001) and consistent performance across sex and age subgroups. Logistic regression achieved optimal performance (AUC: 0.587), with TyG-GLM6 among top predictors. External validation confirmed independent prediction (adjusted OR: 2.02, 95% CI: 1.84-2.20, P < 0.001). + TyG-GLM6 demonstrates superior independent predictive value for CVD in Chinese adults with abnormal glucose metabolism, outperforming conventional IR indexes in fully adjusted models. Its linear dose-response relationship, demographic robustness, and external validation support its utility for early risk stratification and personalized prevention strategies. Validation in ethnically diverse populations is warranted. + © 2026 Peng, Zhu, Xie, Yong, Ye, Gao and Shuai. + + + + Peng + Dan-Dan + DD + + Department of Clinical Laboratory, the Second Affiliated Hospital of Wannan Medical University, Wuhu, China. + + + + Zhu + Ping + P + + Department of Clinical Laboratory, the Second Affiliated Hospital of Wannan Medical University, Wuhu, China. + + + + Xie + Ji-Chen + JC + + Department of Clinical Laboratory, the Second Affiliated Hospital of Wannan Medical University, Wuhu, China. + + + + Yong + Wei + W + + Department of Clinical Laboratory, the Second Affiliated Hospital of Wannan Medical University, Wuhu, China. + + + + Ye + Kai + K + + Department of Clinical Laboratory, the Second Affiliated Hospital of Wannan Medical University, Wuhu, China. + + + + Gao + Jun-Jie + JJ + + Department of Clinical Laboratory, the Second Affiliated Hospital of Wannan Medical University, Wuhu, China. + + + + Shuai + Zhao-Xia + ZX + + Department of Clinical Laboratory, the Second Affiliated Hospital of Wannan Medical University, Wuhu, China. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Cardiovasc Med + 101653388 + 2297-055X + + + CHARLS + TyG-GLM6 + abnormal glucose metabolism + cardiovascular disease + insulin resistance + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 1 + 20 + + + 2026 + 4 + 15 + + + 2026 + 4 + 20 + + + 2026 + 6 + 1 + 6 + 11 + + + epublish + + 42222117 + PMC13215857 + 10.3389/fcvm.2026.1791890 + + +
+ + + 42222087 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-2392 + + 17 + + 2026 + + + Frontiers in endocrinology + Front Endocrinol (Lausanne) + + Development and external validation of an interpretable machine learning model for diagnosing coronary heart disease in patients with type 2 diabetes and MASLD. + + 1830594 + 1830594 + + 10.3389/fendo.2026.1830594 + + Patients with type 2 diabetes mellitus (T2DM) and metabolic dysfunction-associated steatotic liver disease (MASLD) face substantially elevated coronary heart disease (CHD) risk, yet no machine learning diagnostic models exist specifically for this population. This study aimed to develop and validate an interpretable machine learning model for identifying CHD in T2DM-MASLD patients. + Using data from 1,269 patients (development cohort) and 1,058 patients (external validation cohort) from two Chinese hospitals, we compared seven machine learning algorithms. Angiographically confirmed CHD served as the diagnostic endpoint. Nine features were selected by univariate analysis, LASSO regression, and the Boruta algorithm. The best-performing model was selected based on comprehensive evaluation of discrimination, calibration, and clinical utility. Model interpretability was assessed using SHapley Additive exPlanations (SHAP), and external validation was performed in an independent cohort. + Feature selection identified nine predictors: total cholesterol (TC), chest distress, apolipoprotein B (ApoB), male sex, triglycerides (TG), age, chest pain, red cell distribution width (RDW), and cardiac troponin (cTn). The XGBoost model achieved the best performance, with an AUC of 0.896 (95% CI, 0.862-0.930) in internal validation and 0.865 (95% CI, 0.837-0.893) in external validation, with excellent calibration (Brier score: 0.112). To facilitate clinical application, a freely accessible web-based calculator was developed for real-time individualized CHD risk prediction. + This is the first interpretable machine learning model externally validated for CHD diagnosis in T2DM-MASLD patients, demonstrating robust performance using nine routinely available clinical parameters. The model's interpretability through SHAP analysis enhances clinical trust and supports individualized risk communication between physicians and patients to guide decisions regarding coronary angiography. + Copyright © 2026 Deng, Feng, Li, Wei, Zhu and Lu. + + + + Deng + Chunxia + C + + Department of Endocrinology and Metabolism, Guangxi Academy of Medical Sciences and the People's Hospital of Guangxi Zhuang Autonomous Region, Nanning, Guangxi, China. + + + + Feng + Ling + L + + Department of Endocrinology and Metabolism, Guangxi Academy of Medical Sciences and the People's Hospital of Guangxi Zhuang Autonomous Region, Nanning, Guangxi, China. + + + + Li + Tingting + T + + Department of Respiratory and Critical Care Medicine, Guangxi Hospital of the First Affiliated Hospital, Sun Yat-sen University, Nanning, Guangxi, China. + + + + Wei + Suosu + S + + Clinical Research Center of Guangxi Academy of Medical Sciences, The People's Hospital of Guangxi Zhuang Autonomous Region, Nanning, Guangxi, China. + + + + Zhu + Huiming + H + + Department of Clinical Laboratory, Nantong Sixth People's Hospital Affiliated to Shanghai University, Nantong, Jiangsu, China. + + + + Lu + Jie + J + + Department of Endocrinology and Metabolism, Guangxi Academy of Medical Sciences and the People's Hospital of Guangxi Zhuang Autonomous Region, Nanning, Guangxi, China. + + + + eng + + Journal Article + Validation Study + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Endocrinol (Lausanne) + 101555782 + 1664-2392 + + IM + + + Humans + + + Diabetes Mellitus, Type 2 + complications + + + Coronary Disease + diagnosis + etiology + epidemiology + + + Male + + + Female + + + Machine Learning + + + Middle Aged + + + Aged + + + Boosting Machine Learning Algorithms + + + Predictive Learning Models + + + China + epidemiology + + + + SHAP + XGBoost + coronary heart disease + external validation + machine learning + metabolic dysfunction-associated steatotic liver disease + type 2 diabetes mellitus + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 14 + + + 2026 + 4 + 24 + + + 2026 + 4 + 30 + + + 2026 + 6 + 1 + 6 + 11 + + + epublish + + 42222087 + PMC13218859 + 10.3389/fendo.2026.1830594 + + +
+ + + 42222083 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-2392 + + 17 + + 2026 + + + Frontiers in endocrinology + Front Endocrinol (Lausanne) + + Identification of BMI-related high-risk feature combinations for diabetes among young adults with normal baseline fasting plasma glucose using interpretable machine learning: a health check-up cohort study. + + 1850071 + 1850071 + + 10.3389/fendo.2026.1850071 + + Body mass index (BMI) is an easily obtainable indicator for diabetes risk screening, but its residual risk value among young adults with normal fasting plasma glucose (FPG) remains insufficiently understood. This cohort study investigated the association between BMI and incident diabetes, its nonlinear risk pattern, and BMI-related risk structures among young adults with normal baseline FPG. Data were obtained from the Rich Healthcare Group health check-up database in China. Participants aged <40 years without diabetes at baseline, with complete BMI data and at least one follow-up visit, were included; those with baseline FPG <5.6 mmol/L were defined as the primary analytic population. Cox regression and restricted cubic spline analysis were used to examine the association between BMI and incident diabetes. Four machine learning models were compared, with logistic regression selected as the primary interpretable model and XGBoost used as an exploratory nonlinear model. SHapley Additive exPlanations were applied to interpret model-derived variable contributions. A total of 103,693 participants were included, and 266 incident diabetes events occurred during a median follow-up of 2.99 years. BMI was independently associated with incident diabetes in the multivariable Cox model (HR = 1.284, 95% CI: 1.250-1.319; P <0.001). Restricted cubic spline analysis showed a significant nonlinear association, with risk increasing more steeply beyond approximately 28 kg/m². In the validation set, logistic regression and XGBoost achieved ROC-AUC values of 0.812 and 0.817, respectively; however, their low PR-AUC values indicated limited ability to identify true positive cases under the very low event rate. SHAP analysis identified BMI as the most influential predictor in the exploratory XGBoost model and suggested possible model-derived joint contribution patterns involving triglycerides and systolic blood pressure, but formal Cox-based interaction testing did not confirm statistically significant multiplicative interactions. These findings suggest that BMI-related diabetes risk among normoglycemic young adults is nonlinear and embedded within a broader metabolic risk structure. Combining conventional regression with interpretable machine learning may support earlier identification and refined risk stratification of young adults at increased diabetes risk before fasting glucose becomes abnormal. + Copyright © 2026 Xu, Zhang and Zhang. + + + + Xu + Zhen + Z + + Nursing Department, Longhua Hospital Affiliated to Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Zhang + Ying + Y + + Nursing Department, Longhua Hospital Affiliated to Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + Zhang + Huachun + H + + Nursing Department, Longhua Hospital Affiliated to Shanghai University of Traditional Chinese Medicine, Shanghai, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Endocrinol (Lausanne) + 101555782 + 1664-2392 + + + + 0 + Blood Glucose + + + IM + + + Humans + + + Body Mass Index + + + Male + + + Female + + + Blood Glucose + analysis + + + Machine Learning + + + Fasting + blood + + + China + epidemiology + + + Risk Factors + + + Adult + + + Follow-Up Studies + + + Young Adult + + + Cohort Studies + + + Boosting Machine Learning Algorithms + + + Incidence + + + Diabetes Mellitus, Type 2 + epidemiology + blood + diagnosis + + + + SHAP + body mass index + diabetes + interpretable machine learning + normal fasting plasma glucose + young adults + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 4 + 8 + + + 2026 + 4 + 26 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 11 + + + epublish + + 42222083 + PMC13218894 + 10.3389/fendo.2026.1850071 + + +
+ + + 42222071 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-2392 + + 17 + + 2026 + + + Frontiers in endocrinology + Front Endocrinol (Lausanne) + + Lipid metabolism-based machine learning models for predicting large for gestational age in non-diabetic pregnancies. + + 1758008 + 1758008 + + 10.3389/fendo.2026.1758008 + + The majority of LGA occurs in normoglycemic pregnancies, yet prediction models integrating lipid metabolism for this population are lacking. This study aimed to develop and validate machine learning models based on lipid metabolic profiles to predict LGA risk in non-diabetic pregnant women. + We retrospectively analyzed 1,968 singleton pregnancies without diabetes. Lipid profiles were assessed at early pregnancy (11-14 weeks) and mid-pregnancy (20-24 weeks). The dataset was randomly divided into training (n = 1,574) and independent test sets (n = 394) using stratified sampling. Four machine learning algorithms-logistic regression (LR), random forest (RF), support vector machine (SVM), and extreme gradient boosting (XGBoost)-were developed using nested 5×5 cross-validation to prevent overfitting and ensure unbiased performance estimation. Model performance was evaluated using area under the receiver operating characteristic curve (AUC), and feature importance was assessed using SHAP analysis. + Hyperparameter optimization demonstrated stable convergence across outer folds (coefficient of variation < 1.5% for all models). On the independent test set, XGBoost achieved the highest performance with an AUC of 0.776 (95% CI: 0.730-0.822), significantly outperforming LR (AUC 0.688, P < 0.001). SHAP analysis identified pre-pregnancy BMI (mean SHAP value: 1.48), gestational weight gain (0.93), and mid-pregnancy triglycerides (0.73) as the strongest predictors. Lipid metabolism-related parameters collectively accounted for approximately 40% of the model's predictive capacity. + Machine learning models incorporating lipid metabolic profiles demonstrated superior performance in predicting LGA among non-diabetic pregnancies. This approach enables early risk stratification and may guide personalized prenatal management. + Copyright © 2026 Liu, Xu, Mi and Yan. + + + + Liu + Wanqing + W + + Department of Obstetrics and Gynecology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + Xu + Ya + Y + + Department of Obstetrics and Gynecology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + Mi + Chen + C + + Department of Obstetrics and Gynecology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + Yan + Shanling + S + + Department of Ultrasound, Deyang People's Hospital, Deyang, Sichuan, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Endocrinol (Lausanne) + 101555782 + 1664-2392 + + IM + + + Humans + + + Female + + + Pregnancy + + + Lipid Metabolism + physiology + + + Infant, Large for Gestational Age + + + Predictive Learning Models + + + Retrospective Studies + + + Machine Learning + + + Adult + + + Boosting Machine Learning Algorithms + + + Prediction Algorithms + + + Random Forest + + + Classification Algorithms + + + Gestational Age + + + + large for gestational age + lipid metabolism + machine learning + non-diabetic pregnancy + prediction + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 12 + 1 + + + 2026 + 4 + 19 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 11 + + + epublish + + 42222071 + PMC13218891 + 10.3389/fendo.2026.1758008 + + +
+ + + 42222052 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2359-7232 + + 14 + 1 + + 2026 + Jan-Mar + + + Discoveries (Craiova, Romania) + Discoveries (Craiova) + + Responsible Innovation in AI-Driven Teledentistry: Ethical, Legal, and Economic Considerations for the Globalization Era. + + e224 + e224 + + 10.15190/d.2026.3 + + Teledentistry has evolved from asynchronous communication to real-time consultations, with adoption accelerating during and post-COVID. Concurrently, AI has been leveraged to enhance diagnostic accuracy, efficiency, and accessibility using machine learning, GANs, and connected devices. This scoping review, conducted using Arksey and O'Malley framework and Joanna Briggs Institute guidance, explores the ethical, legal, and economic considerations of AI-driven teledentistry. Following a PRISMA-ScR compliant screening process by two independent reviewers, 137 studies published between 2018 and 2025 were included. Unlike previous reviews that have primarily focused on clinical applications or the general use of AI in healthcare, this review addresses the ethical, legal, and economic considerations of AI in teledentistry in a single paper. It underscores the importance of explainable AI, explores cross-border regulatory challenges, and discusses possible cost models for adoption in smaller practices. This review indicates that AI-powered teledentistry could enhance diagnostic accuracy, facilitate early detection, improve monitoring, and increase accessibility. Nonetheless, these advantages come with critical concerns including data privacy, potential biases, patient autonomy, accountability, and cost. Addressing these issues through governance, oversight, transparency, and economic viability is essential. AI-enabled teledentistry has the potential to transform dental care delivery, but its integration must be approached with careful consideration of its associated challenges. + Copyright © 2026, Kaushik et al., Applied Systems and Discoveries Journals. + + + + Kaushik + Richa + R + + School of Family Medicine and Public Health Sciences, Wayne State University, Detroit, USA. + + + + Rapaka + Ravindra + R + + University of Connecticut, Storrs, CT, USA. + + + + eng + + Journal Article + Review + + + 2026 + 03 + 31 + +
+ + Romania + Discoveries (Craiova) + 101665061 + 2359-7232 + + + Artificial Intelligence (AI) + Data Privacy + Economic Impact. + Ethical Considerations + Healthcare Accessibility + Teledentistry + + Conflict of interests: The authors have no conflicts of interest to disclose +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 12 + 17 + + + 2026 + 3 + 28 + + + 2026 + 3 + 31 + + + 2026 + 6 + 1 + 6 + 10 + + + epublish + + 42222052 + PMC13222122 + 10.15190/d.2026.3 + 349 + + +
+ + + 42221978 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1177-9322 + + 20 + + 2026 + + + Bioinformatics and biology insights + Bioinform Biol Insights + + A Novel Bioinformatics Pipeline and a Machine-Learning Approach for Antimicrobial Resistance Phenotypic Prediction. + + 11779322261453756 + 11779322261453756 + + 10.1177/11779322261453756 + + Overuse of antimicrobial drugs is known to cause an increase in bacterial resistance among surviving pathogens, reducing the effectiveness of future treatments. Publicly available sequencing collections, such as the National Center for Biotechnology Information Sequence Read Archive (SRA), allow for global investigation of antimicrobial resistance across pathogens. In this study, we developed a pipeline to process 10 803 globally sourced unique bacterial isolates from publicly available SRA datasets (9 pathogens, 4 antibiotics), representing sequencing data generated by multiple laboratories using diverse sequencing platforms and protocols. The pipeline extracted SRA metadata to determine read layout and length, applied quality control, trimming, and decontamination. Preprocessed isolates were mapped reads to an antimicrobial resistance gene class and to a strain-level genome reference library constructed from complete genomes on the SRA submitted between 2009 and 2020. Three classifiers-L1-penalized logistic regression, random forest, and extreme gradient boosting-were trained on the resulting feature matrices, and their outputs were combined in a majority-vote ensemble. Internal training resulted in 83.8% balanced accuracy on average, and external testing yielded 80.2%. Variable importance analyses identified known resistance gene classes and strain markers such as Acinetobacter baumannii LAC-4 and Campylobacter jejuni 81-176 and NCTC13255, confirming biological relevance. This work demonstrates a scalable approach for antimicrobial resistance prediction using heterogeneous sequencing data. + © The Author(s) 2026. + + + + Visser + Owen + O + 0009-0001-4877-0560 + + Department of Biostatistics, University of Florida, Gainesville, USA. + + + + Agboli + Victor + V + 0009-0006-5597-8315 + + Department of Biostatistics, University of Florida, Gainesville, USA. + + + + Datta + Somnath + S + + Department of Biostatistics, University of Florida, Gainesville, USA. + + + + eng + + Journal Article + + + 2026 + 05 + 26 + +
+ + United States + Bioinform Biol Insights + 101467187 + 1177-9322 + + + antimicrobial resistance prediction + bioinformatics pipeline + phenotypic prediction + + The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 10 + 21 + + + 2026 + 5 + 10 + + + 2026 + 6 + 1 + 6 + 10 + + + epublish + + 42221978 + PMC13219803 + 10.1177/11779322261453756 + 10.1177_11779322261453756 + + +
+ + + 42221892 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-462X + + 17 + + 2026 + + + Frontiers in plant science + Front Plant Sci + + Tea tree recognition based on multi-source satellite data across Southeast China. + + 1801301 + 1801301 + + 10.3389/fpls.2026.1801301 + + The tea plant (Camellia Sinensis), as the world's most popular non-alcoholic beverage, underscores the importance of precise and timely spatial data for industry insights and sustainability. Yet, the accurate delineation of spectrally similar vegetation types, notably tea trees, continues to elude conventional methods. This study innovatively integrates Sentinel-1 radar data with Sentinel-2 imagery to effectively overcome optical observation limitations imposed by Yunnan's cloudy climate, particularly during non-growing seasons (e.g., February). By systematically analyzing annual phenological dynamics, we quantitatively identified April as the optimal temporal window for discriminating tea trees from spectrally similar vegetation, such as rubber and natural forests. Furthermore, optimizing the model through a feature selection process to eliminate redundant features significantly enhanced the overall classification accuracy from 87.1% to 89.1%. This study could assistant monitoring the crop dynamics and timely respond to cultivation activity. + Copyright © 2026 Cong, Zhao, Qiu and Zhao. + + + + Cong + Nan + N + + Lhasa Plateau Ecosystem Research Station, Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences, Beijing, China. + + + College of Resources and Environmental Sciences, China Agricultural University, Beijing, China. + + + + Zhao + Rongrong + R + + Lhasa Plateau Ecosystem Research Station, Institute of Geographic Sciences and Natural Resources Research, Chinese Academy of Sciences, Beijing, China. + + + College of Resources and Environmental Sciences, China Agricultural University, Beijing, China. + + + + Qiu + Yuxin + Y + + College of Resources and Environmental Sciences, China Agricultural University, Beijing, China. + + + + Zhao + Chuang + C + + College of Resources and Environmental Sciences, China Agricultural University, Beijing, China. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Plant Sci + 101568200 + 1664-462X + + + classification accuracy + crop distribution + machine learning + remote sensing + tea trees + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 2 + 2 + + + 2026 + 4 + 8 + + + 2026 + 4 + 20 + + + 2026 + 6 + 1 + 6 + 9 + + + epublish + + 42221892 + PMC13216473 + 10.3389/fpls.2026.1801301 + + +
+ + + 42221889 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-462X + + 17 + + 2026 + + + Frontiers in plant science + Front Plant Sci + + Advancing anthracnose resistance in dry beans through the transition from traditional to computational breeding efforts. + + 1809294 + 1809294 + + 10.3389/fpls.2026.1809294 + + Anthracnose, caused by Colletotrichum lindemuthianum, is a major threat to dry beans (Phaseolus vulgaris), causing significant yield losses worldwide. Despite considerable progress in breeding resistant varieties using traditional methods such as phenotypic selection and crossbreeding, the ongoing challenges posed by the pathogen's genetic diversity and environmental variability call for more sustainable solutions. Traditional breeding methods have made notable advancements, but with the increasing pressure of climate change and evolving disease dynamics, there is a growing need to complement these approaches with modern computational tools. The integration of genomics, phenomics, and bioinformatics has introduced new possibilities in disease resistance breeding. Techniques such as high-throughput sequencing, genome-wide association studies (GWAS), and marker-assisted selection have accelerated the identification of resistance genes, while machine learning and multi-omics approaches provide a deeper understanding of host-pathogen-environment interactions. Therefore, this review aims to provide a comprehensive synthesis of the historical development of anthracnose resistance breeding, highlighting the role of traditional methods and the transition toward computational strategies. It emphasizes how combining both approaches can enhance the development of durable, high-yielding, anthracnose-resistant dry beans, offering more effective solutions to global production challenges. + Copyright © 2026 Patel, Ahlawat, Lorenc, Vazin, Maleki and Yoosefzadeh Najafabadi. + + + + Patel + Aashvi + A + + Department of Plant Agriculture, University of Guelph, Guelph, ON, Canada. + + + + Ahlawat + Sajal + S + + Department of Plant Agriculture, University of Guelph, Guelph, ON, Canada. + + + + Lorenc + Philip + P + + Department of Plant Agriculture, University of Guelph, Guelph, ON, Canada. + + + + Vazin + Maryam + M + + Department of Plant Agriculture, University of Guelph, Guelph, ON, Canada. + + + + Maleki + Masoud + M + + Department of Plant Agriculture, University of Guelph, Guelph, ON, Canada. + + + + Yoosefzadeh Najafabadi + Mohsen + M + + Department of Plant Agriculture, University of Guelph, Guelph, ON, Canada. + + + Department of Bioinformatics, University of Guelph, Guelph, ON, Canada. + + + + eng + + Journal Article + Review + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Plant Sci + 101568200 + 1664-462X + + + climate change + disease resistance + genomics + machine learning + marker-assisted selection + multi-omics + phenotyping + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. The author MY declared that they were an editorial board member of Frontiers, at the time of submission. This had no impact on the peer review process and the final decision. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 11 + + + 2026 + 3 + 28 + + + 2026 + 4 + 1 + + + 2026 + 6 + 1 + 6 + 9 + + + epublish + + 42221889 + PMC13220701 + 10.3389/fpls.2026.1809294 + + +
+ + + 42221886 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-462X + + 17 + + 2026 + + + Frontiers in plant science + Front Plant Sci + + Monitoring plant moisture content and optimizing irrigation prescriptions based on UAV multimodal data. + + 1827521 + 1827521 + + 10.3389/fpls.2026.1827521 + + With the continuous advancement of smart agriculture, multi-modal remote sensing based on unmanned aerial vehicles (UAVs) offers new technical approaches for monitoring and managing crop moisture in fields. However, significant challenges remain in developing high-precision field-scale crop Plant Moisture Content (PMC) prediction models and translating them into actionable irrigation strategies. + This study focuses on winter wheat, employing field experiments with PMC and water use efficiency (WUE) as indicators of crop water status. Vegetation indices (VIs) derived from UAV data were used to construct a leaf area index (LAI) inversion model. Crop Height was extracted from oblique photogrammetry point cloud data. By combining the Penman-Monteith equation with dual crop coefficients, an improved evapotranspiration (ET) model was developed, utilizing multispectral data from UAVs, thermal infrared data, point cloud-derived plant height, and LAI inversion results. Further utilizing VIs, temperature indices (TIs), and machine learning algorithms (Random Forest Regression (RFR), Back Propagation Neural Network (BPNN), Partial Least Squares Regression (PLSR), and Support Vector Regression (SVR), we established PMC prediction models for winter wheat at different growth stages. These models, integrated with WUE, form the basis for an irrigation scheduling optimization framework at the field scale. + Results indicate that VIs, the difference between canopy temperature and air temperature (ΔT), Crop Water Stress Index (CWSI), and ET exhibit varying correlations with PMC during three critical growth stages of winter wheat, with ET showing the highest correlation during the jointing and heading stages (absolute correlation coefficient |r| ≥ 0.639). Compared to PMC prediction models constructed with different combinations of VIs, ET, VIs+ET, and VIs+TIs, the model employing the RFR algorithm with multimodal inputs (VIS+TIs+ET) demonstrated the best performance. The model's predictive accuracy gradually improved across all growth stages, peaking during the grain-filling stage, with the coefficient of determination(R2) of 0.900 and a normalized root mean square error (nRMSE) of 2.688%. Optimal WUE varied across growth stages under different irrigation treatments. The highest values were achieved at the jointing stage under treatment W3 (PMC = 81.8%), and at the heading and grain-filling stages under treatment W1 (PMC = 76.8% and 64.0%, respectively). + The study suggests that stage-specific irrigation scheduling based on PMC thresholds can improve overall water use efficiency. This study shows that integrating multi-modal UAV data with machine learning and an improved ET model enables high-precision PMC monitoring, supporting data-driven irrigation scheduling in precision agriculture. + Copyright © 2026 Fu, Hou, Wang, Chen, Cheng, Li and Duan. + + + + Fu + Wanna + W + + Heilongjiang Provincial Hydraulic Research Institute, Harbin, China. + + + Institute of Farmland Irrigation, Chinese Academy of Agricultural Sciences, Xinxiang, China. + + + + Hou + Xinyue + X + + Heilongjiang Provincial Hydraulic Research Institute, Harbin, China. + + + + Wang + Dawei + D + + Heilongjiang Provincial Hydraulic Research Institute, Harbin, China. + + + + Chen + Zhen + Z + + Institute of Farmland Irrigation, Chinese Academy of Agricultural Sciences, Xinxiang, China. + + + + Cheng + Qian + Q + + Institute of Farmland Irrigation, Chinese Academy of Agricultural Sciences, Xinxiang, China. + + + + Li + Yafeng + Y + + Institute of Farmland Irrigation, Chinese Academy of Agricultural Sciences, Xinxiang, China. + + + + Duan + Fuyi + F + + Institute of Farmland Irrigation, Chinese Academy of Agricultural Sciences, Xinxiang, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Plant Sci + 101568200 + 1664-462X + + + modified evapotranspiration + plant moisture content + precision irrigation + unmanned aerial vehicle + water use efficiency + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 3 + 10 + + + 2026 + 4 + 30 + + + 2026 + 5 + 1 + + + 2026 + 6 + 1 + 6 + 9 + + + epublish + + 42221886 + PMC13219351 + 10.3389/fpls.2026.1827521 + + +
+ + + 42221843 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1178-7074 + + 19 + + 2026 + + + International journal of general medicine + Int J Gen Med + + IL18 Works Like a Two-Side Coin in Acute Pancreatitis. + + 606433 + 606433 + + 10.2147/IJGM.S606433 + + Acute pancreatitis is a common disease with limited supportive treatments. Finding effective biomarkers is of great significance for early diagnosis and therapy, as well as to achieve better prognosis. + The core genes of AP were identified through bioinformatics and machine learning. The expression, clinical features, biological function and immunological effects of the characteristic gene were also evaluated. AP murine models were constructed to verify the results in vivo. Finally, Mendelian randomization studies were performed to determine the causal relationship between IL-18 and AP through genome-wide association studies. + A total of 100 core genes were obtained, and IL18 was identified as the characteristic gene for AP. The expression of IL18 was increased in AP (p<0.001) with an AUC value of 0.917. And some immune responses were inhibited when IL18 is highly expressed. In addition, the OR for IL18 and AP was 0.908 (95% CI = 0.843-0.978, p=0.011) via inverse variance weighting (IVW). + Elevated IL18 can be used to predict the clinical prognosis and immune responses in AP. Meanwhile, MR suggests that an increase in IL18 indicates a low risk of AP, implying that the course of AP often presents a self-limiting feature in clinic. + © 2026 Zhou et al. + + + + Zhou + Kena + K + 0000-0002-1681-8830 + + Department of Gastroenterology, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, 200080, People's Republic of China. + + + Shanghai Key Laboratory of Pancreatic Disease, Institute of Pancreatic Disease, Shanghai Jiao Tong University School of Medicine, Shanghai, 201620, People's Republic of China. + + + + Liu + Leheng + L + + Department of Gastroenterology, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, 200080, People's Republic of China. + + + Shanghai Key Laboratory of Pancreatic Disease, Institute of Pancreatic Disease, Shanghai Jiao Tong University School of Medicine, Shanghai, 201620, People's Republic of China. + + + + Bao + Jingpiao + J + + Department of Gastroenterology, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, 200080, People's Republic of China. + + + Shanghai Key Laboratory of Pancreatic Disease, Institute of Pancreatic Disease, Shanghai Jiao Tong University School of Medicine, Shanghai, 201620, People's Republic of China. + + + + Wang + Chuanyang + C + + Department of Gastroenterology, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, 200080, People's Republic of China. + + + Shanghai Key Laboratory of Pancreatic Disease, Institute of Pancreatic Disease, Shanghai Jiao Tong University School of Medicine, Shanghai, 201620, People's Republic of China. + + + + Wang + Xingpeng + X + 0009-0005-2725-6350 + + Department of Gastroenterology, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, 200080, People's Republic of China. + + + Shanghai Key Laboratory of Pancreatic Disease, Institute of Pancreatic Disease, Shanghai Jiao Tong University School of Medicine, Shanghai, 201620, People's Republic of China. + + + + Jiang + Weiliang + W + + Department of Gastroenterology, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, 200080, People's Republic of China. + + + Shanghai Key Laboratory of Pancreatic Disease, Institute of Pancreatic Disease, Shanghai Jiao Tong University School of Medicine, Shanghai, 201620, People's Republic of China. + + + + Wan + Rong + R + + Department of Gastroenterology, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, 200080, People's Republic of China. + + + Shanghai Key Laboratory of Pancreatic Disease, Institute of Pancreatic Disease, Shanghai Jiao Tong University School of Medicine, Shanghai, 201620, People's Republic of China. + + + + eng + + Journal Article + + + 2026 + 05 + 25 + +
+ + New Zealand + Int J Gen Med + 101515487 + 1178-7074 + + + IL18 + acute pancreatitis + bioinformatics + immune responses + machine learning + + The authors report no conflicts of interest in this work. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 2 + + + 2026 + 5 + 17 + + + 2026 + 6 + 1 + 6 + 8 + + + epublish + + 42221843 + PMC13220902 + 10.2147/IJGM.S606433 + 606433 + + +
+ + + 42221829 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2589-0042 + + 29 + 6 + + 2026 + Jun + 19 + + + iScience + iScience + + Development, validation, and implementation of the antibody-secreting cell maturity index: Universal prediction of human plasma cell maturity. + + 116050 + 116050 + + 10.1016/j.isci.2026.116050 + + Defining the maturity of long-lived antibody-secreting cells (ASCs) is important for vaccine optimization and research into autoimmune diseases, but current assessment of plasma cell maturity is limited. We developed a universal, robust method to define plasma cell maturity using a meta-analysis of public, human cytometry data, with harmonized expression of ASC maturity markers across samples. Vaccination or infection samples were selected to train a random forest-based machine learning prediction model (performance of r = 0.866). After evaluation (performance of r = 0.616), the final model, named the antibody-secreting cell maturity index (ASC-ME), was applied to compartments with long-term ASC survival niches, namely bone marrow and gut. Both compartments showed increased ASC maturity, biologically validating the ASC-ME model. Example analyses highlight the broad spectrum for model application, e.g., in vaccine research, clinical trials or in ASC-related autoimmune diseases. Overall, our ASC-ME model, accessible via an online platform, offers a robust approach in evaluating ASC maturity. + © 2026 The Author(s). + + + + Steinmetz + Tobit D + TD + + University of Groningen, University Medical Center Groningen, Department of Rheumatology and Clinical Immunology, 9700RB Groningen, the Netherlands. + + + + Yang + Guiyou + G + + University of Groningen, University Medical Center Groningen, Department of Epidemiology, 9700RB Groningen, the Netherlands. + + + + de Nooijer + Tessa + T + + University of Groningen, University Medical Center Groningen, Department of Rheumatology and Clinical Immunology, 9700RB Groningen, the Netherlands. + + + + van der Meer + Nisha + N + + University of Groningen, University Medical Center Groningen, Department of Oncology, 9700RB Groningen, the Netherlands. + + + + Karmi + Naomi + N + + University of Groningen, University Medical Center Groningen, Department of Gastroenterology and Hepatology, 9700RB Groningen, the Netherlands. + + + + Wilbrink + Rick + R + + University of Groningen, University Medical Center Groningen, Department of Rheumatology and Clinical Immunology, 9700RB Groningen, the Netherlands. + + + + Bootsma + Hendrika + H + + University of Groningen, University Medical Center Groningen, Department of Rheumatology and Clinical Immunology, 9700RB Groningen, the Netherlands. + + + + Verstappen + Gwenny M + GM + + University of Groningen, University Medical Center Groningen, Department of Rheumatology and Clinical Immunology, 9700RB Groningen, the Netherlands. + + + + Kroese + Frans G M + FGM + + University of Groningen, University Medical Center Groningen, Department of Rheumatology and Clinical Immunology, 9700RB Groningen, the Netherlands. + + + + eng + + Journal Article + + + 2026 + 05 + 22 + +
+ + United States + iScience + 101724038 + 2589-0042 + + + Artificial intelligence + Components of the immune system + + The authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 6 + 27 + + + 2025 + 12 + 16 + + + 2026 + 5 + 5 + + + 2026 + 6 + 1 + 6 + 8 + + + epublish + + 42221829 + PMC13217880 + 10.1016/j.isci.2026.116050 + S2589-0042(26)01425-2 + + +
+ + + 42221812 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2589-0042 + + 29 + 6 + + 2026 + Jun + 19 + + + iScience + iScience + + Integration of single-cell regulon atlas and bulk RNA-seq for individualized prognostic prediction in stomach adenocarcinoma. + + 116100 + 116100 + + 10.1016/j.isci.2026.116100 + + Transcriptional regulators reflect cellular heterogeneity and are key for prognostic modeling. Given the poor prognosis of stomach adenocarcinoma (STAD), regulator-derived signatures are vital for risk stratification. Using multi-stage scRNA-seq data, we delineated the transcriptional regulatory landscape of STAD and identified Helicobacter pylori-associated epithelial heterogeneity in intestinal metaplasia. We then developed a 23-regulator machine learning-based STAD prognostic signature (SPS) from malignant epithelial cells to predict overall survival (OS). Patients with high-SPS exhibited significantly worse OS than patients with low-SPS (hazard ratio [HR] = 1.50, 95% CI: 1.09-2.09, log rank p = 7.11 × 10-3). Notably, SPS outperformed other established STAD prognosis models across various independent datasets and remained an independent prognostic factor after adjusting for clinical and pathologic factors. Moreover, integrating SPS with tumor stage and age showed superior accuracy to stage alone. Collectively, our study establishes a robust regulator-based prognostic signature, holding potential to facilitate precision prognostication in STAD. + © 2026 The Author(s). + + + + Zhang + Aiping + A + + Department of Gastroenterology, The Affiliated Hospital of Yangzhou University, Yangzhou University, Yangzhou, Jiangsu, China. + + + + Li + Zhe + Z + + Department of Epidemiology, Center for Global Health, School of Public Health, Nanjing Medical University, Nanjing, Jiangsu, China. + + + + Jiang + Xin + X + + Department of Gastroenterology, The Affiliated Hospital of Yangzhou University, Yangzhou University, Yangzhou, Jiangsu, China. + + + + Li + Yaoyao + Y + + Department of Gastroenterology, The Affiliated Hospital of Yangzhou University, Yangzhou University, Yangzhou, Jiangsu, China. + + + + Zhang + Min + M + + Department of Gastroenterology, The Affiliated Hospital of Yangzhou University, Yangzhou University, Yangzhou, Jiangsu, China. + + + + Ding + Yanbing + Y + + Department of Gastroenterology, The Affiliated Hospital of Yangzhou University, Yangzhou University, Yangzhou, Jiangsu, China. + + + + eng + + Journal Article + + + 2026 + 05 + 22 + +
+ + United States + iScience + 101724038 + 2589-0042 + + + Health sciences + Medicine + Oncology + + The authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 9 + 9 + + + 2026 + 1 + 26 + + + 2026 + 5 + 8 + + + 2026 + 6 + 1 + 6 + 8 + + + epublish + + 42221812 + PMC13217890 + 10.1016/j.isci.2026.116100 + S2589-0042(26)01475-6 + + +
+ + + 42221810 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2212-277X + + 15 + 1 + + 2026 + + + Perspectives on medical education + Perspect Med Educ + + Teaching Personalized Doctor-Patient Communication with AI: PerTRAIN - a Prototype for Interpersonally Responsive Virtual Patients in Medical Education. + + 465 + 474 + 465-474 + + 10.5334/pme.2379 + + Personalized medicine requires physicians to adapt clinical communication and decision-making to patients' individual motives, emotions, and interpersonal behaviors. However, training these skills remains challenging, as established simulation-based formats-particularly actor-based simulations-are resource-intensive and difficult to scale. Consequently, there is a need for scalable and flexible training approaches that allow repeated practice across diverse patient personalities and clinical contexts. The PerTRAIN (Personalization Training in Medicine) project addresses this need by leveraging large language models (LLMs) to simulate virtual patients with dynamically adapting personality expression at scale. Grounded in Contemporary Integrative Interpersonal Theory (CIIT), patient behavior is modelled along the dimensions of agency and communion and updated in response to the medical trainee's behavior, enabling systematic variation and dynamic adaptation of interpersonal behavior within medical scenarios. This allows trainees to learn how a patients personality shapes communication, and to practice adaptive, patient-centered communication strategies and appropriate clinical decision-making. For the personalization trainings we developed clinical cases in which personality expression substantially influences behavior in doctor-patient interactions, that represent common encounters in primary care, and that align with national guidelines for patient-centered care. An initial chat-based implementation enables structured interactions, dynamic personality adaptation, and iterative refinement. The system is designed as a complementary tool to existing simulation formats, offering a scalable, low-threshold environment for repeated practice and reflection. A first application in curricular teaching is scheduled for 2026. Future extensions of the framework are discussed, such as large-scale empirical validation, modelling long-term interpersonal trajectories, and the extension of interactions to multimodal formats. + Copyright: © 2026 The Author(s). + + + + Junga + Anna + A + 0000-0002-4165-9114 + + Institute of Education and Student Affairs, University of Münster, Münster, Germany. + + + + Hätscher + Ole + O + 0009-0009-1410-4023 + + Department of Psychology, University of Münster, Münster, Germany. + + + + Dabel + Jennifer + J + 0009-0001-6458-9702 + + Institute of Education and Student Affairs, University of Münster, Münster, Germany. + + + + Mado + Gabriyel + G + 0009-0003-4103-2113 + + Institute of General Practice and Family Medicine, University of Münster, Germany. + + + + Ajani + Alberta + A + 0000-0001-5917-9904 + + Institute of General Practice and Family Medicine, University of Münster, Germany. + + + + Pielage + Leon + L + 0009-0003-0933-6424 + + Institute for Geoinformatics & Institute for Computer Science, University of Münster, Münster, Germany. + + + + Kockwelp + Pascal + P + 0009-0001-9118-0929 + + Institute for Geoinformatics & Institute for Computer Science, University of Münster, Münster, Germany. + + + + Breil + Simon M + SM + 0000-0001-5583-3884 + + Department of Psychology, University of Münster, Münster, Germany. + + + Joint Institute for Individualisation in a Changing Environment (JICE), University of Münster and Bielefeld University, Germany. + + + + Baur + Helena + H + 0009-0004-7263-8131 + + Institute of Education and Student Affairs, University of Münster, Münster, Germany. + + + + Siebenbrock + Jan + J + 0009-0003-1441-0940 + + Institute of Education and Student Affairs, University of Münster, Münster, Germany. + + + + Risse + Benjamin + B + 0000-0001-5691-4029 + + Institute for Geoinformatics & Institute for Computer Science, University of Münster, Münster, Germany. + + + + Grammer + Tanja + T + 0000-0002-0694-7233 + + University of Münster, Germany. + + + + Marschall + Bernhard + B + 0000-0002-1354-8687 + + University of Münster, Germany. + + + + Back + Mitja D + MD + 0000-0003-2186-1558 + + Department of Psychology, University of Münster, Münster, Germany. + + + Joint Institute for Individualisation in a Changing Environment (JICE), University of Münster and Bielefeld University, Germany. + + + + eng + + Journal Article + + + 2026 + 05 + 29 + +
+ + Netherlands + Perspect Med Educ + 101590643 + 2212-2761 + + IM + + + Humans + + + Physician-Patient Relations + + + Communication + + + Education, Medical + methods + trends + + + Large Language Models + + + Precision Medicine + methods + + + Artificial Intelligence + trends + + + Patient Simulation + + + The authors have no competing interests to declare. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 1 + 5 + + + 2026 + 2 + 3 + + + 2026 + 6 + 1 + 6 + 8 + + + epublish + + 42221810 + PMC13220740 + 10.5334/pme.2379 + + +
+ + + 42221770 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-861X + + 13 + + 2026 + + + Frontiers in nutrition + Front Nutr + + Integrating sarcopenia into ICU-acquired weakness risk stratification: a machine learning-based prediction model for critical care. + + 1823112 + 1823112 + + 10.3389/fnut.2026.1823112 + + Sarcopenia is closely associated with weakness in elderly and various chronic disease populations. However, its specific role as a predisposing factor for ICU-acquired weakness (ICU-AW) in critically ill patients remains unclear. This study aimed to investigate whether sarcopenia is a predictor of ICU-AW and to develop a machine learning-based prediction model integrating sarcopenia for risk stratification. + A retrospective analysis was conducted on data from a prospectively maintained database. A total of 1,324 critically ill patients were enrolled and randomly divided into a training set (n = 927) and a validation set (n = 397) in a 7:3 ratio. Sarcopenia was assessed by measuring the skeletal muscle area at the third lumbar vertebra (L3) level using computed tomography. Least absolute shrinkage and selection operator (LASSO) regression and the Boruta algorithm were employed to identify key predictors. 10 machine learning models were developed and their predictive performance was compared. SHAP (SHapley Additive exPlanations) analysis was used to quantify the feature importance of each predictor in the optimal model. + Six predictors were identified by intersecting the results from LASSO regression and the Boruta algorithm in the training set: age, APACHE II score, sarcopenia, sepsis, mechanical ventilation, and lactic acid. Among the 10 machine learning models developed, the XGBoost model exhibited the best overall predictive performance in the training set, achieving an area under the curve (AUC) of 0.838 (95% confidence interval [CI]: 0.807-0.868) and the lowest Brier score of 0.137. Decision curve analysis and clinical impact curves confirmed its stable clinical predictive value. SHAP analysis revealed that sarcopenia ranked as the third most important predictor, following APACHE II and age. In the validation set, the XGBoost model maintained excellent discriminative ability and predictive performance, with an AUC of 0.843 (95% CI: 0.804-0.882) and good calibration, demonstrating a positive net benefit across a threshold probability range of 9%-92%. + Sarcopenia is an important predictor of ICU-AW in critically ill patients. Integrating sarcopenia into the XGBoost model effectively identifies high-risk patients, providing a valuable tool for early risk stratification in intensive care settings. + Copyright © 2026 Zheng, Liu, Zhang, Zhang, Yang, Chen and Ye. + + + + Zheng + Peng + P + + Department of Intensive Care Unit, Clinical Oncology School of Fujian Medical University, Fujian Cancer Hospital, NHC Key Laboratory of Cancer Metabolism, Fuzhou, Fujian, China. + + + + Liu + Xinwei + X + + Department of Intensive Care Unit, Clinical Oncology School of Fujian Medical University, Fujian Cancer Hospital, NHC Key Laboratory of Cancer Metabolism, Fuzhou, Fujian, China. + + + + Zhang + Chunxia + C + + Department of Intensive Care Unit, Clinical Oncology School of Fujian Medical University, Fujian Cancer Hospital, NHC Key Laboratory of Cancer Metabolism, Fuzhou, Fujian, China. + + + + Zhang + Wei + W + + Department of Intensive Care Unit, Clinical Oncology School of Fujian Medical University, Fujian Cancer Hospital, NHC Key Laboratory of Cancer Metabolism, Fuzhou, Fujian, China. + + + + Yang + Sheng + S + + Department of Intensive Care Unit, Clinical Oncology School of Fujian Medical University, Fujian Cancer Hospital, NHC Key Laboratory of Cancer Metabolism, Fuzhou, Fujian, China. + + + + Chen + Yong + Y + + Department of Intensive Care Unit, Clinical Oncology School of Fujian Medical University, Fujian Cancer Hospital, NHC Key Laboratory of Cancer Metabolism, Fuzhou, Fujian, China. + + + + Ye + Yong + Y + + Department of Intensive Care Unit, Clinical Oncology School of Fujian Medical University, Fujian Cancer Hospital, NHC Key Laboratory of Cancer Metabolism, Fuzhou, Fujian, China. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Nutr + 101642264 + 2296-861X + + + ICU-acquired weakness + XGBoost + machine learning + risk stratification + sarcopenia + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 3 + 4 + + + 2026 + 4 + 22 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 7 + + + epublish + + 42221770 + PMC13215805 + 10.3389/fnut.2026.1823112 + + +
+ + + 42221642 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-2565 + + 14 + + 2026 + + + Frontiers in public health + Front Public Health + + The impact of low-carbon city pilot policies on urban energy intensity. + + 1806792 + 1806792 + + 10.3389/fpubh.2026.1806792 + + Urban energy intensity measures the energy required per unit of economic output and is closely linked to energy-related emissions that shape air quality and climate-related health risks. Using panel data from 273 prefecture-level Chinese cities (2006-2021), we estimate the causal impact of China's Low-Carbon City Pilot Scheme (LCCPS) on urban energy intensity. We apply a partially linear double/debiased machine learning framework with city and year fixed effects, enabling flexible adjustment for high-dimensional confounders. The LCCPS lowers urban energy intensity by about 0.11 units, and the result is robust to alternative specifications. Channel analyses suggest that pilot designation strengthens fiscal support intensity and stimulates enterprise green innovation, which together contribute to reduced energy intensity. Effects are strongest in large and coastal cities and in resource-scarce regions, but weaker in small and medium-sized cities, inland areas, and resource-rich regions. By reducing the energy required for economic activity, low-carbon pilots may also generate public-health co-benefits through cleaner urban environments. + Copyright © 2026 Qian, Hu, Guo, Liu and Hu. + + + + Qian + Yuren + Y + + School of Humanities and Social Sciences, Jiangsu University of Science and Technology, Zhenjiang, China. + + + + Hu + Jiahan + J + + College of Engineering, University of Perpetual Help System Laguna, Laguna, Philippines. + + + + Guo + Bingnan + B + + School of Humanities and Social Sciences, Jiangsu University of Science and Technology, Zhenjiang, China. + + + + Liu + Tangfa + T + + School of Economics and Management, Gannan University of Science and Technology, Ganzhou, China. + + + + Hu + Hao + H + + School of Economics, Shanghai University, Shanghai, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Public Health + 101616579 + 2296-2565 + + + + 7440-44-0 + Carbon + + + IM + + + Cities + + + China + + + Carbon + analysis + + + Humans + + + Air Pollution + prevention & control + + + + causal inference + fiscal support + green technological innovation + low-carbon city pilot policy + urban energy intensity + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 8 + + + 2026 + 3 + 27 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 6 + + + epublish + + 42221642 + PMC13218860 + 10.3389/fpubh.2026.1806792 + + +
+ + + 42221580 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2235-2988 + + 16 + + 2026 + + + Frontiers in cellular and infection microbiology + Front Cell Infect Microbiol + + Identification and evaluation of gut microbiome as non-invasive biomarkers for early lung adenocarcinoma from a multi-center study. + + 1813261 + 1813261 + + 10.3389/fcimb.2026.1813261 + + This study aims to characterize the GM in LUAD patients and develop and validate a GM-based diagnostic model for LUAD. + In this prospective, randomized, multi-center study, the GM was characterized, and an LUAD classifier was developed using a training cohort of 175 early-stage LUAD patients and 107 healthy controls. The model was further validated in a test cohort, two independent external cohorts from Jiangsu and Hainan, and an advanced LUAD cohort. Additional ML models were also developed and compared to assess their predictive performance. + LUAD patients exhibited reduced microbial diversity and significantly altered microbial composition compared to healthy controls. The phylum Verrucomicrobia and 13 genera, including Enterococcus and Akkermansia, were more abundant in the LUAD group, while 5 phyla, such as Fusobacteria and Cyanobacteria, and 17 genera, including Lactobacillus and Weissella, were enriched in the control group. Using random forest (RF), eight operational taxonomic units were identified as the optimal subset, achieving an area under the curve (AUC) of 0.998 in the training cohort and maintaining high accuracy in the test cohort (AUC = 96.9%). The model also demonstrated robust performance in two independent cohorts from Jiangsu (AUC = 97.6%) and Hainan (AUC = 82.9%), with strong diagnostic potential for advanced LUAD. Among five common models, the RF model exhibited the highest diagnostic accuracy. + This study provides a comprehensive characterization of the gut microbiome in LUAD and develops a diagnostic model based on microbial biomarkers, which is validated across regionally diverse cohorts, highlighting its potential as a reliable and non-invasive screening tool for LUAD. + Copyright © 2026 Zhang, Wu, Shen, Peng, Li, Zheng, Jia, Liu and Liu. + + + + Zhang + Weidong + W + + Anesthesia and Operation Centre, The Fifth Medical Centre of Chinese PLA General Hospital, Beijing, China. + + + Department of Thoracic Surgery, The First Medical Centre of Chinese PLA General Hospital, Beijing, China. + + + + Wu + Shurui + S + + Department of Thoracic Surgery, The First Medical Centre of Chinese PLA General Hospital, Beijing, China. + + + + Shen + Leilei + L + + Department of Thoracic Surgery, The First Medical Centre of Chinese PLA General Hospital, Beijing, China. + + + Department of Thoracic Surgery, Hainan Hospital of Chinese PLA General Hospital, Hainan, China. + + + + Peng + Peng + P + + Department of Anesthesiology, The Second Affiliated Hospital of Soochow University, Suzhou, Jiangsu, China. + + + + Li + Rong + R + + Department of Health Medicine, The Second Medical Centre & National Clinical Research Centre for Geriatric Diseases of Chinese PLA General Hospital, Beijing, China. + + + + Zheng + Qian + Q + + Department of Thoracic Surgery, The First Medical Centre of Chinese PLA General Hospital, Beijing, China. + + + + Jia + Xiaodong + X + + Department of Oncology, The Fifth Medical Centre of Chinese PLA General Hospital, Beijing, China. + + + + Liu + Qingyan + Q + + Department of Oncology, The Fifth Medical Centre of Chinese PLA General Hospital, Beijing, China. + + + + Liu + Yang + Y + + Department of Thoracic Surgery, The First Medical Centre of Chinese PLA General Hospital, Beijing, China. + + + + eng + + Journal Article + Multicenter Study + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Cell Infect Microbiol + 101585359 + 2235-2988 + + + + 0 + RNA, Ribosomal, 16S + + + 0 + Biomarkers + + + IM + + + Humans + + + Gastrointestinal Microbiome + + + Prospective Studies + + + Female + + + Male + + + Adenocarcinoma of Lung + diagnosis + microbiology + + + Middle Aged + + + Bacteria + classification + genetics + isolation & purification + + + Aged + + + Lung Neoplasms + diagnosis + microbiology + + + RNA, Ribosomal, 16S + genetics + + + Biomarkers + + + China + + + + dignostic assessment + gastrointestinal microbiome + lung adenocarcinoma (LUAD) of lung + machine learning (ML) + random forest + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 2 + 18 + + + 2026 + 4 + 21 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 5 + + + epublish + + 42221580 + PMC13216471 + 10.3389/fcimb.2026.1813261 + + +
+ + + 42221574 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2632-1297 + + 8 + 3 + + 2026 + + + Brain communications + Brain Commun + + Early-life blood pressure and midlife brain and cognitive health: tests in two birth cohorts. + + fcag172 + fcag172 + + 10.1093/braincomms/fcag172 + + Elevated blood pressure (BP) in midlife is a well-established risk factor for impaired brain health and cognitive ability in old age. We hypothesized that exposure to elevated BP within the first five decades of life may contribute to this risk through impacts on brain health and/or cognitive ability evident by midlife. Participants (n = 893) were selected from the Dunedin Multidisciplinary Health and Development Study (The Dunedin Study). Exposures were systolic (SBP) and diastolic (DBP) blood pressures measured at ages 7, 11, 18, 26, 32, 38 and 45. Cumulative early-life exposure to blood pressure was also quantified as the area under the curve (AUC). Brain health was assessed at age 45 via imaging measures comprising BrainAGE (difference between chronological age and age predicted from machine-learning models of brain-imaging data), white matter hyperintensity (WMH) burden, and retinal arteriolar calibres (RAC)-a proxy for cerebral small vessel remodelling. Cognitive ability (assessed using IQ) was also measured at age 45, with replication of cognitive findings tested in a larger contemporary cohort, the 1970 British Cohort Study. We found limited evidence for any association between BP in the first four decades of life and brain health or cognitive ability at age 45. Most associations instead emerged for BP from early-midlife onwards. Midlife BP was associated with older BrainAGE (Beta for DBP at age 45 = 0.11 [0.04, 0.19]; P = 0.003) and higher WMH burden (Beta = 0.09 [0.02, 0.17]; P = 0.019). Effect estimates for SBP were similar. For cognitive ability, DBP at ages 38 and 45 showed modest associations with age 45 IQ, which became null after accounting for childhood IQ. These findings were broadly replicated in the 1970 British Cohort Study for age 47 IQ. Only RAC in The Dunedin Study were found to associate with BP from childhood (Beta for age 7 DBP = -0.09 [-0.16, -0.03]; P = 0.006), and the magnitude of these estimates increased during midlife (Beta at age 45 = -0.37 [-0.45, -0.30]; P < 0.001). We found little evidence for any association between BP prior to age 40 and BrainAGE, WMH volume, or cognitive ability in midlife. However, cumulative exposure to elevated BP from childhood was associated with reduced RAC, suggesting a potential link between BP and adverse cerebral small vessel remodelling from childhood. + © The Author(s) 2026. Published by Oxford University Press on behalf of the Guarantors of Brain. + + + + Mugoba + Mayibongwe + M + 0009-0001-8056-7677 + + Department of Population Science and Experimental Medicine, Institute of Cardiovascular Science, University College London, London WC1E 7HB, UK. + + + + Houts + Renate M + RM + + Departments of Psychology and Neuroscience, and Psychiatry and Behavioral Sciences, Duke University, Durham, NC 27708, USA. + + + + Knodt + Annchen R + AR + + Departments of Psychology and Neuroscience, and Psychiatry and Behavioral Sciences, Duke University, Durham, NC 27708, USA. + + + + Theodore + Reremoana F + RF + + Dunedin Multidisciplinary Health and Development Research Unit, University of Otago, Dunedin 9016, New Zealand. + + + + Poulton + Richie + R + + Dunedin Multidisciplinary Health and Development Research Unit, University of Otago, Dunedin 9016, New Zealand. + + + + Hariri + Ahmad R + AR + + Departments of Psychology and Neuroscience, and Psychiatry and Behavioral Sciences, Duke University, Durham, NC 27708, USA. + + + + Caspi + Avshalom + A + 0000-0003-0082-4600 + + Departments of Psychology and Neuroscience, and Psychiatry and Behavioral Sciences, Duke University, Durham, NC 27708, USA. + + + MRC Social, Genetic, and Developmental Psychiatry Centre, Institute of Psychology, Psychiatry, and Neuroscience, King's College London, London SE5 8AF, UK. + + + + Moffitt + Terrie E + TE + + Departments of Psychology and Neuroscience, and Psychiatry and Behavioral Sciences, Duke University, Durham, NC 27708, USA. + + + MRC Social, Genetic, and Developmental Psychiatry Centre, Institute of Psychology, Psychiatry, and Neuroscience, King's College London, London SE5 8AF, UK. + + + + Chiesa + Scott T + ST + 0000-0003-4323-2189 + + Department of Population Science and Experimental Medicine, Institute of Cardiovascular Science, University College London, London WC1E 7HB, UK. + + + + eng + + Journal Article + + + 2026 + 05 + 13 + +
+ + England + Brain Commun + 101755125 + 2632-1297 + + + BCS70 + Dunedin + blood pressure + brain health + cognition + + The authors report no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 9 + 16 + + + 2026 + 4 + 3 + + + 2026 + 5 + 12 + + + 2026 + 6 + 1 + 6 + 5 + + + epublish + + 42221574 + PMC13218384 + 10.1093/braincomms/fcag172 + fcag172 + + +
+ + + 42221554 + + 2026 + 06 + 01 + +
+ + 2694-1899 + + 5 + 1 + + 2026 + + + Data science in science + Data Sci Sci + + Neurodatascience: Past, Present, and Future. + 2619222 + 10.1080/26941899.2026.2619222 + + The study of the brain is a compelling example of the power of convergent science. Over the last few decades, advances in neuroscience techniques and experimentation, as well as in data science tools to analyze the resulting data, have dramatically furthered our understanding of fundamental brain functions. Historically, it has been common for analytical approaches to have a considerable lag in development following the availability of new neuroscience techniques. However, this relationship has not simply been unidirectional, as there have been examples in which analytical developments have directly led to new scientific questions and experiments. Here we review how this interplay between neuroscience and data science advances has unfolded in the past and into the present, with a focus on electrophysiology and calcium imaging. Applying lessons learned from the past and present, we then discuss expected developments, challenges, and opportunities in the future. We end by providing recommendations on how to foster the necessary team science approach to continue the advancement of research at the intersection of neuroscience and data science, which we call neurodatascience, toward a sustainable future. + + + + Cooper + Keiland W + KW + 0000-0002-0358-9645 + + Department of Neurobiology and Behavior, University of California, Irvine, Irvine, California, USA. + + + Center for the Neurobiology of Learning and Memory, University of California, Irvine, Irvine, California, USA. + + + + Shahbaba + Babak + B + 0000-0002-8102-1609 + + Department of Statistics, University of California, Irvine, California, USA. + + + + Fortin + Norbert J + NJ + 0000-0002-6793-6984 + + Department of Neurobiology and Behavior, University of California, Irvine, Irvine, California, USA. + + + Center for the Neurobiology of Learning and Memory, University of California, Irvine, Irvine, California, USA. + + + + eng + + Journal Article + + + 2026 + 04 + 17 + +
+ + United States + Data Sci Sci + 9918557182406676 + 2694-1899 + + + Brain activity + big Data + computational neuroscience + deep learning + dimensionality reduction + machine learning + neural decoding + signal processing + + Disclosure Statement No potential conflict of interest was reported by the authors. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 6 + 1 + 6 + 5 + + + ppublish + + 42221554 + PMC13218777 + 10.1080/26941899.2026.2619222 + 2619222 + + +
+ + + 42221490 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-302X + + 17 + + 2026 + + + Frontiers in microbiology + Front Microbiol + + Clinical efficacy and gut microbiota profiling by 16S rRNA sequencing in children with Henoch-Schönlein purpura treated with integrated Chinese and Western medicine. + + 1697699 + 1697699 + + 10.3389/fmicb.2026.1697699 + + Henoch-Schönlein purpura (HSP) is the most common systemic vasculitis in children. Recent studies have suggested that gut microbiota dysbiosis may contribute to its pathogenesis, but microbial alterations and treatment-related changes remain unclear. + A total of 142 children were initially enrolled, including 103 HSP patients and 39 healthy controls. After excluding 30 patients due to incomplete follow-up, 112 participants were included in the final clinical analysis: 39 healthy controls, 38 HSP patients treated with integrated Chinese and Western medicine (integrated group), and 35 treated with Western medicine (WM group). Both patient groups received an identical Western medicine regimen; the integrated group additionally received Compound Tuizi Decoction, an oral herbal formulation prescribed according to the TCM syndrome pattern of "blood-heat with stasis-toxin." For microbiota analysis, fecal samples were collected at baseline and after 4 weeks of treatment in the integrated group, at baseline in the WM group, and once in healthy controls. A total of 78 stool samples passed quality control and were included in microbiota analyses. All samples were sequenced in a single Illumina NovaSeq 6000 run to minimize batch effects. Gut microbiota was analyzed using 16S rRNA gene sequencing, alpha and beta diversity metrics, differential abundance analysis, functional prediction (KEGG), and machine learning models. Multivariate analyses (PERMANOVA) adjusting for age, sex, and baseline diversity were performed to isolate treatment-related effects. + At baseline, HSP patients exhibited reduced microbial diversity compared to healthy controls (Shannon index: INT-BL, 4.12 ± 0.67, p = 0.041; WM-BL, 4.42 ± 0.69, p = 0.032; vs. HC, 5.28 ± 0.84), along with increased relative abundances of Bacteroidota and Proteobacteria. After treatment, both groups showed clinical improvement. Although short-term clinical outcomes were comparable, the integrated group demonstrated significant restoration of microbiota composition and diversity toward a healthy profile. Notably, Blautia and Faecalibacterium increased more substantially in the integrated group. Random forest analysis identified discriminatory genera including Lachnoclostridium, Ruminococcus, Eubacterium, and Blautia. ROC analysis revealed that the combined marker panel achieved high classification accuracy for INT-BL vs. HC (LOOCV AUC = 0.865 [0.686-0.992]), with Ruminococcus torques group showing the highest individual discriminatory power (AUC = 0.917 under the 70/30 split), and strong discrimination for WM-BL vs. INT-AT (AUC = 0.883), while INT-AT vs. HC (AUC = 0.556) and WM-BL vs. HC (AUC = 0.548) showed weaker performance, suggesting partial microbiota restoration after integrated treatment. Functional prediction indicated reduced polyketide sugar unit biosynthesis in the integrated group compared to WM (FDR = 0.0058), and decreased histidine metabolism in the integrated group after treatment compared to controls (FDR = 0.0215). + Pediatric HSP is associated with gut microbiota dysbiosis. Both treatment approaches were associated with partial microbiota restoration, with more pronounced compositional and functional changes observed in the integrated group. Given the add-on design of this study, the microbiota changes observed in the integrated group can be largely attributed to the herbal intervention. These findings suggest that microbiota modulation may play a role in the treatment of pediatric vasculitis, though the clinical significance of these changes needs to be confirmed in larger randomized controlled trials. + Copyright © 2026 Xu, Zhang, Chen, Liu and Wang. + + + + Xu + Kefei + K + + Department of Pediatrics, Hubei Provincial Hospital of Traditional Chinese Medicine, Wuhan, China. + + + Hubei University of Chinese Medicine, Wuhan, Hubei, China. + + + Affiliated Hospital of Hubei University of Chinese Medicine, Wuhan, China. + + + Hubei Shizhen Laboratory, Wuhan, Hubei, China. + + + Hubei Provincial Key Laboratory of Research and Application of Liver and Kidney in Traditional Chinese Medicine, Wuhan, China. + + + + Zhang + Jun + J + + Taihe Hospital, Affiliated Hospital of Hubei University of Medicine, Shiyan, China. + + + + Chen + Xuelian + X + + Department of Pediatrics, Hubei Provincial Hospital of Traditional Chinese Medicine, Wuhan, China. + + + Hubei University of Chinese Medicine, Wuhan, Hubei, China. + + + Affiliated Hospital of Hubei University of Chinese Medicine, Wuhan, China. + + + Hubei Shizhen Laboratory, Wuhan, Hubei, China. + + + Hubei Provincial Key Laboratory of Research and Application of Liver and Kidney in Traditional Chinese Medicine, Wuhan, China. + + + + Liu + Xiaoying + X + + Department of Pediatrics, Hubei Provincial Hospital of Traditional Chinese Medicine, Wuhan, China. + + + Hubei University of Chinese Medicine, Wuhan, Hubei, China. + + + Affiliated Hospital of Hubei University of Chinese Medicine, Wuhan, China. + + + Hubei Shizhen Laboratory, Wuhan, Hubei, China. + + + Hubei Provincial Key Laboratory of Research and Application of Liver and Kidney in Traditional Chinese Medicine, Wuhan, China. + + + + Wang + Linqun + L + + Hubei University of Chinese Medicine, Wuhan, Hubei, China. + + + Affiliated Hospital of Hubei University of Chinese Medicine, Wuhan, China. + + + Hubei Shizhen Laboratory, Wuhan, Hubei, China. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Microbiol + 101548977 + 1664-302X + + + 16S rRNA sequencing + IgA vasculitis + functional prediction + gut microbiota + integrated Chinese and Western medicine + microbial diversity + pediatric vasculitis + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 9 + 2 + + + 2026 + 3 + 30 + + + 2026 + 4 + 14 + + + 2026 + 6 + 1 + 6 + 4 + + + epublish + + 42221490 + PMC13215996 + 10.3389/fmicb.2026.1697699 + + +
+ + + 42221434 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1179-1411 + + 18 + + 2026 + + + International journal of women's health + Int J Womens Health + + Machine Learning Models for Predicting Liver Metastasis at Diagnosis and Overall Survival in Ovarian Cancer: A SEER-Based Study. + + 597887 + 597887 + + 10.2147/IJWH.S597887 + + Ovarian cancer (OC) is one of the most common gynecological tumors, and liver metastases are the most common metastatic sites of OC. However, there is a lack of machine learning (ML) models that can predict the diagnosis and prognosis of liver metastases in OC patients. Therefore, this study aims to develop an effective predictive model. + This was a retrospective study based on the Surveillance, Epidemiology, and End Results (SEER) database. Patients with OC diagnosed from 2010 to 2020 were extracted from the SEER database. The dataset was partitioned into a training cohort (60%) and a validation cohort (40%). The primary endpoints of this study were the liver metastases at diagnosis in OC patients and the 12-, 36-, and 60-month overall survival (OS) of OC liver metastases patients. After feature selection via Boruta algorithm, 9 ML diagnostic models and 5 prognostic models were constructed. In the diagnostic model, area under the curve (AUC), accuracy, kappa, sensitivity, specificity, positive predictive value, negative predictive value evaluated model reliability. AUC and Brier score were used for prognostic models. + Of 27,065 OC patients, 1053 had liver metastases at diagnosis. It was observed that histological type, T stage, grade, age, N stage, CA125, laterality, and race were associated with liver metastasis at diagnosis in OC patients. Histological type, chemotherapy, surgery, radiotherapy, lung metastasis, bone metastasis, age, tumor grade, and marital status were associated with OS in patients with OC liver metastasis. In the training cohort, KNN had the highest AUC value (0.863). In the validation cohort, Ridge had the highest AUC (0.758). Among the 9 diagnostic models, Ridge regression stands out the most, with AUC (0.758), sensitivity (0.929), and negative predictive value (0.994) were the highest. For 12-month OS, RSF model had highest AUC (0.876) in both training and validation groups. Among 5 prognostic models, RSF showed best comprehensive performance. The stage T was the most discriminative features for diagnosing liver metastasis. For OS at 12, 36, and 60 months, the most discriminative prognostic features were chemotherapy, histological type, and age, respectively. Surgery and chemotherapy were associated with improved OS. + The Ridge regression and RSF had favorable predictive performance in the diagnostic and prognostic models, respectively, compared with the other tested models; this may further help clinicians identify patients with liver metastasis at the time of OC diagnosis and select appropriate treatment options. + © 2026 Li et al. + + + + Li + Chao + C + + Department of Obstetrics and Gynecology, Wuhan Fourth Hospital, Wuhan, Hubei, 430000, People's Republic of China. + + + + Huang + Lihong + L + + Department of Obstetrics and Gynecology, Wuhan Fourth Hospital, Wuhan, Hubei, 430000, People's Republic of China. + + + + Jiang + Rui + R + + Department of Gastrointestinal Surgery, Wuhan Fourth Hospital, Wuhan, Hubei, 430000, People's Republic of China. + + + + eng + + Journal Article + + + 2026 + 05 + 26 + +
+ + New Zealand + Int J Womens Health + 101531698 + 1179-1411 + + + diagnosis + liver metastases + machine learning + ovarian cancer + prognosis + + The authors declare that they have no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 1 + 21 + + + 2026 + 5 + 4 + + + 2026 + 6 + 1 + 6 + 4 + + + epublish + + 42221434 + PMC13222004 + 10.2147/IJWH.S597887 + 597887 + + +
+ + + 42221399 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 3050-9157 + + 13 + 3 + + 2026 + May-Jun + + + AACE endocrinology and diabetes + AACE Endocrinol Diabetes + + Harnessing Microbiome Therapy to Treat Metabolic Syndrome. + + 463 + 472 + 463-472 + + 10.1016/j.aed.2025.11.015 + + Metabolic syndrome, a global health crisis marked by insulin resistance, obesity, and dyslipidemia, necessitates novel therapeutic approaches beyond conventional symptom management. Emerging research highlights the gut microbiome as a pivotal modulator of metabolic health, with dysbiosis-characterized by reduced microbial diversity and proinflammatory shifts-implicated in disease pathogenesis. This review synthesizes evidence from preclinical and clinical studies on microbiome-targeted therapies, including fecal microbiota transplantation, designer probiotics, and synbiotics, which aim to restore microbial balance and ameliorate metabolic dysfunction. + This review synthesizes evidence from preclinical and clinical studies on microbiome-targeted therapies, including fecal microbiota transplantation, designer probiotics, and synbiotics, which aim to restore microbial balance and ameliorate metabolic dysfunction. + Fecal microbiota transplantation transfers beneficial microbiota to enhance insulin sensitivity, while probiotics and synbiotics modulate inflammation, strengthen gut barrier integrity, and stimulate metabolic regulators like glucagon-like peptide-1 and short-chain fatty acids. Mechanistically, these therapies mitigate systemic inflammation, improve glucose/lipid homeostasis, and reduce intestinal permeability linked to endotoxin translocation. Clinical trials report improved glycemic control, lipid profiles, and weight management, underscoring their multitargeted potential. However, challenges such as donor variability, lack of standardized protocols, and long-term safety concerns hinder widespread application. Personalized approaches, informed by machine learning and microbial biomarkers, alongside innovations in Clustered Regularly Interspaced Short Palindromic Repeats-based engineering and encapsulation technologies, may address these limitations. + Despite promising outcomes, rigorous large-scale trials and interdisciplinary collaboration are essential to validate efficacy, optimize delivery, and ensure ethical compliance. In conclusion, microbiome therapies represent a paradigm shift in treating metabolic syndrome by targeting root causes, yet translating preclinical success into clinical practice demands further innovation and evidence-based standardization. + © 2026 The Author(s). + + + + Al Jnainati + Mustafa + M + + University of Bologna, Bologna, Italy. + + + + Govindarajan + Aishwarya + A + + Chettinad Hospital and Research Institute, Kelambakkam, Tamil Nadu, India. + + + + Tyagi + Srishti + S + + Venkateshwara Institute of Medical Sciences, Gajraula, India. + + + + Iltaf + Muhammad + M + + Medical Teaching Institution, Ayub Teaching Hospital/Ayub Medical College, Abbottabad, Pakistan. + + + + Al Jnainati + Jana + J + + University of Milano-Bicocca, Italy. + + + + Ayoub + Mohammad + M + + University of Roma Camillus, Rome, Italy. + + + + Shadab + Hooria Aiman + HA + + Ayub Medical College, Abbotabad, Pakistan. + + + + eng + + Journal Article + Review + + + 2026 + 02 + 05 + +
+ + United States + AACE Endocrinol Diabetes + 9919052034906676 + 3050-9157 + + + dysbiosis + fecal microbiota transplantation + metabolic syndrome + microbiome + preventive medicine + probiotic + + The authors have no conflicts of interest to disclose. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 7 + 7 + + + 2025 + 10 + 14 + + + 2025 + 11 + 10 + + + 2026 + 6 + 1 + 6 + 3 + + + epublish + + 42221399 + PMC13221947 + 10.1016/j.aed.2025.11.015 + S3050-9157(26)00020-2 + + +
+ + + 42221314 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1664-0640 + + 17 + + 2026 + + + Frontiers in psychiatry + Front Psychiatry + + A hierarchical machine learning model for predicting self-harm and suicidal behaviour in hospitalised patients with schizophrenia using clinical history and nursing observations. + + 1760380 + 1760380 + + 10.3389/fpsyt.2026.1760380 + + This study aimed to develop and evaluate a two-layered machine learning framework that combines admission clinical information with longitudinal nursing observations to identify schizophrenia inpatients at high risk of self-harm or suicidal acts. + We retrospectively reviewed the records of 477 patients with schizophrenia hospitalised in Liaoning Province between July 2021 and July 2024. According to whether at least one self-injurious or suicidal episode was documented during the index admission, 159 individuals were assigned to a high-risk group and 318 to a non-high-risk group. At admission, 18 baseline variables (including age, sex, history of self-harm, hopelessness/depression, and educational attainment) were extracted from electronic medical records, and 39 nurse-rated behavioural items were scored weekly using the Psychiatric Patient Nursing Observation Scale. Static and dynamic feature sets were used to train six classifiers [regularized logistic regression (LR), support vector machine (SVM), extreme gradient boosting, random forest, multi-layer perceptron, and K-nearest neighbours]. The best static model (regularized LR) and the best dynamic model (SVM) were combined through probability-level weighted fusion to generate a hierarchical risk score. + Multivariable analysis of admission features showed that previous self-harm [odds ratio (OR) = 4.323], hopelessness/depression (OR = 3.090), younger age (OR = 0.938), and higher educational level (OR = 1.357) were independent predictors of self-harm/suicidal behaviour. Among dynamic indicators, negative self-evaluation (OR = 2.303), self-reported depression (OR = 1.812), insomnia (OR = 1.768), talking to oneself (OR = 1.733), crying (OR = 1.700), and reduced conversation with others (OR = 1.422) remained significant. The optimised static LR model achieved an area under the curve (AUC) of 0.7564, and the dynamic SVM model reached an AUC of 0.8531. Their fusion further improved performance (AUC = 0.9048; sensitivity 0.8542; specificity 0.7789; accuracy 0.8042). This hierarchical model outperformed the best flat combined-feature model (SVM; AUC = 0.9022) in sensitivity (0.8542 vs. 0.6667), indicating a more clinically appropriate detection of high-risk patients. + A hierarchical machine learning approach that integrates baseline clinical history with repeated nursing assessments can effectively flag schizophrenia inpatients at high risk for self-harm and suicidal behaviour, supporting timely and individualised preventive strategies in psychiatric wards. + Copyright © 2026 Liang, Meng, Duan, Yang, Zhu, Wang, Sun, Wang, Liu, Sun, Hu, Shao, Ren, Shao and Zhang. + + + + Liang + Chen + C + + Key Laboratory of Networked Control Systems, Chinese Academy of Sciences, Shenyang, China. + + + Shenyang Institute of Automation, Chinese Academy of Sciences, Shenyang, China. + + + University of Chinese Academy of Sciences, Beijing, China. + + + + Meng + Xianfeng + X + + Liaoning Provincial Mental Health Center, Tieling, Liaoning, China. + + + + Duan + Ying + Y + + Liaoning Maternal and Child Health Hospital, Shenyang, Liaoning, China. + + + + Yang + Wei + W + + Key Laboratory of Networked Control Systems, Chinese Academy of Sciences, Shenyang, China. + + + Shenyang Institute of Automation, Chinese Academy of Sciences, Shenyang, China. + + + University of Chinese Academy of Sciences, Beijing, China. + + + + Zhu + Gang + G + + Department of Psychiatry, The First Affiliated Hospital of China Medical University, Shenyang, Liaoning, China. + + + + Wang + Jinhuan + J + + Liaoning Provincial Mental Health Center, Tieling, Liaoning, China. + + + + Sun + Ying + Y + + Liaoning Provincial Mental Health Center, Tieling, Liaoning, China. + + + + Wang + Mingtao + M + + Liaoning Provincial Mental Health Center, Tieling, Liaoning, China. + + + + Liu + Miao + M + + Liaoning Provincial Mental Health Center, Tieling, Liaoning, China. + + + + Sun + Chenhui + C + + Liaoning Provincial Mental Health Center, Tieling, Liaoning, China. + + + + Hu + Kunyuan + K + + Key Laboratory of Networked Control Systems, Chinese Academy of Sciences, Shenyang, China. + + + Shenyang Institute of Automation, Chinese Academy of Sciences, Shenyang, China. + + + University of Chinese Academy of Sciences, Beijing, China. + + + + Shao + Wei + W + + Shengjing Hospital of China Medical University, Shenyang, Liaoning, China. + + + + Ren + Jintao + J + + Liaoning Provincial Mental Health Center, Tieling, Liaoning, China. + + + + Shao + Xiaojun + X + + Department of Psychiatry, The First Affiliated Hospital of China Medical University, Shenyang, Liaoning, China. + + + + Zhang + Yang + Y + + Liaoning Provincial Mental Health Center, Tieling, Liaoning, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Psychiatry + 101545006 + 1664-0640 + + + clinical history + hierarchical model + machine learning + nursing observations + risk prediction + schizophrenia + self-harm + suicidal behaviour + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 12 + 4 + + + 2026 + 4 + 21 + + + 2026 + 4 + 24 + + + 2026 + 6 + 1 + 6 + 3 + + + epublish + + 42221314 + PMC13219302 + 10.3389/fpsyt.2026.1760380 + + +
+ + + 42221295 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1179-1594 + + 19 + + 2026 + + + Risk management and healthcare policy + Risk Manag Healthc Policy + + Machine Learning-Based Early Prediction of Lower Extremity Deep Vein Thrombosis in the ICU: A Multicenter Study. + + 603569 + 603569 + + 10.2147/RMHP.S603569 + + Deep vein thrombosis (DVT) is a prevalent and life-threatening complication in the Intensive Care Unit (ICU). Traditional risk tools often lack specificity for ICU acquired DVT. This study aimed to develop and externally validate an interpretable machine learning (ML) model for accurate DVT risk prediction in critically ill patients. + This multicenter retrospective study included 2000 patients from two centers, partitioned into training, internal testing, and external validation sets. LASSO regression and the Boruta algorithm identified robust predictors. Eight ML algorithms were trained and evaluated using the Area Under the Curve (AUC), calibration plots, and Decision Curve Analysis (DCA). The SHapley Additive exPlanations (SHAP) framework was utilized for model interpretability. + The Random Forest (RF) model outperformed other ML algorithms and traditional tools (e.g. Caprini score). It achieved AUCs of 0.869 (95% CI: 0.822-0.916) in training, 0.850 (95% CI: 0.801-0.900) in internal testing, and 0.831 (95% CI: 0.771-0.888) in external validation. SHAP analysis identified six dominant predictors: immobilization duration, D-dimer, femoral vein catheterization, APACHE II score, malignancy, and age. The RF model successfully captured non-linear interactions, particularly exponential risk increases from prolonged immobilization and elevated D-dimer. DCA demonstrated a higher net clinical benefit than default strategies. + Integrating six readily available clinical variables, the RF model offers a robust and interpretable tool for DVT risk stratification, outperforming traditional scores. To facilitate real-world clinical application, an accessible web-based calculator is being developed to guide early, personalized thromboprophylaxis in the ICU. + © 2026 Li et al. + + + + Li + Yang + Y + + Department of Intensive Care Medicine, Taixing People's Hospital, Taixing, Jiangsu, People's Republic of China. + + + + Xu + Ling + L + + Department of Intensive Care Medicine, Taixing People's Hospital, Taixing, Jiangsu, People's Republic of China. + + + + Chen + Yunfeng + Y + + Department of Ultrasound, Nanjing Gaochun People's Hospital, Nanjing, Jiangsu, People's Republic of China. + + + + eng + + Journal Article + + + 2026 + 05 + 25 + +
+ + England + Risk Manag Healthc Policy + 101566264 + 1179-1594 + + + deep vein thrombosis + intensive care units + machine learning + random forest + risk prediction + + The authors declare that they have no competing interests in this work. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2026 + 3 + 13 + + + 2026 + 5 + 14 + + + 2026 + 6 + 1 + 6 + 2 + + + epublish + + 42221295 + PMC13221438 + 10.2147/RMHP.S603569 + 603569 + + +
+ + + 42221294 + + 2026 + 06 + 01 + +
+ + 3005-0693 + + + 2026 + Mar + 24 + + + Nature health + Nat Health + + Mapping the local effectiveness of mass drug administration for malaria using transportability methods. + 10.1038/s44360-026-00094-1 + + Numerous trials have evaluated the effectiveness of mass drug administration (MDA) in rapidly reducing malaria transmission, but it is unknown whether the estimated effects generalize to other populations eligible for MDA. A recent cluster randomized trial in Senegal found that MDA reduced malaria incidence by 55% in areas that routinely deploy seasonal malaria chemoprevention (SMC). Here, we used transportability models with machine learning to generalize trial effects to 116 non-trial communes where SMC is the standard of care. Accounting for differences in weather, vegetation and population density between trial and non-trial areas, we estimated considerable reductions in incidence (ranging from 36% to 65%) in 74 non-trial communes, with larger decreases in areas having higher precipitation, denser vegetation and lower temperatures. We found that MDA was not effective in the postintervention year in non-trial communes, supporting the notion that MDA's effects are short-lived. Our approach offers a scalable framework for generalizing trial findings to target environmentally mediated infectious disease interventions. + + + + Roh + Michelle E + ME + 0000-0002-6268-0801 + + Institute for Global Health Sciences, University of California, San Francisco (UCSF), San Francisco, CA, USA. + + + Department of Obstetrics and Gynecology, Oregon Health and Science University, Portland, OR, USA. + + + + Tong + Yanwei + Y + 0000-0002-4532-168X + + Department of Epidemiology and Population Health, Stanford University, Stanford, CA, USA. + + + + Heitmann + Gabriella Barratt + GB + 0000-0002-4212-0954 + + Department of Epidemiology and Population Health, Stanford University, Stanford, CA, USA. + + + + Jia + Junran + J + 0009-0007-5410-885X + + Department of Statistics, Stanford University, Stanford, CA, USA. + + + + Ba + El-Hadji Konko Ciré + EKC + + Université Iba Der Thiam de Thiès, Thiès, Senegal. + + + + Ndiaye + Jean Louis + JL + + Université Iba Der Thiam de Thiès, Thiès, Senegal. + + + Deceased: Jean Louis Ndiaye. + + + + Fogelson + Ari + A + + Department of Infectious Disease Epidemiology, London School of Hygiene and Tropical Medicine, London, UK. + + + + Milligan + Paul + P + + Department of Infectious Disease Epidemiology, London School of Hygiene and Tropical Medicine, London, UK. + + + + Seck + Amadou + A + + Université Iba Der Thiam de Thiès, Thiès, Senegal. + + + + Diallo + Abdoulaye + A + + Université Iba Der Thiam de Thiès, Thiès, Senegal. + + + + Lo + Aminata Colle + AC + + Université Iba Der Thiam de Thiès, Thiès, Senegal. + + + + Baiocchi + Michael + M + + Department of Epidemiology and Population Health, Stanford University, Stanford, CA, USA. + + + + Gosling + Roly + R + + Department of Disease Control, London School of Hygiene and Tropical Medicine, London, UK. + + + + Bennett + Adam + A + + Institute for Global Health Sciences, University of California, San Francisco (UCSF), San Francisco, CA, USA. + + + PATH, Seattle, WA, USA. + + + + Hsiang + Michelle S + MS + 0000-0003-1217-2742 + + Institute for Global Health Sciences, University of California, San Francisco (UCSF), San Francisco, CA, USA. + + + Department of Epidemiology and Biostatistics, UCSF, San Francisco, CA, USA. + + + Department of Pediatrics, UCSF, San Francisco, CA, USA. + + + Chan Zuckerberg Biohub, San Francisco, CA, USA. + + + + Benjamin-Chung + Jade + J + 0000-0003-3631-3132 + + Department of Epidemiology and Population Health, Stanford University, Stanford, CA, USA. + + + Chan Zuckerberg Biohub, San Francisco, CA, USA. + + + + eng + + Journal Article + + + 2026 + 03 + 24 + +
+ + United States + Nat Health + 9919250716706676 + 3005-0693 + +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 6 + 2 + + + aheadofprint + + 42221294 + PMC13218659 + 10.1038/s44360-026-00094-1 + + +
+ + + 42221257 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 0975-7651 + + 17 + 5 + + 2026 + May + + + Indian journal of surgical oncology + Indian J Surg Oncol + + Multiparametric MRI Radiomics for the Prediction of Histologic Grade in Bladder Cancer. + + 1057 + 1064 + 1057-1064 + + 10.1007/s13193-025-02397-3 + + Histological grade holds great clinical significance in the management and prognosis of bladder cancer; therefore, timely and accurate prediction through non-invasive techniques such as MRI may improve health outcomes. Our objective was to create an MRI-based radiomics model that can predict the histological grade of cancer pre-operatively. In a prospective study, we gathered data from 45 bladder cancer patients who had an mpMRI scan from December 2018 to December 2022 prior to their operative procedure. Radiomics features were extracted from T2-weighted (T2W), diffusion-weighted imaging (DWI), and dynamic DCE-MRI-enhanced (DCE) MR images obtained from a 1.5 T MRI scanner. A standard 5-point VI-RADS scoring system was also assessed for each scan. The variable clustering algorithm was applied to these features, and all cluster features were univariably assessed using receiver operating characteristic (ROC) curves. Multiple predictive models were created and cross-validated based on multivariable analysis to minimize overfitting and predict the grade of the tumor. Among 45 eligible patients, 28 (62.2%) patients had high-grade tumors and the rest 17 (37.8%) were low grade. In the adjusted analysis, only DCE-MRI based (Gray Level Co-occurrence Matrix (Gray Level Co-occurrence Matrix (GLCM))-inverse variance (OR = 1.42, p = 0.028), Major Axis Length (OR = 1.04, p = 0.03)), and age (OR = 1.08, p = 0.039) were associated with the high-grade bladder cancer. Our radiomics models comprising DCE-MRI-based parameters, a T2W parameter, and age yielded the highest performance for predicting grades of bladder cancer (AUC = 0.91; 95% CI 0.82-1.00). These models demonstrated reasonably high predictive performance in bootstrap validation analysis as well. An mpMRI radiomics approach based on MRI has the potential to serve as a non-invasive imaging tool for preoperative grading of bladder cancer. + The online version contains supplementary material available at 10.1007/s13193-025-02397-3. + © The Author(s), under exclusive licence to Indian Association of Surgical Oncology 2025. Springer Nature or its licensor (e.g. a society or other partner) holds exclusive rights to this article under a publishing agreement with the author(s) or other rightsholder(s); author self-archiving of the accepted manuscript version of this article is solely governed by the terms of such publishing agreement and applicable law. + + + + Selvaraju + Anup + A + + Department of Radiodiagnosis and Interventional Radiology, All India, Institute of Medical Sciences, New Delhi, India. + https://ror.org/02dwcqs71 + grid.413618.9 + 0000 0004 1767 6103 + + + + Dwivedi + Durgesh Kumar + DK + + Department of Radiodiagnosis, King George Medical University, Lucknow, India. + https://ror.org/00gvw6327 + grid.411275.4 + 0000 0004 0645 6578 + + + + Patbamniya + Naveen Kumar + NK + + Department of Urology, Gandhi Medical College, Bhopal, India. + https://ror.org/04npss011 + grid.415285.f + + + + Kumar + Manoj + M + + Department of Urology, All India Institute of Medical Sciences, New Delhi, India. + https://ror.org/02dwcqs71 + grid.413618.9 + 0000 0004 1767 6103 + + + + Seth + Amlesh + A + + Department of Urology, All India Institute of Medical Sciences, New Delhi, India. + https://ror.org/02dwcqs71 + grid.413618.9 + 0000 0004 1767 6103 + + + + Dwivedi + Alok Kumar + AK + + Division of Biostatistics & Epidemiology, Department of Molecular and Translational Medicine, Paul L. Foster School of Medicine, Texas Tech University Health Sciences Center, El Paso, TX USA. + https://ror.org/033ztpr93 + grid.416992.1 + 0000 0001 2179 3554 + + + Biostatistics and Epidemiology Consulting Lab, Office of Research, Texas Tech University Health Sciences Center, El Paso, TX USA. + https://ror.org/033ztpr93 + grid.416992.1 + 0000 0001 2179 3554 + + + + Joshi + Rakesh Chandra + RC + + Amity Centre for Artificial Intelligence, Amity University, Noida, UP India. + https://ror.org/02n9z0v62 + grid.444644.2 + 0000 0004 1805 0217 + + + + Kaushal + Seema + S + + Department of Pathology, All India Institute of Medical Sciences, New Delhi, India. + https://ror.org/02dwcqs71 + grid.413618.9 + 0000 0004 1767 6103 + + + + Das + Chandan J + CJ + 0000-0001-6505-5940 + + Department of Radiodiagnosis and Interventional Radiology, All India, Institute of Medical Sciences, New Delhi, India. + https://ror.org/02dwcqs71 + grid.413618.9 + 0000 0004 1767 6103 + + + + eng + + Journal Article + + + 2025 + 08 + 06 + +
+ + India + Indian J Surg Oncol + 101532448 + 0975-7651 + + + Machine learning + Magnetic resonance imaging + Oncology + Radiomics + Urinary bladder cancer + + Conflict of InterestThe authors declare no competing interests. +
+ + + + 2026 + 6 + 1 + 12 + 39 + + + 2026 + 6 + 1 + 12 + 38 + + + 2025 + 4 + 2 + + + 2025 + 7 + 23 + + + 2027 + 5 + 1 + + + 2026 + 6 + 1 + 6 + 2 + + + ppublish + + 42221257 + PMC13216390 + 10.1007/s13193-025-02397-3 + 2397 + + +
+ + + 42221222 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 1178-7031 + + 19 + + 2026 + + + Journal of inflammation research + J Inflamm Res + + Characterization and Clinical Diagnostic Potential of IHRDEGs in Renal Interstitial Fibrosis: An Integrative Data Analysis and Model Construction Study. + + 551642 + 551642 + + 10.2147/JIR.S551642 + + Renal interstitial fibrosis (RIF) is a critical pathological process in the progression of chronic kidney disease (CKD). This study aimed to identify and validate inflammation- and hypoxia-related differentially expressed genes (IHRDEGs) associated with RIF and to construct a robust diagnostic model with potential clinical applications. + Three public GEO datasets (GSE22459, GSE76882, GSE53605) comprising 76 RIF and 142 control samples were integrated following batch correction and normalization. Differentially expressed IHRDEGs were screened and analyzed using GO and KEGG pathway enrichment. A diagnostic model was constructed using logistic regression and optimized through SVM and LASSO algorithms. Immune infiltration was evaluated using ssGSEA, and consensus clustering was used to define molecular subtypes. Experimental validation was conducted in a rat model of RIF using RT-qPCR, Western blotting, and immunohistochemistry. + A total of five hub IHRDEGs (EDN1, HLA-G, MYC, HIF1A, and TLR2) were identified and incorporated into a diagnostic model that demonstrated strong predictive ability (AUC 0.7-0.9; sensitivity and specificity > 70-90%). These genes were significantly correlated with immune cell infiltration patterns. Subtype analysis revealed two distinct molecular clusters of RIF with different immunopathological features. Co-expression and regulatory interaction analyses further elucidated the involvement of hub genes in fibrotic mechanisms. Experimental validation confirmed the upregulation of hub genes at both mRNA and protein levels in the RIF model. + This study uncovers the diagnostic and mechanistic significance of inflammation- and hypoxia-related genes in RIF. The five identified hub genes may serve as promising biomarkers and therapeutic targets. These findings provide novel insights into the immune-hypoxia interplay in renal fibrosis and offer a potential framework for early diagnosis and targeted treatment of CKD-related fibrosis. + © 2026 Zhang et al. + + + + Zhang + Jie + J + + School of Traditional Chinese and Western Medicine, Gansu University of Chinese Medicine, Lanzhou, Gansu, 730000, People's Republic of China. + + + Department of Nephrology, Affiliated Hospital of Gansu University of Chinese Medicine, Lanzhou, Gansu, 730020, People's Republic of China. + + + + Dang + Xinyu + X + + School of Traditional Chinese and Western Medicine, Gansu University of Chinese Medicine, Lanzhou, Gansu, 730000, People's Republic of China. + + + + Dai + Enlai + E + + School of Traditional Chinese and Western Medicine, Gansu University of Chinese Medicine, Lanzhou, Gansu, 730000, People's Republic of China. + + + + eng + + Journal Article + + + 2026 + 05 + 23 + +
+ + New Zealand + J Inflamm Res + 101512684 + 1178-7031 + + + bioinformatics analysis + biomarker discovery + fibrotic progression + hypoxia signaling + immune cell infiltration + machine learning model + + The authors report no conflicts of interest in this work. +
+ + + + 2026 + 6 + 1 + 12 + 40 + + + 2026 + 6 + 1 + 12 + 39 + + + 2025 + 7 + 18 + + + 2026 + 4 + 27 + + + 2026 + 6 + 1 + 6 + 2 + + + epublish + + 42221222 + PMC13217453 + 10.2147/JIR.S551642 + 551642 + + +
+ + + 42221119 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-858X + + 13 + + 2026 + + + Frontiers in medicine + Front Med (Lausanne) + + Application of machine learning models for predicting risk factors of acute exacerbations in chronic obstructive pulmonary disease. + + 1804544 + 1804544 + + 10.3389/fmed.2026.1804544 + + Chronic obstructive pulmonary disease (COPD) is a chronic respiratory disease characterized by persistent respiratory symptoms and progressive airflow limitation. Acute exacerbations of COPD (AECOPD) are significant causes of hospitalization and death among COPD patients. This study aims to identify risk factors for AECOPD exacerbations and develop a highly accurate and interpretable predictive model using various statistical and machine learning methods. + We retrospectively analyzed data from 2,102 COPD patients admitted between 1 January 2019 and 31 December 2024. The primary outcome was AECOPD severity, defined as the need for treatment escalation. Initial feature selection was performed using LASSO regression to identify potential risk factors. To validate the model's effectiveness and explore its superior predictive performance, the dataset was partitioned by time period and proportion: The first 70% of observations in chronological order were used as the training set, with the remaining 30% as the test set. Multiple machine learning algorithms were then employed for model construction and comparison. To enhance model interpretability, we utilized SHapley Additive exPlanations (SHAP) to illustrate the contribution of each variable to the prediction outcomes. + Among the six machine learning models, the extreme gradient boosting (XGBoost) model demonstrated the optimal predictive performance, achieving an area under the receiver operating characteristic curve (AUC) of 0.960 (95% confidence interval (CI): 0.940-0.980) in the training set and 0.824 (95% CI: 0.804-0.844) in the test set. In the test set, the evaluation metrics were as follows: accuracy, sensitivity, specificity, positive predictive value (PPV), and negative predictive value (NPV) were 0.805, 0.65, 0.872, 0.669, and 0.859, respectively. SHAP analysis revealed that creatinine (CREA), neutrophil percentage (NEU%), D-dimer, brain natriuretic peptide (BNP), white blood cell count (WBC), and hypertension (HTN) were important factors influencing the model output. + The XGBoost model developed in this study demonstrates robust performance in predicting AECOPD risk using routinely collected clinical and laboratory data. The integration of SHAP analysis enhances model transparency, supporting its potential utility in clinical risk stratification and early intervention. + Copyright © 2026 Kuang, Min, Deng, Zhao, Sun and Hong. + + + + Kuang + Dapeng + D + + Department of Emergency and Critical Care, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China. + + + + Min + Jie + J + + Clinical Research Center for Mental Disorders, Shanghai Pudong New Area Mental Health Center, School of Medicine, Tongji University, Shanghai, China. + + + + Deng + Huibiao + H + + Department of Emergency and Critical Care, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China. + + + + Zhao + Yajun + Y + + Department of Health Management Centre, Zhongshan Hospital, Fudan University, Shanghai, China. + + + + Sun + Yangyang + Y + + Henan Cancer Hospital, Zhengzhou, Henan, China. + + + + Hong + Jiang + J + + Department of Emergency and Critical Care, Shanghai General Hospital, Shanghai Jiao Tong University School of Medicine, Shanghai, China. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Med (Lausanne) + 101648047 + 2296-858X + + + XGBoost + acute exacerbations of COPD (AECOPD) + chronic obstructive pulmonary disease (COPD) + machine learning + risk factors + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 2 + 5 + + + 2026 + 3 + 10 + + + 2026 + 3 + 25 + + + 2026 + 6 + 1 + 8 + 5 + + + 2026 + 6 + 1 + 8 + 4 + + + 2026 + 6 + 1 + 6 + 1 + + + epublish + + 42221119 + PMC13216505 + 10.3389/fmed.2026.1804544 + + +
+ + + 42221116 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-858X + + 13 + + 2026 + + + Frontiers in medicine + Front Med (Lausanne) + + Predicting poor response to anti-osteoporosis therapy: a machine learning model integrating clinical and novel biomarker data. + + 1786209 + 1786209 + + 10.3389/fmed.2026.1786209 + + This study was conducted to develop and validate a prediction model integrating clinical characteristics and novel biomarkers. The goal was to identify patients at high risk for a poor response to standard anti-osteoporosis therapy prior to treatment initiation, thereby supporting personalized therapeutic decision-making. + A retrospective analysis was performed on 543 patients with primary osteoporosis admitted between January 2021 and December 2024. All patients received 12 months of standard treatment. Participants were randomly allocated to a training set (n = 380) and a validation set (n = 163) in a 7:3 ratio. In the training set, univariate analysis, Least Absolute Shrinkage and Selection Operator (LASSO) regression, and multivariate logistic regression were used to determine independent predictors. Three machine learning models-Random Forest (RF), Support Vector Machine (SVM), and K-Nearest Neighbors (KNN)-were then constructed. Model performance was evaluated using the area under the receiver operating characteristic curve (AUC), calibration curves, and decision curve analysis (DCA). SHapley Additive exPlanations (SHAP) values were used to interpret the optimal model. + Baseline characteristics were comparable between the training and validation sets (P > 0.05). Eight independent predictors of poor treatment response were identified: comorbid diabetes, history of fragility fracture, glucocorticoid use for ≥ 6 months, femoral neck bone mineral density T-score, and serum levels of osteocalcin, procollagen type I N-terminal propeptide, β-CrossLaps of type I collagen (β-CTX), and 25-Hydroxyvitamin D. Among the models, the RF algorithm demonstrated superior performance, with an AUC of 0.856 (95% CI: 0.808-0.905) in the training set and 0.825 (95% CI: 0.718-0.933) in the validation set. The model was well-calibrated, and DCA indicated a high net benefit. SHAP analysis confirmed serum β-CTX as the most significant predictive variable. + A predictive model integrating multi-dimensional factors was successfully developed and validated for assessing osteoporosis treatment efficacy. The RF-based model exhibited robust predictive performance and clinical utility. It shows potential for pre-therapeutic identification of high-risk patients, facilitating precision management in osteoporosis. + Copyright © 2026 Bi, Zhang, Zhang and Li. + + + + Bi + Yannan + Y + + Department of Orthopedics, The Fourth Affiliated Hospital, Guangzhou Medical University, Guangzhou, Guangdong, China. + + + + Zhang + Maolin + M + + Department of Orthopedics, The Fourth Affiliated Hospital, Guangzhou Medical University, Guangzhou, Guangdong, China. + + + + Zhang + Weiqiong + W + + Department of Orthopedics, The Fourth Affiliated Hospital, Guangzhou Medical University, Guangzhou, Guangdong, China. + + + + Li + Jiahong + J + + Department of Orthopedics, The Fourth Affiliated Hospital, Guangzhou Medical University, Guangzhou, Guangdong, China. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Med (Lausanne) + 101648047 + 2296-858X + + + biomarkers + machine learning + osteoporosis + prediction model + treatment response prediction + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 1 + 12 + + + 2026 + 4 + 1 + + + 2026 + 4 + 9 + + + 2026 + 6 + 1 + 8 + 5 + + + 2026 + 6 + 1 + 8 + 4 + + + 2026 + 6 + 1 + 6 + 1 + + + epublish + + 42221116 + PMC13216482 + 10.3389/fmed.2026.1786209 + + +
+ + + 42221109 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-858X + + 13 + + 2026 + + + Frontiers in medicine + Front Med (Lausanne) + + A machine learning-based classification model for interstitial lung disease in rheumatoid arthritis. + + 1807594 + 1807594 + + 10.3389/fmed.2026.1807594 + + This study aimed to develop and validate a preliminary classification and diagnostic model for rheumatoid arthritis-associated interstitial lung disease (RA-ILD) using routine, readily available clinical and laboratory parameters. Multiple machine learning algorithms were employed to construct a practical risk assessment tool suitable for use in primary hospital settings. + Clinical data were retrospectively collected. Patients were divided into RA and RA-ILD groups. After preprocessing, the cohort was randomly divided into training and validation sets. Variables demonstrating a trend toward significance on univariate analysis were subjected to LASSO regression, and feature variables were ultimately identified. Five machine learning models were constructed: CatBoost, logistic regression, support vector machine, decision tree, and random forest. Model performance was assessed on the validation set using accuracy, precision, recall, F1 score, and the area under the receiver operating characteristic (ROC) curve (AUC). The SHapley Additive exPlanations (SHAP) framework was used to identify key features and quantify their contributions to the optimal predictive model. + A total of 410 patients with RA were enrolled, among whom 100 (24.39%) were diagnosed with RA-ILD. 23 variables with a trend toward significance on univariate analysis were subjected to LASSO regression. Finally, seven features were selected for model construction: age, smoking history, LYMPH, LDH, RF, CA125, and CA199. Based on these features, five machine learning models were established for RA-ILD classification. In the validation set, the CatBoost model achieved the highest AUC of 0.784 (95% CI: 0.656-0.885) and the lowest Brier score of 0.158, demonstrating robust overall performance. The decision tree (DT) model exhibited comparable discriminatory ability, with an AUC of 0.783 (95% CI: 0.661-0.818), and attained the highest recall (0.653) and F1-score (0.603) across all models, reflecting strong classification efficacy. + Among the five evaluated models, CatBoost and DT models showed comparable and favorable overall performance for RA-ILD classification. SHAP analysis based on the CatBoost model identified CA199, CA125, and age as the most important contributors to model prediction. Both models hold promise for RA-ILD risk stratification in clinical practice, although further external validation is warranted. + Copyright © 2026 Li, Wang, He, Wang, Xu, Yang and Feng. + + + + Li + Mingyao + M + + Department of Rheumatology and Immunology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + Wang + Qiaoli + Q + + Health Management Center, Deyang People's Hospital, Deyang, Sichuan, China. + + + + He + Junfeng + J + + Department of Rheumatology and Immunology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + Wang + Xia + X + + Department of Rheumatology and Immunology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + Xu + Yangyang + Y + + Department of Rheumatology and Immunology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + Yang + Liwei + L + + Department of Rheumatology and Immunology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + Feng + Lin + L + + Department of Rheumatology and Immunology, Deyang People's Hospital, Deyang, Sichuan, China. + + + + eng + + Clinical Trial + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Med (Lausanne) + 101648047 + 2296-858X + + + CatBoost + interstitial lung disease + machine learning + rheumatoid arthritis + risk classification model + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 2 + 9 + + + 2026 + 4 + 6 + + + 2026 + 4 + 16 + + + 2026 + 6 + 1 + 8 + 5 + + + 2026 + 6 + 1 + 8 + 4 + + + 2026 + 6 + 1 + 6 + 1 + + + epublish + + 42221109 + PMC13215908 + 10.3389/fmed.2026.1807594 + + +
+ + + 42221107 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-858X + + 13 + + 2026 + + + Frontiers in medicine + Front Med (Lausanne) + + Machine learning model for predicting hypotension following continuous renal replacement therapy initiation in end-stage kidney disease patients: a SHAP-interpretable approach. + + 1807513 + 1807513 + + 10.3389/fmed.2026.1807513 + + Early prediction of intradialytic hypotension (IDH) after starting continuous renal replacement therapy (CRRT) is critical for timely intervention. However, effective models for predicting the risk of IDH in patients with end-stage kidney disease (ESKD) undergoing CRRT are currently lacking. Therefore, the aim of this study was to develop a machine learning (ML)-based predictive model to facilitate the early identification of high-risk patients and to support clinical decision-making. + Adult patients with ESKD who underwent CRRT were enrolled in this study and randomly divided into training (70%) and testing sets (30%). IDH was defined as a reduction in systolic blood pressure (SBP) ≥ 20 mmHg from baseline within 6 h after CRRT initiation; supplementary definitions were also applied, including a decrease in SBP ≥ 30 mmHg or in mean arterial pressure (MAP) ≥ 10 mmHg from baseline. Demographic characteristics, medication use, laboratory parameters, and treatment-related variables were collected. Multiple ML algorithms-including gradient boosting machine (GBM), extreme gradient boosting (XGBoost), decision tree (DT), support vector machine (SVM), random forest (RF), and logistic regression (LR)-were used to develop predictive models. Model performance was evaluated using the area under the receiver operating characteristic curve (AUC) and other performance metrics. Shapley additive explanations (SHAP) was applied to quantify the contribution of each feature to the model predictions. + Overall, 1,103 patients were included. Within the dataset used in this study, the SVM model consistently outperformed the other compared algorithms across all definitions of IDH, with an AUC of 0.805, indicating good calibration and clinical utility. The optimized simplified model retained stable predictive capacity (AUC = 0.809). SHAP analysis revealed that SBP was the most important feature for predicting IDH. + The results of this study demonstrate the effectiveness of several ML algorithms in predicting the risk of IDH following the initiation of CRRT in patients with ESKD. The SVM model yielded the most favorable predictive performance in our comparative analysis. SBP was identified as a key predictor of IDH. The proposed model can assist in the clinical identification of high-risk patients and facilitate timely interventions. + Copyright © 2026 Qiu, Qiu, Tao, Fu, Bai and Cao. + + + + Qiu + Shuang + S + + State Key Laboratory of Frigid Zone Cardiovascular Disease, Cardiovascular Research Institute and Department of General Medicine, General Hospital of Northern Theater Command, Shenyang, China. + + + + Qiu + Dongxia + D + + Department of Blood Purification, General Hospital of Northern Theater Command, Shenyang, China. + + + + Tao + Yongyuan + Y + + Department of Blood Purification, General Hospital of Northern Theater Command, Shenyang, China. + + + + Fu + Panpan + P + + Department of Blood Purification, General Hospital of Northern Theater Command, Shenyang, China. + + + + Bai + Jiuxu + J + + Department of Blood Purification, General Hospital of Northern Theater Command, Shenyang, China. + + + + Cao + Ning + N + + Department of Blood Purification, General Hospital of Northern Theater Command, Shenyang, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Med (Lausanne) + 101648047 + 2296-858X + + + continuous renal replacement therapy + end-stage kidney disease + intradialytic hypotension + machine learning + prediction model + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 2 + 9 + + + 2026 + 4 + 26 + + + 2026 + 4 + 28 + + + 2026 + 6 + 1 + 8 + 5 + + + 2026 + 6 + 1 + 8 + 4 + + + 2026 + 6 + 1 + 6 + 1 + + + epublish + + 42221107 + PMC13219051 + 10.3389/fmed.2026.1807513 + + +
+ + + 42221102 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-858X + + 13 + + 2026 + + + Frontiers in medicine + Front Med (Lausanne) + + LDAR outperforms other albumin-derived indices in predicting 28-day ICU mortality in critically ill myocardial infarction patients: a two-cohort study. + + 1801925 + 1801925 + + 10.3389/fmed.2026.1801925 + + Early risk stratification is crucial for improving outcomes in critically ill patients with acute myocardial infarction (AMI). Albumin-derived composite indices hold promise as convenient and effective predictive tools, but their relative efficacy and clinical utility remain unclear. + This two-cohort retrospective analysis utilized a derivation cohort from the MIMIC-IV public database and an external validation cohort from the ICU of Guizhou Medical University Affiliated Hospital. Six albumin-derived composite indices were evaluated. Statistical analyses employed Cox proportional hazards regression models to assess their association with mortality. Predictive performance was compared using the area under the receiver operating characteristic curve (AUC) and Delong's test. A multivariate risk prediction model was developed based on key prognostic variables selected by multiple machine learning algorithms. + The study included 4,850 critically ill AMI patients (4,210 in the derivation cohort, 640 in the validation cohort). Multivariable-adjusted analysis identified the red cell distribution width to Albumin Ratio (RAR), Urea nitrogen to Albumin Ratio (UAR), and Lactate Dehydrogenase to Albumin Ratio (LDAR) as independent predictors of 28-day ICU mortality. Among these, LDAR demonstrated the strongest predictive ability, with an AUC of 0.702 in the derivation cohort, a finding robustly validated externally (AUC = 0.703). Subgroup analysis indicated consistent predictive value across most populations but revealed a significant interaction with hyperlipidemia. Incorporating LDAR into traditional critical illness scores (e.g., APACHE II, SOFA) significantly improved their predictive discrimination (all Delong's test p < 0.05). A comprehensive model integrating 7 key variables (including LDAR, urea nitrogen, and lactate) selected by machine learning showed good and robust discriminative performance in both internal and external validation (AUCs of 0.767 and 0.735, respectively), significantly outperforming five traditional risk scores (all Delong's test p < 0.05). + Among the six albumin-derived composite indices, LDAR offers the best independent and incremental predictive value for 28-day ICU mortality in critically ill AMI patients. Its interaction with hyperlipidemia suggests potential for targeted risk stratification. The machine learning model incorporating LDAR and other variables demonstrates robust performance, providing a promising tool for the early clinical identification of high-risk patients. + Copyright © 2026 Meng, Ou, Mao, Liao, Wu, Zhang, Qian and Yang. + + + + Meng + Xiongwei + X + + Department of Cardiac Surgery, Affiliated Hospital of Guizhou Medical University, Guiyang, China. + + + + Ou + Yi + Y + + Department of Cardiac Surgery, Affiliated Hospital of Guizhou Medical University, Guiyang, China. + + + + Mao + Jialin + J + + Department of Cardiac Surgery, Affiliated Hospital of Guizhou Medical University, Guiyang, China. + + + + Liao + Hongsheng + H + + Department of Cardiac Surgery, Affiliated Hospital of Guizhou Medical University, Guiyang, China. + + + + Wu + Junhong + J + + Center for Translational Medicine, Guizhou Medical University, Guiyang, China. + + + + Zhang + Lin + L + + Center for Translational Medicine, Guizhou Medical University, Guiyang, China. + + + + Qian + Xingkai + X + + Center for Translational Medicine, Guizhou Medical University, Guiyang, China. + + + + Yang + Siyuan + S + + Department of Cardiac Surgery, Affiliated Hospital of Guizhou Medical University, Guiyang, China. + + + + eng + + Journal Article + + + 2026 + 05 + 15 + +
+ + Switzerland + Front Med (Lausanne) + 101648047 + 2296-858X + + + acute myocardial infarction + albumin + correlation analysis + inflammatory nutrition composite index + risk prediction + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 2 + 6 + + + 2026 + 4 + 20 + + + 2026 + 4 + 24 + + + 2026 + 6 + 1 + 8 + 5 + + + 2026 + 6 + 1 + 8 + 4 + + + 2026 + 6 + 1 + 6 + 1 + + + epublish + + 42221102 + PMC13219332 + 10.3389/fmed.2026.1801925 + + +
+ + + 42221077 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-858X + + 13 + + 2026 + + + Frontiers in medicine + Front Med (Lausanne) + + Explainable machine learning identifies knee morphology thresholds for arthroscopic medial meniscus posterior root tear: a retrospective cohort study. + + 1819067 + 1819067 + + 10.3389/fmed.2026.1819067 + + Medial meniscus posterior root tear (MMPRT) is clinically important because disruption of posterior root function compromises hoop tension and load sharing, accelerating medial-compartment degeneration. Early or subtle posterior pathology may be underrecognized on MRI, highlighting the potential value of morphology-based risk awareness during MRI interpretation. + We retrospectively analyzed 608 patients who underwent arthroscopic surgery for knee joint injuries, including 281 patients with arthroscopically confirmed MMPRT and 327 controls without MMPRT. Demographic, clinical, and MRI-based morphologic parameters were compared in the training set. Variables identified from training-set comparisons and clinical/biomechanical relevance were used to develop 10 machine learning models, including CatBoost, Decision Tree, GBM, LightGBM, LASSO, Naive Bayes, Neural Network, Random Forest, Support Vector Machine, and XGBoost. Models were evaluated with 10-fold cross-validation and an independent testing set. Explainability was assessed using SHapley Additive exPlanations (SHAP), including global importance and dependence plots. + Training-set multivariable analysis identified older age, greater medial tibial slope (MTS), and deeper medial tibial plateau depth (MTPD) as independent factors associated with MMPRT. GBM achieved the highest AUC in the independent testing set and was selected for SHAP-based interpretation. SHAP analysis ranked age as the dominant contributor, followed by MTS and MTPD. Dependence plots suggested non-linear, threshold-like patterns in model contribution. Age showed an apparent transition from negative to positive SHAP contributions around midlife, MTS showed a threshold-like increase between approximately 6° and 8°, whereas MTPD shifted toward positive SHAP contributions around approximately 2.2-2.5 mm. + Age was the dominant model contributor, and MTS and MTPD were independently associated with MMPRT, exhibiting non-linear patterns in SHAP-based model interpretation. These findings may help raise suspicion for MMPRT in symptomatic patients undergoing MRI, particularly when age-related and tibial plateau morphologic risk patterns are present. + Copyright © 2026 Zhang, Guo, Li, Zheng, Yu, Chen, Li, Liao, Chen and He. + + + + Zhang + Minyuan + M + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + Guo + Fengyuan + F + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + Li + Yanlin + Y + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + Zheng + Jiali + J + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + Yu + Yang + Y + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + Chen + Miao + M + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + Li + Runze + R + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + Liao + Yatong + Y + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + Chen + Qianzeng + Q + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + He + Chuan + C + + Department of Sports Medicine, The First Affiliated Hospital of Kunming Medical University, Kunming, China. + + + + eng + + Journal Article + + + 2026 + 05 + 14 + +
+ + Switzerland + Front Med (Lausanne) + 101648047 + 2296-858X + + + MRI + machine learning + medial meniscus posterior root tear + medial tibial plateau depth + medial tibial slope + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2026 + 2 + 27 + + + 2026 + 4 + 28 + + + 2026 + 4 + 30 + + + 2026 + 6 + 1 + 8 + 5 + + + 2026 + 6 + 1 + 8 + 4 + + + 2026 + 6 + 1 + 6 + 1 + + + epublish + + 42221077 + PMC13216056 + 10.3389/fmed.2026.1819067 + + +
+ + + 42220987 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2296-2360 + + 14 + + 2026 + + + Frontiers in pediatrics + Front Pediatr + + Prediction of atelectasis in Mycoplasma pneumoniae pneumonia using a SHapley Additive exPlanations-interpretable machine learning model. + + 1747948 + 1747948 + + 10.3389/fped.2026.1747948 + + This study aimed to evaluate the performance of three machine learning models-K-nearest neighbors (KNN), support vector machine (SVM), and neural network (NN)-for predicting the risk of atelectasis in children with Mycoplasma pneumoniae pneumonia (MPP). The study also incorporated SHAP (SHapley Additive exPlanations) analysis to interpret model predictions. + Based on the clinical data of 508 pediatric patients, we performed feature selection and developed KNN, SVM, and NN models. Model performance was compared on an independent validation set, and SHAP values were employed to elucidate the predictive logic of the models. + On the validation set, the neural network (NN) model demonstrated the best overall performance, with an AUC of 0.89 and an accuracy of 0.82. The KNN model showed comparable performance (AUC = 0.88), while the SVM model achieved the highest specificity (0.87). The SHAP analysis consistently identified neutrophil percentage (NEU.pct), serum amyloid A (SAA), and C-reactive protein (CRP) as the most critical variables influencing the predictions. + This study demonstrates the effectiveness of different machine learning models in predicting the risk of atelectasis in MPP. The neural network, in particular, exhibited superior performance owing to its powerful non-linear modeling capabilities. These interpretable models provide clinicians with a diverse set of tools to accommodate various clinical priorities, such as overall accuracy or high specificity, thereby facilitating the early identification and stratified management of high-risk children. + © 2026 Sun, Wang, Li and Wang. + + + + Sun + Jia + J + + Department of Pediatrics, Wuhan Wuchang Hospital, Wuhan, China. + + + + Wang + Tengfei + T + + School of Transportation and Logistics Engineering, Wuhan University of Technology, Wuhan, China. + + + + Li + Mengsi + M + + Department of Pediatrics, Wuhan Wuchang Hospital, Wuhan, China. + + + + Wang + Mian + M + + Department of Pediatrics, Wuhan Wuchang Hospital, Wuhan, China. + + + + eng + + Journal Article + + + 2026 + 05 + 11 + +
+ + Switzerland + Front Pediatr + 101615492 + 2296-2360 + + + Mycoplasma pneumoniae pneumonia + SHAP + atelectasis + neural network + risk prediction + + The author(s) declared that this work was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest. +
+ + + + 2025 + 11 + 17 + + + 2026 + 2 + 3 + + + 2026 + 2 + 27 + + + 2026 + 6 + 1 + 8 + 5 + + + 2026 + 6 + 1 + 8 + 4 + + + 2026 + 6 + 1 + 6 + 0 + + + epublish + + 42220987 + PMC13220724 + 10.3389/fped.2026.1747948 + + +
+ + + 42220920 + + 2026 + 06 + 01 + + + 2026 + 06 + 01 + +
+ + 2008-126X + + 16 + 5 + + 2025 + Sep + + + Basic and clinical neuroscience + Basic Clin Neurosci + + Better Than Maximum Likelihood Estimation of Model-based and Model-free Learning Styles. + + 891 + 912 + 891-912 + + 10.32598/bcn.2024.5883.1 + + Various decision-making systems collaborate to shape human behavior. Goal-directed and habitual systems are the two primary systems studied by reinforcement learning (RL), with model-based (MB) and model-free (MF) learning styles, respectively. Human behavior can be viewed as a combination of these two decision-making paradigms, achieved by the weighted sum of the action values of these two styles within an RL framework. The weighting parameter is often assessed using the maximum likelihood (ML) or maximum a posteriori (MAP) estimation method. + In this study, we employ RL agents that use a combination of MB and MF decision-making to perform the well-known Daw two-stage task. ML and MAP methods yield less reliable estimates of the weighting parameter, often exhibiting a large bias toward extreme values. We propose the knearest neighbor as an alternative nonparametric estimate to improve the estimation error, where we devise a set of 20 features extracted from the behavior of the RL agent. Simulated experiments examine the proposed method. + Our method reduces the bias and variance of the estimation error, as demonstrated by the obtained results. Human behavior data from previous studies are also investigated. The proposed method enables the prediction of indices such as age, gender, IQ, dwell time of gaze, and psychiatric disorder indices, which are not captured by the traditional method. + In brief, the proposed method increases the reliability of the estimated parameters and enhances the applicability of RL paradigms in clinical trials. + Copyright© 2025 Iranian Neuroscience Society. + + + + Yazdani + Sadjad + S + 0000-0001-9068-0123 + + Department of Machine Intelligence and Robotics, School of Electrical and Computer Engineering, University of Tehran, Tehran, Iran. + + + + Vahabie + Abdol-Hossein + AH + 0000-0003-1603-8866 + + Department of Machine Intelligence and Robotics, School of Electrical and Computer Engineering, University of Tehran, Tehran, Iran. + + + + Nadjar-Araabi + Babak + B + 0000-0002-5283-263X + + Department of Machine Intelligence and Robotics, School of Electrical and Computer Engineering, University of Tehran, Tehran, Iran. + + + + Nili Ahmadabadi + Majid + M + 0000-0002-6370-6057 + + Department of Machine Intelligence and Robotics, School of Electrical and Computer Engineering, University of Tehran, Tehran, Iran. + + + + eng + + Journal Article + + + 2025 + 09 + 01 + +
+ + Iran + Basic Clin Neurosci + 101575211 + 2008-126X + + + Behavioral observation analysis + Behavioral parameter estimation + Maximum a posteriori (MAP) + Maximum likelihood (ML) + Model-based (MB)and model-free (MF) combined learning + Modeling different styles of learning + k-Nearest neighbors + +
+ + + + 2023 + 9 + 30 + + + 2024 + 7 + 28 + + + 2024 + 10 + 6 + + + 2026 + 6 + 1 + 8 + 5 + + + 2026 + 6 + 1 + 8 + 4 + + + 2026 + 6 + 1 + 5 + 59 + + + ppublish + + 42220920 + PMC13220689 + 10.32598/bcn.2024.5883.1 + BCN-16-891 + + +
+
\ No newline at end of file diff --git a/log_esecuzione.txt b/log_esecuzione.txt new file mode 100644 index 0000000000000000000000000000000000000000..b9b31238365416322d646daa7ab23e0612275bd0 GIT binary patch literal 17472 zcmeI3Yf~FX7KZ!tR_%Y7@(0IGmaDkft|BP{!e-YtUWDWILP{$n85Dz1BxDSg%1=-7 zK7G{8=rWQ(5*M#)YNXLjPxraL=k)2;pMT7|SvT*N+?2lUbIwI>&OLR{^qJA;td7Y2 zrgPK1b{lR>SK;99zN_dw(&vdgc4c?!>bm~yrd`3+blAJA?voDMM6LV0QPlN?zgyLt zk^52Cz50q=&K>Gm)t$S)yT6IzK~!hN!Cj-eChAYc$BFoeB-vP^T!$m4HU-J>R1zua zZbRR7$&SxR@~rFqqJA}WL~gewizkxE&t5j0zISwRpnlL|-%pa3Dc97! zDfdpFyjRs2b&bKjV|_L*r61{j(~n@x@M2 z_wJ#n3Y7frZu@|eAbn)BCb=Q~122Vh*?rZ0&~<2&{6=%H_3Ts@TGKm4$?t>DL$rK)@>M+>~~d9Yo31aB<+2?0IF#TN|pQc_|{_;?d#sw&E~73-Y7Q@ zK2$HK>hGDG(J?2>URIy8t#eNI@k+zbNA8XK3SPVBcBHMB^29aqf2wgJ_p7vkbRMVj z*=vL)jXSGxmes?Q&Ij(f^s%F>8J#b5wWE=tZd&I9-2*#8^ey+VD~`0F9u^cO!btDL z&%Ue?Jo@Nm%BW}lZX#riyvtjoHKeGQHPi+3;r ztjQ+!+*?^TXx`9uO*(IQ$?QoZaJ;T3=4E@j#$rBt3#qB~3%4q}Sr<<8os}k5g+A;0 z>z9={kNwq~6w(ALWbB^}VjPJ31rxN>A2h4?NrRb_s6d6K07oq{Ey}o~A|jDN!Cr zkUepL4_Y+9?w53uLnI?N+z`LeYV4<=0$ygm#T)+<&mr1Rd#~WLCW|p#&Z~7n9@-GP zK33~Utqb}^E>hM(bZz)IOv>1r#nOErtFWKp$3QM&9K*XvvZ)9~j#?uU6AgKZ(%>b$ z;Ma%x9qGF4c?9vAy4&>a4bMPi{63w-2VNE>&qGzw6-?Y0e-Aw7V@co{e!|!*x?k}q z2X>w6*H!T(BP>~Pi=xZ$D@(rgS-V#1=;Pap3duyB|U+^g4&dI=LczWMVt+Tll>8ALADN` z3=GQBd*s8Z0dmlT(Z_1Lvnfh%E zfvn@>b2DM3cu+w!1kQ|hGFLJZ?3)(Ip)9}0hblKpYgRNMEqp2|(U?ADP1cN-R)oSQ z@|nEoJ<*%NKh0}GCQQbLH=(!crBCs8vITLp?$H_DTi;nBbKc{9UZboD-?NGWYx*1< z8Hdr|nKW@GDzFS@9wzsO?gVX+V+e6G=$dT!+)J-LYPQP< zoT>S&AxMWlK8Xfu4wefs>W;>5YJ8p+MbRf;%lfQ$@s(4x*zoUwX16Qfc8{<)+>lhD zld24UfmCB2E27>k1MZk{9;ubJTv43k?t$Jai03qo(Q9ZM=Hm22E)eb~X&~y<)gLXW zMHZ#2K*jCK?asXU3za;Se+DEwUX`+L5BSHm-x8RJrdO|F68iP>JbniRn5f3U)`9yR2)g zhFY$Zj0LeS!DZ?|%(^Vb^y1NGim^TC6POoU_f1-H@J^xx>mA8Cyv^RJ2Qe$eGfk&< zpQr`?fU}?c)Am)b{(111R6Sf)L}I4;wR(8-)x%X)gf}nihJ&kK3uCW(Q4=R4COgAd z$S0x6szd#%UF}(9XO2RQW0i%hgiM4?spzY#HVSzPNE2$&!=c6?{?l`4YUUN?NBF(1 z=uzFWnE+Yzx}G-F226m?AcyXJc~nl34EZ;!S$yVwMqihVKw+z}kP)2?nfXjkCdrva zJQGaja9iGXsxGeY?3~NKo_u-R+Hlw51 z^}TpoUTi31_6l`jy#d)XOCmGJ&n)hflh0@lk0mlEK9ZeHv zeuyn&-?XK+MHFUU%>KdwQ;dfwy6k_X7hrrS*nvpWPNk>G7reMf;`}^}C{92ijAyqu)Hg zaPM`#((_e4xvLmB8b9O0z$dcMFC7CX#p56hocHtR(J*jP7JaiA$cVOgZ9Evrde_zR z!2bJ&Clitkmv1}|WW;e|AiL78f`OCM*ZrRhTi$f;^SrmJB9aHb7uJ#Qk@bUt zS&xr9ntK}-((Z2Of!F0{To_1{{<8Bx+j%ny9tUBdt)q;V2eM!8rZYhs^XfPl&%(ET zO@Lhu{A0=1*qFN?>!gB1&D-{pSpA<>#8BPGL19=c7_K+t0Ee|&-#gLoQlH%D*!!%ANFZUtM(AH0H>W_G(xO8X)HCimp^ zvKRcyVtoJIZow+BsO#-^8^q~w_?YvNy8mvstD$8t 90 else "") + logger.info("Richiesta HTTP: tentativo=%s/%s, url=%s", attempt + 1, max_retries, preview) print(f" -> GET {preview} (tentativo {attempt + 1}/{max_retries})") response = requests.get(url, headers=headers, timeout=15) if response.status_code == 200: + logger.info("Richiesta HTTP completata con successo: status=200") return response.json() if response_format == "json" else response.text if response.status_code == 429: # Priorità all'header Retry-After: il server conosce il proprio # stato meglio di qualsiasi euristica locale di backoff. retry_after = float(response.headers.get("Retry-After", wait_time)) + logger.warning("Rate limit HTTP 429: attesa=%ss", retry_after) print(f" -> 429 Rate limit. Attendo {retry_after:.0f}s...") time.sleep(retry_after) elif response.status_code in (500, 502, 503, 504): + logger.warning("Errore server HTTP %s: attesa=%ss", response.status_code, wait_time) print(f" -> {response.status_code} Errore server. Attendo {wait_time:.0f}s...") time.sleep(wait_time) else: # Errori 4xx (escluso 429): il problema è nella richiesta stessa, # non nel server, quindi un nuovo tentativo non porterebbe a risultati diversi. + logger.error("Errore HTTP non recuperabile: status=%s, risposta=%s", response.status_code, response.text[:120]) print(f" -> Errore {response.status_code}: {response.text[:120]}") return None except (requests.exceptions.Timeout, requests.exceptions.ConnectionError) as exc: + logger.warning("Errore di rete %s: attesa=%ss", type(exc).__name__, wait_time) print(f" -> Errore di rete ({type(exc).__name__}). Attendo {wait_time:.0f}s...") time.sleep(wait_time) + logger.error("Endpoint non raggiungibile dopo %s tentativi", max_retries) print(" [FALLIMENTO] Impossibile raggiungere l'endpoint dopo tutti i tentativi.") return None @@ -262,7 +272,8 @@ def save_openalex_json(results: List[Dict], output_dir: Path) -> Path: filepath = output_dir / f"openalex_{timestamp}.json" with open(filepath, "w", encoding="utf-8") as fh: json.dump(results, fh, ensure_ascii=False, indent=2) - print(f"\n[SALVATAGGIO] OpenAlex JSON → {filepath} ({len(results)} record)") + logger.info("Salvataggio OpenAlex JSON: file=%s, record=%s", filepath, len(results)) + print(f"\n[SALVATAGGIO] OpenAlex JSON -> {filepath} ({len(results)} record)") return filepath @@ -298,7 +309,8 @@ def save_pubmed_xml(articles_xml: List[str], output_dir: Path) -> Path: tree = ET.ElementTree(root) ET.indent(tree, space=" ") # Indentazione leggibile (Python >= 3.9) tree.write(filepath, encoding="unicode", xml_declaration=True) - print(f"[SALVATAGGIO] PubMed XML → {filepath} ({len(articles_xml)} record)") + logger.info("Salvataggio PubMed XML: file=%s, record=%s", filepath, len(articles_xml)) + print(f"[SALVATAGGIO] PubMed XML -> {filepath} ({len(articles_xml)} record)") return filepath @@ -335,7 +347,8 @@ def extract_openalex_data( Il file JSON viene salvato su disco come effetto collaterale. """ sep = "=" * 70 - print(f"\n{sep}\nESTRAZIONE OPENALEX — query: '{query}'\n{sep}") + logger.info("Avvio estrazione OpenAlex: query=%s, max_results=%s", query, max_results) + print(f"\n{sep}\nESTRAZIONE OPENALEX - query: '{query}'\n{sep}") all_results: List[Dict] = [] cursor: str = "*" # Il cursore "*" indica l'inizio della sequenza paginata @@ -353,6 +366,13 @@ def extract_openalex_data( results: List[Dict] = data["results"] all_results.extend(results) total_available = data.get("meta", {}).get("count", "?") + logger.info( + "OpenAlex pagina %s: estratti=%s, totale_accumulato=%s, disponibili=%s", + page_num, + len(results), + len(all_results), + total_available, + ) print( f" -> Estratti {len(results)} works " f"(totale: {len(all_results)} / {total_available} disponibili)" @@ -370,8 +390,10 @@ def extract_openalex_data( if all_results: save_openalex_json(all_results, output_dir) else: + logger.warning("OpenAlex non ha restituito dati per query=%s", query) print(" [ATTENZIONE] Nessun dato estratto. Nessun file salvato.") + logger.info("Estrazione OpenAlex completata: record=%s", len(all_results)) return all_results @@ -410,7 +432,8 @@ def extract_pubmed_data( Il file XML viene salvato su disco come effetto collaterale. """ sep = "=" * 70 - print(f"\n{sep}\nESTRAZIONE PUBMED — query: '{query}'\n{sep}") + logger.info("Avvio estrazione PubMed: query=%s, max_results=%s", query, max_results) + print(f"\n{sep}\nESTRAZIONE PUBMED - query: '{query}'\n{sep}") all_results: List[Dict] = [] raw_xml_list: List[str] = [] # Usato solo per il salvataggio finale su disco @@ -459,6 +482,13 @@ def extract_pubmed_data( batch_parsed = [parse_pubmed_xml_node(art) for art in articles] all_results.extend(batch_parsed) + logger.info( + "PubMed pagina %s: estratti=%s, totale_accumulato=%s, disponibili=%s", + page_num, + len(batch_parsed), + len(all_results), + total_available, + ) print( f" -> Estratti {len(batch_parsed)} articoli XML " @@ -488,8 +518,10 @@ def extract_pubmed_data( # max_results record, coerentemente con la lista restituita in memoria. save_pubmed_xml(raw_xml_list[:max_results], output_dir) else: + logger.warning("PubMed non ha restituito dati per query=%s", query) print(" [ATTENZIONE] Nessun dato estratto. Nessun file salvato.") + logger.info("Estrazione PubMed completata: record=%s", len(all_results[:max_results])) return all_results[:max_results] @@ -528,6 +560,7 @@ def extract_data( """ output_path = Path(output_dir) normalized = source.lower().strip() + logger.info("Dispatch API: source=%s, query=%s, output_dir=%s", normalized, query, output_path) dispatch: Dict[str, object] = { "openalex": lambda q: extract_openalex_data(q, output_dir=output_path), @@ -556,4 +589,4 @@ def extract_data( for src in ("openalex", "pubmed"): records = extract_data(query_test, source=src) - print(f"\n→ {src}: {len(records)} record estratti.\n") + print(f"\n-> {src}: {len(records)} record estratti.\n") diff --git a/www/services/file_extractor.py b/www/services/file_extractor.py index d07cfb40f..b22f44cf1 100644 --- a/www/services/file_extractor.py +++ b/www/services/file_extractor.py @@ -2,6 +2,7 @@ from __future__ import annotations +import logging import os import tempfile import zipfile @@ -13,6 +14,7 @@ SUPPORTED_EXTENSIONS = {".csv", ".xlsx", ".xls", ".txt", ".ciw", ".bib"} +logger = logging.getLogger(__name__) def _annotate_records(records: list[dict], file_extension: str, source: str) -> list[dict]: @@ -111,6 +113,7 @@ def _extract_zip_file(file_path: str, source_upper: str) -> list[dict]: ValueError: Propagata dall'estrazione annidata per contenuti non supportati. """ + logger.info("[%s] Estrazione archivio ZIP: %s", source_upper, file_path) all_records: list[dict] = [] with zipfile.ZipFile(file_path, "r") as archive: with tempfile.TemporaryDirectory() as tmp_dir: @@ -121,6 +124,7 @@ def _extract_zip_file(file_path: str, source_upper: str) -> list[dict]: nested_ext = os.path.splitext(filename)[1].lower() if nested_ext in SUPPORTED_EXTENSIONS: all_records.extend(extract_from_file(nested_path, source_upper)) + logger.info("[%s] Archivio ZIP elaborato: %s record", source_upper, len(all_records)) return all_records @@ -154,17 +158,19 @@ def extract_from_file(file_path: str, source: str) -> list[dict]: source_upper = source.upper().strip() file_extension = os.path.splitext(file_path)[1].lower() + logger.info("[%s] Avvio lettura file: %s", source_upper, file_path) if file_extension == ".zip": return _extract_zip_file(file_path, source_upper) if file_extension == ".bib": - print(f"[{source_upper}] Lettura file BibTeX: {file_path}") + logger.info("[%s] Lettura file BibTeX", source_upper) records = _read_bibtex_file(file_path) + logger.info("[%s] Record estratti da BibTeX: %s", source_upper, len(records)) return _annotate_records(records, file_extension, source_upper) if file_extension in {".txt", ".ciw"}: - print(f"[{source_upper}] Lettura file testuale: {file_path}") + logger.info("[%s] Lettura file testuale %s", source_upper, file_extension) # Gli export testuali usano convenzioni di tag specifiche per sorgente, # quindi vengono inviati ai parser dedicati prima dell'annotazione comune. @@ -181,19 +187,21 @@ def extract_from_file(file_path: str, source: str) -> list[dict]: f"WEB_OF_SCIENCE e COCHRANE. Ricevuto: {source_upper}" ) + logger.info("[%s] Record estratti da file testuale: %s", source_upper, len(records)) return _annotate_records(records, file_extension, source_upper) if file_extension in {".csv", ".xlsx", ".xls"}: - print(f"[{source_upper}] Lettura file tabellare {file_extension}: {file_path}") + logger.info("[%s] Lettura file tabellare %s", source_upper, file_extension) try: records = _read_tabular_file(file_path, file_extension, source_upper) except pd.errors.EmptyDataError: - print(f"[ERRORE] Il file '{file_path}' e' vuoto.") + logger.error("Il file '%s' e' vuoto.", file_path) return [] except Exception as exc: - print(f"[ERRORE] Impossibile leggere il file tabellare: {exc}") + logger.exception("Impossibile leggere il file tabellare: %s", exc) return [] + logger.info("[%s] Record estratti da file tabellare: %s", source_upper, len(records)) return _annotate_records(records, file_extension, source_upper) raise ValueError( diff --git a/www/services/parsers.py b/www/services/parsers.py index 6e29101f4..434d03216 100644 --- a/www/services/parsers.py +++ b/www/services/parsers.py @@ -8,9 +8,12 @@ campi e dei tipi resta responsabilita' di "standardizer.py". """ +import logging import re import xml.etree.ElementTree as ET +logger = logging.getLogger(__name__) + # PARSER WEB OF SCIENCE def parse_wos_data(datapath: str) -> list[dict]: @@ -34,6 +37,7 @@ def parse_wos_data(datapath: str) -> list[dict]: elem_data = [] data = {} current_key = None + logger.info("Parsing Web of Science: %s", datapath) with open(datapath, 'r', encoding='utf-8') as file: lines = file.readlines() @@ -72,6 +76,7 @@ def parse_wos_data(datapath: str) -> list[dict]: data[key] = [value] current_key = key + logger.info("Parsing Web of Science completato: %s record", len(elem_data)) return elem_data @@ -96,6 +101,7 @@ def parse_cochrane_data(datapath: str) -> list[dict]: data = [] current_record = {} current_key = None + logger.info("Parsing Cochrane: %s", datapath) with open(datapath, 'r', encoding='utf-8') as file: lines = file.readlines() @@ -142,6 +148,7 @@ def parse_cochrane_data(datapath: str) -> list[dict]: current_record['AB'] = current_record['AB'][22:].strip() data.append(current_record) + logger.info("Parsing Cochrane completato: %s record", len(data)) return data @@ -161,6 +168,7 @@ def parse_pubmed_medline_text(text: str) -> list[dict]: records = [] current_record = {} current_key = None + logger.info("Parsing PubMed MEDLINE: %s righe", len(text.splitlines())) for line in text.splitlines(): if not line.strip(): @@ -197,6 +205,7 @@ def parse_pubmed_medline_text(text: str) -> list[dict]: if current_record: records.append(current_record) + logger.info("Parsing PubMed MEDLINE completato: %s record", len(records)) return records diff --git a/www/services/standardizer.py b/www/services/standardizer.py index 66dcb822f..e9da3529b 100644 --- a/www/services/standardizer.py +++ b/www/services/standardizer.py @@ -11,12 +11,15 @@ from __future__ import annotations import ast +import logging import re from typing import Any import pandas as pd from . import format_functions as ff from .validation import validate_dataframe_contract, validate_record_contract +logger = logging.getLogger(__name__) + # Schema Target e contratti di tipo COLUMN_TYPE_CONTRACTS: dict[str, type] = { "DB": str, @@ -616,11 +619,26 @@ def convert2df( Notes: I record non rappresentati da dizionari vengono ignorati. Il dispatch sceglie tra ricaricamento standardizzato, mapping OpenAlex e formatter legacy in base ai metadati disponibili. """ + input_count = len(raw_records or []) source = source.upper().strip() records: list[dict[str, Any]] = [] + skipped_records = 0 + standardized_records = 0 + openalex_records = 0 + legacy_records = 0 + + logger.info( + "Avvio standardizzazione: source=%s, file_type=%s, record_input=%s, validate=%s, csv_export=%s", + source, + file_type, + input_count, + validate, + for_csv_export, + ) for raw_record in raw_records or []: if not isinstance(raw_record, dict): + skipped_records += 1 continue record_source = str(raw_record.get("_bibliometrix_source", source)).upper().strip() @@ -629,18 +647,31 @@ def convert2df( # Il dispatch preserva i record gia' standardizzati ed evita passaggi inutili attraverso formatter progettati per dati grezzi. if _looks_standardized(raw_record): record = transform_standardized_record(raw_record, default_db=record_source) + standardized_records += 1 elif record_source == "OPENALEX": record = transform_openalex_record(raw_record) + openalex_records += 1 else: record = transform_with_format_functions(raw_record, record_source, effective_file_type) + legacy_records += 1 if validate: validate_record_contract(record, COLUMN_TYPE_CONTRACTS) records.append(serialize_for_csv(record) if for_csv_export else record) + logger.info( + "Record trasformati: validi=%s, saltati=%s, gia_standardizzati=%s, openalex=%s, formatter_legacy=%s", + len(records), + skipped_records, + standardized_records, + openalex_records, + legacy_records, + ) + column_order = list(COLUMN_TYPE_CONTRACTS) if not records: + logger.warning("Nessun record valido da standardizzare; restituito DataFrame vuoto") return pd.DataFrame(columns=column_order) df = pd.DataFrame(records) @@ -653,5 +684,7 @@ def convert2df( df = df[column_order] if validate and not for_csv_export: validate_dataframe_contract(df, COLUMN_TYPE_CONTRACTS) + logger.info("Validazione DataFrame completata") + logger.info("DataFrame standardizzato pronto: righe=%s, colonne=%s", len(df), len(df.columns)) return df diff --git a/www/services/validation.py b/www/services/validation.py index c99166925..f8e3cf826 100644 --- a/www/services/validation.py +++ b/www/services/validation.py @@ -6,9 +6,12 @@ """ from __future__ import annotations +import logging from typing import Any import pandas as pd +logger = logging.getLogger(__name__) + class ValidationError(Exception): """Eccezione sollevata quando l'output standardizzato viola il contratto ETL.""" @@ -74,6 +77,7 @@ def validate_record_contract(record: dict[str, Any], contracts: dict[str, type]) ) if errors: + logger.error("Validazione record fallita: %s errori", len(errors)) raise ValidationError("\n".join(errors)) @@ -113,4 +117,5 @@ def validate_dataframe_contract(df: pd.DataFrame, contracts: dict[str, type]) -> ) if errors: + logger.error("Validazione DataFrame fallita: %s errori", len(errors)) raise ValidationError("\n".join(errors[:25]))